2 * omap_udc.c -- for OMAP full speed udc; most chips support OTG.
4 * Copyright (C) 2004 Texas Instruments, Inc.
5 * Copyright (C) 2004-2005 David Brownell
7 * OMAP2 & DMA support by Kyungmin Park <kyungmin.park@samsung.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/ioport.h>
30 #include <linux/types.h>
31 #include <linux/errno.h>
32 #include <linux/delay.h>
33 #include <linux/slab.h>
34 #include <linux/init.h>
35 #include <linux/timer.h>
36 #include <linux/list.h>
37 #include <linux/interrupt.h>
38 #include <linux/proc_fs.h>
40 #include <linux/moduleparam.h>
41 #include <linux/platform_device.h>
42 #include <linux/usb/ch9.h>
43 #include <linux/usb/gadget.h>
44 #include <linux/usb/otg.h>
45 #include <linux/dma-mapping.h>
46 #include <linux/clk.h>
48 #include <asm/byteorder.h>
51 #include <asm/system.h>
52 #include <asm/unaligned.h>
53 #include <asm/mach-types.h>
55 #include <asm/arch/dma.h>
56 #include <asm/arch/usb.h>
62 /* bulk DMA seems to be behaving for both IN and OUT */
68 #define DRIVER_DESC "OMAP UDC driver"
69 #define DRIVER_VERSION "4 October 2004"
71 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
73 #define OMAP2_DMA_CH(ch) (((ch) - 1) << 1)
74 #define OMAP24XX_DMA(name, ch) (OMAP24XX_DMA_##name + OMAP2_DMA_CH(ch))
77 * The OMAP UDC needs _very_ early endpoint setup: before enabling the
78 * D+ pullup to allow enumeration. That's too early for the gadget
79 * framework to use from usb_endpoint_enable(), which happens after
80 * enumeration as part of activating an interface. (But if we add an
81 * optional new "UDC not yet running" state to the gadget driver model,
82 * even just during driver binding, the endpoint autoconfig logic is the
83 * natural spot to manufacture new endpoints.)
85 * So instead of using endpoint enable calls to control the hardware setup,
86 * this driver defines a "fifo mode" parameter. It's used during driver
87 * initialization to choose among a set of pre-defined endpoint configs.
88 * See omap_udc_setup() for available modes, or to add others. That code
89 * lives in an init section, so use this driver as a module if you need
90 * to change the fifo mode after the kernel boots.
92 * Gadget drivers normally ignore endpoints they don't care about, and
93 * won't include them in configuration descriptors. That means only
94 * misbehaving hosts would even notice they exist.
97 static unsigned fifo_mode = 3;
99 static unsigned fifo_mode = 0;
102 /* "modprobe omap_udc fifo_mode=42", or else as a kernel
103 * boot parameter "omap_udc:fifo_mode=42"
105 module_param (fifo_mode, uint, 0);
106 MODULE_PARM_DESC (fifo_mode, "endpoint configuration");
109 static unsigned use_dma = 1;
111 /* "modprobe omap_udc use_dma=y", or else as a kernel
112 * boot parameter "omap_udc:use_dma=y"
114 module_param (use_dma, bool, 0);
115 MODULE_PARM_DESC (use_dma, "enable/disable DMA");
118 /* save a bit of code */
120 #endif /* !USE_DMA */
123 static const char driver_name [] = "omap_udc";
124 static const char driver_desc [] = DRIVER_DESC;
126 /*-------------------------------------------------------------------------*/
128 /* there's a notion of "current endpoint" for modifying endpoint
129 * state, and PIO access to its FIFO.
132 static void use_ep(struct omap_ep *ep, u16 select)
134 u16 num = ep->bEndpointAddress & 0x0f;
136 if (ep->bEndpointAddress & USB_DIR_IN)
138 UDC_EP_NUM_REG = num | select;
139 /* when select, MUST deselect later !! */
142 static inline void deselect_ep(void)
144 UDC_EP_NUM_REG &= ~UDC_EP_SEL;
145 /* 6 wait states before TX will happen */
148 static void dma_channel_claim(struct omap_ep *ep, unsigned preferred);
150 /*-------------------------------------------------------------------------*/
152 static int omap_ep_enable(struct usb_ep *_ep,
153 const struct usb_endpoint_descriptor *desc)
155 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
156 struct omap_udc *udc;
160 /* catch various bogus parameters */
161 if (!_ep || !desc || ep->desc
162 || desc->bDescriptorType != USB_DT_ENDPOINT
163 || ep->bEndpointAddress != desc->bEndpointAddress
164 || ep->maxpacket < le16_to_cpu
165 (desc->wMaxPacketSize)) {
166 DBG("%s, bad ep or descriptor\n", __func__);
169 maxp = le16_to_cpu (desc->wMaxPacketSize);
170 if ((desc->bmAttributes == USB_ENDPOINT_XFER_BULK
171 && maxp != ep->maxpacket)
172 || le16_to_cpu(desc->wMaxPacketSize) > ep->maxpacket
173 || !desc->wMaxPacketSize) {
174 DBG("%s, bad %s maxpacket\n", __func__, _ep->name);
179 if ((desc->bmAttributes == USB_ENDPOINT_XFER_ISOC
180 && desc->bInterval != 1)) {
181 /* hardware wants period = 1; USB allows 2^(Interval-1) */
182 DBG("%s, unsupported ISO period %dms\n", _ep->name,
183 1 << (desc->bInterval - 1));
187 if (desc->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
188 DBG("%s, ISO nyet\n", _ep->name);
193 /* xfer types must match, except that interrupt ~= bulk */
194 if (ep->bmAttributes != desc->bmAttributes
195 && ep->bmAttributes != USB_ENDPOINT_XFER_BULK
196 && desc->bmAttributes != USB_ENDPOINT_XFER_INT) {
197 DBG("%s, %s type mismatch\n", __func__, _ep->name);
202 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
203 DBG("%s, bogus device state\n", __func__);
207 spin_lock_irqsave(&udc->lock, flags);
212 ep->ep.maxpacket = maxp;
214 /* set endpoint to initial state */
218 use_ep(ep, UDC_EP_SEL);
219 UDC_CTRL_REG = udc->clr_halt;
223 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
224 list_add(&ep->iso, &udc->iso);
226 /* maybe assign a DMA channel to this endpoint */
227 if (use_dma && desc->bmAttributes == USB_ENDPOINT_XFER_BULK)
228 /* FIXME ISO can dma, but prefers first channel */
229 dma_channel_claim(ep, 0);
231 /* PIO OUT may RX packets */
232 if (desc->bmAttributes != USB_ENDPOINT_XFER_ISOC
234 && !(ep->bEndpointAddress & USB_DIR_IN)) {
235 UDC_CTRL_REG = UDC_SET_FIFO_EN;
236 ep->ackwait = 1 + ep->double_buf;
239 spin_unlock_irqrestore(&udc->lock, flags);
240 VDBG("%s enabled\n", _ep->name);
244 static void nuke(struct omap_ep *, int status);
246 static int omap_ep_disable(struct usb_ep *_ep)
248 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
251 if (!_ep || !ep->desc) {
252 DBG("%s, %s not enabled\n", __func__,
253 _ep ? ep->ep.name : NULL);
257 spin_lock_irqsave(&ep->udc->lock, flags);
259 nuke (ep, -ESHUTDOWN);
260 ep->ep.maxpacket = ep->maxpacket;
262 UDC_CTRL_REG = UDC_SET_HALT;
263 list_del_init(&ep->iso);
264 del_timer(&ep->timer);
266 spin_unlock_irqrestore(&ep->udc->lock, flags);
268 VDBG("%s disabled\n", _ep->name);
272 /*-------------------------------------------------------------------------*/
274 static struct usb_request *
275 omap_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
277 struct omap_req *req;
279 req = kzalloc(sizeof(*req), gfp_flags);
281 req->req.dma = DMA_ADDR_INVALID;
282 INIT_LIST_HEAD (&req->queue);
288 omap_free_request(struct usb_ep *ep, struct usb_request *_req)
290 struct omap_req *req = container_of(_req, struct omap_req, req);
296 /*-------------------------------------------------------------------------*/
299 done(struct omap_ep *ep, struct omap_req *req, int status)
301 unsigned stopped = ep->stopped;
303 list_del_init(&req->queue);
305 if (req->req.status == -EINPROGRESS)
306 req->req.status = status;
308 status = req->req.status;
310 if (use_dma && ep->has_dma) {
312 dma_unmap_single(ep->udc->gadget.dev.parent,
313 req->req.dma, req->req.length,
314 (ep->bEndpointAddress & USB_DIR_IN)
317 req->req.dma = DMA_ADDR_INVALID;
320 dma_sync_single_for_cpu(ep->udc->gadget.dev.parent,
321 req->req.dma, req->req.length,
322 (ep->bEndpointAddress & USB_DIR_IN)
328 if (status && status != -ESHUTDOWN)
330 VDBG("complete %s req %p stat %d len %u/%u\n",
331 ep->ep.name, &req->req, status,
332 req->req.actual, req->req.length);
334 /* don't modify queue heads during completion callback */
336 spin_unlock(&ep->udc->lock);
337 req->req.complete(&ep->ep, &req->req);
338 spin_lock(&ep->udc->lock);
339 ep->stopped = stopped;
342 /*-------------------------------------------------------------------------*/
344 #define UDC_FIFO_FULL (UDC_NON_ISO_FIFO_FULL | UDC_ISO_FIFO_FULL)
345 #define UDC_FIFO_UNWRITABLE (UDC_EP_HALTED | UDC_FIFO_FULL)
347 #define FIFO_EMPTY (UDC_NON_ISO_FIFO_EMPTY | UDC_ISO_FIFO_EMPTY)
348 #define FIFO_UNREADABLE (UDC_EP_HALTED | FIFO_EMPTY)
351 write_packet(u8 *buf, struct omap_req *req, unsigned max)
356 len = min(req->req.length - req->req.actual, max);
357 req->req.actual += len;
360 if (likely((((int)buf) & 1) == 0)) {
363 UDC_DATA_REG = *wp++;
369 *(volatile u8 *)&UDC_DATA_REG = *buf++;
373 // FIXME change r/w fifo calling convention
376 // return: 0 = still running, 1 = completed, negative = errno
377 static int write_fifo(struct omap_ep *ep, struct omap_req *req)
384 buf = req->req.buf + req->req.actual;
387 /* PIO-IN isn't double buffered except for iso */
388 ep_stat = UDC_STAT_FLG_REG;
389 if (ep_stat & UDC_FIFO_UNWRITABLE)
392 count = ep->ep.maxpacket;
393 count = write_packet(buf, req, count);
394 UDC_CTRL_REG = UDC_SET_FIFO_EN;
397 /* last packet is often short (sometimes a zlp) */
398 if (count != ep->ep.maxpacket)
400 else if (req->req.length == req->req.actual
406 /* NOTE: requests complete when all IN data is in a
407 * FIFO (or sometimes later, if a zlp was needed).
408 * Use usb_ep_fifo_status() where needed.
416 read_packet(u8 *buf, struct omap_req *req, unsigned avail)
421 len = min(req->req.length - req->req.actual, avail);
422 req->req.actual += len;
425 if (likely((((int)buf) & 1) == 0)) {
428 *wp++ = UDC_DATA_REG;
434 *buf++ = *(volatile u8 *)&UDC_DATA_REG;
438 // return: 0 = still running, 1 = queue empty, negative = errno
439 static int read_fifo(struct omap_ep *ep, struct omap_req *req)
442 unsigned count, avail;
445 buf = req->req.buf + req->req.actual;
449 u16 ep_stat = UDC_STAT_FLG_REG;
452 if (ep_stat & FIFO_EMPTY) {
457 if (ep_stat & UDC_EP_HALTED)
460 if (ep_stat & UDC_FIFO_FULL)
461 avail = ep->ep.maxpacket;
463 avail = UDC_RXFSTAT_REG;
464 ep->fnf = ep->double_buf;
466 count = read_packet(buf, req, avail);
468 /* partial packet reads may not be errors */
469 if (count < ep->ep.maxpacket) {
471 /* overflowed this request? flush extra data */
472 if (count != avail) {
473 req->req.status = -EOVERFLOW;
476 (void) *(volatile u8 *)&UDC_DATA_REG;
478 } else if (req->req.length == req->req.actual)
483 if (!ep->bEndpointAddress)
492 /*-------------------------------------------------------------------------*/
494 static inline dma_addr_t dma_csac(unsigned lch)
498 /* omap 3.2/3.3 erratum: sometimes 0 is returned if CSAC/CDAC is
499 * read before the DMA controller finished disabling the channel.
501 csac = OMAP_DMA_CSAC_REG(lch);
503 csac = OMAP_DMA_CSAC_REG(lch);
507 static inline dma_addr_t dma_cdac(unsigned lch)
511 /* omap 3.2/3.3 erratum: sometimes 0 is returned if CSAC/CDAC is
512 * read before the DMA controller finished disabling the channel.
514 cdac = OMAP_DMA_CDAC_REG(lch);
516 cdac = OMAP_DMA_CDAC_REG(lch);
520 static u16 dma_src_len(struct omap_ep *ep, dma_addr_t start)
524 /* IN-DMA needs this on fault/cancel paths, so 15xx misreports
525 * the last transfer's bytecount by more than a FIFO's worth.
527 if (cpu_is_omap15xx())
530 end = dma_csac(ep->lch);
531 if (end == ep->dma_counter)
534 end |= start & (0xffff << 16);
540 #define DMA_DEST_LAST(x) (cpu_is_omap15xx() \
541 ? OMAP_DMA_CSAC_REG(x) /* really: CPC */ \
544 static u16 dma_dest_len(struct omap_ep *ep, dma_addr_t start)
548 end = DMA_DEST_LAST(ep->lch);
549 if (end == ep->dma_counter)
552 end |= start & (0xffff << 16);
553 if (cpu_is_omap15xx())
561 /* Each USB transfer request using DMA maps to one or more DMA transfers.
562 * When DMA completion isn't request completion, the UDC continues with
563 * the next DMA transfer for that USB transfer.
566 static void next_in_dma(struct omap_ep *ep, struct omap_req *req)
569 unsigned length = req->req.length - req->req.actual;
570 const int sync_mode = cpu_is_omap15xx()
571 ? OMAP_DMA_SYNC_FRAME
572 : OMAP_DMA_SYNC_ELEMENT;
575 if (cpu_is_omap24xx())
576 dma_trigger = OMAP24XX_DMA(USB_W2FC_TX0, ep->dma_channel);
578 /* measure length in either bytes or packets */
579 if ((cpu_is_omap16xx() && length <= UDC_TXN_TSC)
580 || (cpu_is_omap24xx() && length < ep->maxpacket)
581 || (cpu_is_omap15xx() && length < ep->maxpacket)) {
582 txdma_ctrl = UDC_TXN_EOT | length;
583 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S8,
584 length, 1, sync_mode, dma_trigger, 0);
586 length = min(length / ep->maxpacket,
587 (unsigned) UDC_TXN_TSC + 1);
589 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S16,
590 ep->ep.maxpacket >> 1, length, sync_mode,
592 length *= ep->maxpacket;
594 omap_set_dma_src_params(ep->lch, OMAP_DMA_PORT_EMIFF,
595 OMAP_DMA_AMODE_POST_INC, req->req.dma + req->req.actual,
598 omap_start_dma(ep->lch);
599 ep->dma_counter = dma_csac(ep->lch);
600 UDC_DMA_IRQ_EN_REG |= UDC_TX_DONE_IE(ep->dma_channel);
601 UDC_TXDMA_REG(ep->dma_channel) = UDC_TXN_START | txdma_ctrl;
602 req->dma_bytes = length;
605 static void finish_in_dma(struct omap_ep *ep, struct omap_req *req, int status)
608 req->req.actual += req->dma_bytes;
610 /* return if this request needs to send data or zlp */
611 if (req->req.actual < req->req.length)
614 && req->dma_bytes != 0
615 && (req->req.actual % ep->maxpacket) == 0)
618 req->req.actual += dma_src_len(ep, req->req.dma
622 omap_stop_dma(ep->lch);
623 UDC_DMA_IRQ_EN_REG &= ~UDC_TX_DONE_IE(ep->dma_channel);
624 done(ep, req, status);
627 static void next_out_dma(struct omap_ep *ep, struct omap_req *req)
629 unsigned packets = req->req.length - req->req.actual;
632 if (cpu_is_omap24xx())
633 dma_trigger = OMAP24XX_DMA(USB_W2FC_RX0, ep->dma_channel);
635 /* NOTE: we filtered out "short reads" before, so we know
636 * the buffer has only whole numbers of packets.
637 * except MODE SELECT(6) sent the 24 bytes data in OMAP24XX DMA mode
639 if (cpu_is_omap24xx() && packets < ep->maxpacket) {
640 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S8,
641 packets, 1, OMAP_DMA_SYNC_ELEMENT,
643 req->dma_bytes = packets;
645 /* set up this DMA transfer, enable the fifo, start */
646 packets /= ep->ep.maxpacket;
647 packets = min(packets, (unsigned)UDC_RXN_TC + 1);
648 req->dma_bytes = packets * ep->ep.maxpacket;
649 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S16,
650 ep->ep.maxpacket >> 1, packets,
651 OMAP_DMA_SYNC_ELEMENT,
654 omap_set_dma_dest_params(ep->lch, OMAP_DMA_PORT_EMIFF,
655 OMAP_DMA_AMODE_POST_INC, req->req.dma + req->req.actual,
657 ep->dma_counter = DMA_DEST_LAST(ep->lch);
659 UDC_RXDMA_REG(ep->dma_channel) = UDC_RXN_STOP | (packets - 1);
660 UDC_DMA_IRQ_EN_REG |= UDC_RX_EOT_IE(ep->dma_channel);
661 UDC_EP_NUM_REG = (ep->bEndpointAddress & 0xf);
662 UDC_CTRL_REG = UDC_SET_FIFO_EN;
664 omap_start_dma(ep->lch);
668 finish_out_dma(struct omap_ep *ep, struct omap_req *req, int status, int one)
673 ep->dma_counter = (u16) (req->req.dma + req->req.actual);
674 count = dma_dest_len(ep, req->req.dma + req->req.actual);
675 count += req->req.actual;
678 if (count <= req->req.length)
679 req->req.actual = count;
681 if (count != req->dma_bytes || status)
682 omap_stop_dma(ep->lch);
684 /* if this wasn't short, request may need another transfer */
685 else if (req->req.actual < req->req.length)
689 UDC_DMA_IRQ_EN_REG &= ~UDC_RX_EOT_IE(ep->dma_channel);
690 done(ep, req, status);
693 static void dma_irq(struct omap_udc *udc, u16 irq_src)
695 u16 dman_stat = UDC_DMAN_STAT_REG;
697 struct omap_req *req;
699 /* IN dma: tx to host */
700 if (irq_src & UDC_TXN_DONE) {
701 ep = &udc->ep[16 + UDC_DMA_TX_SRC(dman_stat)];
703 /* can see TXN_DONE after dma abort */
704 if (!list_empty(&ep->queue)) {
705 req = container_of(ep->queue.next,
706 struct omap_req, queue);
707 finish_in_dma(ep, req, 0);
709 UDC_IRQ_SRC_REG = UDC_TXN_DONE;
711 if (!list_empty (&ep->queue)) {
712 req = container_of(ep->queue.next,
713 struct omap_req, queue);
714 next_in_dma(ep, req);
718 /* OUT dma: rx from host */
719 if (irq_src & UDC_RXN_EOT) {
720 ep = &udc->ep[UDC_DMA_RX_SRC(dman_stat)];
722 /* can see RXN_EOT after dma abort */
723 if (!list_empty(&ep->queue)) {
724 req = container_of(ep->queue.next,
725 struct omap_req, queue);
726 finish_out_dma(ep, req, 0, dman_stat & UDC_DMA_RX_SB);
728 UDC_IRQ_SRC_REG = UDC_RXN_EOT;
730 if (!list_empty (&ep->queue)) {
731 req = container_of(ep->queue.next,
732 struct omap_req, queue);
733 next_out_dma(ep, req);
737 if (irq_src & UDC_RXN_CNT) {
738 ep = &udc->ep[UDC_DMA_RX_SRC(dman_stat)];
740 /* omap15xx does this unasked... */
741 VDBG("%s, RX_CNT irq?\n", ep->ep.name);
742 UDC_IRQ_SRC_REG = UDC_RXN_CNT;
746 static void dma_error(int lch, u16 ch_status, void *data)
748 struct omap_ep *ep = data;
750 /* if ch_status & OMAP_DMA_DROP_IRQ ... */
751 /* if ch_status & OMAP1_DMA_TOUT_IRQ ... */
752 ERR("%s dma error, lch %d status %02x\n", ep->ep.name, lch, ch_status);
754 /* complete current transfer ... */
757 static void dma_channel_claim(struct omap_ep *ep, unsigned channel)
760 int status, restart, is_in;
763 is_in = ep->bEndpointAddress & USB_DIR_IN;
765 reg = UDC_TXDMA_CFG_REG;
767 reg = UDC_RXDMA_CFG_REG;
768 reg |= UDC_DMA_REQ; /* "pulse" activated */
772 if (channel == 0 || channel > 3) {
773 if ((reg & 0x0f00) == 0)
775 else if ((reg & 0x00f0) == 0)
777 else if ((reg & 0x000f) == 0) /* preferred for ISO */
784 reg |= (0x0f & ep->bEndpointAddress) << (4 * (channel - 1));
785 ep->dma_channel = channel;
788 if (cpu_is_omap24xx())
789 dma_channel = OMAP24XX_DMA(USB_W2FC_TX0, channel);
791 dma_channel = OMAP_DMA_USB_W2FC_TX0 - 1 + channel;
792 status = omap_request_dma(dma_channel,
793 ep->ep.name, dma_error, ep, &ep->lch);
795 UDC_TXDMA_CFG_REG = reg;
797 omap_set_dma_src_burst_mode(ep->lch,
798 OMAP_DMA_DATA_BURST_4);
799 omap_set_dma_src_data_pack(ep->lch, 1);
801 omap_set_dma_dest_params(ep->lch,
803 OMAP_DMA_AMODE_CONSTANT,
804 (unsigned long) io_v2p((u32)&UDC_DATA_DMA_REG),
808 if (cpu_is_omap24xx())
809 dma_channel = OMAP24XX_DMA(USB_W2FC_RX0, channel);
811 dma_channel = OMAP_DMA_USB_W2FC_RX0 - 1 + channel;
813 status = omap_request_dma(dma_channel,
814 ep->ep.name, dma_error, ep, &ep->lch);
816 UDC_RXDMA_CFG_REG = reg;
818 omap_set_dma_src_params(ep->lch,
820 OMAP_DMA_AMODE_CONSTANT,
821 (unsigned long) io_v2p((u32)&UDC_DATA_DMA_REG),
824 omap_set_dma_dest_burst_mode(ep->lch,
825 OMAP_DMA_DATA_BURST_4);
826 omap_set_dma_dest_data_pack(ep->lch, 1);
833 omap_disable_dma_irq(ep->lch, OMAP_DMA_BLOCK_IRQ);
835 /* channel type P: hw synch (fifo) */
836 if (cpu_class_is_omap1() && !cpu_is_omap15xx())
837 OMAP1_DMA_LCH_CTRL_REG(ep->lch) = 2;
841 /* restart any queue, even if the claim failed */
842 restart = !ep->stopped && !list_empty(&ep->queue);
845 DBG("%s no dma channel: %d%s\n", ep->ep.name, status,
846 restart ? " (restart)" : "");
848 DBG("%s claimed %cxdma%d lch %d%s\n", ep->ep.name,
850 ep->dma_channel - 1, ep->lch,
851 restart ? " (restart)" : "");
854 struct omap_req *req;
855 req = container_of(ep->queue.next, struct omap_req, queue);
857 (is_in ? next_in_dma : next_out_dma)(ep, req);
859 use_ep(ep, UDC_EP_SEL);
860 (is_in ? write_fifo : read_fifo)(ep, req);
863 UDC_CTRL_REG = UDC_SET_FIFO_EN;
864 ep->ackwait = 1 + ep->double_buf;
866 /* IN: 6 wait states before it'll tx */
871 static void dma_channel_release(struct omap_ep *ep)
873 int shift = 4 * (ep->dma_channel - 1);
874 u16 mask = 0x0f << shift;
875 struct omap_req *req;
878 /* abort any active usb transfer request */
879 if (!list_empty(&ep->queue))
880 req = container_of(ep->queue.next, struct omap_req, queue);
884 active = ((1 << 7) & OMAP_DMA_CCR_REG(ep->lch)) != 0;
886 DBG("%s release %s %cxdma%d %p\n", ep->ep.name,
887 active ? "active" : "idle",
888 (ep->bEndpointAddress & USB_DIR_IN) ? 't' : 'r',
889 ep->dma_channel - 1, req);
891 /* NOTE: re-setting RX_REQ/TX_REQ because of a chip bug (before
892 * OMAP 1710 ES2.0) where reading the DMA_CFG can clear them.
895 /* wait till current packet DMA finishes, and fifo empties */
896 if (ep->bEndpointAddress & USB_DIR_IN) {
897 UDC_TXDMA_CFG_REG = (UDC_TXDMA_CFG_REG & ~mask) | UDC_DMA_REQ;
900 finish_in_dma(ep, req, -ECONNRESET);
902 /* clear FIFO; hosts probably won't empty it */
903 use_ep(ep, UDC_EP_SEL);
904 UDC_CTRL_REG = UDC_CLR_EP;
907 while (UDC_TXDMA_CFG_REG & mask)
910 UDC_RXDMA_CFG_REG = (UDC_RXDMA_CFG_REG & ~mask) | UDC_DMA_REQ;
912 /* dma empties the fifo */
913 while (UDC_RXDMA_CFG_REG & mask)
916 finish_out_dma(ep, req, -ECONNRESET, 0);
918 omap_free_dma(ep->lch);
921 /* has_dma still set, till endpoint is fully quiesced */
925 /*-------------------------------------------------------------------------*/
928 omap_ep_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags)
930 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
931 struct omap_req *req = container_of(_req, struct omap_req, req);
932 struct omap_udc *udc;
936 /* catch various bogus parameters */
937 if (!_req || !req->req.complete || !req->req.buf
938 || !list_empty(&req->queue)) {
939 DBG("%s, bad params\n", __func__);
942 if (!_ep || (!ep->desc && ep->bEndpointAddress)) {
943 DBG("%s, bad ep\n", __func__);
946 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
947 if (req->req.length > ep->ep.maxpacket)
952 /* this isn't bogus, but OMAP DMA isn't the only hardware to
953 * have a hard time with partial packet reads... reject it.
954 * Except OMAP2 can handle the small packets.
958 && ep->bEndpointAddress != 0
959 && (ep->bEndpointAddress & USB_DIR_IN) == 0
960 && !cpu_class_is_omap2()
961 && (req->req.length % ep->ep.maxpacket) != 0) {
962 DBG("%s, no partial packet OUT reads\n", __func__);
967 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN)
970 if (use_dma && ep->has_dma) {
971 if (req->req.dma == DMA_ADDR_INVALID) {
972 req->req.dma = dma_map_single(
973 ep->udc->gadget.dev.parent,
976 (ep->bEndpointAddress & USB_DIR_IN)
981 dma_sync_single_for_device(
982 ep->udc->gadget.dev.parent,
983 req->req.dma, req->req.length,
984 (ep->bEndpointAddress & USB_DIR_IN)
991 VDBG("%s queue req %p, len %d buf %p\n",
992 ep->ep.name, _req, _req->length, _req->buf);
994 spin_lock_irqsave(&udc->lock, flags);
996 req->req.status = -EINPROGRESS;
999 /* maybe kickstart non-iso i/o queues */
1001 UDC_IRQ_EN_REG |= UDC_SOF_IE;
1002 else if (list_empty(&ep->queue) && !ep->stopped && !ep->ackwait) {
1005 if (ep->bEndpointAddress == 0) {
1006 if (!udc->ep0_pending || !list_empty (&ep->queue)) {
1007 spin_unlock_irqrestore(&udc->lock, flags);
1011 /* empty DATA stage? */
1012 is_in = udc->ep0_in;
1013 if (!req->req.length) {
1015 /* chip became CONFIGURED or ADDRESSED
1016 * earlier; drivers may already have queued
1017 * requests to non-control endpoints
1019 if (udc->ep0_set_config) {
1020 u16 irq_en = UDC_IRQ_EN_REG;
1022 irq_en |= UDC_DS_CHG_IE | UDC_EP0_IE;
1023 if (!udc->ep0_reset_config)
1024 irq_en |= UDC_EPN_RX_IE
1026 UDC_IRQ_EN_REG = irq_en;
1029 /* STATUS for zero length DATA stages is
1030 * always an IN ... even for IN transfers,
1031 * a weird case which seem to stall OMAP.
1033 UDC_EP_NUM_REG = (UDC_EP_SEL|UDC_EP_DIR);
1034 UDC_CTRL_REG = UDC_CLR_EP;
1035 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1036 UDC_EP_NUM_REG = UDC_EP_DIR;
1039 udc->ep0_pending = 0;
1043 /* non-empty DATA stage */
1045 UDC_EP_NUM_REG = UDC_EP_SEL|UDC_EP_DIR;
1049 UDC_EP_NUM_REG = UDC_EP_SEL;
1052 is_in = ep->bEndpointAddress & USB_DIR_IN;
1054 use_ep(ep, UDC_EP_SEL);
1055 /* if ISO: SOF IRQs must be enabled/disabled! */
1059 (is_in ? next_in_dma : next_out_dma)(ep, req);
1061 if ((is_in ? write_fifo : read_fifo)(ep, req) == 1)
1065 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1066 ep->ackwait = 1 + ep->double_buf;
1068 /* IN: 6 wait states before it'll tx */
1073 /* irq handler advances the queue */
1075 list_add_tail(&req->queue, &ep->queue);
1076 spin_unlock_irqrestore(&udc->lock, flags);
1081 static int omap_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
1083 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
1084 struct omap_req *req;
1085 unsigned long flags;
1090 spin_lock_irqsave(&ep->udc->lock, flags);
1092 /* make sure it's actually queued on this endpoint */
1093 list_for_each_entry (req, &ep->queue, queue) {
1094 if (&req->req == _req)
1097 if (&req->req != _req) {
1098 spin_unlock_irqrestore(&ep->udc->lock, flags);
1102 if (use_dma && ep->dma_channel && ep->queue.next == &req->queue) {
1103 int channel = ep->dma_channel;
1105 /* releasing the channel cancels the request,
1106 * reclaiming the channel restarts the queue
1108 dma_channel_release(ep);
1109 dma_channel_claim(ep, channel);
1111 done(ep, req, -ECONNRESET);
1112 spin_unlock_irqrestore(&ep->udc->lock, flags);
1116 /*-------------------------------------------------------------------------*/
1118 static int omap_ep_set_halt(struct usb_ep *_ep, int value)
1120 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
1121 unsigned long flags;
1122 int status = -EOPNOTSUPP;
1124 spin_lock_irqsave(&ep->udc->lock, flags);
1126 /* just use protocol stalls for ep0; real halts are annoying */
1127 if (ep->bEndpointAddress == 0) {
1128 if (!ep->udc->ep0_pending)
1131 if (ep->udc->ep0_set_config) {
1132 WARN("error changing config?\n");
1133 UDC_SYSCON2_REG = UDC_CLR_CFG;
1135 UDC_SYSCON2_REG = UDC_STALL_CMD;
1136 ep->udc->ep0_pending = 0;
1141 /* otherwise, all active non-ISO endpoints can halt */
1142 } else if (ep->bmAttributes != USB_ENDPOINT_XFER_ISOC && ep->desc) {
1144 /* IN endpoints must already be idle */
1145 if ((ep->bEndpointAddress & USB_DIR_IN)
1146 && !list_empty(&ep->queue)) {
1154 if (use_dma && ep->dma_channel
1155 && !list_empty(&ep->queue)) {
1156 channel = ep->dma_channel;
1157 dma_channel_release(ep);
1161 use_ep(ep, UDC_EP_SEL);
1162 if (UDC_STAT_FLG_REG & UDC_NON_ISO_FIFO_EMPTY) {
1163 UDC_CTRL_REG = UDC_SET_HALT;
1170 dma_channel_claim(ep, channel);
1173 UDC_CTRL_REG = ep->udc->clr_halt;
1175 if (!(ep->bEndpointAddress & USB_DIR_IN)) {
1176 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1177 ep->ackwait = 1 + ep->double_buf;
1182 VDBG("%s %s halt stat %d\n", ep->ep.name,
1183 value ? "set" : "clear", status);
1185 spin_unlock_irqrestore(&ep->udc->lock, flags);
1189 static struct usb_ep_ops omap_ep_ops = {
1190 .enable = omap_ep_enable,
1191 .disable = omap_ep_disable,
1193 .alloc_request = omap_alloc_request,
1194 .free_request = omap_free_request,
1196 .queue = omap_ep_queue,
1197 .dequeue = omap_ep_dequeue,
1199 .set_halt = omap_ep_set_halt,
1200 // fifo_status ... report bytes in fifo
1201 // fifo_flush ... flush fifo
1204 /*-------------------------------------------------------------------------*/
1206 static int omap_get_frame(struct usb_gadget *gadget)
1208 u16 sof = UDC_SOF_REG;
1209 return (sof & UDC_TS_OK) ? (sof & UDC_TS) : -EL2NSYNC;
1212 static int omap_wakeup(struct usb_gadget *gadget)
1214 struct omap_udc *udc;
1215 unsigned long flags;
1216 int retval = -EHOSTUNREACH;
1218 udc = container_of(gadget, struct omap_udc, gadget);
1220 spin_lock_irqsave(&udc->lock, flags);
1221 if (udc->devstat & UDC_SUS) {
1222 /* NOTE: OTG spec erratum says that OTG devices may
1223 * issue wakeups without host enable.
1225 if (udc->devstat & (UDC_B_HNP_ENABLE|UDC_R_WK_OK)) {
1226 DBG("remote wakeup...\n");
1227 UDC_SYSCON2_REG = UDC_RMT_WKP;
1231 /* NOTE: non-OTG systems may use SRP TOO... */
1232 } else if (!(udc->devstat & UDC_ATT)) {
1233 if (udc->transceiver)
1234 retval = otg_start_srp(udc->transceiver);
1236 spin_unlock_irqrestore(&udc->lock, flags);
1242 omap_set_selfpowered(struct usb_gadget *gadget, int is_selfpowered)
1244 struct omap_udc *udc;
1245 unsigned long flags;
1248 udc = container_of(gadget, struct omap_udc, gadget);
1249 spin_lock_irqsave(&udc->lock, flags);
1250 syscon1 = UDC_SYSCON1_REG;
1252 syscon1 |= UDC_SELF_PWR;
1254 syscon1 &= ~UDC_SELF_PWR;
1255 UDC_SYSCON1_REG = syscon1;
1256 spin_unlock_irqrestore(&udc->lock, flags);
1261 static int can_pullup(struct omap_udc *udc)
1263 return udc->driver && udc->softconnect && udc->vbus_active;
1266 static void pullup_enable(struct omap_udc *udc)
1268 UDC_SYSCON1_REG |= UDC_PULLUP_EN;
1269 if (!gadget_is_otg(&udc->gadget) && !cpu_is_omap15xx())
1270 OTG_CTRL_REG |= OTG_BSESSVLD;
1271 UDC_IRQ_EN_REG = UDC_DS_CHG_IE;
1274 static void pullup_disable(struct omap_udc *udc)
1276 if (!gadget_is_otg(&udc->gadget) && !cpu_is_omap15xx())
1277 OTG_CTRL_REG &= ~OTG_BSESSVLD;
1278 UDC_IRQ_EN_REG = UDC_DS_CHG_IE;
1279 UDC_SYSCON1_REG &= ~UDC_PULLUP_EN;
1282 static struct omap_udc *udc;
1284 static void omap_udc_enable_clock(int enable)
1286 if (udc == NULL || udc->dc_clk == NULL || udc->hhc_clk == NULL)
1290 clk_enable(udc->dc_clk);
1291 clk_enable(udc->hhc_clk);
1294 clk_disable(udc->hhc_clk);
1295 clk_disable(udc->dc_clk);
1300 * Called by whatever detects VBUS sessions: external transceiver
1301 * driver, or maybe GPIO0 VBUS IRQ. May request 48 MHz clock.
1303 static int omap_vbus_session(struct usb_gadget *gadget, int is_active)
1305 struct omap_udc *udc;
1306 unsigned long flags;
1308 udc = container_of(gadget, struct omap_udc, gadget);
1309 spin_lock_irqsave(&udc->lock, flags);
1310 VDBG("VBUS %s\n", is_active ? "on" : "off");
1311 udc->vbus_active = (is_active != 0);
1312 if (cpu_is_omap15xx()) {
1313 /* "software" detect, ignored if !VBUS_MODE_1510 */
1315 FUNC_MUX_CTRL_0_REG |= VBUS_CTRL_1510;
1317 FUNC_MUX_CTRL_0_REG &= ~VBUS_CTRL_1510;
1319 if (udc->dc_clk != NULL && is_active) {
1320 if (!udc->clk_requested) {
1321 omap_udc_enable_clock(1);
1322 udc->clk_requested = 1;
1325 if (can_pullup(udc))
1328 pullup_disable(udc);
1329 if (udc->dc_clk != NULL && !is_active) {
1330 if (udc->clk_requested) {
1331 omap_udc_enable_clock(0);
1332 udc->clk_requested = 0;
1335 spin_unlock_irqrestore(&udc->lock, flags);
1339 static int omap_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1341 struct omap_udc *udc;
1343 udc = container_of(gadget, struct omap_udc, gadget);
1344 if (udc->transceiver)
1345 return otg_set_power(udc->transceiver, mA);
1349 static int omap_pullup(struct usb_gadget *gadget, int is_on)
1351 struct omap_udc *udc;
1352 unsigned long flags;
1354 udc = container_of(gadget, struct omap_udc, gadget);
1355 spin_lock_irqsave(&udc->lock, flags);
1356 udc->softconnect = (is_on != 0);
1357 if (can_pullup(udc))
1360 pullup_disable(udc);
1361 spin_unlock_irqrestore(&udc->lock, flags);
1365 static struct usb_gadget_ops omap_gadget_ops = {
1366 .get_frame = omap_get_frame,
1367 .wakeup = omap_wakeup,
1368 .set_selfpowered = omap_set_selfpowered,
1369 .vbus_session = omap_vbus_session,
1370 .vbus_draw = omap_vbus_draw,
1371 .pullup = omap_pullup,
1374 /*-------------------------------------------------------------------------*/
1376 /* dequeue ALL requests; caller holds udc->lock */
1377 static void nuke(struct omap_ep *ep, int status)
1379 struct omap_req *req;
1383 if (use_dma && ep->dma_channel)
1384 dma_channel_release(ep);
1387 UDC_CTRL_REG = UDC_CLR_EP;
1388 if (ep->bEndpointAddress && ep->bmAttributes != USB_ENDPOINT_XFER_ISOC)
1389 UDC_CTRL_REG = UDC_SET_HALT;
1391 while (!list_empty(&ep->queue)) {
1392 req = list_entry(ep->queue.next, struct omap_req, queue);
1393 done(ep, req, status);
1397 /* caller holds udc->lock */
1398 static void udc_quiesce(struct omap_udc *udc)
1402 udc->gadget.speed = USB_SPEED_UNKNOWN;
1403 nuke(&udc->ep[0], -ESHUTDOWN);
1404 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list)
1405 nuke(ep, -ESHUTDOWN);
1408 /*-------------------------------------------------------------------------*/
1410 static void update_otg(struct omap_udc *udc)
1414 if (!gadget_is_otg(&udc->gadget))
1417 if (OTG_CTRL_REG & OTG_ID)
1418 devstat = UDC_DEVSTAT_REG;
1422 udc->gadget.b_hnp_enable = !!(devstat & UDC_B_HNP_ENABLE);
1423 udc->gadget.a_hnp_support = !!(devstat & UDC_A_HNP_SUPPORT);
1424 udc->gadget.a_alt_hnp_support = !!(devstat & UDC_A_ALT_HNP_SUPPORT);
1426 /* Enable HNP early, avoiding races on suspend irq path.
1427 * ASSUMES OTG state machine B_BUS_REQ input is true.
1429 if (udc->gadget.b_hnp_enable)
1430 OTG_CTRL_REG = (OTG_CTRL_REG | OTG_B_HNPEN | OTG_B_BUSREQ)
1434 static void ep0_irq(struct omap_udc *udc, u16 irq_src)
1436 struct omap_ep *ep0 = &udc->ep[0];
1437 struct omap_req *req = NULL;
1441 /* Clear any pending requests and then scrub any rx/tx state
1442 * before starting to handle the SETUP request.
1444 if (irq_src & UDC_SETUP) {
1445 u16 ack = irq_src & (UDC_EP0_TX|UDC_EP0_RX);
1449 UDC_IRQ_SRC_REG = ack;
1450 irq_src = UDC_SETUP;
1454 /* IN/OUT packets mean we're in the DATA or STATUS stage.
1455 * This driver uses only uses protocol stalls (ep0 never halts),
1456 * and if we got this far the gadget driver already had a
1457 * chance to stall. Tries to be forgiving of host oddities.
1459 * NOTE: the last chance gadget drivers have to stall control
1460 * requests is during their request completion callback.
1462 if (!list_empty(&ep0->queue))
1463 req = container_of(ep0->queue.next, struct omap_req, queue);
1465 /* IN == TX to host */
1466 if (irq_src & UDC_EP0_TX) {
1469 UDC_IRQ_SRC_REG = UDC_EP0_TX;
1470 UDC_EP_NUM_REG = UDC_EP_SEL|UDC_EP_DIR;
1471 stat = UDC_STAT_FLG_REG;
1472 if (stat & UDC_ACK) {
1474 /* write next IN packet from response,
1475 * or set up the status stage.
1478 stat = write_fifo(ep0, req);
1479 UDC_EP_NUM_REG = UDC_EP_DIR;
1480 if (!req && udc->ep0_pending) {
1481 UDC_EP_NUM_REG = UDC_EP_SEL;
1482 UDC_CTRL_REG = UDC_CLR_EP;
1483 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1485 udc->ep0_pending = 0;
1486 } /* else: 6 wait states before it'll tx */
1488 /* ack status stage of OUT transfer */
1489 UDC_EP_NUM_REG = UDC_EP_DIR;
1494 } else if (stat & UDC_STALL) {
1495 UDC_CTRL_REG = UDC_CLR_HALT;
1496 UDC_EP_NUM_REG = UDC_EP_DIR;
1498 UDC_EP_NUM_REG = UDC_EP_DIR;
1502 /* OUT == RX from host */
1503 if (irq_src & UDC_EP0_RX) {
1506 UDC_IRQ_SRC_REG = UDC_EP0_RX;
1507 UDC_EP_NUM_REG = UDC_EP_SEL;
1508 stat = UDC_STAT_FLG_REG;
1509 if (stat & UDC_ACK) {
1512 /* read next OUT packet of request, maybe
1513 * reactiviting the fifo; stall on errors.
1515 if (!req || (stat = read_fifo(ep0, req)) < 0) {
1516 UDC_SYSCON2_REG = UDC_STALL_CMD;
1517 udc->ep0_pending = 0;
1519 } else if (stat == 0)
1520 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1523 /* activate status stage */
1526 /* that may have STALLed ep0... */
1527 UDC_EP_NUM_REG = UDC_EP_SEL|UDC_EP_DIR;
1528 UDC_CTRL_REG = UDC_CLR_EP;
1529 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1530 UDC_EP_NUM_REG = UDC_EP_DIR;
1531 udc->ep0_pending = 0;
1534 /* ack status stage of IN transfer */
1539 } else if (stat & UDC_STALL) {
1540 UDC_CTRL_REG = UDC_CLR_HALT;
1547 /* SETUP starts all control transfers */
1548 if (irq_src & UDC_SETUP) {
1551 struct usb_ctrlrequest r;
1553 int status = -EINVAL;
1556 /* read the (latest) SETUP message */
1558 UDC_EP_NUM_REG = UDC_SETUP_SEL;
1559 /* two bytes at a time */
1560 u.word[0] = UDC_DATA_REG;
1561 u.word[1] = UDC_DATA_REG;
1562 u.word[2] = UDC_DATA_REG;
1563 u.word[3] = UDC_DATA_REG;
1565 } while (UDC_IRQ_SRC_REG & UDC_SETUP);
1567 #define w_value le16_to_cpu(u.r.wValue)
1568 #define w_index le16_to_cpu(u.r.wIndex)
1569 #define w_length le16_to_cpu(u.r.wLength)
1571 /* Delegate almost all control requests to the gadget driver,
1572 * except for a handful of ch9 status/feature requests that
1573 * hardware doesn't autodecode _and_ the gadget API hides.
1575 udc->ep0_in = (u.r.bRequestType & USB_DIR_IN) != 0;
1576 udc->ep0_set_config = 0;
1577 udc->ep0_pending = 1;
1580 switch (u.r.bRequest) {
1581 case USB_REQ_SET_CONFIGURATION:
1582 /* udc needs to know when ep != 0 is valid */
1583 if (u.r.bRequestType != USB_RECIP_DEVICE)
1587 udc->ep0_set_config = 1;
1588 udc->ep0_reset_config = (w_value == 0);
1589 VDBG("set config %d\n", w_value);
1591 /* update udc NOW since gadget driver may start
1592 * queueing requests immediately; clear config
1593 * later if it fails the request.
1595 if (udc->ep0_reset_config)
1596 UDC_SYSCON2_REG = UDC_CLR_CFG;
1598 UDC_SYSCON2_REG = UDC_DEV_CFG;
1601 case USB_REQ_CLEAR_FEATURE:
1602 /* clear endpoint halt */
1603 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
1605 if (w_value != USB_ENDPOINT_HALT
1608 ep = &udc->ep[w_index & 0xf];
1610 if (w_index & USB_DIR_IN)
1612 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
1616 UDC_CTRL_REG = udc->clr_halt;
1618 if (!(ep->bEndpointAddress & USB_DIR_IN)) {
1619 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1620 ep->ackwait = 1 + ep->double_buf;
1622 /* NOTE: assumes the host behaves sanely,
1623 * only clearing real halts. Else we may
1624 * need to kill pending transfers and then
1625 * restart the queue... very messy for DMA!
1628 VDBG("%s halt cleared by host\n", ep->name);
1629 goto ep0out_status_stage;
1630 case USB_REQ_SET_FEATURE:
1631 /* set endpoint halt */
1632 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
1634 if (w_value != USB_ENDPOINT_HALT
1637 ep = &udc->ep[w_index & 0xf];
1638 if (w_index & USB_DIR_IN)
1640 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
1641 || ep == ep0 || !ep->desc)
1643 if (use_dma && ep->has_dma) {
1644 /* this has rude side-effects (aborts) and
1645 * can't really work if DMA-IN is active
1647 DBG("%s host set_halt, NYET \n", ep->name);
1651 /* can't halt if fifo isn't empty... */
1652 UDC_CTRL_REG = UDC_CLR_EP;
1653 UDC_CTRL_REG = UDC_SET_HALT;
1654 VDBG("%s halted by host\n", ep->name);
1655 ep0out_status_stage:
1657 UDC_EP_NUM_REG = UDC_EP_SEL|UDC_EP_DIR;
1658 UDC_CTRL_REG = UDC_CLR_EP;
1659 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1660 UDC_EP_NUM_REG = UDC_EP_DIR;
1661 udc->ep0_pending = 0;
1663 case USB_REQ_GET_STATUS:
1664 /* USB_ENDPOINT_HALT status? */
1665 if (u.r.bRequestType != (USB_DIR_IN|USB_RECIP_ENDPOINT))
1668 /* ep0 never stalls */
1669 if (!(w_index & 0xf))
1672 /* only active endpoints count */
1673 ep = &udc->ep[w_index & 0xf];
1674 if (w_index & USB_DIR_IN)
1679 /* iso never stalls */
1680 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
1683 /* FIXME don't assume non-halted endpoints!! */
1684 ERR("%s status, can't report\n", ep->ep.name);
1688 /* return interface status. if we were pedantic,
1689 * we'd detect non-existent interfaces, and stall.
1691 if (u.r.bRequestType
1692 != (USB_DIR_IN|USB_RECIP_INTERFACE))
1696 /* return two zero bytes */
1697 UDC_EP_NUM_REG = UDC_EP_SEL|UDC_EP_DIR;
1699 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1700 UDC_EP_NUM_REG = UDC_EP_DIR;
1702 VDBG("GET_STATUS, interface %d\n", w_index);
1703 /* next, status stage */
1707 /* activate the ep0out fifo right away */
1708 if (!udc->ep0_in && w_length) {
1710 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1713 /* gadget drivers see class/vendor specific requests,
1714 * {SET,GET}_{INTERFACE,DESCRIPTOR,CONFIGURATION},
1717 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1718 u.r.bRequestType, u.r.bRequest,
1719 w_value, w_index, w_length);
1725 /* The gadget driver may return an error here,
1726 * causing an immediate protocol stall.
1728 * Else it must issue a response, either queueing a
1729 * response buffer for the DATA stage, or halting ep0
1730 * (causing a protocol stall, not a real halt). A
1731 * zero length buffer means no DATA stage.
1733 * It's fine to issue that response after the setup()
1734 * call returns, and this IRQ was handled.
1737 spin_unlock(&udc->lock);
1738 status = udc->driver->setup (&udc->gadget, &u.r);
1739 spin_lock(&udc->lock);
1745 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1746 u.r.bRequestType, u.r.bRequest, status);
1747 if (udc->ep0_set_config) {
1748 if (udc->ep0_reset_config)
1749 WARN("error resetting config?\n");
1751 UDC_SYSCON2_REG = UDC_CLR_CFG;
1753 UDC_SYSCON2_REG = UDC_STALL_CMD;
1754 udc->ep0_pending = 0;
1759 /*-------------------------------------------------------------------------*/
1761 #define OTG_FLAGS (UDC_B_HNP_ENABLE|UDC_A_HNP_SUPPORT|UDC_A_ALT_HNP_SUPPORT)
1763 static void devstate_irq(struct omap_udc *udc, u16 irq_src)
1765 u16 devstat, change;
1767 devstat = UDC_DEVSTAT_REG;
1768 change = devstat ^ udc->devstat;
1769 udc->devstat = devstat;
1771 if (change & (UDC_USB_RESET|UDC_ATT)) {
1774 if (change & UDC_ATT) {
1775 /* driver for any external transceiver will
1776 * have called omap_vbus_session() already
1778 if (devstat & UDC_ATT) {
1779 udc->gadget.speed = USB_SPEED_FULL;
1781 if (!udc->transceiver)
1783 // if (driver->connect) call it
1784 } else if (udc->gadget.speed != USB_SPEED_UNKNOWN) {
1785 udc->gadget.speed = USB_SPEED_UNKNOWN;
1786 if (!udc->transceiver)
1787 pullup_disable(udc);
1788 DBG("disconnect, gadget %s\n",
1789 udc->driver->driver.name);
1790 if (udc->driver->disconnect) {
1791 spin_unlock(&udc->lock);
1792 udc->driver->disconnect(&udc->gadget);
1793 spin_lock(&udc->lock);
1799 if (change & UDC_USB_RESET) {
1800 if (devstat & UDC_USB_RESET) {
1803 udc->gadget.speed = USB_SPEED_FULL;
1804 INFO("USB reset done, gadget %s\n",
1805 udc->driver->driver.name);
1806 /* ep0 traffic is legal from now on */
1807 UDC_IRQ_EN_REG = UDC_DS_CHG_IE | UDC_EP0_IE;
1809 change &= ~UDC_USB_RESET;
1812 if (change & UDC_SUS) {
1813 if (udc->gadget.speed != USB_SPEED_UNKNOWN) {
1814 // FIXME tell isp1301 to suspend/resume (?)
1815 if (devstat & UDC_SUS) {
1818 /* HNP could be under way already */
1819 if (udc->gadget.speed == USB_SPEED_FULL
1820 && udc->driver->suspend) {
1821 spin_unlock(&udc->lock);
1822 udc->driver->suspend(&udc->gadget);
1823 spin_lock(&udc->lock);
1825 if (udc->transceiver)
1826 otg_set_suspend(udc->transceiver, 1);
1829 if (udc->transceiver)
1830 otg_set_suspend(udc->transceiver, 0);
1831 if (udc->gadget.speed == USB_SPEED_FULL
1832 && udc->driver->resume) {
1833 spin_unlock(&udc->lock);
1834 udc->driver->resume(&udc->gadget);
1835 spin_lock(&udc->lock);
1841 if (!cpu_is_omap15xx() && (change & OTG_FLAGS)) {
1843 change &= ~OTG_FLAGS;
1846 change &= ~(UDC_CFG|UDC_DEF|UDC_ADD);
1848 VDBG("devstat %03x, ignore change %03x\n",
1851 UDC_IRQ_SRC_REG = UDC_DS_CHG;
1854 static irqreturn_t omap_udc_irq(int irq, void *_udc)
1856 struct omap_udc *udc = _udc;
1858 irqreturn_t status = IRQ_NONE;
1859 unsigned long flags;
1861 spin_lock_irqsave(&udc->lock, flags);
1862 irq_src = UDC_IRQ_SRC_REG;
1864 /* Device state change (usb ch9 stuff) */
1865 if (irq_src & UDC_DS_CHG) {
1866 devstate_irq(_udc, irq_src);
1867 status = IRQ_HANDLED;
1868 irq_src &= ~UDC_DS_CHG;
1871 /* EP0 control transfers */
1872 if (irq_src & (UDC_EP0_RX|UDC_SETUP|UDC_EP0_TX)) {
1873 ep0_irq(_udc, irq_src);
1874 status = IRQ_HANDLED;
1875 irq_src &= ~(UDC_EP0_RX|UDC_SETUP|UDC_EP0_TX);
1878 /* DMA transfer completion */
1879 if (use_dma && (irq_src & (UDC_TXN_DONE|UDC_RXN_CNT|UDC_RXN_EOT))) {
1880 dma_irq(_udc, irq_src);
1881 status = IRQ_HANDLED;
1882 irq_src &= ~(UDC_TXN_DONE|UDC_RXN_CNT|UDC_RXN_EOT);
1885 irq_src &= ~(UDC_SOF|UDC_EPN_TX|UDC_EPN_RX);
1887 DBG("udc_irq, unhandled %03x\n", irq_src);
1888 spin_unlock_irqrestore(&udc->lock, flags);
1893 /* workaround for seemingly-lost IRQs for RX ACKs... */
1894 #define PIO_OUT_TIMEOUT (jiffies + HZ/3)
1895 #define HALF_FULL(f) (!((f)&(UDC_NON_ISO_FIFO_FULL|UDC_NON_ISO_FIFO_EMPTY)))
1897 static void pio_out_timer(unsigned long _ep)
1899 struct omap_ep *ep = (void *) _ep;
1900 unsigned long flags;
1903 spin_lock_irqsave(&ep->udc->lock, flags);
1904 if (!list_empty(&ep->queue) && ep->ackwait) {
1905 use_ep(ep, UDC_EP_SEL);
1906 stat_flg = UDC_STAT_FLG_REG;
1908 if ((stat_flg & UDC_ACK) && (!(stat_flg & UDC_FIFO_EN)
1909 || (ep->double_buf && HALF_FULL(stat_flg)))) {
1910 struct omap_req *req;
1912 VDBG("%s: lose, %04x\n", ep->ep.name, stat_flg);
1913 req = container_of(ep->queue.next,
1914 struct omap_req, queue);
1915 (void) read_fifo(ep, req);
1916 UDC_EP_NUM_REG = ep->bEndpointAddress;
1917 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1918 ep->ackwait = 1 + ep->double_buf;
1922 mod_timer(&ep->timer, PIO_OUT_TIMEOUT);
1923 spin_unlock_irqrestore(&ep->udc->lock, flags);
1926 static irqreturn_t omap_udc_pio_irq(int irq, void *_dev)
1928 u16 epn_stat, irq_src;
1929 irqreturn_t status = IRQ_NONE;
1932 struct omap_udc *udc = _dev;
1933 struct omap_req *req;
1934 unsigned long flags;
1936 spin_lock_irqsave(&udc->lock, flags);
1937 epn_stat = UDC_EPN_STAT_REG;
1938 irq_src = UDC_IRQ_SRC_REG;
1940 /* handle OUT first, to avoid some wasteful NAKs */
1941 if (irq_src & UDC_EPN_RX) {
1942 epnum = (epn_stat >> 8) & 0x0f;
1943 UDC_IRQ_SRC_REG = UDC_EPN_RX;
1944 status = IRQ_HANDLED;
1945 ep = &udc->ep[epnum];
1948 UDC_EP_NUM_REG = epnum | UDC_EP_SEL;
1950 if ((UDC_STAT_FLG_REG & UDC_ACK)) {
1952 if (!list_empty(&ep->queue)) {
1954 req = container_of(ep->queue.next,
1955 struct omap_req, queue);
1956 stat = read_fifo(ep, req);
1957 if (!ep->double_buf)
1961 /* min 6 clock delay before clearing EP_SEL ... */
1962 epn_stat = UDC_EPN_STAT_REG;
1963 epn_stat = UDC_EPN_STAT_REG;
1964 UDC_EP_NUM_REG = epnum;
1966 /* enabling fifo _after_ clearing ACK, contrary to docs,
1967 * reduces lossage; timer still needed though (sigh).
1970 UDC_CTRL_REG = UDC_SET_FIFO_EN;
1971 ep->ackwait = 1 + ep->double_buf;
1973 mod_timer(&ep->timer, PIO_OUT_TIMEOUT);
1976 /* then IN transfers */
1977 else if (irq_src & UDC_EPN_TX) {
1978 epnum = epn_stat & 0x0f;
1979 UDC_IRQ_SRC_REG = UDC_EPN_TX;
1980 status = IRQ_HANDLED;
1981 ep = &udc->ep[16 + epnum];
1984 UDC_EP_NUM_REG = epnum | UDC_EP_DIR | UDC_EP_SEL;
1985 if ((UDC_STAT_FLG_REG & UDC_ACK)) {
1987 if (!list_empty(&ep->queue)) {
1988 req = container_of(ep->queue.next,
1989 struct omap_req, queue);
1990 (void) write_fifo(ep, req);
1993 /* min 6 clock delay before clearing EP_SEL ... */
1994 epn_stat = UDC_EPN_STAT_REG;
1995 epn_stat = UDC_EPN_STAT_REG;
1996 UDC_EP_NUM_REG = epnum | UDC_EP_DIR;
1997 /* then 6 clocks before it'd tx */
2000 spin_unlock_irqrestore(&udc->lock, flags);
2005 static irqreturn_t omap_udc_iso_irq(int irq, void *_dev)
2007 struct omap_udc *udc = _dev;
2010 unsigned long flags;
2012 spin_lock_irqsave(&udc->lock, flags);
2014 /* handle all non-DMA ISO transfers */
2015 list_for_each_entry (ep, &udc->iso, iso) {
2017 struct omap_req *req;
2019 if (ep->has_dma || list_empty(&ep->queue))
2021 req = list_entry(ep->queue.next, struct omap_req, queue);
2023 use_ep(ep, UDC_EP_SEL);
2024 stat = UDC_STAT_FLG_REG;
2026 /* NOTE: like the other controller drivers, this isn't
2027 * currently reporting lost or damaged frames.
2029 if (ep->bEndpointAddress & USB_DIR_IN) {
2030 if (stat & UDC_MISS_IN)
2031 /* done(ep, req, -EPROTO) */;
2033 write_fifo(ep, req);
2037 if (stat & UDC_NO_RXPACKET)
2038 status = -EREMOTEIO;
2039 else if (stat & UDC_ISO_ERR)
2041 else if (stat & UDC_DATA_FLUSH)
2045 /* done(ep, req, status) */;
2050 /* 6 wait states before next EP */
2053 if (!list_empty(&ep->queue))
2057 UDC_IRQ_EN_REG &= ~UDC_SOF_IE;
2058 UDC_IRQ_SRC_REG = UDC_SOF;
2060 spin_unlock_irqrestore(&udc->lock, flags);
2065 /*-------------------------------------------------------------------------*/
2067 static inline int machine_without_vbus_sense(void)
2069 return (machine_is_omap_innovator()
2070 || machine_is_omap_osk()
2071 || machine_is_omap_apollon()
2072 #ifndef CONFIG_MACH_OMAP_H4_OTG
2073 || machine_is_omap_h4()
2079 int usb_gadget_register_driver (struct usb_gadget_driver *driver)
2081 int status = -ENODEV;
2083 unsigned long flags;
2085 /* basic sanity tests */
2089 // FIXME if otg, check: driver->is_otg
2090 || driver->speed < USB_SPEED_FULL
2095 spin_lock_irqsave(&udc->lock, flags);
2097 spin_unlock_irqrestore(&udc->lock, flags);
2102 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
2104 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
2107 UDC_CTRL_REG = UDC_SET_HALT;
2109 udc->ep0_pending = 0;
2110 udc->ep[0].irqs = 0;
2111 udc->softconnect = 1;
2113 /* hook up the driver */
2114 driver->driver.bus = NULL;
2115 udc->driver = driver;
2116 udc->gadget.dev.driver = &driver->driver;
2117 spin_unlock_irqrestore(&udc->lock, flags);
2119 if (udc->dc_clk != NULL)
2120 omap_udc_enable_clock(1);
2122 status = driver->bind (&udc->gadget);
2124 DBG("bind to %s --> %d\n", driver->driver.name, status);
2125 udc->gadget.dev.driver = NULL;
2129 DBG("bound to driver %s\n", driver->driver.name);
2131 UDC_IRQ_SRC_REG = UDC_IRQ_SRC_MASK;
2133 /* connect to bus through transceiver */
2134 if (udc->transceiver) {
2135 status = otg_set_peripheral(udc->transceiver, &udc->gadget);
2137 ERR("can't bind to transceiver\n");
2138 if (driver->unbind) {
2139 driver->unbind (&udc->gadget);
2140 udc->gadget.dev.driver = NULL;
2146 if (can_pullup(udc))
2147 pullup_enable (udc);
2149 pullup_disable (udc);
2152 /* boards that don't have VBUS sensing can't autogate 48MHz;
2153 * can't enter deep sleep while a gadget driver is active.
2155 if (machine_without_vbus_sense())
2156 omap_vbus_session(&udc->gadget, 1);
2159 if (udc->dc_clk != NULL)
2160 omap_udc_enable_clock(0);
2163 EXPORT_SYMBOL(usb_gadget_register_driver);
2165 int usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
2167 unsigned long flags;
2168 int status = -ENODEV;
2172 if (!driver || driver != udc->driver || !driver->unbind)
2175 if (udc->dc_clk != NULL)
2176 omap_udc_enable_clock(1);
2178 if (machine_without_vbus_sense())
2179 omap_vbus_session(&udc->gadget, 0);
2181 if (udc->transceiver)
2182 (void) otg_set_peripheral(udc->transceiver, NULL);
2184 pullup_disable(udc);
2186 spin_lock_irqsave(&udc->lock, flags);
2188 spin_unlock_irqrestore(&udc->lock, flags);
2190 driver->unbind(&udc->gadget);
2191 udc->gadget.dev.driver = NULL;
2194 if (udc->dc_clk != NULL)
2195 omap_udc_enable_clock(0);
2196 DBG("unregistered driver '%s'\n", driver->driver.name);
2199 EXPORT_SYMBOL(usb_gadget_unregister_driver);
2202 /*-------------------------------------------------------------------------*/
2204 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2206 #include <linux/seq_file.h>
2208 static const char proc_filename[] = "driver/udc";
2210 #define FOURBITS "%s%s%s%s"
2211 #define EIGHTBITS FOURBITS FOURBITS
2213 static void proc_ep_show(struct seq_file *s, struct omap_ep *ep)
2216 struct omap_req *req;
2221 if (use_dma && ep->has_dma)
2222 snprintf(buf, sizeof buf, "(%cxdma%d lch%d) ",
2223 (ep->bEndpointAddress & USB_DIR_IN) ? 't' : 'r',
2224 ep->dma_channel - 1, ep->lch);
2228 stat_flg = UDC_STAT_FLG_REG;
2230 "\n%s %s%s%sirqs %ld stat %04x " EIGHTBITS FOURBITS "%s\n",
2232 ep->double_buf ? "dbuf " : "",
2233 ({char *s; switch(ep->ackwait){
2234 case 0: s = ""; break;
2235 case 1: s = "(ackw) "; break;
2236 case 2: s = "(ackw2) "; break;
2237 default: s = "(?) "; break;
2240 (stat_flg & UDC_NO_RXPACKET) ? "no_rxpacket " : "",
2241 (stat_flg & UDC_MISS_IN) ? "miss_in " : "",
2242 (stat_flg & UDC_DATA_FLUSH) ? "data_flush " : "",
2243 (stat_flg & UDC_ISO_ERR) ? "iso_err " : "",
2244 (stat_flg & UDC_ISO_FIFO_EMPTY) ? "iso_fifo_empty " : "",
2245 (stat_flg & UDC_ISO_FIFO_FULL) ? "iso_fifo_full " : "",
2246 (stat_flg & UDC_EP_HALTED) ? "HALT " : "",
2247 (stat_flg & UDC_STALL) ? "STALL " : "",
2248 (stat_flg & UDC_NAK) ? "NAK " : "",
2249 (stat_flg & UDC_ACK) ? "ACK " : "",
2250 (stat_flg & UDC_FIFO_EN) ? "fifo_en " : "",
2251 (stat_flg & UDC_NON_ISO_FIFO_EMPTY) ? "fifo_empty " : "",
2252 (stat_flg & UDC_NON_ISO_FIFO_FULL) ? "fifo_full " : "");
2254 if (list_empty (&ep->queue))
2255 seq_printf(s, "\t(queue empty)\n");
2257 list_for_each_entry (req, &ep->queue, queue) {
2258 unsigned length = req->req.actual;
2260 if (use_dma && buf[0]) {
2261 length += ((ep->bEndpointAddress & USB_DIR_IN)
2262 ? dma_src_len : dma_dest_len)
2263 (ep, req->req.dma + length);
2266 seq_printf(s, "\treq %p len %d/%d buf %p\n",
2268 req->req.length, req->req.buf);
2272 static char *trx_mode(unsigned m, int enabled)
2275 case 0: return enabled ? "*6wire" : "unused";
2276 case 1: return "4wire";
2277 case 2: return "3wire";
2278 case 3: return "6wire";
2279 default: return "unknown";
2283 static int proc_otg_show(struct seq_file *s)
2290 if (cpu_is_omap24xx()) {
2291 ctrl_name = "control_devconf";
2292 trans = CONTROL_DEVCONF_REG;
2294 ctrl_name = "tranceiver_ctrl";
2295 trans = USB_TRANSCEIVER_CTRL_REG;
2297 seq_printf(s, "\nOTG rev %d.%d, %s %05x\n",
2298 tmp >> 4, tmp & 0xf, ctrl_name, trans);
2299 tmp = OTG_SYSCON_1_REG;
2300 seq_printf(s, "otg_syscon1 %08x usb2 %s, usb1 %s, usb0 %s,"
2302 trx_mode(USB2_TRX_MODE(tmp), trans & CONF_USB2_UNI_R),
2303 trx_mode(USB1_TRX_MODE(tmp), trans & CONF_USB1_UNI_R),
2304 (USB0_TRX_MODE(tmp) == 0 && !cpu_is_omap1710())
2306 : trx_mode(USB0_TRX_MODE(tmp), 1),
2307 (tmp & OTG_IDLE_EN) ? " !otg" : "",
2308 (tmp & HST_IDLE_EN) ? " !host" : "",
2309 (tmp & DEV_IDLE_EN) ? " !dev" : "",
2310 (tmp & OTG_RESET_DONE) ? " reset_done" : " reset_active");
2311 tmp = OTG_SYSCON_2_REG;
2312 seq_printf(s, "otg_syscon2 %08x%s" EIGHTBITS
2313 " b_ase_brst=%d hmc=%d\n", tmp,
2314 (tmp & OTG_EN) ? " otg_en" : "",
2315 (tmp & USBX_SYNCHRO) ? " synchro" : "",
2316 // much more SRP stuff
2317 (tmp & SRP_DATA) ? " srp_data" : "",
2318 (tmp & SRP_VBUS) ? " srp_vbus" : "",
2319 (tmp & OTG_PADEN) ? " otg_paden" : "",
2320 (tmp & HMC_PADEN) ? " hmc_paden" : "",
2321 (tmp & UHOST_EN) ? " uhost_en" : "",
2322 (tmp & HMC_TLLSPEED) ? " tllspeed" : "",
2323 (tmp & HMC_TLLATTACH) ? " tllattach" : "",
2327 seq_printf(s, "otg_ctrl %06x" EIGHTBITS EIGHTBITS "%s\n", tmp,
2328 (tmp & OTG_ASESSVLD) ? " asess" : "",
2329 (tmp & OTG_BSESSEND) ? " bsess_end" : "",
2330 (tmp & OTG_BSESSVLD) ? " bsess" : "",
2331 (tmp & OTG_VBUSVLD) ? " vbus" : "",
2332 (tmp & OTG_ID) ? " id" : "",
2333 (tmp & OTG_DRIVER_SEL) ? " DEVICE" : " HOST",
2334 (tmp & OTG_A_SETB_HNPEN) ? " a_setb_hnpen" : "",
2335 (tmp & OTG_A_BUSREQ) ? " a_bus" : "",
2336 (tmp & OTG_B_HNPEN) ? " b_hnpen" : "",
2337 (tmp & OTG_B_BUSREQ) ? " b_bus" : "",
2338 (tmp & OTG_BUSDROP) ? " busdrop" : "",
2339 (tmp & OTG_PULLDOWN) ? " down" : "",
2340 (tmp & OTG_PULLUP) ? " up" : "",
2341 (tmp & OTG_DRV_VBUS) ? " drv" : "",
2342 (tmp & OTG_PD_VBUS) ? " pd_vb" : "",
2343 (tmp & OTG_PU_VBUS) ? " pu_vb" : "",
2344 (tmp & OTG_PU_ID) ? " pu_id" : ""
2346 tmp = OTG_IRQ_EN_REG;
2347 seq_printf(s, "otg_irq_en %04x" "\n", tmp);
2348 tmp = OTG_IRQ_SRC_REG;
2349 seq_printf(s, "otg_irq_src %04x" "\n", tmp);
2350 tmp = OTG_OUTCTRL_REG;
2351 seq_printf(s, "otg_outctrl %04x" "\n", tmp);
2353 seq_printf(s, "otg_test %04x" "\n", tmp);
2357 static int proc_udc_show(struct seq_file *s, void *_)
2361 unsigned long flags;
2363 spin_lock_irqsave(&udc->lock, flags);
2365 seq_printf(s, "%s, version: " DRIVER_VERSION
2371 use_dma ? " (dma)" : "");
2373 tmp = UDC_REV_REG & 0xff;
2375 "UDC rev %d.%d, fifo mode %d, gadget %s\n"
2376 "hmc %d, transceiver %s\n",
2377 tmp >> 4, tmp & 0xf,
2379 udc->driver ? udc->driver->driver.name : "(none)",
2382 ? udc->transceiver->label
2383 : ((cpu_is_omap1710() || cpu_is_omap24xx())
2384 ? "external" : "(none)"));
2385 if (cpu_class_is_omap1()) {
2386 seq_printf(s, "ULPD control %04x req %04x status %04x\n",
2387 __REG16(ULPD_CLOCK_CTRL),
2388 __REG16(ULPD_SOFT_REQ),
2389 __REG16(ULPD_STATUS_REQ));
2392 /* OTG controller registers */
2393 if (!cpu_is_omap15xx())
2396 tmp = UDC_SYSCON1_REG;
2397 seq_printf(s, "\nsyscon1 %04x" EIGHTBITS "\n", tmp,
2398 (tmp & UDC_CFG_LOCK) ? " cfg_lock" : "",
2399 (tmp & UDC_DATA_ENDIAN) ? " data_endian" : "",
2400 (tmp & UDC_DMA_ENDIAN) ? " dma_endian" : "",
2401 (tmp & UDC_NAK_EN) ? " nak" : "",
2402 (tmp & UDC_AUTODECODE_DIS) ? " autodecode_dis" : "",
2403 (tmp & UDC_SELF_PWR) ? " self_pwr" : "",
2404 (tmp & UDC_SOFF_DIS) ? " soff_dis" : "",
2405 (tmp & UDC_PULLUP_EN) ? " PULLUP" : "");
2406 // syscon2 is write-only
2408 /* UDC controller registers */
2409 if (!(tmp & UDC_PULLUP_EN)) {
2410 seq_printf(s, "(suspended)\n");
2411 spin_unlock_irqrestore(&udc->lock, flags);
2415 tmp = UDC_DEVSTAT_REG;
2416 seq_printf(s, "devstat %04x" EIGHTBITS "%s%s\n", tmp,
2417 (tmp & UDC_B_HNP_ENABLE) ? " b_hnp" : "",
2418 (tmp & UDC_A_HNP_SUPPORT) ? " a_hnp" : "",
2419 (tmp & UDC_A_ALT_HNP_SUPPORT) ? " a_alt_hnp" : "",
2420 (tmp & UDC_R_WK_OK) ? " r_wk_ok" : "",
2421 (tmp & UDC_USB_RESET) ? " usb_reset" : "",
2422 (tmp & UDC_SUS) ? " SUS" : "",
2423 (tmp & UDC_CFG) ? " CFG" : "",
2424 (tmp & UDC_ADD) ? " ADD" : "",
2425 (tmp & UDC_DEF) ? " DEF" : "",
2426 (tmp & UDC_ATT) ? " ATT" : "");
2427 seq_printf(s, "sof %04x\n", UDC_SOF_REG);
2428 tmp = UDC_IRQ_EN_REG;
2429 seq_printf(s, "irq_en %04x" FOURBITS "%s\n", tmp,
2430 (tmp & UDC_SOF_IE) ? " sof" : "",
2431 (tmp & UDC_EPN_RX_IE) ? " epn_rx" : "",
2432 (tmp & UDC_EPN_TX_IE) ? " epn_tx" : "",
2433 (tmp & UDC_DS_CHG_IE) ? " ds_chg" : "",
2434 (tmp & UDC_EP0_IE) ? " ep0" : "");
2435 tmp = UDC_IRQ_SRC_REG;
2436 seq_printf(s, "irq_src %04x" EIGHTBITS "%s%s\n", tmp,
2437 (tmp & UDC_TXN_DONE) ? " txn_done" : "",
2438 (tmp & UDC_RXN_CNT) ? " rxn_cnt" : "",
2439 (tmp & UDC_RXN_EOT) ? " rxn_eot" : "",
2440 (tmp & UDC_SOF) ? " sof" : "",
2441 (tmp & UDC_EPN_RX) ? " epn_rx" : "",
2442 (tmp & UDC_EPN_TX) ? " epn_tx" : "",
2443 (tmp & UDC_DS_CHG) ? " ds_chg" : "",
2444 (tmp & UDC_SETUP) ? " setup" : "",
2445 (tmp & UDC_EP0_RX) ? " ep0out" : "",
2446 (tmp & UDC_EP0_TX) ? " ep0in" : "");
2450 tmp = UDC_DMA_IRQ_EN_REG;
2451 seq_printf(s, "dma_irq_en %04x%s" EIGHTBITS "\n", tmp,
2452 (tmp & UDC_TX_DONE_IE(3)) ? " tx2_done" : "",
2453 (tmp & UDC_RX_CNT_IE(3)) ? " rx2_cnt" : "",
2454 (tmp & UDC_RX_EOT_IE(3)) ? " rx2_eot" : "",
2456 (tmp & UDC_TX_DONE_IE(2)) ? " tx1_done" : "",
2457 (tmp & UDC_RX_CNT_IE(2)) ? " rx1_cnt" : "",
2458 (tmp & UDC_RX_EOT_IE(2)) ? " rx1_eot" : "",
2460 (tmp & UDC_TX_DONE_IE(1)) ? " tx0_done" : "",
2461 (tmp & UDC_RX_CNT_IE(1)) ? " rx0_cnt" : "",
2462 (tmp & UDC_RX_EOT_IE(1)) ? " rx0_eot" : "");
2464 tmp = UDC_RXDMA_CFG_REG;
2465 seq_printf(s, "rxdma_cfg %04x\n", tmp);
2467 for (i = 0; i < 3; i++) {
2468 if ((tmp & (0x0f << (i * 4))) == 0)
2470 seq_printf(s, "rxdma[%d] %04x\n", i,
2471 UDC_RXDMA_REG(i + 1));
2474 tmp = UDC_TXDMA_CFG_REG;
2475 seq_printf(s, "txdma_cfg %04x\n", tmp);
2477 for (i = 0; i < 3; i++) {
2478 if (!(tmp & (0x0f << (i * 4))))
2480 seq_printf(s, "txdma[%d] %04x\n", i,
2481 UDC_TXDMA_REG(i + 1));
2486 tmp = UDC_DEVSTAT_REG;
2487 if (tmp & UDC_ATT) {
2488 proc_ep_show(s, &udc->ep[0]);
2489 if (tmp & UDC_ADD) {
2490 list_for_each_entry (ep, &udc->gadget.ep_list,
2493 proc_ep_show(s, ep);
2497 spin_unlock_irqrestore(&udc->lock, flags);
2501 static int proc_udc_open(struct inode *inode, struct file *file)
2503 return single_open(file, proc_udc_show, NULL);
2506 static const struct file_operations proc_ops = {
2507 .owner = THIS_MODULE,
2508 .open = proc_udc_open,
2510 .llseek = seq_lseek,
2511 .release = single_release,
2514 static void create_proc_file(void)
2516 proc_create(proc_filename, 0, NULL, &proc_ops);
2519 static void remove_proc_file(void)
2521 remove_proc_entry(proc_filename, NULL);
2526 static inline void create_proc_file(void) {}
2527 static inline void remove_proc_file(void) {}
2531 /*-------------------------------------------------------------------------*/
2533 /* Before this controller can enumerate, we need to pick an endpoint
2534 * configuration, or "fifo_mode" That involves allocating 2KB of packet
2535 * buffer space among the endpoints we'll be operating.
2537 * NOTE: as of OMAP 1710 ES2.0, writing a new endpoint config when
2538 * UDC_SYSCON_1_REG.CFG_LOCK is set can now work. We won't use that
2539 * capability yet though.
2541 static unsigned __init
2542 omap_ep_setup(char *name, u8 addr, u8 type,
2543 unsigned buf, unsigned maxp, int dbuf)
2548 /* OUT endpoints first, then IN */
2549 ep = &udc->ep[addr & 0xf];
2550 if (addr & USB_DIR_IN)
2553 /* in case of ep init table bugs */
2554 BUG_ON(ep->name[0]);
2556 /* chip setup ... bit values are same for IN, OUT */
2557 if (type == USB_ENDPOINT_XFER_ISOC) {
2559 case 8: epn_rxtx = 0 << 12; break;
2560 case 16: epn_rxtx = 1 << 12; break;
2561 case 32: epn_rxtx = 2 << 12; break;
2562 case 64: epn_rxtx = 3 << 12; break;
2563 case 128: epn_rxtx = 4 << 12; break;
2564 case 256: epn_rxtx = 5 << 12; break;
2565 case 512: epn_rxtx = 6 << 12; break;
2568 epn_rxtx |= UDC_EPN_RX_ISO;
2571 /* double-buffering "not supported" on 15xx,
2572 * and ignored for PIO-IN on newer chips
2573 * (for more reliable behavior)
2575 if (!use_dma || cpu_is_omap15xx() || cpu_is_omap24xx())
2579 case 8: epn_rxtx = 0 << 12; break;
2580 case 16: epn_rxtx = 1 << 12; break;
2581 case 32: epn_rxtx = 2 << 12; break;
2582 case 64: epn_rxtx = 3 << 12; break;
2586 epn_rxtx |= UDC_EPN_RX_DB;
2587 init_timer(&ep->timer);
2588 ep->timer.function = pio_out_timer;
2589 ep->timer.data = (unsigned long) ep;
2592 epn_rxtx |= UDC_EPN_RX_VALID;
2594 epn_rxtx |= buf >> 3;
2596 DBG("%s addr %02x rxtx %04x maxp %d%s buf %d\n",
2597 name, addr, epn_rxtx, maxp, dbuf ? "x2" : "", buf);
2599 if (addr & USB_DIR_IN)
2600 UDC_EP_TX_REG(addr & 0xf) = epn_rxtx;
2602 UDC_EP_RX_REG(addr) = epn_rxtx;
2604 /* next endpoint's buffer starts after this one's */
2610 /* set up driver data structures */
2611 BUG_ON(strlen(name) >= sizeof ep->name);
2612 strlcpy(ep->name, name, sizeof ep->name);
2613 INIT_LIST_HEAD(&ep->queue);
2614 INIT_LIST_HEAD(&ep->iso);
2615 ep->bEndpointAddress = addr;
2616 ep->bmAttributes = type;
2617 ep->double_buf = dbuf;
2620 ep->ep.name = ep->name;
2621 ep->ep.ops = &omap_ep_ops;
2622 ep->ep.maxpacket = ep->maxpacket = maxp;
2623 list_add_tail (&ep->ep.ep_list, &udc->gadget.ep_list);
2628 static void omap_udc_release(struct device *dev)
2630 complete(udc->done);
2636 omap_udc_setup(struct platform_device *odev, struct otg_transceiver *xceiv)
2640 /* abolish any previous hardware state */
2641 UDC_SYSCON1_REG = 0;
2643 UDC_IRQ_SRC_REG = UDC_IRQ_SRC_MASK;
2644 UDC_DMA_IRQ_EN_REG = 0;
2645 UDC_RXDMA_CFG_REG = 0;
2646 UDC_TXDMA_CFG_REG = 0;
2648 /* UDC_PULLUP_EN gates the chip clock */
2649 // OTG_SYSCON_1_REG |= DEV_IDLE_EN;
2651 udc = kzalloc(sizeof(*udc), GFP_KERNEL);
2655 spin_lock_init (&udc->lock);
2657 udc->gadget.ops = &omap_gadget_ops;
2658 udc->gadget.ep0 = &udc->ep[0].ep;
2659 INIT_LIST_HEAD(&udc->gadget.ep_list);
2660 INIT_LIST_HEAD(&udc->iso);
2661 udc->gadget.speed = USB_SPEED_UNKNOWN;
2662 udc->gadget.name = driver_name;
2664 device_initialize(&udc->gadget.dev);
2665 strcpy (udc->gadget.dev.bus_id, "gadget");
2666 udc->gadget.dev.release = omap_udc_release;
2667 udc->gadget.dev.parent = &odev->dev;
2669 udc->gadget.dev.dma_mask = odev->dev.dma_mask;
2671 udc->transceiver = xceiv;
2673 /* ep0 is special; put it right after the SETUP buffer */
2674 buf = omap_ep_setup("ep0", 0, USB_ENDPOINT_XFER_CONTROL,
2675 8 /* after SETUP */, 64 /* maxpacket */, 0);
2676 list_del_init(&udc->ep[0].ep.ep_list);
2678 /* initially disable all non-ep0 endpoints */
2679 for (tmp = 1; tmp < 15; tmp++) {
2680 UDC_EP_RX_REG(tmp) = 0;
2681 UDC_EP_TX_REG(tmp) = 0;
2684 #define OMAP_BULK_EP(name,addr) \
2685 buf = omap_ep_setup(name "-bulk", addr, \
2686 USB_ENDPOINT_XFER_BULK, buf, 64, 1);
2687 #define OMAP_INT_EP(name,addr, maxp) \
2688 buf = omap_ep_setup(name "-int", addr, \
2689 USB_ENDPOINT_XFER_INT, buf, maxp, 0);
2690 #define OMAP_ISO_EP(name,addr, maxp) \
2691 buf = omap_ep_setup(name "-iso", addr, \
2692 USB_ENDPOINT_XFER_ISOC, buf, maxp, 1);
2694 switch (fifo_mode) {
2696 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2697 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2698 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2701 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2702 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2703 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2705 OMAP_BULK_EP("ep3in", USB_DIR_IN | 3);
2706 OMAP_BULK_EP("ep4out", USB_DIR_OUT | 4);
2707 OMAP_INT_EP("ep10in", USB_DIR_IN | 10, 16);
2709 OMAP_BULK_EP("ep5in", USB_DIR_IN | 5);
2710 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
2711 OMAP_INT_EP("ep11in", USB_DIR_IN | 11, 16);
2713 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2714 OMAP_BULK_EP("ep6out", USB_DIR_OUT | 6);
2715 OMAP_INT_EP("ep12in", USB_DIR_IN | 12, 16);
2717 OMAP_BULK_EP("ep7in", USB_DIR_IN | 7);
2718 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
2719 OMAP_INT_EP("ep13in", USB_DIR_IN | 13, 16);
2720 OMAP_INT_EP("ep13out", USB_DIR_OUT | 13, 16);
2722 OMAP_BULK_EP("ep8in", USB_DIR_IN | 8);
2723 OMAP_BULK_EP("ep8out", USB_DIR_OUT | 8);
2724 OMAP_INT_EP("ep14in", USB_DIR_IN | 14, 16);
2725 OMAP_INT_EP("ep14out", USB_DIR_OUT | 14, 16);
2727 OMAP_BULK_EP("ep15in", USB_DIR_IN | 15);
2728 OMAP_BULK_EP("ep15out", USB_DIR_OUT | 15);
2733 case 2: /* mixed iso/bulk */
2734 OMAP_ISO_EP("ep1in", USB_DIR_IN | 1, 256);
2735 OMAP_ISO_EP("ep2out", USB_DIR_OUT | 2, 256);
2736 OMAP_ISO_EP("ep3in", USB_DIR_IN | 3, 128);
2737 OMAP_ISO_EP("ep4out", USB_DIR_OUT | 4, 128);
2739 OMAP_INT_EP("ep5in", USB_DIR_IN | 5, 16);
2741 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2742 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
2743 OMAP_INT_EP("ep8in", USB_DIR_IN | 8, 16);
2745 case 3: /* mixed bulk/iso */
2746 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2747 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2748 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2750 OMAP_BULK_EP("ep4in", USB_DIR_IN | 4);
2751 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
2752 OMAP_INT_EP("ep6in", USB_DIR_IN | 6, 16);
2754 OMAP_ISO_EP("ep7in", USB_DIR_IN | 7, 256);
2755 OMAP_ISO_EP("ep8out", USB_DIR_OUT | 8, 256);
2756 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2760 /* add more modes as needed */
2763 ERR("unsupported fifo_mode #%d\n", fifo_mode);
2766 UDC_SYSCON1_REG = UDC_CFG_LOCK|UDC_SELF_PWR;
2767 INFO("fifo mode %d, %d bytes not used\n", fifo_mode, 2048 - buf);
2771 static int __init omap_udc_probe(struct platform_device *pdev)
2773 int status = -ENODEV;
2775 struct otg_transceiver *xceiv = NULL;
2776 const char *type = NULL;
2777 struct omap_usb_config *config = pdev->dev.platform_data;
2779 struct clk *hhc_clk;
2781 /* NOTE: "knows" the order of the resources! */
2782 if (!request_mem_region(pdev->resource[0].start,
2783 pdev->resource[0].end - pdev->resource[0].start + 1,
2785 DBG("request_mem_region failed\n");
2789 if (cpu_is_omap16xx()) {
2790 dc_clk = clk_get(&pdev->dev, "usb_dc_ck");
2791 hhc_clk = clk_get(&pdev->dev, "usb_hhc_ck");
2792 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2793 /* can't use omap_udc_enable_clock yet */
2795 clk_enable(hhc_clk);
2799 if (cpu_is_omap24xx()) {
2800 dc_clk = clk_get(&pdev->dev, "usb_fck");
2801 hhc_clk = clk_get(&pdev->dev, "usb_l4_ick");
2802 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2803 /* can't use omap_udc_enable_clock yet */
2805 clk_enable(hhc_clk);
2809 INFO("OMAP UDC rev %d.%d%s\n",
2810 UDC_REV_REG >> 4, UDC_REV_REG & 0xf,
2811 config->otg ? ", Mini-AB" : "");
2813 /* use the mode given to us by board init code */
2814 if (cpu_is_omap15xx()) {
2818 if (machine_without_vbus_sense()) {
2819 /* just set up software VBUS detect, and then
2820 * later rig it so we always report VBUS.
2821 * FIXME without really sensing VBUS, we can't
2822 * know when to turn PULLUP_EN on/off; and that
2823 * means we always "need" the 48MHz clock.
2825 u32 tmp = FUNC_MUX_CTRL_0_REG;
2827 FUNC_MUX_CTRL_0_REG &= ~VBUS_CTRL_1510;
2828 tmp |= VBUS_MODE_1510;
2829 tmp &= ~VBUS_CTRL_1510;
2830 FUNC_MUX_CTRL_0_REG = tmp;
2833 /* The transceiver may package some GPIO logic or handle
2834 * loopback and/or transceiverless setup; if we find one,
2835 * use it. Except for OTG, we don't _need_ to talk to one;
2836 * but not having one probably means no VBUS detection.
2838 xceiv = otg_get_transceiver();
2840 type = xceiv->label;
2841 else if (config->otg) {
2842 DBG("OTG requires external transceiver!\n");
2848 if (cpu_is_omap24xx()) {
2849 /* this could be transceiverless in one of the
2850 * "we don't need to know" modes.
2857 case 0: /* POWERUP DEFAULT == 0 */
2861 if (!cpu_is_omap1710()) {
2862 type = "integrated";
2872 DBG("external transceiver not registered!\n");
2876 case 21: /* internal loopback */
2879 case 14: /* transceiverless */
2880 if (cpu_is_omap1710())
2890 ERR("unrecognized UDC HMC mode %d\n", hmc);
2895 INFO("hmc mode %d, %s transceiver\n", hmc, type);
2897 /* a "gadget" abstracts/virtualizes the controller */
2898 status = omap_udc_setup(pdev, xceiv);
2903 // "udc" is now valid
2904 pullup_disable(udc);
2905 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
2906 udc->gadget.is_otg = (config->otg != 0);
2909 /* starting with omap1710 es2.0, clear toggle is a separate bit */
2910 if (UDC_REV_REG >= 0x61)
2911 udc->clr_halt = UDC_RESET_EP | UDC_CLRDATA_TOGGLE;
2913 udc->clr_halt = UDC_RESET_EP;
2915 /* USB general purpose IRQ: ep0, state changes, dma, etc */
2916 status = request_irq(pdev->resource[1].start, omap_udc_irq,
2917 IRQF_SAMPLE_RANDOM, driver_name, udc);
2919 ERR("can't get irq %d, err %d\n",
2920 (int) pdev->resource[1].start, status);
2924 /* USB "non-iso" IRQ (PIO for all but ep0) */
2925 status = request_irq(pdev->resource[2].start, omap_udc_pio_irq,
2926 IRQF_SAMPLE_RANDOM, "omap_udc pio", udc);
2928 ERR("can't get irq %d, err %d\n",
2929 (int) pdev->resource[2].start, status);
2933 status = request_irq(pdev->resource[3].start, omap_udc_iso_irq,
2934 IRQF_DISABLED, "omap_udc iso", udc);
2936 ERR("can't get irq %d, err %d\n",
2937 (int) pdev->resource[3].start, status);
2941 if (cpu_is_omap16xx()) {
2942 udc->dc_clk = dc_clk;
2943 udc->hhc_clk = hhc_clk;
2944 clk_disable(hhc_clk);
2945 clk_disable(dc_clk);
2948 if (cpu_is_omap24xx()) {
2949 udc->dc_clk = dc_clk;
2950 udc->hhc_clk = hhc_clk;
2951 /* FIXME OMAP2 don't release hhc & dc clock */
2953 clk_disable(hhc_clk);
2954 clk_disable(dc_clk);
2959 status = device_add(&udc->gadget.dev);
2962 /* If fail, fall through */
2965 free_irq(pdev->resource[2].start, udc);
2969 free_irq(pdev->resource[1].start, udc);
2977 put_device(xceiv->dev);
2979 if (cpu_is_omap16xx() || cpu_is_omap24xx()) {
2980 clk_disable(hhc_clk);
2981 clk_disable(dc_clk);
2986 release_mem_region(pdev->resource[0].start,
2987 pdev->resource[0].end - pdev->resource[0].start + 1);
2992 static int __exit omap_udc_remove(struct platform_device *pdev)
2994 DECLARE_COMPLETION_ONSTACK(done);
3003 pullup_disable(udc);
3004 if (udc->transceiver) {
3005 put_device(udc->transceiver->dev);
3006 udc->transceiver = NULL;
3008 UDC_SYSCON1_REG = 0;
3013 free_irq(pdev->resource[3].start, udc);
3015 free_irq(pdev->resource[2].start, udc);
3016 free_irq(pdev->resource[1].start, udc);
3019 if (udc->clk_requested)
3020 omap_udc_enable_clock(0);
3021 clk_put(udc->hhc_clk);
3022 clk_put(udc->dc_clk);
3025 release_mem_region(pdev->resource[0].start,
3026 pdev->resource[0].end - pdev->resource[0].start + 1);
3028 device_unregister(&udc->gadget.dev);
3029 wait_for_completion(&done);
3034 /* suspend/resume/wakeup from sysfs (echo > power/state) or when the
3035 * system is forced into deep sleep
3037 * REVISIT we should probably reject suspend requests when there's a host
3038 * session active, rather than disconnecting, at least on boards that can
3039 * report VBUS irqs (UDC_DEVSTAT_REG.UDC_ATT). And in any case, we need to
3040 * make host resumes and VBUS detection trigger OMAP wakeup events; that
3041 * may involve talking to an external transceiver (e.g. isp1301).
3044 static int omap_udc_suspend(struct platform_device *dev, pm_message_t message)
3048 devstat = UDC_DEVSTAT_REG;
3050 /* we're requesting 48 MHz clock if the pullup is enabled
3051 * (== we're attached to the host) and we're not suspended,
3052 * which would prevent entry to deep sleep...
3054 if ((devstat & UDC_ATT) != 0 && (devstat & UDC_SUS) == 0) {
3055 WARN("session active; suspend requires disconnect\n");
3056 omap_pullup(&udc->gadget, 0);
3062 static int omap_udc_resume(struct platform_device *dev)
3064 DBG("resume + wakeup/SRP\n");
3065 omap_pullup(&udc->gadget, 1);
3067 /* maybe the host would enumerate us if we nudged it */
3069 return omap_wakeup(&udc->gadget);
3072 /*-------------------------------------------------------------------------*/
3074 static struct platform_driver udc_driver = {
3075 .probe = omap_udc_probe,
3076 .remove = __exit_p(omap_udc_remove),
3077 .suspend = omap_udc_suspend,
3078 .resume = omap_udc_resume,
3080 .owner = THIS_MODULE,
3081 .name = (char *) driver_name,
3085 static int __init udc_init(void)
3087 INFO("%s, version: " DRIVER_VERSION
3091 "%s\n", driver_desc,
3092 use_dma ? " (dma)" : "");
3093 return platform_driver_register(&udc_driver);
3095 module_init(udc_init);
3097 static void __exit udc_exit(void)
3099 platform_driver_unregister(&udc_driver);
3101 module_exit(udc_exit);
3103 MODULE_DESCRIPTION(DRIVER_DESC);
3104 MODULE_LICENSE("GPL");
3105 MODULE_ALIAS("platform:omap_udc");