2 * at91_udc -- driver for at91-series USB peripheral controller
4 * Copyright (C) 2004 by Thomas Rathbone
5 * Copyright (C) 2005 by HP Labs
6 * Copyright (C) 2005 by David Brownell
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.
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.
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.
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/slab.h>
34 #include <linux/errno.h>
35 #include <linux/init.h>
36 #include <linux/list.h>
37 #include <linux/interrupt.h>
38 #include <linux/proc_fs.h>
39 #include <linux/clk.h>
40 #include <linux/usb/ch9.h>
41 #include <linux/usb/gadget.h>
43 #include <asm/byteorder.h>
44 #include <asm/hardware.h>
47 #include <asm/system.h>
48 #include <asm/mach-types.h>
50 #include <asm/arch/gpio.h>
51 #include <asm/arch/board.h>
52 #include <asm/arch/cpu.h>
53 #include <asm/arch/at91sam9261_matrix.h>
59 * This controller is simple and PIO-only. It's used in many AT91-series
60 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
61 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
63 * This driver expects the board has been wired with two GPIOs suppporting
64 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
65 * testing hasn't covered such cases.)
67 * The pullup is most important (so it's integrated on sam926x parts). It
68 * provides software control over whether the host enumerates the device.
70 * The VBUS sensing helps during enumeration, and allows both USB clocks
71 * (and the transceiver) to stay gated off until they're necessary, saving
72 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
73 * it may also be gated off by software during some Linux sleep states.
76 #define DRIVER_VERSION "3 May 2006"
78 static const char driver_name [] = "at91_udc";
79 static const char ep0name[] = "ep0";
82 #define at91_udp_read(dev, reg) \
83 __raw_readl((dev)->udp_baseaddr + (reg))
84 #define at91_udp_write(dev, reg, val) \
85 __raw_writel((val), (dev)->udp_baseaddr + (reg))
87 /*-------------------------------------------------------------------------*/
89 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
91 #include <linux/seq_file.h>
93 static const char debug_filename[] = "driver/udc";
95 #define FOURBITS "%s%s%s%s"
96 #define EIGHTBITS FOURBITS FOURBITS
98 static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
100 static char *types[] = {
101 "control", "out-iso", "out-bulk", "out-int",
102 "BOGUS", "in-iso", "in-bulk", "in-int"};
105 struct at91_request *req;
108 local_irq_save(flags);
110 csr = __raw_readl(ep->creg);
112 /* NOTE: not collecting per-endpoint irq statistics... */
115 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
116 ep->ep.name, ep->ep.maxpacket,
117 ep->is_in ? "in" : "out",
118 ep->is_iso ? " iso" : "",
120 ? (ep->fifo_bank ? "pong" : "ping")
122 ep->stopped ? " stopped" : "");
123 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
125 (csr & 0x07ff0000) >> 16,
126 (csr & (1 << 15)) ? "enabled" : "disabled",
127 (csr & (1 << 11)) ? "DATA1" : "DATA0",
128 types[(csr & 0x700) >> 8],
130 /* iff type is control then print current direction */
132 ? ((csr & (1 << 7)) ? " IN" : " OUT")
134 (csr & (1 << 6)) ? " rxdatabk1" : "",
135 (csr & (1 << 5)) ? " forcestall" : "",
136 (csr & (1 << 4)) ? " txpktrdy" : "",
138 (csr & (1 << 3)) ? " stallsent" : "",
139 (csr & (1 << 2)) ? " rxsetup" : "",
140 (csr & (1 << 1)) ? " rxdatabk0" : "",
141 (csr & (1 << 0)) ? " txcomp" : "");
142 if (list_empty (&ep->queue))
143 seq_printf(s, "\t(queue empty)\n");
145 else list_for_each_entry (req, &ep->queue, queue) {
146 unsigned length = req->req.actual;
148 seq_printf(s, "\treq %p len %d/%d buf %p\n",
150 req->req.length, req->req.buf);
152 local_irq_restore(flags);
155 static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
159 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
160 (mask & (1 << 13)) ? " wakeup" : "",
161 (mask & (1 << 12)) ? " endbusres" : "",
163 (mask & (1 << 11)) ? " sofint" : "",
164 (mask & (1 << 10)) ? " extrsm" : "",
165 (mask & (1 << 9)) ? " rxrsm" : "",
166 (mask & (1 << 8)) ? " rxsusp" : "");
167 for (i = 0; i < 8; i++) {
169 seq_printf(s, " ep%d", i);
174 static int proc_udc_show(struct seq_file *s, void *unused)
176 struct at91_udc *udc = s->private;
180 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
182 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
183 udc->vbus ? "present" : "off",
185 ? (udc->vbus ? "active" : "enabled")
187 udc->selfpowered ? "self" : "VBUS",
188 udc->suspended ? ", suspended" : "",
189 udc->driver ? udc->driver->driver.name : "(none)");
191 /* don't access registers when interface isn't clocked */
193 seq_printf(s, "(not clocked)\n");
197 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
198 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
199 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
200 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
201 (tmp & AT91_UDP_NUM));
203 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
204 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
205 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
206 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
207 (tmp & AT91_UDP_ESR) ? " esr" : "",
208 (tmp & AT91_UDP_CONFG) ? " confg" : "",
209 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
211 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
212 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
213 (tmp & AT91_UDP_FEN) ? " fen" : "",
214 (tmp & AT91_UDP_FADD));
216 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
217 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
219 if (udc->enabled && udc->vbus) {
220 proc_ep_show(s, &udc->ep[0]);
221 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
229 static int proc_udc_open(struct inode *inode, struct file *file)
231 return single_open(file, proc_udc_show, PDE(inode)->data);
234 static const struct file_operations proc_ops = {
235 .open = proc_udc_open,
238 .release = single_release,
241 static void create_debug_file(struct at91_udc *udc)
243 struct proc_dir_entry *pde;
245 pde = create_proc_entry (debug_filename, 0, NULL);
250 pde->proc_fops = &proc_ops;
254 static void remove_debug_file(struct at91_udc *udc)
257 remove_proc_entry(debug_filename, NULL);
262 static inline void create_debug_file(struct at91_udc *udc) {}
263 static inline void remove_debug_file(struct at91_udc *udc) {}
268 /*-------------------------------------------------------------------------*/
270 static void done(struct at91_ep *ep, struct at91_request *req, int status)
272 unsigned stopped = ep->stopped;
273 struct at91_udc *udc = ep->udc;
275 list_del_init(&req->queue);
276 if (req->req.status == -EINPROGRESS)
277 req->req.status = status;
279 status = req->req.status;
280 if (status && status != -ESHUTDOWN)
281 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
284 req->req.complete(&ep->ep, &req->req);
285 ep->stopped = stopped;
287 /* ep0 is always ready; other endpoints need a non-empty queue */
288 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
289 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
292 /*-------------------------------------------------------------------------*/
294 /* bits indicating OUT fifo has data ready */
295 #define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
298 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
299 * back most of the value you just read (because of side effects, including
300 * bits that may change after reading and before writing).
302 * Except when changing a specific bit, always write values which:
303 * - clear SET_FX bits (setting them could change something)
304 * - set CLR_FX bits (clearing them could change something)
306 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
307 * that shouldn't normally be changed.
309 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
310 * implying a need to wait for one write to complete (test relevant bits)
311 * before starting the next write. This shouldn't be an issue given how
312 * infrequently we write, except maybe for write-then-read idioms.
314 #define SET_FX (AT91_UDP_TXPKTRDY)
315 #define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
316 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
318 /* pull OUT packet data from the endpoint's fifo */
319 static int read_fifo (struct at91_ep *ep, struct at91_request *req)
321 u32 __iomem *creg = ep->creg;
322 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
325 unsigned int count, bufferspace, is_done;
327 buf = req->req.buf + req->req.actual;
328 bufferspace = req->req.length - req->req.actual;
331 * there might be nothing to read if ep_queue() calls us,
332 * or if we already emptied both pingpong buffers
335 csr = __raw_readl(creg);
336 if ((csr & RX_DATA_READY) == 0)
339 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
340 if (count > ep->ep.maxpacket)
341 count = ep->ep.maxpacket;
342 if (count > bufferspace) {
343 DBG("%s buffer overflow\n", ep->ep.name);
344 req->req.status = -EOVERFLOW;
347 __raw_readsb(dreg, buf, count);
349 /* release and swap pingpong mem bank */
351 if (ep->is_pingpong) {
352 if (ep->fifo_bank == 0) {
353 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
356 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
360 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
361 __raw_writel(csr, creg);
363 req->req.actual += count;
364 is_done = (count < ep->ep.maxpacket);
365 if (count == bufferspace)
368 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
369 is_done ? " (done)" : "");
372 * avoid extra trips through IRQ logic for packets already in
373 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
377 else if (ep->is_pingpong) {
378 bufferspace -= count;
386 /* load fifo for an IN packet */
387 static int write_fifo(struct at91_ep *ep, struct at91_request *req)
389 u32 __iomem *creg = ep->creg;
390 u32 csr = __raw_readl(creg);
391 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
392 unsigned total, count, is_last;
395 * TODO: allow for writing two packets to the fifo ... that'll
396 * reduce the amount of IN-NAKing, but probably won't affect
397 * throughput much. (Unlike preventing OUT-NAKing!)
401 * If ep_queue() calls us, the queue is empty and possibly in
402 * odd states like TXCOMP not yet cleared (we do it, saving at
403 * least one IRQ) or the fifo not yet being free. Those aren't
404 * issues normally (IRQ handler fast path).
406 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
407 if (csr & AT91_UDP_TXCOMP) {
409 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
410 __raw_writel(csr, creg);
411 csr = __raw_readl(creg);
413 if (csr & AT91_UDP_TXPKTRDY)
417 total = req->req.length - req->req.actual;
418 if (ep->ep.maxpacket < total) {
419 count = ep->ep.maxpacket;
423 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
427 * Write the packet, maybe it's a ZLP.
429 * NOTE: incrementing req->actual before we receive the ACK means
430 * gadget driver IN bytecounts can be wrong in fault cases. That's
431 * fixable with PIO drivers like this one (save "count" here, and
432 * do the increment later on TX irq), but not for most DMA hardware.
434 * So all gadget drivers must accept that potential error. Some
435 * hardware supports precise fifo status reporting, letting them
436 * recover when the actual bytecount matters (e.g. for USB Test
437 * and Measurement Class devices).
439 __raw_writesb(dreg, req->req.buf + req->req.actual, count);
441 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
442 __raw_writel(csr, creg);
443 req->req.actual += count;
445 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
446 is_last ? " (done)" : "");
452 static void nuke(struct at91_ep *ep, int status)
454 struct at91_request *req;
456 // terminer chaque requete dans la queue
458 if (list_empty(&ep->queue))
461 VDBG("%s %s\n", __FUNCTION__, ep->ep.name);
462 while (!list_empty(&ep->queue)) {
463 req = list_entry(ep->queue.next, struct at91_request, queue);
464 done(ep, req, status);
468 /*-------------------------------------------------------------------------*/
470 static int at91_ep_enable(struct usb_ep *_ep,
471 const struct usb_endpoint_descriptor *desc)
473 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
474 struct at91_udc *dev = ep->udc;
481 || _ep->name == ep0name
482 || desc->bDescriptorType != USB_DT_ENDPOINT
483 || (maxpacket = le16_to_cpu(desc->wMaxPacketSize)) == 0
484 || maxpacket > ep->maxpacket) {
485 DBG("bad ep or descriptor\n");
489 if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
490 DBG("bogus device state\n");
494 tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
496 case USB_ENDPOINT_XFER_CONTROL:
497 DBG("only one control endpoint\n");
499 case USB_ENDPOINT_XFER_INT:
503 case USB_ENDPOINT_XFER_BULK:
512 DBG("bogus maxpacket %d\n", maxpacket);
514 case USB_ENDPOINT_XFER_ISOC:
515 if (!ep->is_pingpong) {
516 DBG("iso requires double buffering\n");
523 local_irq_save(flags);
525 /* initialize endpoint to match this descriptor */
526 ep->is_in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
527 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
532 tmp |= AT91_UDP_EPEDS;
533 __raw_writel(tmp, ep->creg);
536 ep->ep.maxpacket = maxpacket;
539 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
540 * since endpoint resets don't reset hw pingpong state.
542 at91_udp_write(dev, AT91_UDP_RST_EP, ep->int_mask);
543 at91_udp_write(dev, AT91_UDP_RST_EP, 0);
545 local_irq_restore(flags);
549 static int at91_ep_disable (struct usb_ep * _ep)
551 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
552 struct at91_udc *udc = ep->udc;
555 if (ep == &ep->udc->ep[0])
558 local_irq_save(flags);
560 nuke(ep, -ESHUTDOWN);
562 /* restore the endpoint's pristine config */
564 ep->ep.maxpacket = ep->maxpacket;
566 /* reset fifos and endpoint */
567 if (ep->udc->clocked) {
568 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
569 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
570 __raw_writel(0, ep->creg);
573 local_irq_restore(flags);
578 * this is a PIO-only driver, so there's nothing
579 * interesting for request or buffer allocation.
582 static struct usb_request *
583 at91_ep_alloc_request(struct usb_ep *_ep, unsigned int gfp_flags)
585 struct at91_request *req;
587 req = kzalloc(sizeof (struct at91_request), gfp_flags);
591 INIT_LIST_HEAD(&req->queue);
595 static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
597 struct at91_request *req;
599 req = container_of(_req, struct at91_request, req);
600 BUG_ON(!list_empty(&req->queue));
604 static int at91_ep_queue(struct usb_ep *_ep,
605 struct usb_request *_req, gfp_t gfp_flags)
607 struct at91_request *req;
609 struct at91_udc *dev;
613 req = container_of(_req, struct at91_request, req);
614 ep = container_of(_ep, struct at91_ep, ep);
616 if (!_req || !_req->complete
617 || !_req->buf || !list_empty(&req->queue)) {
618 DBG("invalid request\n");
622 if (!_ep || (!ep->desc && ep->ep.name != ep0name)) {
629 if (!dev || !dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
630 DBG("invalid device\n");
634 _req->status = -EINPROGRESS;
637 local_irq_save(flags);
639 /* try to kickstart any empty and idle queue */
640 if (list_empty(&ep->queue) && !ep->stopped) {
644 * If this control request has a non-empty DATA stage, this
645 * will start that stage. It works just like a non-control
646 * request (until the status stage starts, maybe early).
648 * If the data stage is empty, then this starts a successful
649 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
651 is_ep0 = (ep->ep.name == ep0name);
655 if (!dev->req_pending) {
661 * defer changing CONFG until after the gadget driver
662 * reconfigures the endpoints.
664 if (dev->wait_for_config_ack) {
665 tmp = at91_udp_read(dev, AT91_UDP_GLB_STAT);
666 tmp ^= AT91_UDP_CONFG;
667 VDBG("toggle config\n");
668 at91_udp_write(dev, AT91_UDP_GLB_STAT, tmp);
670 if (req->req.length == 0) {
672 PACKET("ep0 in/status\n");
674 tmp = __raw_readl(ep->creg);
676 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
677 __raw_writel(tmp, ep->creg);
678 dev->req_pending = 0;
684 status = write_fifo(ep, req);
686 status = read_fifo(ep, req);
688 /* IN/STATUS stage is otherwise triggered by irq */
689 if (status && is_ep0)
695 if (req && !status) {
696 list_add_tail (&req->queue, &ep->queue);
697 at91_udp_write(dev, AT91_UDP_IER, ep->int_mask);
700 local_irq_restore(flags);
701 return (status < 0) ? status : 0;
704 static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
707 struct at91_request *req;
709 ep = container_of(_ep, struct at91_ep, ep);
710 if (!_ep || ep->ep.name == ep0name)
713 /* make sure it's actually queued on this endpoint */
714 list_for_each_entry (req, &ep->queue, queue) {
715 if (&req->req == _req)
718 if (&req->req != _req)
721 done(ep, req, -ECONNRESET);
725 static int at91_ep_set_halt(struct usb_ep *_ep, int value)
727 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
728 struct at91_udc *udc = ep->udc;
734 if (!_ep || ep->is_iso || !ep->udc->clocked)
738 local_irq_save(flags);
740 csr = __raw_readl(creg);
743 * fail with still-busy IN endpoints, ensuring correct sequencing
744 * of data tx then stall. note that the fifo rx bytecount isn't
745 * completely accurate as a tx bytecount.
747 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
753 csr |= AT91_UDP_FORCESTALL;
754 VDBG("halt %s\n", ep->ep.name);
756 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
757 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
758 csr &= ~AT91_UDP_FORCESTALL;
760 __raw_writel(csr, creg);
763 local_irq_restore(flags);
767 static const struct usb_ep_ops at91_ep_ops = {
768 .enable = at91_ep_enable,
769 .disable = at91_ep_disable,
770 .alloc_request = at91_ep_alloc_request,
771 .free_request = at91_ep_free_request,
772 .queue = at91_ep_queue,
773 .dequeue = at91_ep_dequeue,
774 .set_halt = at91_ep_set_halt,
775 // there's only imprecise fifo status reporting
778 /*-------------------------------------------------------------------------*/
780 static int at91_get_frame(struct usb_gadget *gadget)
782 struct at91_udc *udc = to_udc(gadget);
784 if (!to_udc(gadget)->clocked)
786 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
789 static int at91_wakeup(struct usb_gadget *gadget)
791 struct at91_udc *udc = to_udc(gadget);
793 int status = -EINVAL;
796 DBG("%s\n", __FUNCTION__ );
797 local_irq_save(flags);
799 if (!udc->clocked || !udc->suspended)
802 /* NOTE: some "early versions" handle ESR differently ... */
804 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
805 if (!(glbstate & AT91_UDP_ESR))
807 glbstate |= AT91_UDP_ESR;
808 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
811 local_irq_restore(flags);
815 /* reinit == restore inital software state */
816 static void udc_reinit(struct at91_udc *udc)
820 INIT_LIST_HEAD(&udc->gadget.ep_list);
821 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
823 for (i = 0; i < NUM_ENDPOINTS; i++) {
824 struct at91_ep *ep = &udc->ep[i];
827 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
831 ep->ep.maxpacket = ep->maxpacket;
832 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
833 // initialiser une queue par endpoint
834 INIT_LIST_HEAD(&ep->queue);
838 static void stop_activity(struct at91_udc *udc)
840 struct usb_gadget_driver *driver = udc->driver;
843 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
845 udc->gadget.speed = USB_SPEED_UNKNOWN;
848 for (i = 0; i < NUM_ENDPOINTS; i++) {
849 struct at91_ep *ep = &udc->ep[i];
851 nuke(ep, -ESHUTDOWN);
854 driver->disconnect(&udc->gadget);
859 static void clk_on(struct at91_udc *udc)
864 clk_enable(udc->iclk);
865 clk_enable(udc->fclk);
868 static void clk_off(struct at91_udc *udc)
873 udc->gadget.speed = USB_SPEED_UNKNOWN;
874 clk_disable(udc->fclk);
875 clk_disable(udc->iclk);
879 * activate/deactivate link with host; minimize power usage for
880 * inactive links by cutting clocks and transceiver power.
882 static void pullup(struct at91_udc *udc, int is_on)
884 if (!udc->enabled || !udc->vbus)
886 DBG("%sactive\n", is_on ? "" : "in");
890 at91_udp_write(udc, AT91_UDP_TXVC, 0);
891 if (cpu_is_at91rm9200())
892 at91_set_gpio_value(udc->board.pullup_pin, 1);
893 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263()) {
894 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
896 txvc |= AT91_UDP_TXVC_PUON;
897 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
898 } else if (cpu_is_at91sam9261()) {
901 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
902 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
903 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
907 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
908 if (cpu_is_at91rm9200())
909 at91_set_gpio_value(udc->board.pullup_pin, 0);
910 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263()) {
911 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
913 txvc &= ~AT91_UDP_TXVC_PUON;
914 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
915 } else if (cpu_is_at91sam9261()) {
918 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
919 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
920 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
926 /* vbus is here! turn everything on that's ready */
927 static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
929 struct at91_udc *udc = to_udc(gadget);
932 // VDBG("vbus %s\n", is_active ? "on" : "off");
933 local_irq_save(flags);
934 udc->vbus = (is_active != 0);
936 pullup(udc, is_active);
939 local_irq_restore(flags);
943 static int at91_pullup(struct usb_gadget *gadget, int is_on)
945 struct at91_udc *udc = to_udc(gadget);
948 local_irq_save(flags);
949 udc->enabled = is_on = !!is_on;
951 local_irq_restore(flags);
955 static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
957 struct at91_udc *udc = to_udc(gadget);
960 local_irq_save(flags);
961 udc->selfpowered = (is_on != 0);
962 local_irq_restore(flags);
966 static const struct usb_gadget_ops at91_udc_ops = {
967 .get_frame = at91_get_frame,
968 .wakeup = at91_wakeup,
969 .set_selfpowered = at91_set_selfpowered,
970 .vbus_session = at91_vbus_session,
971 .pullup = at91_pullup,
974 * VBUS-powered devices may also also want to support bigger
975 * power budgets after an appropriate SET_CONFIGURATION.
977 // .vbus_power = at91_vbus_power,
980 /*-------------------------------------------------------------------------*/
982 static int handle_ep(struct at91_ep *ep)
984 struct at91_request *req;
985 u32 __iomem *creg = ep->creg;
986 u32 csr = __raw_readl(creg);
988 if (!list_empty(&ep->queue))
989 req = list_entry(ep->queue.next,
990 struct at91_request, queue);
995 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
997 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
998 __raw_writel(csr, creg);
1001 return write_fifo(ep, req);
1004 if (csr & AT91_UDP_STALLSENT) {
1005 /* STALLSENT bit == ISOERR */
1006 if (ep->is_iso && req)
1007 req->req.status = -EILSEQ;
1009 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1010 __raw_writel(csr, creg);
1011 csr = __raw_readl(creg);
1013 if (req && (csr & RX_DATA_READY))
1014 return read_fifo(ep, req);
1021 struct usb_ctrlrequest r;
1024 static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1026 u32 __iomem *creg = ep->creg;
1027 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1028 unsigned rxcount, i = 0;
1033 /* read and ack SETUP; hard-fail for bogus packets */
1034 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1035 if (likely(rxcount == 8)) {
1037 pkt.raw[i++] = __raw_readb(dreg);
1038 if (pkt.r.bRequestType & USB_DIR_IN) {
1039 csr |= AT91_UDP_DIR;
1042 csr &= ~AT91_UDP_DIR;
1046 // REVISIT this happens sometimes under load; why??
1047 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1051 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1052 __raw_writel(csr, creg);
1053 udc->wait_for_addr_ack = 0;
1054 udc->wait_for_config_ack = 0;
1056 if (unlikely(status != 0))
1059 #define w_index le16_to_cpu(pkt.r.wIndex)
1060 #define w_value le16_to_cpu(pkt.r.wValue)
1061 #define w_length le16_to_cpu(pkt.r.wLength)
1063 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1064 pkt.r.bRequestType, pkt.r.bRequest,
1065 w_value, w_index, w_length);
1068 * A few standard requests get handled here, ones that touch
1069 * hardware ... notably for device and endpoint features.
1071 udc->req_pending = 1;
1072 csr = __raw_readl(creg);
1075 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1077 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1078 | USB_REQ_SET_ADDRESS:
1079 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1080 udc->addr = w_value;
1081 udc->wait_for_addr_ack = 1;
1082 udc->req_pending = 0;
1083 /* FADDR is set later, when we ack host STATUS */
1086 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1087 | USB_REQ_SET_CONFIGURATION:
1088 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
1090 udc->wait_for_config_ack = (tmp == 0);
1092 udc->wait_for_config_ack = (tmp != 0);
1093 if (udc->wait_for_config_ack)
1094 VDBG("wait for config\n");
1095 /* CONFG is toggled later, if gadget driver succeeds */
1099 * Hosts may set or clear remote wakeup status, and
1100 * devices may report they're VBUS powered.
1102 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1103 | USB_REQ_GET_STATUS:
1104 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
1105 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
1106 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1107 PACKET("get device status\n");
1108 __raw_writeb(tmp, dreg);
1109 __raw_writeb(0, dreg);
1111 /* then STATUS starts later, automatically */
1112 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1113 | USB_REQ_SET_FEATURE:
1114 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1116 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1117 tmp |= AT91_UDP_ESR;
1118 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1120 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1121 | USB_REQ_CLEAR_FEATURE:
1122 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1124 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1125 tmp &= ~AT91_UDP_ESR;
1126 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1130 * Interfaces have no feature settings; this is pretty useless.
1131 * we won't even insist the interface exists...
1133 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1134 | USB_REQ_GET_STATUS:
1135 PACKET("get interface status\n");
1136 __raw_writeb(0, dreg);
1137 __raw_writeb(0, dreg);
1139 /* then STATUS starts later, automatically */
1140 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1141 | USB_REQ_SET_FEATURE:
1142 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1143 | USB_REQ_CLEAR_FEATURE:
1147 * Hosts may clear bulk/intr endpoint halt after the gadget
1148 * driver sets it (not widely used); or set it (for testing)
1150 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1151 | USB_REQ_GET_STATUS:
1152 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1154 if (tmp > NUM_ENDPOINTS || (tmp && !ep->desc))
1158 if ((w_index & USB_DIR_IN)) {
1161 } else if (ep->is_in)
1164 PACKET("get %s status\n", ep->ep.name);
1165 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1166 tmp = (1 << USB_ENDPOINT_HALT);
1169 __raw_writeb(tmp, dreg);
1170 __raw_writeb(0, dreg);
1172 /* then STATUS starts later, automatically */
1173 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1174 | USB_REQ_SET_FEATURE:
1175 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1177 if (w_value != USB_ENDPOINT_HALT || tmp > NUM_ENDPOINTS)
1179 if (!ep->desc || ep->is_iso)
1181 if ((w_index & USB_DIR_IN)) {
1184 } else if (ep->is_in)
1187 tmp = __raw_readl(ep->creg);
1189 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1190 __raw_writel(tmp, ep->creg);
1192 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1193 | USB_REQ_CLEAR_FEATURE:
1194 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1196 if (w_value != USB_ENDPOINT_HALT || tmp > NUM_ENDPOINTS)
1200 if (!ep->desc || ep->is_iso)
1202 if ((w_index & USB_DIR_IN)) {
1205 } else if (ep->is_in)
1208 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1209 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
1210 tmp = __raw_readl(ep->creg);
1212 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1213 __raw_writel(tmp, ep->creg);
1214 if (!list_empty(&ep->queue))
1223 /* pass request up to the gadget driver */
1225 status = udc->driver->setup(&udc->gadget, &pkt.r);
1230 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1231 pkt.r.bRequestType, pkt.r.bRequest, status);
1232 csr |= AT91_UDP_FORCESTALL;
1233 __raw_writel(csr, creg);
1234 udc->req_pending = 0;
1239 /* immediate successful (IN) STATUS after zero length DATA */
1240 PACKET("ep0 in/status\n");
1242 csr |= AT91_UDP_TXPKTRDY;
1243 __raw_writel(csr, creg);
1244 udc->req_pending = 0;
1248 static void handle_ep0(struct at91_udc *udc)
1250 struct at91_ep *ep0 = &udc->ep[0];
1251 u32 __iomem *creg = ep0->creg;
1252 u32 csr = __raw_readl(creg);
1253 struct at91_request *req;
1255 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1257 udc->req_pending = 0;
1259 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1260 __raw_writel(csr, creg);
1261 VDBG("ep0 stalled\n");
1262 csr = __raw_readl(creg);
1264 if (csr & AT91_UDP_RXSETUP) {
1266 udc->req_pending = 0;
1267 handle_setup(udc, ep0, csr);
1271 if (list_empty(&ep0->queue))
1274 req = list_entry(ep0->queue.next, struct at91_request, queue);
1276 /* host ACKed an IN packet that we sent */
1277 if (csr & AT91_UDP_TXCOMP) {
1279 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1281 /* write more IN DATA? */
1282 if (req && ep0->is_in) {
1284 udc->req_pending = 0;
1288 * - last IN DATA packet (including GET_STATUS)
1289 * - IN/STATUS for OUT DATA
1290 * - IN/STATUS for any zero-length DATA stage
1291 * except for the IN DATA case, the host should send
1292 * an OUT status later, which we'll ack.
1295 udc->req_pending = 0;
1296 __raw_writel(csr, creg);
1299 * SET_ADDRESS takes effect only after the STATUS
1300 * (to the original address) gets acked.
1302 if (udc->wait_for_addr_ack) {
1305 at91_udp_write(udc, AT91_UDP_FADDR,
1306 AT91_UDP_FEN | udc->addr);
1307 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1308 tmp &= ~AT91_UDP_FADDEN;
1310 tmp |= AT91_UDP_FADDEN;
1311 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1313 udc->wait_for_addr_ack = 0;
1314 VDBG("address %d\n", udc->addr);
1319 /* OUT packet arrived ... */
1320 else if (csr & AT91_UDP_RX_DATA_BK0) {
1322 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1324 /* OUT DATA stage */
1327 if (handle_ep(ep0)) {
1328 /* send IN/STATUS */
1329 PACKET("ep0 in/status\n");
1330 csr = __raw_readl(creg);
1332 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1333 __raw_writel(csr, creg);
1334 udc->req_pending = 0;
1336 } else if (udc->req_pending) {
1338 * AT91 hardware has a hard time with this
1339 * "deferred response" mode for control-OUT
1340 * transfers. (For control-IN it's fine.)
1342 * The normal solution leaves OUT data in the
1343 * fifo until the gadget driver is ready.
1344 * We couldn't do that here without disabling
1345 * the IRQ that tells about SETUP packets,
1346 * e.g. when the host gets impatient...
1348 * Working around it by copying into a buffer
1349 * would almost be a non-deferred response,
1350 * except that it wouldn't permit reliable
1351 * stalling of the request. Instead, demand
1352 * that gadget drivers not use this mode.
1354 DBG("no control-OUT deferred responses!\n");
1355 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1356 udc->req_pending = 0;
1359 /* STATUS stage for control-IN; ack. */
1361 PACKET("ep0 out/status ACK\n");
1362 __raw_writel(csr, creg);
1364 /* "early" status stage */
1371 static irqreturn_t at91_udc_irq (int irq, void *_udc)
1373 struct at91_udc *udc = _udc;
1379 status = at91_udp_read(udc, AT91_UDP_ISR)
1380 & at91_udp_read(udc, AT91_UDP_IMR);
1384 /* USB reset irq: not maskable */
1385 if (status & AT91_UDP_ENDBUSRES) {
1386 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1387 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
1388 /* Atmel code clears this irq twice */
1389 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1390 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1391 VDBG("end bus reset\n");
1396 at91_udp_write(udc, AT91_UDP_CSR(0),
1397 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
1398 udc->gadget.speed = USB_SPEED_FULL;
1400 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
1403 * NOTE: this driver keeps clocks off unless the
1404 * USB host is present. That saves power, but for
1405 * boards that don't support VBUS detection, both
1406 * clocks need to be active most of the time.
1409 /* host initiated suspend (3+ms bus idle) */
1410 } else if (status & AT91_UDP_RXSUSP) {
1411 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1412 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1413 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
1414 // VDBG("bus suspend\n");
1420 * NOTE: when suspending a VBUS-powered device, the
1421 * gadget driver should switch into slow clock mode
1422 * and then into standby to avoid drawing more than
1423 * 500uA power (2500uA for some high-power configs).
1425 if (udc->driver && udc->driver->suspend)
1426 udc->driver->suspend(&udc->gadget);
1428 /* host initiated resume */
1429 } else if (status & AT91_UDP_RXRSM) {
1430 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1431 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1432 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
1433 // VDBG("bus resume\n");
1434 if (!udc->suspended)
1439 * NOTE: for a VBUS-powered device, the gadget driver
1440 * would normally want to switch out of slow clock
1441 * mode into normal mode.
1443 if (udc->driver && udc->driver->resume)
1444 udc->driver->resume(&udc->gadget);
1446 /* endpoint IRQs are cleared by handling them */
1450 struct at91_ep *ep = &udc->ep[1];
1454 for (i = 1; i < NUM_ENDPOINTS; i++) {
1466 /*-------------------------------------------------------------------------*/
1468 static void nop_release(struct device *dev)
1470 /* nothing to free */
1473 static struct at91_udc controller = {
1475 .ops = &at91_udc_ops,
1476 .ep0 = &controller.ep[0].ep,
1477 .name = driver_name,
1480 .release = nop_release,
1486 .ops = &at91_ep_ops,
1495 .ops = &at91_ep_ops,
1505 .ops = &at91_ep_ops,
1514 /* could actually do bulk too */
1516 .ops = &at91_ep_ops,
1525 .ops = &at91_ep_ops,
1535 .ops = &at91_ep_ops,
1542 /* ep6 and ep7 are also reserved (custom silicon might use them) */
1545 static irqreturn_t at91_vbus_irq(int irq, void *_udc)
1547 struct at91_udc *udc = _udc;
1550 /* vbus needs at least brief debouncing */
1552 value = at91_get_gpio_value(udc->board.vbus_pin);
1553 if (value != udc->vbus)
1554 at91_vbus_session(&udc->gadget, value);
1559 int usb_gadget_register_driver (struct usb_gadget_driver *driver)
1561 struct at91_udc *udc = &controller;
1565 || driver->speed < USB_SPEED_FULL
1567 || !driver->setup) {
1568 DBG("bad parameter.\n");
1573 DBG("UDC already has a gadget driver\n");
1577 udc->driver = driver;
1578 udc->gadget.dev.driver = &driver->driver;
1579 udc->gadget.dev.driver_data = &driver->driver;
1581 udc->selfpowered = 1;
1583 retval = driver->bind(&udc->gadget);
1585 DBG("driver->bind() returned %d\n", retval);
1587 udc->gadget.dev.driver = NULL;
1588 udc->gadget.dev.driver_data = NULL;
1590 udc->selfpowered = 0;
1594 local_irq_disable();
1598 DBG("bound to %s\n", driver->driver.name);
1601 EXPORT_SYMBOL (usb_gadget_register_driver);
1603 int usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
1605 struct at91_udc *udc = &controller;
1607 if (!driver || driver != udc->driver || !driver->unbind)
1610 local_irq_disable();
1612 at91_udp_write(udc, AT91_UDP_IDR, ~0);
1616 driver->unbind(&udc->gadget);
1619 DBG("unbound from %s\n", driver->driver.name);
1622 EXPORT_SYMBOL (usb_gadget_unregister_driver);
1624 /*-------------------------------------------------------------------------*/
1626 static void at91udc_shutdown(struct platform_device *dev)
1628 /* force disconnect on reboot */
1629 pullup(platform_get_drvdata(dev), 0);
1632 static int __init at91udc_probe(struct platform_device *pdev)
1634 struct device *dev = &pdev->dev;
1635 struct at91_udc *udc;
1637 struct resource *res;
1639 if (!dev->platform_data) {
1640 /* small (so we copy it) but critical! */
1641 DBG("missing platform_data\n");
1645 if (pdev->num_resources != 2) {
1646 DBG("invalid num_resources");
1649 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1650 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
1651 DBG("invalid resource type");
1655 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1659 if (!request_mem_region(res->start,
1660 res->end - res->start + 1,
1662 DBG("someone's using UDC memory\n");
1666 /* init software state */
1668 udc->gadget.dev.parent = dev;
1669 udc->board = *(struct at91_udc_data *) dev->platform_data;
1673 udc->udp_baseaddr = ioremap(res->start, res->end - res->start + 1);
1674 if (!udc->udp_baseaddr) {
1675 release_mem_region(res->start, res->end - res->start + 1);
1681 /* get interface and function clocks */
1682 udc->iclk = clk_get(dev, "udc_clk");
1683 udc->fclk = clk_get(dev, "udpck");
1684 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1685 DBG("clocks missing\n");
1690 retval = device_register(&udc->gadget.dev);
1694 /* don't do anything until we have both gadget driver and VBUS */
1695 clk_enable(udc->iclk);
1696 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1697 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
1698 /* Clear all pending interrupts - UDP may be used by bootloader. */
1699 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
1700 clk_disable(udc->iclk);
1702 /* request UDC and maybe VBUS irqs */
1703 udc->udp_irq = platform_get_irq(pdev, 0);
1704 if (request_irq(udc->udp_irq, at91_udc_irq,
1705 IRQF_DISABLED, driver_name, udc)) {
1706 DBG("request irq %d failed\n", udc->udp_irq);
1710 if (udc->board.vbus_pin > 0) {
1712 * Get the initial state of VBUS - we cannot expect
1713 * a pending interrupt.
1715 udc->vbus = at91_get_gpio_value(udc->board.vbus_pin);
1716 if (request_irq(udc->board.vbus_pin, at91_vbus_irq,
1717 IRQF_DISABLED, driver_name, udc)) {
1718 DBG("request vbus irq %d failed\n",
1719 udc->board.vbus_pin);
1720 free_irq(udc->udp_irq, udc);
1725 DBG("no VBUS detection, assuming always-on\n");
1728 dev_set_drvdata(dev, udc);
1729 device_init_wakeup(dev, 1);
1730 create_debug_file(udc);
1732 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1736 device_unregister(&udc->gadget.dev);
1738 release_mem_region(res->start, res->end - res->start + 1);
1739 DBG("%s probe failed, %d\n", driver_name, retval);
1743 static int __exit at91udc_remove(struct platform_device *pdev)
1745 struct at91_udc *udc = platform_get_drvdata(pdev);
1746 struct resource *res;
1755 device_init_wakeup(&pdev->dev, 0);
1756 remove_debug_file(udc);
1757 if (udc->board.vbus_pin > 0)
1758 free_irq(udc->board.vbus_pin, udc);
1759 free_irq(udc->udp_irq, udc);
1760 device_unregister(&udc->gadget.dev);
1762 iounmap(udc->udp_baseaddr);
1763 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1764 release_mem_region(res->start, res->end - res->start + 1);
1773 static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
1775 struct at91_udc *udc = platform_get_drvdata(pdev);
1776 int wake = udc->driver && device_may_wakeup(&pdev->dev);
1778 /* Unless we can act normally to the host (letting it wake us up
1779 * whenever it has work for us) force disconnect. Wakeup requires
1780 * PLLB for USB events (signaling for reset, wakeup, or incoming
1781 * tokens) and VBUS irqs (on systems which support them).
1783 if ((!udc->suspended && udc->addr)
1785 || at91_suspend_entering_slow_clock()) {
1789 enable_irq_wake(udc->udp_irq);
1791 udc->active_suspend = wake;
1792 if (udc->board.vbus_pin > 0 && wake)
1793 enable_irq_wake(udc->board.vbus_pin);
1797 static int at91udc_resume(struct platform_device *pdev)
1799 struct at91_udc *udc = platform_get_drvdata(pdev);
1801 if (udc->board.vbus_pin > 0 && udc->active_suspend)
1802 disable_irq_wake(udc->board.vbus_pin);
1804 /* maybe reconnect to host; if so, clocks on */
1805 if (udc->active_suspend)
1806 disable_irq_wake(udc->udp_irq);
1812 #define at91udc_suspend NULL
1813 #define at91udc_resume NULL
1816 static struct platform_driver at91_udc_driver = {
1817 .remove = __exit_p(at91udc_remove),
1818 .shutdown = at91udc_shutdown,
1819 .suspend = at91udc_suspend,
1820 .resume = at91udc_resume,
1822 .name = (char *) driver_name,
1823 .owner = THIS_MODULE,
1827 static int __init udc_init_module(void)
1829 return platform_driver_probe(&at91_udc_driver, at91udc_probe);
1831 module_init(udc_init_module);
1833 static void __exit udc_exit_module(void)
1835 platform_driver_unregister(&at91_udc_driver);
1837 module_exit(udc_exit_module);
1839 MODULE_DESCRIPTION("AT91 udc driver");
1840 MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1841 MODULE_LICENSE("GPL");