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 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/config.h>
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28 #include <linux/ioport.h>
29 #include <linux/types.h>
30 #include <linux/errno.h>
31 #include <linux/delay.h>
32 #include <linux/sched.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/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>
47 #include <asm/byteorder.h>
50 #include <asm/system.h>
51 #include <asm/unaligned.h>
52 #include <asm/mach-types.h>
54 #include <asm/arch/dma.h>
55 #include <asm/arch/mux.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)
75 * The OMAP UDC needs _very_ early endpoint setup: before enabling the
76 * D+ pullup to allow enumeration. That's too early for the gadget
77 * framework to use from usb_endpoint_enable(), which happens after
78 * enumeration as part of activating an interface. (But if we add an
79 * optional new "UDC not yet running" state to the gadget driver model,
80 * even just during driver binding, the endpoint autoconfig logic is the
81 * natural spot to manufacture new endpoints.)
83 * So instead of using endpoint enable calls to control the hardware setup,
84 * this driver defines a "fifo mode" parameter. It's used during driver
85 * initialization to choose among a set of pre-defined endpoint configs.
86 * See omap_udc_setup() for available modes, or to add others. That code
87 * lives in an init section, so use this driver as a module if you need
88 * to change the fifo mode after the kernel boots.
90 * Gadget drivers normally ignore endpoints they don't care about, and
91 * won't include them in configuration descriptors. That means only
92 * misbehaving hosts would even notice they exist.
95 static unsigned fifo_mode
= 3;
97 static unsigned fifo_mode
= 0;
100 /* "modprobe omap_udc fifo_mode=42", or else as a kernel
101 * boot parameter "omap_udc:fifo_mode=42"
103 module_param (fifo_mode
, uint
, 0);
104 MODULE_PARM_DESC (fifo_mode
, "endpoint setup (0 == default)");
107 static unsigned use_dma
= 1;
109 /* "modprobe omap_udc use_dma=y", or else as a kernel
110 * boot parameter "omap_udc:use_dma=y"
112 module_param (use_dma
, bool, 0);
113 MODULE_PARM_DESC (use_dma
, "enable/disable DMA");
116 /* save a bit of code */
118 #endif /* !USE_DMA */
121 static const char driver_name
[] = "omap_udc";
122 static const char driver_desc
[] = DRIVER_DESC
;
124 /*-------------------------------------------------------------------------*/
126 /* there's a notion of "current endpoint" for modifying endpoint
127 * state, and PIO access to its FIFO.
130 static void use_ep(struct omap_ep
*ep
, u16 select
)
132 u16 num
= ep
->bEndpointAddress
& 0x0f;
134 if (ep
->bEndpointAddress
& USB_DIR_IN
)
136 UDC_EP_NUM_REG
= num
| select
;
137 /* when select, MUST deselect later !! */
140 static inline void deselect_ep(void)
142 UDC_EP_NUM_REG
&= ~UDC_EP_SEL
;
143 /* 6 wait states before TX will happen */
146 static void dma_channel_claim(struct omap_ep
*ep
, unsigned preferred
);
148 /*-------------------------------------------------------------------------*/
150 static int omap_ep_enable(struct usb_ep
*_ep
,
151 const struct usb_endpoint_descriptor
*desc
)
153 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
154 struct omap_udc
*udc
;
158 /* catch various bogus parameters */
159 if (!_ep
|| !desc
|| ep
->desc
160 || desc
->bDescriptorType
!= USB_DT_ENDPOINT
161 || ep
->bEndpointAddress
!= desc
->bEndpointAddress
162 || ep
->maxpacket
< le16_to_cpu
163 (desc
->wMaxPacketSize
)) {
164 DBG("%s, bad ep or descriptor\n", __FUNCTION__
);
167 maxp
= le16_to_cpu (desc
->wMaxPacketSize
);
168 if ((desc
->bmAttributes
== USB_ENDPOINT_XFER_BULK
169 && maxp
!= ep
->maxpacket
)
170 || desc
->wMaxPacketSize
> ep
->maxpacket
171 || !desc
->wMaxPacketSize
) {
172 DBG("%s, bad %s maxpacket\n", __FUNCTION__
, _ep
->name
);
177 if ((desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
178 && desc
->bInterval
!= 1)) {
179 /* hardware wants period = 1; USB allows 2^(Interval-1) */
180 DBG("%s, unsupported ISO period %dms\n", _ep
->name
,
181 1 << (desc
->bInterval
- 1));
185 if (desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
186 DBG("%s, ISO nyet\n", _ep
->name
);
191 /* xfer types must match, except that interrupt ~= bulk */
192 if (ep
->bmAttributes
!= desc
->bmAttributes
193 && ep
->bmAttributes
!= USB_ENDPOINT_XFER_BULK
194 && desc
->bmAttributes
!= USB_ENDPOINT_XFER_INT
) {
195 DBG("%s, %s type mismatch\n", __FUNCTION__
, _ep
->name
);
200 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
201 DBG("%s, bogus device state\n", __FUNCTION__
);
205 spin_lock_irqsave(&udc
->lock
, flags
);
210 ep
->ep
.maxpacket
= maxp
;
212 /* set endpoint to initial state */
216 use_ep(ep
, UDC_EP_SEL
);
217 UDC_CTRL_REG
= UDC_RESET_EP
;
221 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
222 list_add(&ep
->iso
, &udc
->iso
);
224 /* maybe assign a DMA channel to this endpoint */
225 if (use_dma
&& desc
->bmAttributes
== USB_ENDPOINT_XFER_BULK
)
226 /* FIXME ISO can dma, but prefers first channel */
227 dma_channel_claim(ep
, 0);
229 /* PIO OUT may RX packets */
230 if (desc
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
232 && !(ep
->bEndpointAddress
& USB_DIR_IN
)) {
233 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
234 ep
->ackwait
= 1 + ep
->double_buf
;
237 spin_unlock_irqrestore(&udc
->lock
, flags
);
238 VDBG("%s enabled\n", _ep
->name
);
242 static void nuke(struct omap_ep
*, int status
);
244 static int omap_ep_disable(struct usb_ep
*_ep
)
246 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
249 if (!_ep
|| !ep
->desc
) {
250 DBG("%s, %s not enabled\n", __FUNCTION__
,
251 _ep
? ep
->ep
.name
: NULL
);
255 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
257 nuke (ep
, -ESHUTDOWN
);
258 ep
->ep
.maxpacket
= ep
->maxpacket
;
260 UDC_CTRL_REG
= UDC_SET_HALT
;
261 list_del_init(&ep
->iso
);
262 del_timer(&ep
->timer
);
264 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
266 VDBG("%s disabled\n", _ep
->name
);
270 /*-------------------------------------------------------------------------*/
272 static struct usb_request
*
273 omap_alloc_request(struct usb_ep
*ep
, int gfp_flags
)
275 struct omap_req
*req
;
277 req
= kmalloc(sizeof *req
, gfp_flags
);
279 memset (req
, 0, sizeof *req
);
280 req
->req
.dma
= DMA_ADDR_INVALID
;
281 INIT_LIST_HEAD (&req
->queue
);
287 omap_free_request(struct usb_ep
*ep
, struct usb_request
*_req
)
289 struct omap_req
*req
= container_of(_req
, struct omap_req
, req
);
295 /*-------------------------------------------------------------------------*/
308 ep
= container_of(_ep
, struct omap_ep
, ep
);
309 if (use_dma
&& ep
->has_dma
) {
311 if (!warned
&& bytes
< PAGE_SIZE
) {
312 dev_warn(ep
->udc
->gadget
.dev
.parent
,
313 "using dma_alloc_coherent for "
314 "small allocations wastes memory\n");
317 return dma_alloc_coherent(ep
->udc
->gadget
.dev
.parent
,
318 bytes
, dma
, gfp_flags
);
321 retval
= kmalloc(bytes
, gfp_flags
);
323 *dma
= virt_to_phys(retval
);
327 static void omap_free_buffer(
336 ep
= container_of(_ep
, struct omap_ep
, ep
);
337 if (use_dma
&& _ep
&& ep
->has_dma
)
338 dma_free_coherent(ep
->udc
->gadget
.dev
.parent
, bytes
, buf
, dma
);
343 /*-------------------------------------------------------------------------*/
346 done(struct omap_ep
*ep
, struct omap_req
*req
, int status
)
348 unsigned stopped
= ep
->stopped
;
350 list_del_init(&req
->queue
);
352 if (req
->req
.status
== -EINPROGRESS
)
353 req
->req
.status
= status
;
355 status
= req
->req
.status
;
357 if (use_dma
&& ep
->has_dma
) {
359 dma_unmap_single(ep
->udc
->gadget
.dev
.parent
,
360 req
->req
.dma
, req
->req
.length
,
361 (ep
->bEndpointAddress
& USB_DIR_IN
)
364 req
->req
.dma
= DMA_ADDR_INVALID
;
367 dma_sync_single_for_cpu(ep
->udc
->gadget
.dev
.parent
,
368 req
->req
.dma
, req
->req
.length
,
369 (ep
->bEndpointAddress
& USB_DIR_IN
)
375 if (status
&& status
!= -ESHUTDOWN
)
377 VDBG("complete %s req %p stat %d len %u/%u\n",
378 ep
->ep
.name
, &req
->req
, status
,
379 req
->req
.actual
, req
->req
.length
);
381 /* don't modify queue heads during completion callback */
383 spin_unlock(&ep
->udc
->lock
);
384 req
->req
.complete(&ep
->ep
, &req
->req
);
385 spin_lock(&ep
->udc
->lock
);
386 ep
->stopped
= stopped
;
389 /*-------------------------------------------------------------------------*/
391 #define FIFO_FULL (UDC_NON_ISO_FIFO_FULL | UDC_ISO_FIFO_FULL)
392 #define FIFO_UNWRITABLE (UDC_EP_HALTED | FIFO_FULL)
394 #define FIFO_EMPTY (UDC_NON_ISO_FIFO_EMPTY | UDC_ISO_FIFO_EMPTY)
395 #define FIFO_UNREADABLE (UDC_EP_HALTED | FIFO_EMPTY)
398 write_packet(u8
*buf
, struct omap_req
*req
, unsigned max
)
403 len
= min(req
->req
.length
- req
->req
.actual
, max
);
404 req
->req
.actual
+= len
;
407 if (likely((((int)buf
) & 1) == 0)) {
410 UDC_DATA_REG
= *wp
++;
416 *(volatile u8
*)&UDC_DATA_REG
= *buf
++;
420 // FIXME change r/w fifo calling convention
423 // return: 0 = still running, 1 = completed, negative = errno
424 static int write_fifo(struct omap_ep
*ep
, struct omap_req
*req
)
431 buf
= req
->req
.buf
+ req
->req
.actual
;
434 /* PIO-IN isn't double buffered except for iso */
435 ep_stat
= UDC_STAT_FLG_REG
;
436 if (ep_stat
& FIFO_UNWRITABLE
)
439 count
= ep
->ep
.maxpacket
;
440 count
= write_packet(buf
, req
, count
);
441 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
444 /* last packet is often short (sometimes a zlp) */
445 if (count
!= ep
->ep
.maxpacket
)
447 else if (req
->req
.length
== req
->req
.actual
453 /* NOTE: requests complete when all IN data is in a
454 * FIFO (or sometimes later, if a zlp was needed).
455 * Use usb_ep_fifo_status() where needed.
463 read_packet(u8
*buf
, struct omap_req
*req
, unsigned avail
)
468 len
= min(req
->req
.length
- req
->req
.actual
, avail
);
469 req
->req
.actual
+= len
;
472 if (likely((((int)buf
) & 1) == 0)) {
475 *wp
++ = UDC_DATA_REG
;
481 *buf
++ = *(volatile u8
*)&UDC_DATA_REG
;
485 // return: 0 = still running, 1 = queue empty, negative = errno
486 static int read_fifo(struct omap_ep
*ep
, struct omap_req
*req
)
489 unsigned count
, avail
;
492 buf
= req
->req
.buf
+ req
->req
.actual
;
496 u16 ep_stat
= UDC_STAT_FLG_REG
;
499 if (ep_stat
& FIFO_EMPTY
) {
504 if (ep_stat
& UDC_EP_HALTED
)
507 if (ep_stat
& FIFO_FULL
)
508 avail
= ep
->ep
.maxpacket
;
510 avail
= UDC_RXFSTAT_REG
;
511 ep
->fnf
= ep
->double_buf
;
513 count
= read_packet(buf
, req
, avail
);
515 /* partial packet reads may not be errors */
516 if (count
< ep
->ep
.maxpacket
) {
518 /* overflowed this request? flush extra data */
519 if (count
!= avail
) {
520 req
->req
.status
= -EOVERFLOW
;
523 (void) *(volatile u8
*)&UDC_DATA_REG
;
525 } else if (req
->req
.length
== req
->req
.actual
)
530 if (!ep
->bEndpointAddress
)
539 /*-------------------------------------------------------------------------*/
541 static u16
dma_src_len(struct omap_ep
*ep
, dma_addr_t start
)
545 /* IN-DMA needs this on fault/cancel paths, so 15xx misreports
546 * the last transfer's bytecount by more than a FIFO's worth.
548 if (cpu_is_omap15xx())
551 end
= omap_readw(OMAP_DMA_CSAC(ep
->lch
));
552 if (end
== ep
->dma_counter
)
555 end
|= start
& (0xffff << 16);
561 #define DMA_DEST_LAST(x) (cpu_is_omap15xx() \
562 ? OMAP_DMA_CSAC(x) /* really: CPC */ \
565 static u16
dma_dest_len(struct omap_ep
*ep
, dma_addr_t start
)
569 end
= omap_readw(DMA_DEST_LAST(ep
->lch
));
570 if (end
== ep
->dma_counter
)
573 end
|= start
& (0xffff << 16);
574 if (cpu_is_omap15xx())
582 /* Each USB transfer request using DMA maps to one or more DMA transfers.
583 * When DMA completion isn't request completion, the UDC continues with
584 * the next DMA transfer for that USB transfer.
587 static void next_in_dma(struct omap_ep
*ep
, struct omap_req
*req
)
590 unsigned length
= req
->req
.length
- req
->req
.actual
;
591 const int sync_mode
= cpu_is_omap15xx()
592 ? OMAP_DMA_SYNC_FRAME
593 : OMAP_DMA_SYNC_ELEMENT
;
595 /* measure length in either bytes or packets */
596 if ((cpu_is_omap16xx() && length
<= (UDC_TXN_TSC
+ 1))
597 || (cpu_is_omap15xx() && length
< ep
->maxpacket
)) {
598 txdma_ctrl
= UDC_TXN_EOT
| length
;
599 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S8
,
600 length
, 1, sync_mode
);
602 length
= min(length
/ ep
->maxpacket
,
603 (unsigned) UDC_TXN_TSC
+ 1);
605 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S8
,
606 ep
->ep
.maxpacket
, length
, sync_mode
);
607 length
*= ep
->maxpacket
;
609 omap_set_dma_src_params(ep
->lch
, OMAP_DMA_PORT_EMIFF
,
610 OMAP_DMA_AMODE_POST_INC
, req
->req
.dma
+ req
->req
.actual
);
612 omap_start_dma(ep
->lch
);
613 ep
->dma_counter
= omap_readw(OMAP_DMA_CSAC(ep
->lch
));
614 UDC_DMA_IRQ_EN_REG
|= UDC_TX_DONE_IE(ep
->dma_channel
);
615 UDC_TXDMA_REG(ep
->dma_channel
) = UDC_TXN_START
| txdma_ctrl
;
616 req
->dma_bytes
= length
;
619 static void finish_in_dma(struct omap_ep
*ep
, struct omap_req
*req
, int status
)
622 req
->req
.actual
+= req
->dma_bytes
;
624 /* return if this request needs to send data or zlp */
625 if (req
->req
.actual
< req
->req
.length
)
628 && req
->dma_bytes
!= 0
629 && (req
->req
.actual
% ep
->maxpacket
) == 0)
632 req
->req
.actual
+= dma_src_len(ep
, req
->req
.dma
636 omap_stop_dma(ep
->lch
);
637 UDC_DMA_IRQ_EN_REG
&= ~UDC_TX_DONE_IE(ep
->dma_channel
);
638 done(ep
, req
, status
);
641 static void next_out_dma(struct omap_ep
*ep
, struct omap_req
*req
)
645 /* NOTE: we filtered out "short reads" before, so we know
646 * the buffer has only whole numbers of packets.
649 /* set up this DMA transfer, enable the fifo, start */
650 packets
= (req
->req
.length
- req
->req
.actual
) / ep
->ep
.maxpacket
;
651 packets
= min(packets
, (unsigned)UDC_RXN_TC
+ 1);
652 req
->dma_bytes
= packets
* ep
->ep
.maxpacket
;
653 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S8
,
654 ep
->ep
.maxpacket
, packets
,
655 OMAP_DMA_SYNC_ELEMENT
);
656 omap_set_dma_dest_params(ep
->lch
, OMAP_DMA_PORT_EMIFF
,
657 OMAP_DMA_AMODE_POST_INC
, req
->req
.dma
+ req
->req
.actual
);
658 ep
->dma_counter
= omap_readw(DMA_DEST_LAST(ep
->lch
));
660 UDC_RXDMA_REG(ep
->dma_channel
) = UDC_RXN_STOP
| (packets
- 1);
661 UDC_DMA_IRQ_EN_REG
|= UDC_RX_EOT_IE(ep
->dma_channel
);
662 UDC_EP_NUM_REG
= (ep
->bEndpointAddress
& 0xf);
663 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
665 omap_start_dma(ep
->lch
);
669 finish_out_dma(struct omap_ep
*ep
, struct omap_req
*req
, int status
)
674 ep
->dma_counter
= (u16
) (req
->req
.dma
+ req
->req
.actual
);
675 count
= dma_dest_len(ep
, req
->req
.dma
+ req
->req
.actual
);
676 count
+= req
->req
.actual
;
677 if (count
<= req
->req
.length
)
678 req
->req
.actual
= count
;
680 if (count
!= req
->dma_bytes
|| status
)
681 omap_stop_dma(ep
->lch
);
683 /* if this wasn't short, request may need another transfer */
684 else if (req
->req
.actual
< req
->req
.length
)
688 UDC_DMA_IRQ_EN_REG
&= ~UDC_RX_EOT_IE(ep
->dma_channel
);
689 done(ep
, req
, status
);
692 static void dma_irq(struct omap_udc
*udc
, u16 irq_src
)
694 u16 dman_stat
= UDC_DMAN_STAT_REG
;
696 struct omap_req
*req
;
698 /* IN dma: tx to host */
699 if (irq_src
& UDC_TXN_DONE
) {
700 ep
= &udc
->ep
[16 + UDC_DMA_TX_SRC(dman_stat
)];
702 /* can see TXN_DONE after dma abort */
703 if (!list_empty(&ep
->queue
)) {
704 req
= container_of(ep
->queue
.next
,
705 struct omap_req
, queue
);
706 finish_in_dma(ep
, req
, 0);
708 UDC_IRQ_SRC_REG
= UDC_TXN_DONE
;
710 if (!list_empty (&ep
->queue
)) {
711 req
= container_of(ep
->queue
.next
,
712 struct omap_req
, queue
);
713 next_in_dma(ep
, req
);
717 /* OUT dma: rx from host */
718 if (irq_src
& UDC_RXN_EOT
) {
719 ep
= &udc
->ep
[UDC_DMA_RX_SRC(dman_stat
)];
721 /* can see RXN_EOT after dma abort */
722 if (!list_empty(&ep
->queue
)) {
723 req
= container_of(ep
->queue
.next
,
724 struct omap_req
, queue
);
725 finish_out_dma(ep
, req
, 0);
727 UDC_IRQ_SRC_REG
= UDC_RXN_EOT
;
729 if (!list_empty (&ep
->queue
)) {
730 req
= container_of(ep
->queue
.next
,
731 struct omap_req
, queue
);
732 next_out_dma(ep
, req
);
736 if (irq_src
& UDC_RXN_CNT
) {
737 ep
= &udc
->ep
[UDC_DMA_RX_SRC(dman_stat
)];
739 /* omap15xx does this unasked... */
740 VDBG("%s, RX_CNT irq?\n", ep
->ep
.name
);
741 UDC_IRQ_SRC_REG
= UDC_RXN_CNT
;
745 static void dma_error(int lch
, u16 ch_status
, void *data
)
747 struct omap_ep
*ep
= data
;
749 /* if ch_status & OMAP_DMA_DROP_IRQ ... */
750 /* if ch_status & OMAP_DMA_TOUT_IRQ ... */
751 ERR("%s dma error, lch %d status %02x\n", ep
->ep
.name
, lch
, ch_status
);
753 /* complete current transfer ... */
756 static void dma_channel_claim(struct omap_ep
*ep
, unsigned channel
)
759 int status
, restart
, is_in
;
761 is_in
= ep
->bEndpointAddress
& USB_DIR_IN
;
763 reg
= UDC_TXDMA_CFG_REG
;
765 reg
= UDC_RXDMA_CFG_REG
;
766 reg
|= 1 << 12; /* "pulse" activated */
770 if (channel
== 0 || channel
> 3) {
771 if ((reg
& 0x0f00) == 0)
773 else if ((reg
& 0x00f0) == 0)
775 else if ((reg
& 0x000f) == 0) /* preferred for ISO */
782 reg
|= (0x0f & ep
->bEndpointAddress
) << (4 * (channel
- 1));
783 ep
->dma_channel
= channel
;
786 status
= omap_request_dma(OMAP_DMA_USB_W2FC_TX0
- 1 + channel
,
787 ep
->ep
.name
, dma_error
, ep
, &ep
->lch
);
789 UDC_TXDMA_CFG_REG
= reg
;
790 omap_set_dma_dest_params(ep
->lch
,
792 OMAP_DMA_AMODE_CONSTANT
,
793 (unsigned long) io_v2p((u32
)&UDC_DATA_DMA_REG
));
796 status
= omap_request_dma(OMAP_DMA_USB_W2FC_RX0
- 1 + channel
,
797 ep
->ep
.name
, dma_error
, ep
, &ep
->lch
);
799 UDC_RXDMA_CFG_REG
= reg
;
800 omap_set_dma_src_params(ep
->lch
,
802 OMAP_DMA_AMODE_CONSTANT
,
803 (unsigned long) io_v2p((u32
)&UDC_DATA_DMA_REG
));
810 omap_disable_dma_irq(ep
->lch
, OMAP_DMA_BLOCK_IRQ
);
812 /* channel type P: hw synch (fifo) */
813 if (!cpu_is_omap15xx())
814 omap_writew(2, OMAP_DMA_LCH_CTRL(ep
->lch
));
818 /* restart any queue, even if the claim failed */
819 restart
= !ep
->stopped
&& !list_empty(&ep
->queue
);
822 DBG("%s no dma channel: %d%s\n", ep
->ep
.name
, status
,
823 restart
? " (restart)" : "");
825 DBG("%s claimed %cxdma%d lch %d%s\n", ep
->ep
.name
,
827 ep
->dma_channel
- 1, ep
->lch
,
828 restart
? " (restart)" : "");
831 struct omap_req
*req
;
832 req
= container_of(ep
->queue
.next
, struct omap_req
, queue
);
834 (is_in
? next_in_dma
: next_out_dma
)(ep
, req
);
836 use_ep(ep
, UDC_EP_SEL
);
837 (is_in
? write_fifo
: read_fifo
)(ep
, req
);
840 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
841 ep
->ackwait
= 1 + ep
->double_buf
;
843 /* IN: 6 wait states before it'll tx */
848 static void dma_channel_release(struct omap_ep
*ep
)
850 int shift
= 4 * (ep
->dma_channel
- 1);
851 u16 mask
= 0x0f << shift
;
852 struct omap_req
*req
;
855 /* abort any active usb transfer request */
856 if (!list_empty(&ep
->queue
))
857 req
= container_of(ep
->queue
.next
, struct omap_req
, queue
);
861 active
= ((1 << 7) & omap_readl(OMAP_DMA_CCR(ep
->lch
))) != 0;
863 DBG("%s release %s %cxdma%d %p\n", ep
->ep
.name
,
864 active
? "active" : "idle",
865 (ep
->bEndpointAddress
& USB_DIR_IN
) ? 't' : 'r',
866 ep
->dma_channel
- 1, req
);
868 /* wait till current packet DMA finishes, and fifo empties */
869 if (ep
->bEndpointAddress
& USB_DIR_IN
) {
870 UDC_TXDMA_CFG_REG
&= ~mask
;
873 finish_in_dma(ep
, req
, -ECONNRESET
);
875 /* clear FIFO; hosts probably won't empty it */
876 use_ep(ep
, UDC_EP_SEL
);
877 UDC_CTRL_REG
= UDC_CLR_EP
;
880 while (UDC_TXDMA_CFG_REG
& mask
)
883 UDC_RXDMA_CFG_REG
&= ~mask
;
885 /* dma empties the fifo */
886 while (UDC_RXDMA_CFG_REG
& mask
)
889 finish_out_dma(ep
, req
, -ECONNRESET
);
891 omap_free_dma(ep
->lch
);
894 /* has_dma still set, till endpoint is fully quiesced */
898 /*-------------------------------------------------------------------------*/
901 omap_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, int gfp_flags
)
903 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
904 struct omap_req
*req
= container_of(_req
, struct omap_req
, req
);
905 struct omap_udc
*udc
;
909 /* catch various bogus parameters */
910 if (!_req
|| !req
->req
.complete
|| !req
->req
.buf
911 || !list_empty(&req
->queue
)) {
912 DBG("%s, bad params\n", __FUNCTION__
);
915 if (!_ep
|| (!ep
->desc
&& ep
->bEndpointAddress
)) {
916 DBG("%s, bad ep\n", __FUNCTION__
);
919 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
920 if (req
->req
.length
> ep
->ep
.maxpacket
)
925 /* this isn't bogus, but OMAP DMA isn't the only hardware to
926 * have a hard time with partial packet reads... reject it.
930 && ep
->bEndpointAddress
!= 0
931 && (ep
->bEndpointAddress
& USB_DIR_IN
) == 0
932 && (req
->req
.length
% ep
->ep
.maxpacket
) != 0) {
933 DBG("%s, no partial packet OUT reads\n", __FUNCTION__
);
938 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
941 if (use_dma
&& ep
->has_dma
) {
942 if (req
->req
.dma
== DMA_ADDR_INVALID
) {
943 req
->req
.dma
= dma_map_single(
944 ep
->udc
->gadget
.dev
.parent
,
947 (ep
->bEndpointAddress
& USB_DIR_IN
)
952 dma_sync_single_for_device(
953 ep
->udc
->gadget
.dev
.parent
,
954 req
->req
.dma
, req
->req
.length
,
955 (ep
->bEndpointAddress
& USB_DIR_IN
)
962 VDBG("%s queue req %p, len %d buf %p\n",
963 ep
->ep
.name
, _req
, _req
->length
, _req
->buf
);
965 spin_lock_irqsave(&udc
->lock
, flags
);
967 req
->req
.status
= -EINPROGRESS
;
970 /* maybe kickstart non-iso i/o queues */
972 UDC_IRQ_EN_REG
|= UDC_SOF_IE
;
973 else if (list_empty(&ep
->queue
) && !ep
->stopped
&& !ep
->ackwait
) {
976 if (ep
->bEndpointAddress
== 0) {
977 if (!udc
->ep0_pending
|| !list_empty (&ep
->queue
)) {
978 spin_unlock_irqrestore(&udc
->lock
, flags
);
982 /* empty DATA stage? */
984 if (!req
->req
.length
) {
986 /* chip became CONFIGURED or ADDRESSED
987 * earlier; drivers may already have queued
988 * requests to non-control endpoints
990 if (udc
->ep0_set_config
) {
991 u16 irq_en
= UDC_IRQ_EN_REG
;
993 irq_en
|= UDC_DS_CHG_IE
| UDC_EP0_IE
;
994 if (!udc
->ep0_reset_config
)
995 irq_en
|= UDC_EPN_RX_IE
997 UDC_IRQ_EN_REG
= irq_en
;
1000 /* STATUS is reverse direction */
1001 UDC_EP_NUM_REG
= is_in
1003 : (UDC_EP_SEL
|UDC_EP_DIR
);
1004 UDC_CTRL_REG
= UDC_CLR_EP
;
1005 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1006 UDC_EP_NUM_REG
= udc
->ep0_in
? 0 : UDC_EP_DIR
;
1009 udc
->ep0_pending
= 0;
1013 /* non-empty DATA stage */
1015 UDC_EP_NUM_REG
= UDC_EP_SEL
|UDC_EP_DIR
;
1019 UDC_EP_NUM_REG
= UDC_EP_SEL
;
1022 is_in
= ep
->bEndpointAddress
& USB_DIR_IN
;
1024 use_ep(ep
, UDC_EP_SEL
);
1025 /* if ISO: SOF IRQs must be enabled/disabled! */
1029 (is_in
? next_in_dma
: next_out_dma
)(ep
, req
);
1031 if ((is_in
? write_fifo
: read_fifo
)(ep
, req
) == 1)
1035 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1036 ep
->ackwait
= 1 + ep
->double_buf
;
1038 /* IN: 6 wait states before it'll tx */
1043 /* irq handler advances the queue */
1045 list_add_tail(&req
->queue
, &ep
->queue
);
1046 spin_unlock_irqrestore(&udc
->lock
, flags
);
1051 static int omap_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
1053 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
1054 struct omap_req
*req
;
1055 unsigned long flags
;
1060 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1062 /* make sure it's actually queued on this endpoint */
1063 list_for_each_entry (req
, &ep
->queue
, queue
) {
1064 if (&req
->req
== _req
)
1067 if (&req
->req
!= _req
) {
1068 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1072 if (use_dma
&& ep
->dma_channel
&& ep
->queue
.next
== &req
->queue
) {
1073 int channel
= ep
->dma_channel
;
1075 /* releasing the channel cancels the request,
1076 * reclaiming the channel restarts the queue
1078 dma_channel_release(ep
);
1079 dma_channel_claim(ep
, channel
);
1081 done(ep
, req
, -ECONNRESET
);
1082 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1086 /*-------------------------------------------------------------------------*/
1088 static int omap_ep_set_halt(struct usb_ep
*_ep
, int value
)
1090 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
1091 unsigned long flags
;
1092 int status
= -EOPNOTSUPP
;
1094 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1096 /* just use protocol stalls for ep0; real halts are annoying */
1097 if (ep
->bEndpointAddress
== 0) {
1098 if (!ep
->udc
->ep0_pending
)
1101 if (ep
->udc
->ep0_set_config
) {
1102 WARN("error changing config?\n");
1103 UDC_SYSCON2_REG
= UDC_CLR_CFG
;
1105 UDC_SYSCON2_REG
= UDC_STALL_CMD
;
1106 ep
->udc
->ep0_pending
= 0;
1111 /* otherwise, all active non-ISO endpoints can halt */
1112 } else if (ep
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
&& ep
->desc
) {
1114 /* IN endpoints must already be idle */
1115 if ((ep
->bEndpointAddress
& USB_DIR_IN
)
1116 && !list_empty(&ep
->queue
)) {
1124 if (use_dma
&& ep
->dma_channel
1125 && !list_empty(&ep
->queue
)) {
1126 channel
= ep
->dma_channel
;
1127 dma_channel_release(ep
);
1131 use_ep(ep
, UDC_EP_SEL
);
1132 if (UDC_STAT_FLG_REG
& UDC_NON_ISO_FIFO_EMPTY
) {
1133 UDC_CTRL_REG
= UDC_SET_HALT
;
1140 dma_channel_claim(ep
, channel
);
1143 UDC_CTRL_REG
= UDC_RESET_EP
;
1145 if (!(ep
->bEndpointAddress
& USB_DIR_IN
)) {
1146 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1147 ep
->ackwait
= 1 + ep
->double_buf
;
1152 VDBG("%s %s halt stat %d\n", ep
->ep
.name
,
1153 value
? "set" : "clear", status
);
1155 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1159 static struct usb_ep_ops omap_ep_ops
= {
1160 .enable
= omap_ep_enable
,
1161 .disable
= omap_ep_disable
,
1163 .alloc_request
= omap_alloc_request
,
1164 .free_request
= omap_free_request
,
1166 .alloc_buffer
= omap_alloc_buffer
,
1167 .free_buffer
= omap_free_buffer
,
1169 .queue
= omap_ep_queue
,
1170 .dequeue
= omap_ep_dequeue
,
1172 .set_halt
= omap_ep_set_halt
,
1173 // fifo_status ... report bytes in fifo
1174 // fifo_flush ... flush fifo
1177 /*-------------------------------------------------------------------------*/
1179 static int omap_get_frame(struct usb_gadget
*gadget
)
1181 u16 sof
= UDC_SOF_REG
;
1182 return (sof
& UDC_TS_OK
) ? (sof
& UDC_TS
) : -EL2NSYNC
;
1185 static int omap_wakeup(struct usb_gadget
*gadget
)
1187 struct omap_udc
*udc
;
1188 unsigned long flags
;
1189 int retval
= -EHOSTUNREACH
;
1191 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1193 spin_lock_irqsave(&udc
->lock
, flags
);
1194 if (udc
->devstat
& UDC_SUS
) {
1195 /* NOTE: OTG spec erratum says that OTG devices may
1196 * issue wakeups without host enable.
1198 if (udc
->devstat
& (UDC_B_HNP_ENABLE
|UDC_R_WK_OK
)) {
1199 DBG("remote wakeup...\n");
1200 UDC_SYSCON2_REG
= UDC_RMT_WKP
;
1204 /* NOTE: non-OTG systems may use SRP TOO... */
1205 } else if (!(udc
->devstat
& UDC_ATT
)) {
1206 if (udc
->transceiver
)
1207 retval
= otg_start_srp(udc
->transceiver
);
1209 spin_unlock_irqrestore(&udc
->lock
, flags
);
1215 omap_set_selfpowered(struct usb_gadget
*gadget
, int is_selfpowered
)
1217 struct omap_udc
*udc
;
1218 unsigned long flags
;
1221 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1222 spin_lock_irqsave(&udc
->lock
, flags
);
1223 syscon1
= UDC_SYSCON1_REG
;
1225 syscon1
|= UDC_SELF_PWR
;
1227 syscon1
&= ~UDC_SELF_PWR
;
1228 UDC_SYSCON1_REG
= syscon1
;
1229 spin_unlock_irqrestore(&udc
->lock
, flags
);
1234 static int can_pullup(struct omap_udc
*udc
)
1236 return udc
->driver
&& udc
->softconnect
&& udc
->vbus_active
;
1239 static void pullup_enable(struct omap_udc
*udc
)
1241 UDC_SYSCON1_REG
|= UDC_PULLUP_EN
;
1242 #ifndef CONFIG_USB_OTG
1243 if (!cpu_is_omap15xx())
1244 OTG_CTRL_REG
|= OTG_BSESSVLD
;
1246 UDC_IRQ_EN_REG
= UDC_DS_CHG_IE
;
1249 static void pullup_disable(struct omap_udc
*udc
)
1251 #ifndef CONFIG_USB_OTG
1252 if (!cpu_is_omap15xx())
1253 OTG_CTRL_REG
&= ~OTG_BSESSVLD
;
1255 UDC_IRQ_EN_REG
= UDC_DS_CHG_IE
;
1256 UDC_SYSCON1_REG
&= ~UDC_PULLUP_EN
;
1260 * Called by whatever detects VBUS sessions: external transceiver
1261 * driver, or maybe GPIO0 VBUS IRQ. May request 48 MHz clock.
1263 static int omap_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1265 struct omap_udc
*udc
;
1266 unsigned long flags
;
1268 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1269 spin_lock_irqsave(&udc
->lock
, flags
);
1270 VDBG("VBUS %s\n", is_active
? "on" : "off");
1271 udc
->vbus_active
= (is_active
!= 0);
1272 if (cpu_is_omap15xx()) {
1273 /* "software" detect, ignored if !VBUS_MODE_1510 */
1275 FUNC_MUX_CTRL_0_REG
|= VBUS_CTRL_1510
;
1277 FUNC_MUX_CTRL_0_REG
&= ~VBUS_CTRL_1510
;
1279 if (can_pullup(udc
))
1282 pullup_disable(udc
);
1283 spin_unlock_irqrestore(&udc
->lock
, flags
);
1287 static int omap_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1289 struct omap_udc
*udc
;
1291 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1292 if (udc
->transceiver
)
1293 return otg_set_power(udc
->transceiver
, mA
);
1297 static int omap_pullup(struct usb_gadget
*gadget
, int is_on
)
1299 struct omap_udc
*udc
;
1300 unsigned long flags
;
1302 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1303 spin_lock_irqsave(&udc
->lock
, flags
);
1304 udc
->softconnect
= (is_on
!= 0);
1305 if (can_pullup(udc
))
1308 pullup_disable(udc
);
1309 spin_unlock_irqrestore(&udc
->lock
, flags
);
1313 static struct usb_gadget_ops omap_gadget_ops
= {
1314 .get_frame
= omap_get_frame
,
1315 .wakeup
= omap_wakeup
,
1316 .set_selfpowered
= omap_set_selfpowered
,
1317 .vbus_session
= omap_vbus_session
,
1318 .vbus_draw
= omap_vbus_draw
,
1319 .pullup
= omap_pullup
,
1322 /*-------------------------------------------------------------------------*/
1324 /* dequeue ALL requests; caller holds udc->lock */
1325 static void nuke(struct omap_ep
*ep
, int status
)
1327 struct omap_req
*req
;
1331 if (use_dma
&& ep
->dma_channel
)
1332 dma_channel_release(ep
);
1335 UDC_CTRL_REG
= UDC_CLR_EP
;
1336 if (ep
->bEndpointAddress
&& ep
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
)
1337 UDC_CTRL_REG
= UDC_SET_HALT
;
1339 while (!list_empty(&ep
->queue
)) {
1340 req
= list_entry(ep
->queue
.next
, struct omap_req
, queue
);
1341 done(ep
, req
, status
);
1345 /* caller holds udc->lock */
1346 static void udc_quiesce(struct omap_udc
*udc
)
1350 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1351 nuke(&udc
->ep
[0], -ESHUTDOWN
);
1352 list_for_each_entry (ep
, &udc
->gadget
.ep_list
, ep
.ep_list
)
1353 nuke(ep
, -ESHUTDOWN
);
1356 /*-------------------------------------------------------------------------*/
1358 static void update_otg(struct omap_udc
*udc
)
1362 if (!udc
->gadget
.is_otg
)
1365 if (OTG_CTRL_REG
& OTG_ID
)
1366 devstat
= UDC_DEVSTAT_REG
;
1370 udc
->gadget
.b_hnp_enable
= !!(devstat
& UDC_B_HNP_ENABLE
);
1371 udc
->gadget
.a_hnp_support
= !!(devstat
& UDC_A_HNP_SUPPORT
);
1372 udc
->gadget
.a_alt_hnp_support
= !!(devstat
& UDC_A_ALT_HNP_SUPPORT
);
1374 /* Enable HNP early, avoiding races on suspend irq path.
1375 * ASSUMES OTG state machine B_BUS_REQ input is true.
1377 if (udc
->gadget
.b_hnp_enable
)
1378 OTG_CTRL_REG
= (OTG_CTRL_REG
| OTG_B_HNPEN
| OTG_B_BUSREQ
)
1382 static void ep0_irq(struct omap_udc
*udc
, u16 irq_src
)
1384 struct omap_ep
*ep0
= &udc
->ep
[0];
1385 struct omap_req
*req
= 0;
1389 /* Clear any pending requests and then scrub any rx/tx state
1390 * before starting to handle the SETUP request.
1392 if (irq_src
& UDC_SETUP
) {
1393 u16 ack
= irq_src
& (UDC_EP0_TX
|UDC_EP0_RX
);
1397 UDC_IRQ_SRC_REG
= ack
;
1398 irq_src
= UDC_SETUP
;
1402 /* IN/OUT packets mean we're in the DATA or STATUS stage.
1403 * This driver uses only uses protocol stalls (ep0 never halts),
1404 * and if we got this far the gadget driver already had a
1405 * chance to stall. Tries to be forgiving of host oddities.
1407 * NOTE: the last chance gadget drivers have to stall control
1408 * requests is during their request completion callback.
1410 if (!list_empty(&ep0
->queue
))
1411 req
= container_of(ep0
->queue
.next
, struct omap_req
, queue
);
1413 /* IN == TX to host */
1414 if (irq_src
& UDC_EP0_TX
) {
1417 UDC_IRQ_SRC_REG
= UDC_EP0_TX
;
1418 UDC_EP_NUM_REG
= UDC_EP_SEL
|UDC_EP_DIR
;
1419 stat
= UDC_STAT_FLG_REG
;
1420 if (stat
& UDC_ACK
) {
1422 /* write next IN packet from response,
1423 * or set up the status stage.
1426 stat
= write_fifo(ep0
, req
);
1427 UDC_EP_NUM_REG
= UDC_EP_DIR
;
1428 if (!req
&& udc
->ep0_pending
) {
1429 UDC_EP_NUM_REG
= UDC_EP_SEL
;
1430 UDC_CTRL_REG
= UDC_CLR_EP
;
1431 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1433 udc
->ep0_pending
= 0;
1434 } /* else: 6 wait states before it'll tx */
1436 /* ack status stage of OUT transfer */
1437 UDC_EP_NUM_REG
= UDC_EP_DIR
;
1442 } else if (stat
& UDC_STALL
) {
1443 UDC_CTRL_REG
= UDC_CLR_HALT
;
1444 UDC_EP_NUM_REG
= UDC_EP_DIR
;
1446 UDC_EP_NUM_REG
= UDC_EP_DIR
;
1450 /* OUT == RX from host */
1451 if (irq_src
& UDC_EP0_RX
) {
1454 UDC_IRQ_SRC_REG
= UDC_EP0_RX
;
1455 UDC_EP_NUM_REG
= UDC_EP_SEL
;
1456 stat
= UDC_STAT_FLG_REG
;
1457 if (stat
& UDC_ACK
) {
1460 /* read next OUT packet of request, maybe
1461 * reactiviting the fifo; stall on errors.
1463 if (!req
|| (stat
= read_fifo(ep0
, req
)) < 0) {
1464 UDC_SYSCON2_REG
= UDC_STALL_CMD
;
1465 udc
->ep0_pending
= 0;
1467 } else if (stat
== 0)
1468 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1471 /* activate status stage */
1474 /* that may have STALLed ep0... */
1475 UDC_EP_NUM_REG
= UDC_EP_SEL
|UDC_EP_DIR
;
1476 UDC_CTRL_REG
= UDC_CLR_EP
;
1477 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1478 UDC_EP_NUM_REG
= UDC_EP_DIR
;
1479 udc
->ep0_pending
= 0;
1482 /* ack status stage of IN transfer */
1487 } else if (stat
& UDC_STALL
) {
1488 UDC_CTRL_REG
= UDC_CLR_HALT
;
1495 /* SETUP starts all control transfers */
1496 if (irq_src
& UDC_SETUP
) {
1499 struct usb_ctrlrequest r
;
1501 int status
= -EINVAL
;
1504 /* read the (latest) SETUP message */
1506 UDC_EP_NUM_REG
= UDC_SETUP_SEL
;
1507 /* two bytes at a time */
1508 u
.word
[0] = UDC_DATA_REG
;
1509 u
.word
[1] = UDC_DATA_REG
;
1510 u
.word
[2] = UDC_DATA_REG
;
1511 u
.word
[3] = UDC_DATA_REG
;
1513 } while (UDC_IRQ_SRC_REG
& UDC_SETUP
);
1514 le16_to_cpus (&u
.r
.wValue
);
1515 le16_to_cpus (&u
.r
.wIndex
);
1516 le16_to_cpus (&u
.r
.wLength
);
1518 /* Delegate almost all control requests to the gadget driver,
1519 * except for a handful of ch9 status/feature requests that
1520 * hardware doesn't autodecode _and_ the gadget API hides.
1522 udc
->ep0_in
= (u
.r
.bRequestType
& USB_DIR_IN
) != 0;
1523 udc
->ep0_set_config
= 0;
1524 udc
->ep0_pending
= 1;
1527 switch (u
.r
.bRequest
) {
1528 case USB_REQ_SET_CONFIGURATION
:
1529 /* udc needs to know when ep != 0 is valid */
1530 if (u
.r
.bRequestType
!= USB_RECIP_DEVICE
)
1532 if (u
.r
.wLength
!= 0)
1534 udc
->ep0_set_config
= 1;
1535 udc
->ep0_reset_config
= (u
.r
.wValue
== 0);
1536 VDBG("set config %d\n", u
.r
.wValue
);
1538 /* update udc NOW since gadget driver may start
1539 * queueing requests immediately; clear config
1540 * later if it fails the request.
1542 if (udc
->ep0_reset_config
)
1543 UDC_SYSCON2_REG
= UDC_CLR_CFG
;
1545 UDC_SYSCON2_REG
= UDC_DEV_CFG
;
1548 case USB_REQ_CLEAR_FEATURE
:
1549 /* clear endpoint halt */
1550 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
1552 if (u
.r
.wValue
!= USB_ENDPOINT_HALT
1553 || u
.r
.wLength
!= 0)
1555 ep
= &udc
->ep
[u
.r
.wIndex
& 0xf];
1557 if (u
.r
.wIndex
& USB_DIR_IN
)
1559 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
1563 UDC_CTRL_REG
= UDC_RESET_EP
;
1565 if (!(ep
->bEndpointAddress
& USB_DIR_IN
)) {
1566 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1567 ep
->ackwait
= 1 + ep
->double_buf
;
1570 VDBG("%s halt cleared by host\n", ep
->name
);
1571 goto ep0out_status_stage
;
1572 case USB_REQ_SET_FEATURE
:
1573 /* set endpoint halt */
1574 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
1576 if (u
.r
.wValue
!= USB_ENDPOINT_HALT
1577 || u
.r
.wLength
!= 0)
1579 ep
= &udc
->ep
[u
.r
.wIndex
& 0xf];
1580 if (u
.r
.wIndex
& USB_DIR_IN
)
1582 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
1583 || ep
== ep0
|| !ep
->desc
)
1585 if (use_dma
&& ep
->has_dma
) {
1586 /* this has rude side-effects (aborts) and
1587 * can't really work if DMA-IN is active
1589 DBG("%s host set_halt, NYET \n", ep
->name
);
1593 /* can't halt if fifo isn't empty... */
1594 UDC_CTRL_REG
= UDC_CLR_EP
;
1595 UDC_CTRL_REG
= UDC_SET_HALT
;
1596 VDBG("%s halted by host\n", ep
->name
);
1597 ep0out_status_stage
:
1599 UDC_EP_NUM_REG
= UDC_EP_SEL
|UDC_EP_DIR
;
1600 UDC_CTRL_REG
= UDC_CLR_EP
;
1601 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1602 UDC_EP_NUM_REG
= UDC_EP_DIR
;
1603 udc
->ep0_pending
= 0;
1605 case USB_REQ_GET_STATUS
:
1606 /* return interface status. if we were pedantic,
1607 * we'd detect non-existent interfaces, and stall.
1609 if (u
.r
.bRequestType
1610 != (USB_DIR_IN
|USB_RECIP_INTERFACE
))
1612 /* return two zero bytes */
1613 UDC_EP_NUM_REG
= UDC_EP_SEL
|UDC_EP_DIR
;
1615 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1616 UDC_EP_NUM_REG
= UDC_EP_DIR
;
1618 VDBG("GET_STATUS, interface %d\n", u
.r
.wIndex
);
1619 /* next, status stage */
1623 /* activate the ep0out fifo right away */
1624 if (!udc
->ep0_in
&& u
.r
.wLength
) {
1626 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1629 /* gadget drivers see class/vendor specific requests,
1630 * {SET,GET}_{INTERFACE,DESCRIPTOR,CONFIGURATION},
1633 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1634 u
.r
.bRequestType
, u
.r
.bRequest
,
1635 u
.r
.wValue
, u
.r
.wIndex
, u
.r
.wLength
);
1637 /* The gadget driver may return an error here,
1638 * causing an immediate protocol stall.
1640 * Else it must issue a response, either queueing a
1641 * response buffer for the DATA stage, or halting ep0
1642 * (causing a protocol stall, not a real halt). A
1643 * zero length buffer means no DATA stage.
1645 * It's fine to issue that response after the setup()
1646 * call returns, and this IRQ was handled.
1649 spin_unlock(&udc
->lock
);
1650 status
= udc
->driver
->setup (&udc
->gadget
, &u
.r
);
1651 spin_lock(&udc
->lock
);
1657 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1658 u
.r
.bRequestType
, u
.r
.bRequest
, status
);
1659 if (udc
->ep0_set_config
) {
1660 if (udc
->ep0_reset_config
)
1661 WARN("error resetting config?\n");
1663 UDC_SYSCON2_REG
= UDC_CLR_CFG
;
1665 UDC_SYSCON2_REG
= UDC_STALL_CMD
;
1666 udc
->ep0_pending
= 0;
1671 /*-------------------------------------------------------------------------*/
1673 #define OTG_FLAGS (UDC_B_HNP_ENABLE|UDC_A_HNP_SUPPORT|UDC_A_ALT_HNP_SUPPORT)
1675 static void devstate_irq(struct omap_udc
*udc
, u16 irq_src
)
1677 u16 devstat
, change
;
1679 devstat
= UDC_DEVSTAT_REG
;
1680 change
= devstat
^ udc
->devstat
;
1681 udc
->devstat
= devstat
;
1683 if (change
& (UDC_USB_RESET
|UDC_ATT
)) {
1686 if (change
& UDC_ATT
) {
1687 /* driver for any external transceiver will
1688 * have called omap_vbus_session() already
1690 if (devstat
& UDC_ATT
) {
1691 udc
->gadget
.speed
= USB_SPEED_FULL
;
1693 if (!udc
->transceiver
)
1695 // if (driver->connect) call it
1696 } else if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
1697 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1698 if (!udc
->transceiver
)
1699 pullup_disable(udc
);
1700 DBG("disconnect, gadget %s\n",
1701 udc
->driver
->driver
.name
);
1702 if (udc
->driver
->disconnect
) {
1703 spin_unlock(&udc
->lock
);
1704 udc
->driver
->disconnect(&udc
->gadget
);
1705 spin_lock(&udc
->lock
);
1711 if (change
& UDC_USB_RESET
) {
1712 if (devstat
& UDC_USB_RESET
) {
1715 udc
->gadget
.speed
= USB_SPEED_FULL
;
1716 INFO("USB reset done, gadget %s\n",
1717 udc
->driver
->driver
.name
);
1718 /* ep0 traffic is legal from now on */
1719 UDC_IRQ_EN_REG
= UDC_DS_CHG_IE
| UDC_EP0_IE
;
1721 change
&= ~UDC_USB_RESET
;
1724 if (change
& UDC_SUS
) {
1725 if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
1726 // FIXME tell isp1301 to suspend/resume (?)
1727 if (devstat
& UDC_SUS
) {
1730 /* HNP could be under way already */
1731 if (udc
->gadget
.speed
== USB_SPEED_FULL
1732 && udc
->driver
->suspend
) {
1733 spin_unlock(&udc
->lock
);
1734 udc
->driver
->suspend(&udc
->gadget
);
1735 spin_lock(&udc
->lock
);
1739 if (udc
->gadget
.speed
== USB_SPEED_FULL
1740 && udc
->driver
->resume
) {
1741 spin_unlock(&udc
->lock
);
1742 udc
->driver
->resume(&udc
->gadget
);
1743 spin_lock(&udc
->lock
);
1749 if (!cpu_is_omap15xx() && (change
& OTG_FLAGS
)) {
1751 change
&= ~OTG_FLAGS
;
1754 change
&= ~(UDC_CFG
|UDC_DEF
|UDC_ADD
);
1756 VDBG("devstat %03x, ignore change %03x\n",
1759 UDC_IRQ_SRC_REG
= UDC_DS_CHG
;
1763 omap_udc_irq(int irq
, void *_udc
, struct pt_regs
*r
)
1765 struct omap_udc
*udc
= _udc
;
1767 irqreturn_t status
= IRQ_NONE
;
1768 unsigned long flags
;
1770 spin_lock_irqsave(&udc
->lock
, flags
);
1771 irq_src
= UDC_IRQ_SRC_REG
;
1773 /* Device state change (usb ch9 stuff) */
1774 if (irq_src
& UDC_DS_CHG
) {
1775 devstate_irq(_udc
, irq_src
);
1776 status
= IRQ_HANDLED
;
1777 irq_src
&= ~UDC_DS_CHG
;
1780 /* EP0 control transfers */
1781 if (irq_src
& (UDC_EP0_RX
|UDC_SETUP
|UDC_EP0_TX
)) {
1782 ep0_irq(_udc
, irq_src
);
1783 status
= IRQ_HANDLED
;
1784 irq_src
&= ~(UDC_EP0_RX
|UDC_SETUP
|UDC_EP0_TX
);
1787 /* DMA transfer completion */
1788 if (use_dma
&& (irq_src
& (UDC_TXN_DONE
|UDC_RXN_CNT
|UDC_RXN_EOT
))) {
1789 dma_irq(_udc
, irq_src
);
1790 status
= IRQ_HANDLED
;
1791 irq_src
&= ~(UDC_TXN_DONE
|UDC_RXN_CNT
|UDC_RXN_EOT
);
1794 irq_src
&= ~(UDC_SOF
|UDC_EPN_TX
|UDC_EPN_RX
);
1796 DBG("udc_irq, unhandled %03x\n", irq_src
);
1797 spin_unlock_irqrestore(&udc
->lock
, flags
);
1802 /* workaround for seemingly-lost IRQs for RX ACKs... */
1803 #define PIO_OUT_TIMEOUT (jiffies + HZ/3)
1804 #define HALF_FULL(f) (!((f)&(UDC_NON_ISO_FIFO_FULL|UDC_NON_ISO_FIFO_EMPTY)))
1806 static void pio_out_timer(unsigned long _ep
)
1808 struct omap_ep
*ep
= (void *) _ep
;
1809 unsigned long flags
;
1812 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1813 if (!list_empty(&ep
->queue
) && ep
->ackwait
) {
1815 stat_flg
= UDC_STAT_FLG_REG
;
1817 if ((stat_flg
& UDC_ACK
) && (!(stat_flg
& UDC_FIFO_EN
)
1818 || (ep
->double_buf
&& HALF_FULL(stat_flg
)))) {
1819 struct omap_req
*req
;
1821 VDBG("%s: lose, %04x\n", ep
->ep
.name
, stat_flg
);
1822 req
= container_of(ep
->queue
.next
,
1823 struct omap_req
, queue
);
1824 UDC_EP_NUM_REG
= ep
->bEndpointAddress
| UDC_EP_SEL
;
1825 (void) read_fifo(ep
, req
);
1826 UDC_EP_NUM_REG
= ep
->bEndpointAddress
;
1827 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1828 ep
->ackwait
= 1 + ep
->double_buf
;
1831 mod_timer(&ep
->timer
, PIO_OUT_TIMEOUT
);
1832 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1836 omap_udc_pio_irq(int irq
, void *_dev
, struct pt_regs
*r
)
1838 u16 epn_stat
, irq_src
;
1839 irqreturn_t status
= IRQ_NONE
;
1842 struct omap_udc
*udc
= _dev
;
1843 struct omap_req
*req
;
1844 unsigned long flags
;
1846 spin_lock_irqsave(&udc
->lock
, flags
);
1847 epn_stat
= UDC_EPN_STAT_REG
;
1848 irq_src
= UDC_IRQ_SRC_REG
;
1850 /* handle OUT first, to avoid some wasteful NAKs */
1851 if (irq_src
& UDC_EPN_RX
) {
1852 epnum
= (epn_stat
>> 8) & 0x0f;
1853 UDC_IRQ_SRC_REG
= UDC_EPN_RX
;
1854 status
= IRQ_HANDLED
;
1855 ep
= &udc
->ep
[epnum
];
1858 UDC_EP_NUM_REG
= epnum
| UDC_EP_SEL
;
1860 if ((UDC_STAT_FLG_REG
& UDC_ACK
)) {
1862 if (!list_empty(&ep
->queue
)) {
1864 req
= container_of(ep
->queue
.next
,
1865 struct omap_req
, queue
);
1866 stat
= read_fifo(ep
, req
);
1867 if (!ep
->double_buf
)
1871 /* min 6 clock delay before clearing EP_SEL ... */
1872 epn_stat
= UDC_EPN_STAT_REG
;
1873 epn_stat
= UDC_EPN_STAT_REG
;
1874 UDC_EP_NUM_REG
= epnum
;
1876 /* enabling fifo _after_ clearing ACK, contrary to docs,
1877 * reduces lossage; timer still needed though (sigh).
1880 UDC_CTRL_REG
= UDC_SET_FIFO_EN
;
1881 ep
->ackwait
= 1 + ep
->double_buf
;
1883 mod_timer(&ep
->timer
, PIO_OUT_TIMEOUT
);
1886 /* then IN transfers */
1887 else if (irq_src
& UDC_EPN_TX
) {
1888 epnum
= epn_stat
& 0x0f;
1889 UDC_IRQ_SRC_REG
= UDC_EPN_TX
;
1890 status
= IRQ_HANDLED
;
1891 ep
= &udc
->ep
[16 + epnum
];
1894 UDC_EP_NUM_REG
= epnum
| UDC_EP_DIR
| UDC_EP_SEL
;
1895 if ((UDC_STAT_FLG_REG
& UDC_ACK
)) {
1897 if (!list_empty(&ep
->queue
)) {
1898 req
= container_of(ep
->queue
.next
,
1899 struct omap_req
, queue
);
1900 (void) write_fifo(ep
, req
);
1903 /* min 6 clock delay before clearing EP_SEL ... */
1904 epn_stat
= UDC_EPN_STAT_REG
;
1905 epn_stat
= UDC_EPN_STAT_REG
;
1906 UDC_EP_NUM_REG
= epnum
| UDC_EP_DIR
;
1907 /* then 6 clocks before it'd tx */
1910 spin_unlock_irqrestore(&udc
->lock
, flags
);
1916 omap_udc_iso_irq(int irq
, void *_dev
, struct pt_regs
*r
)
1918 struct omap_udc
*udc
= _dev
;
1921 unsigned long flags
;
1923 spin_lock_irqsave(&udc
->lock
, flags
);
1925 /* handle all non-DMA ISO transfers */
1926 list_for_each_entry (ep
, &udc
->iso
, iso
) {
1928 struct omap_req
*req
;
1930 if (ep
->has_dma
|| list_empty(&ep
->queue
))
1932 req
= list_entry(ep
->queue
.next
, struct omap_req
, queue
);
1934 use_ep(ep
, UDC_EP_SEL
);
1935 stat
= UDC_STAT_FLG_REG
;
1937 /* NOTE: like the other controller drivers, this isn't
1938 * currently reporting lost or damaged frames.
1940 if (ep
->bEndpointAddress
& USB_DIR_IN
) {
1941 if (stat
& UDC_MISS_IN
)
1942 /* done(ep, req, -EPROTO) */;
1944 write_fifo(ep
, req
);
1948 if (stat
& UDC_NO_RXPACKET
)
1949 status
= -EREMOTEIO
;
1950 else if (stat
& UDC_ISO_ERR
)
1952 else if (stat
& UDC_DATA_FLUSH
)
1956 /* done(ep, req, status) */;
1961 /* 6 wait states before next EP */
1964 if (!list_empty(&ep
->queue
))
1968 UDC_IRQ_EN_REG
&= ~UDC_SOF_IE
;
1969 UDC_IRQ_SRC_REG
= UDC_SOF
;
1971 spin_unlock_irqrestore(&udc
->lock
, flags
);
1976 /*-------------------------------------------------------------------------*/
1978 static struct omap_udc
*udc
;
1980 int usb_gadget_register_driver (struct usb_gadget_driver
*driver
)
1982 int status
= -ENODEV
;
1984 unsigned long flags
;
1986 /* basic sanity tests */
1990 // FIXME if otg, check: driver->is_otg
1991 || driver
->speed
< USB_SPEED_FULL
1997 spin_lock_irqsave(&udc
->lock
, flags
);
1999 spin_unlock_irqrestore(&udc
->lock
, flags
);
2004 list_for_each_entry (ep
, &udc
->gadget
.ep_list
, ep
.ep_list
) {
2006 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
2009 UDC_CTRL_REG
= UDC_SET_HALT
;
2011 udc
->ep0_pending
= 0;
2012 udc
->ep
[0].irqs
= 0;
2013 udc
->softconnect
= 1;
2015 /* hook up the driver */
2016 driver
->driver
.bus
= 0;
2017 udc
->driver
= driver
;
2018 udc
->gadget
.dev
.driver
= &driver
->driver
;
2019 spin_unlock_irqrestore(&udc
->lock
, flags
);
2021 status
= driver
->bind (&udc
->gadget
);
2023 DBG("bind to %s --> %d\n", driver
->driver
.name
, status
);
2024 udc
->gadget
.dev
.driver
= 0;
2028 DBG("bound to driver %s\n", driver
->driver
.name
);
2030 UDC_IRQ_SRC_REG
= UDC_IRQ_SRC_MASK
;
2032 /* connect to bus through transceiver */
2033 if (udc
->transceiver
) {
2034 status
= otg_set_peripheral(udc
->transceiver
, &udc
->gadget
);
2036 ERR("can't bind to transceiver\n");
2037 driver
->unbind (&udc
->gadget
);
2038 udc
->gadget
.dev
.driver
= 0;
2043 if (can_pullup(udc
))
2044 pullup_enable (udc
);
2046 pullup_disable (udc
);
2049 /* boards that don't have VBUS sensing can't autogate 48MHz;
2050 * can't enter deep sleep while a gadget driver is active.
2052 if (machine_is_omap_innovator() || machine_is_omap_osk())
2053 omap_vbus_session(&udc
->gadget
, 1);
2058 EXPORT_SYMBOL(usb_gadget_register_driver
);
2060 int usb_gadget_unregister_driver (struct usb_gadget_driver
*driver
)
2062 unsigned long flags
;
2063 int status
= -ENODEV
;
2067 if (!driver
|| driver
!= udc
->driver
)
2070 if (machine_is_omap_innovator() || machine_is_omap_osk())
2071 omap_vbus_session(&udc
->gadget
, 0);
2073 if (udc
->transceiver
)
2074 (void) otg_set_peripheral(udc
->transceiver
, 0);
2076 pullup_disable(udc
);
2078 spin_lock_irqsave(&udc
->lock
, flags
);
2080 spin_unlock_irqrestore(&udc
->lock
, flags
);
2082 driver
->unbind(&udc
->gadget
);
2083 udc
->gadget
.dev
.driver
= 0;
2087 DBG("unregistered driver '%s'\n", driver
->driver
.name
);
2090 EXPORT_SYMBOL(usb_gadget_unregister_driver
);
2093 /*-------------------------------------------------------------------------*/
2095 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2097 #include <linux/seq_file.h>
2099 static const char proc_filename
[] = "driver/udc";
2101 #define FOURBITS "%s%s%s%s"
2102 #define EIGHTBITS FOURBITS FOURBITS
2104 static void proc_ep_show(struct seq_file
*s
, struct omap_ep
*ep
)
2107 struct omap_req
*req
;
2112 if (use_dma
&& ep
->has_dma
)
2113 snprintf(buf
, sizeof buf
, "(%cxdma%d lch%d) ",
2114 (ep
->bEndpointAddress
& USB_DIR_IN
) ? 't' : 'r',
2115 ep
->dma_channel
- 1, ep
->lch
);
2119 stat_flg
= UDC_STAT_FLG_REG
;
2121 "\n%s %s%s%sirqs %ld stat %04x " EIGHTBITS FOURBITS
"%s\n",
2123 ep
->double_buf
? "dbuf " : "",
2124 ({char *s
; switch(ep
->ackwait
){
2125 case 0: s
= ""; break;
2126 case 1: s
= "(ackw) "; break;
2127 case 2: s
= "(ackw2) "; break;
2128 default: s
= "(?) "; break;
2131 (stat_flg
& UDC_NO_RXPACKET
) ? "no_rxpacket " : "",
2132 (stat_flg
& UDC_MISS_IN
) ? "miss_in " : "",
2133 (stat_flg
& UDC_DATA_FLUSH
) ? "data_flush " : "",
2134 (stat_flg
& UDC_ISO_ERR
) ? "iso_err " : "",
2135 (stat_flg
& UDC_ISO_FIFO_EMPTY
) ? "iso_fifo_empty " : "",
2136 (stat_flg
& UDC_ISO_FIFO_FULL
) ? "iso_fifo_full " : "",
2137 (stat_flg
& UDC_EP_HALTED
) ? "HALT " : "",
2138 (stat_flg
& UDC_STALL
) ? "STALL " : "",
2139 (stat_flg
& UDC_NAK
) ? "NAK " : "",
2140 (stat_flg
& UDC_ACK
) ? "ACK " : "",
2141 (stat_flg
& UDC_FIFO_EN
) ? "fifo_en " : "",
2142 (stat_flg
& UDC_NON_ISO_FIFO_EMPTY
) ? "fifo_empty " : "",
2143 (stat_flg
& UDC_NON_ISO_FIFO_FULL
) ? "fifo_full " : "");
2145 if (list_empty (&ep
->queue
))
2146 seq_printf(s
, "\t(queue empty)\n");
2148 list_for_each_entry (req
, &ep
->queue
, queue
) {
2149 unsigned length
= req
->req
.actual
;
2151 if (use_dma
&& buf
[0]) {
2152 length
+= ((ep
->bEndpointAddress
& USB_DIR_IN
)
2153 ? dma_src_len
: dma_dest_len
)
2154 (ep
, req
->req
.dma
+ length
);
2157 seq_printf(s
, "\treq %p len %d/%d buf %p\n",
2159 req
->req
.length
, req
->req
.buf
);
2163 static char *trx_mode(unsigned m
, int enabled
)
2166 case 0: return enabled
? "*6wire" : "unused";
2167 case 1: return "4wire";
2168 case 2: return "3wire";
2169 case 3: return "6wire";
2170 default: return "unknown";
2174 static int proc_otg_show(struct seq_file
*s
)
2180 trans
= USB_TRANSCEIVER_CTRL_REG
;
2181 seq_printf(s
, "OTG rev %d.%d, transceiver_ctrl %03x\n",
2182 tmp
>> 4, tmp
& 0xf, trans
);
2183 tmp
= OTG_SYSCON_1_REG
;
2184 seq_printf(s
, "otg_syscon1 %08x usb2 %s, usb1 %s, usb0 %s,"
2186 trx_mode(USB2_TRX_MODE(tmp
), trans
& CONF_USB2_UNI_R
),
2187 trx_mode(USB1_TRX_MODE(tmp
), trans
& CONF_USB1_UNI_R
),
2188 (USB0_TRX_MODE(tmp
) == 0)
2190 : trx_mode(USB0_TRX_MODE(tmp
), 1),
2191 (tmp
& OTG_IDLE_EN
) ? " !otg" : "",
2192 (tmp
& HST_IDLE_EN
) ? " !host" : "",
2193 (tmp
& DEV_IDLE_EN
) ? " !dev" : "",
2194 (tmp
& OTG_RESET_DONE
) ? " reset_done" : " reset_active");
2195 tmp
= OTG_SYSCON_2_REG
;
2196 seq_printf(s
, "otg_syscon2 %08x%s" EIGHTBITS
2197 " b_ase_brst=%d hmc=%d\n", tmp
,
2198 (tmp
& OTG_EN
) ? " otg_en" : "",
2199 (tmp
& USBX_SYNCHRO
) ? " synchro" : "",
2200 // much more SRP stuff
2201 (tmp
& SRP_DATA
) ? " srp_data" : "",
2202 (tmp
& SRP_VBUS
) ? " srp_vbus" : "",
2203 (tmp
& OTG_PADEN
) ? " otg_paden" : "",
2204 (tmp
& HMC_PADEN
) ? " hmc_paden" : "",
2205 (tmp
& UHOST_EN
) ? " uhost_en" : "",
2206 (tmp
& HMC_TLLSPEED
) ? " tllspeed" : "",
2207 (tmp
& HMC_TLLATTACH
) ? " tllattach" : "",
2211 seq_printf(s
, "otg_ctrl %06x" EIGHTBITS EIGHTBITS
"%s\n", tmp
,
2212 (tmp
& OTG_ASESSVLD
) ? " asess" : "",
2213 (tmp
& OTG_BSESSEND
) ? " bsess_end" : "",
2214 (tmp
& OTG_BSESSVLD
) ? " bsess" : "",
2215 (tmp
& OTG_VBUSVLD
) ? " vbus" : "",
2216 (tmp
& OTG_ID
) ? " id" : "",
2217 (tmp
& OTG_DRIVER_SEL
) ? " DEVICE" : " HOST",
2218 (tmp
& OTG_A_SETB_HNPEN
) ? " a_setb_hnpen" : "",
2219 (tmp
& OTG_A_BUSREQ
) ? " a_bus" : "",
2220 (tmp
& OTG_B_HNPEN
) ? " b_hnpen" : "",
2221 (tmp
& OTG_B_BUSREQ
) ? " b_bus" : "",
2222 (tmp
& OTG_BUSDROP
) ? " busdrop" : "",
2223 (tmp
& OTG_PULLDOWN
) ? " down" : "",
2224 (tmp
& OTG_PULLUP
) ? " up" : "",
2225 (tmp
& OTG_DRV_VBUS
) ? " drv" : "",
2226 (tmp
& OTG_PD_VBUS
) ? " pd_vb" : "",
2227 (tmp
& OTG_PU_VBUS
) ? " pu_vb" : "",
2228 (tmp
& OTG_PU_ID
) ? " pu_id" : ""
2230 tmp
= OTG_IRQ_EN_REG
;
2231 seq_printf(s
, "otg_irq_en %04x" "\n", tmp
);
2232 tmp
= OTG_IRQ_SRC_REG
;
2233 seq_printf(s
, "otg_irq_src %04x" "\n", tmp
);
2234 tmp
= OTG_OUTCTRL_REG
;
2235 seq_printf(s
, "otg_outctrl %04x" "\n", tmp
);
2237 seq_printf(s
, "otg_test %04x" "\n", tmp
);
2240 static int proc_udc_show(struct seq_file
*s
, void *_
)
2244 unsigned long flags
;
2246 spin_lock_irqsave(&udc
->lock
, flags
);
2248 seq_printf(s
, "%s, version: " DRIVER_VERSION
2254 use_dma
? " (dma)" : "");
2256 tmp
= UDC_REV_REG
& 0xff;
2258 "UDC rev %d.%d, fifo mode %d, gadget %s\n"
2259 "hmc %d, transceiver %s\n",
2260 tmp
>> 4, tmp
& 0xf,
2262 udc
->driver
? udc
->driver
->driver
.name
: "(none)",
2264 udc
->transceiver
? udc
->transceiver
->label
: "(none)");
2265 seq_printf(s
, "ULPD control %04x req %04x status %04x\n",
2266 __REG16(ULPD_CLOCK_CTRL
),
2267 __REG16(ULPD_SOFT_REQ
),
2268 __REG16(ULPD_STATUS_REQ
));
2270 /* OTG controller registers */
2271 if (!cpu_is_omap15xx())
2274 tmp
= UDC_SYSCON1_REG
;
2275 seq_printf(s
, "\nsyscon1 %04x" EIGHTBITS
"\n", tmp
,
2276 (tmp
& UDC_CFG_LOCK
) ? " cfg_lock" : "",
2277 (tmp
& UDC_DATA_ENDIAN
) ? " data_endian" : "",
2278 (tmp
& UDC_DMA_ENDIAN
) ? " dma_endian" : "",
2279 (tmp
& UDC_NAK_EN
) ? " nak" : "",
2280 (tmp
& UDC_AUTODECODE_DIS
) ? " autodecode_dis" : "",
2281 (tmp
& UDC_SELF_PWR
) ? " self_pwr" : "",
2282 (tmp
& UDC_SOFF_DIS
) ? " soff_dis" : "",
2283 (tmp
& UDC_PULLUP_EN
) ? " PULLUP" : "");
2284 // syscon2 is write-only
2286 /* UDC controller registers */
2287 if (!(tmp
& UDC_PULLUP_EN
)) {
2288 seq_printf(s
, "(suspended)\n");
2289 spin_unlock_irqrestore(&udc
->lock
, flags
);
2293 tmp
= UDC_DEVSTAT_REG
;
2294 seq_printf(s
, "devstat %04x" EIGHTBITS
"%s%s\n", tmp
,
2295 (tmp
& UDC_B_HNP_ENABLE
) ? " b_hnp" : "",
2296 (tmp
& UDC_A_HNP_SUPPORT
) ? " a_hnp" : "",
2297 (tmp
& UDC_A_ALT_HNP_SUPPORT
) ? " a_alt_hnp" : "",
2298 (tmp
& UDC_R_WK_OK
) ? " r_wk_ok" : "",
2299 (tmp
& UDC_USB_RESET
) ? " usb_reset" : "",
2300 (tmp
& UDC_SUS
) ? " SUS" : "",
2301 (tmp
& UDC_CFG
) ? " CFG" : "",
2302 (tmp
& UDC_ADD
) ? " ADD" : "",
2303 (tmp
& UDC_DEF
) ? " DEF" : "",
2304 (tmp
& UDC_ATT
) ? " ATT" : "");
2305 seq_printf(s
, "sof %04x\n", UDC_SOF_REG
);
2306 tmp
= UDC_IRQ_EN_REG
;
2307 seq_printf(s
, "irq_en %04x" FOURBITS
"%s\n", tmp
,
2308 (tmp
& UDC_SOF_IE
) ? " sof" : "",
2309 (tmp
& UDC_EPN_RX_IE
) ? " epn_rx" : "",
2310 (tmp
& UDC_EPN_TX_IE
) ? " epn_tx" : "",
2311 (tmp
& UDC_DS_CHG_IE
) ? " ds_chg" : "",
2312 (tmp
& UDC_EP0_IE
) ? " ep0" : "");
2313 tmp
= UDC_IRQ_SRC_REG
;
2314 seq_printf(s
, "irq_src %04x" EIGHTBITS
"%s%s\n", tmp
,
2315 (tmp
& UDC_TXN_DONE
) ? " txn_done" : "",
2316 (tmp
& UDC_RXN_CNT
) ? " rxn_cnt" : "",
2317 (tmp
& UDC_RXN_EOT
) ? " rxn_eot" : "",
2318 (tmp
& UDC_SOF
) ? " sof" : "",
2319 (tmp
& UDC_EPN_RX
) ? " epn_rx" : "",
2320 (tmp
& UDC_EPN_TX
) ? " epn_tx" : "",
2321 (tmp
& UDC_DS_CHG
) ? " ds_chg" : "",
2322 (tmp
& UDC_SETUP
) ? " setup" : "",
2323 (tmp
& UDC_EP0_RX
) ? " ep0out" : "",
2324 (tmp
& UDC_EP0_TX
) ? " ep0in" : "");
2328 tmp
= UDC_DMA_IRQ_EN_REG
;
2329 seq_printf(s
, "dma_irq_en %04x%s" EIGHTBITS
"\n", tmp
,
2330 (tmp
& UDC_TX_DONE_IE(3)) ? " tx2_done" : "",
2331 (tmp
& UDC_RX_CNT_IE(3)) ? " rx2_cnt" : "",
2332 (tmp
& UDC_RX_EOT_IE(3)) ? " rx2_eot" : "",
2334 (tmp
& UDC_TX_DONE_IE(2)) ? " tx1_done" : "",
2335 (tmp
& UDC_RX_CNT_IE(2)) ? " rx1_cnt" : "",
2336 (tmp
& UDC_RX_EOT_IE(2)) ? " rx1_eot" : "",
2338 (tmp
& UDC_TX_DONE_IE(1)) ? " tx0_done" : "",
2339 (tmp
& UDC_RX_CNT_IE(1)) ? " rx0_cnt" : "",
2340 (tmp
& UDC_RX_EOT_IE(1)) ? " rx0_eot" : "");
2342 tmp
= UDC_RXDMA_CFG_REG
;
2343 seq_printf(s
, "rxdma_cfg %04x\n", tmp
);
2345 for (i
= 0; i
< 3; i
++) {
2346 if ((tmp
& (0x0f << (i
* 4))) == 0)
2348 seq_printf(s
, "rxdma[%d] %04x\n", i
,
2349 UDC_RXDMA_REG(i
+ 1));
2352 tmp
= UDC_TXDMA_CFG_REG
;
2353 seq_printf(s
, "txdma_cfg %04x\n", tmp
);
2355 for (i
= 0; i
< 3; i
++) {
2356 if (!(tmp
& (0x0f << (i
* 4))))
2358 seq_printf(s
, "txdma[%d] %04x\n", i
,
2359 UDC_TXDMA_REG(i
+ 1));
2364 tmp
= UDC_DEVSTAT_REG
;
2365 if (tmp
& UDC_ATT
) {
2366 proc_ep_show(s
, &udc
->ep
[0]);
2367 if (tmp
& UDC_ADD
) {
2368 list_for_each_entry (ep
, &udc
->gadget
.ep_list
,
2371 proc_ep_show(s
, ep
);
2375 spin_unlock_irqrestore(&udc
->lock
, flags
);
2379 static int proc_udc_open(struct inode
*inode
, struct file
*file
)
2381 return single_open(file
, proc_udc_show
, 0);
2384 static struct file_operations proc_ops
= {
2385 .open
= proc_udc_open
,
2387 .llseek
= seq_lseek
,
2388 .release
= single_release
,
2391 static void create_proc_file(void)
2393 struct proc_dir_entry
*pde
;
2395 pde
= create_proc_entry (proc_filename
, 0, NULL
);
2397 pde
->proc_fops
= &proc_ops
;
2400 static void remove_proc_file(void)
2402 remove_proc_entry(proc_filename
, 0);
2407 static inline void create_proc_file(void) {}
2408 static inline void remove_proc_file(void) {}
2412 /*-------------------------------------------------------------------------*/
2414 /* Before this controller can enumerate, we need to pick an endpoint
2415 * configuration, or "fifo_mode" That involves allocating 2KB of packet
2416 * buffer space among the endpoints we'll be operating.
2418 static unsigned __init
2419 omap_ep_setup(char *name
, u8 addr
, u8 type
,
2420 unsigned buf
, unsigned maxp
, int dbuf
)
2425 /* OUT endpoints first, then IN */
2426 ep
= &udc
->ep
[addr
& 0xf];
2427 if (addr
& USB_DIR_IN
)
2430 /* in case of ep init table bugs */
2431 BUG_ON(ep
->name
[0]);
2433 /* chip setup ... bit values are same for IN, OUT */
2434 if (type
== USB_ENDPOINT_XFER_ISOC
) {
2436 case 8: epn_rxtx
= 0 << 12; break;
2437 case 16: epn_rxtx
= 1 << 12; break;
2438 case 32: epn_rxtx
= 2 << 12; break;
2439 case 64: epn_rxtx
= 3 << 12; break;
2440 case 128: epn_rxtx
= 4 << 12; break;
2441 case 256: epn_rxtx
= 5 << 12; break;
2442 case 512: epn_rxtx
= 6 << 12; break;
2445 epn_rxtx
|= UDC_EPN_RX_ISO
;
2448 /* double-buffering "not supported" on 15xx,
2449 * and ignored for PIO-IN on 16xx
2451 if (!use_dma
|| cpu_is_omap15xx())
2455 case 8: epn_rxtx
= 0 << 12; break;
2456 case 16: epn_rxtx
= 1 << 12; break;
2457 case 32: epn_rxtx
= 2 << 12; break;
2458 case 64: epn_rxtx
= 3 << 12; break;
2462 epn_rxtx
|= UDC_EPN_RX_DB
;
2463 init_timer(&ep
->timer
);
2464 ep
->timer
.function
= pio_out_timer
;
2465 ep
->timer
.data
= (unsigned long) ep
;
2468 epn_rxtx
|= UDC_EPN_RX_VALID
;
2470 epn_rxtx
|= buf
>> 3;
2472 DBG("%s addr %02x rxtx %04x maxp %d%s buf %d\n",
2473 name
, addr
, epn_rxtx
, maxp
, dbuf
? "x2" : "", buf
);
2475 if (addr
& USB_DIR_IN
)
2476 UDC_EP_TX_REG(addr
& 0xf) = epn_rxtx
;
2478 UDC_EP_RX_REG(addr
) = epn_rxtx
;
2480 /* next endpoint's buffer starts after this one's */
2486 /* set up driver data structures */
2487 BUG_ON(strlen(name
) >= sizeof ep
->name
);
2488 strlcpy(ep
->name
, name
, sizeof ep
->name
);
2489 INIT_LIST_HEAD(&ep
->queue
);
2490 INIT_LIST_HEAD(&ep
->iso
);
2491 ep
->bEndpointAddress
= addr
;
2492 ep
->bmAttributes
= type
;
2493 ep
->double_buf
= dbuf
;
2496 ep
->ep
.name
= ep
->name
;
2497 ep
->ep
.ops
= &omap_ep_ops
;
2498 ep
->ep
.maxpacket
= ep
->maxpacket
= maxp
;
2499 list_add_tail (&ep
->ep
.ep_list
, &udc
->gadget
.ep_list
);
2504 static void omap_udc_release(struct device
*dev
)
2506 complete(udc
->done
);
2512 omap_udc_setup(struct platform_device
*odev
, struct otg_transceiver
*xceiv
)
2516 /* abolish any previous hardware state */
2517 UDC_SYSCON1_REG
= 0;
2519 UDC_IRQ_SRC_REG
= UDC_IRQ_SRC_MASK
;
2520 UDC_DMA_IRQ_EN_REG
= 0;
2521 UDC_RXDMA_CFG_REG
= 0;
2522 UDC_TXDMA_CFG_REG
= 0;
2524 /* UDC_PULLUP_EN gates the chip clock */
2525 // OTG_SYSCON_1_REG |= DEV_IDLE_EN;
2527 udc
= kmalloc (sizeof *udc
, SLAB_KERNEL
);
2531 memset(udc
, 0, sizeof *udc
);
2532 spin_lock_init (&udc
->lock
);
2534 udc
->gadget
.ops
= &omap_gadget_ops
;
2535 udc
->gadget
.ep0
= &udc
->ep
[0].ep
;
2536 INIT_LIST_HEAD(&udc
->gadget
.ep_list
);
2537 INIT_LIST_HEAD(&udc
->iso
);
2538 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2539 udc
->gadget
.name
= driver_name
;
2541 device_initialize(&udc
->gadget
.dev
);
2542 strcpy (udc
->gadget
.dev
.bus_id
, "gadget");
2543 udc
->gadget
.dev
.release
= omap_udc_release
;
2544 udc
->gadget
.dev
.parent
= &odev
->dev
;
2546 udc
->gadget
.dev
.dma_mask
= odev
->dev
.dma_mask
;
2548 udc
->transceiver
= xceiv
;
2550 /* ep0 is special; put it right after the SETUP buffer */
2551 buf
= omap_ep_setup("ep0", 0, USB_ENDPOINT_XFER_CONTROL
,
2552 8 /* after SETUP */, 64 /* maxpacket */, 0);
2553 list_del_init(&udc
->ep
[0].ep
.ep_list
);
2555 /* initially disable all non-ep0 endpoints */
2556 for (tmp
= 1; tmp
< 15; tmp
++) {
2557 UDC_EP_RX_REG(tmp
) = 0;
2558 UDC_EP_TX_REG(tmp
) = 0;
2561 #define OMAP_BULK_EP(name,addr) \
2562 buf = omap_ep_setup(name "-bulk", addr, \
2563 USB_ENDPOINT_XFER_BULK, buf, 64, 1);
2564 #define OMAP_INT_EP(name,addr, maxp) \
2565 buf = omap_ep_setup(name "-int", addr, \
2566 USB_ENDPOINT_XFER_INT, buf, maxp, 0);
2567 #define OMAP_ISO_EP(name,addr, maxp) \
2568 buf = omap_ep_setup(name "-iso", addr, \
2569 USB_ENDPOINT_XFER_ISOC, buf, maxp, 1);
2571 switch (fifo_mode
) {
2573 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2574 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2575 OMAP_INT_EP("ep3in", USB_DIR_IN
| 3, 16);
2578 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2579 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2580 OMAP_BULK_EP("ep3in", USB_DIR_IN
| 3);
2581 OMAP_BULK_EP("ep4out", USB_DIR_OUT
| 4);
2583 OMAP_BULK_EP("ep5in", USB_DIR_IN
| 5);
2584 OMAP_BULK_EP("ep5out", USB_DIR_OUT
| 5);
2585 OMAP_BULK_EP("ep6in", USB_DIR_IN
| 6);
2586 OMAP_BULK_EP("ep6out", USB_DIR_OUT
| 6);
2588 OMAP_BULK_EP("ep7in", USB_DIR_IN
| 7);
2589 OMAP_BULK_EP("ep7out", USB_DIR_OUT
| 7);
2590 OMAP_BULK_EP("ep8in", USB_DIR_IN
| 8);
2591 OMAP_BULK_EP("ep8out", USB_DIR_OUT
| 8);
2593 OMAP_INT_EP("ep9in", USB_DIR_IN
| 9, 16);
2594 OMAP_INT_EP("ep10out", USB_DIR_IN
| 10, 16);
2595 OMAP_INT_EP("ep11in", USB_DIR_IN
| 9, 16);
2596 OMAP_INT_EP("ep12out", USB_DIR_IN
| 10, 16);
2600 case 2: /* mixed iso/bulk */
2601 OMAP_ISO_EP("ep1in", USB_DIR_IN
| 1, 256);
2602 OMAP_ISO_EP("ep2out", USB_DIR_OUT
| 2, 256);
2603 OMAP_ISO_EP("ep3in", USB_DIR_IN
| 3, 128);
2604 OMAP_ISO_EP("ep4out", USB_DIR_OUT
| 4, 128);
2606 OMAP_INT_EP("ep5in", USB_DIR_IN
| 5, 16);
2608 OMAP_BULK_EP("ep6in", USB_DIR_IN
| 6);
2609 OMAP_BULK_EP("ep7out", USB_DIR_OUT
| 7);
2610 OMAP_INT_EP("ep8in", USB_DIR_IN
| 8, 16);
2612 case 3: /* mixed bulk/iso */
2613 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2614 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2615 OMAP_INT_EP("ep3in", USB_DIR_IN
| 3, 16);
2617 OMAP_BULK_EP("ep4in", USB_DIR_IN
| 4);
2618 OMAP_BULK_EP("ep5out", USB_DIR_OUT
| 5);
2619 OMAP_INT_EP("ep6in", USB_DIR_IN
| 6, 16);
2621 OMAP_ISO_EP("ep7in", USB_DIR_IN
| 7, 256);
2622 OMAP_ISO_EP("ep8out", USB_DIR_OUT
| 8, 256);
2623 OMAP_INT_EP("ep9in", USB_DIR_IN
| 9, 16);
2627 /* add more modes as needed */
2630 ERR("unsupported fifo_mode #%d\n", fifo_mode
);
2633 UDC_SYSCON1_REG
= UDC_CFG_LOCK
|UDC_SELF_PWR
;
2634 INFO("fifo mode %d, %d bytes not used\n", fifo_mode
, 2048 - buf
);
2638 static int __init
omap_udc_probe(struct device
*dev
)
2640 struct platform_device
*odev
= to_platform_device(dev
);
2641 int status
= -ENODEV
;
2643 struct otg_transceiver
*xceiv
= 0;
2644 const char *type
= 0;
2645 struct omap_usb_config
*config
= dev
->platform_data
;
2647 /* NOTE: "knows" the order of the resources! */
2648 if (!request_mem_region(odev
->resource
[0].start
,
2649 odev
->resource
[0].end
- odev
->resource
[0].start
+ 1,
2651 DBG("request_mem_region failed\n");
2655 INFO("OMAP UDC rev %d.%d%s\n",
2656 UDC_REV_REG
>> 4, UDC_REV_REG
& 0xf,
2657 config
->otg
? ", Mini-AB" : "");
2659 /* use the mode given to us by board init code */
2660 if (cpu_is_omap15xx()) {
2664 if (machine_is_omap_innovator()) {
2665 /* just set up software VBUS detect, and then
2666 * later rig it so we always report VBUS.
2667 * FIXME without really sensing VBUS, we can't
2668 * know when to turn PULLUP_EN on/off; and that
2669 * means we always "need" the 48MHz clock.
2671 u32 tmp
= FUNC_MUX_CTRL_0_REG
;
2673 FUNC_MUX_CTRL_0_REG
&= ~VBUS_CTRL_1510
;
2674 tmp
|= VBUS_MODE_1510
;
2675 tmp
&= ~VBUS_CTRL_1510
;
2676 FUNC_MUX_CTRL_0_REG
= tmp
;
2686 xceiv
= otg_get_transceiver();
2688 DBG("external transceiver not registered!\n");
2691 type
= "(unknown external)";
2693 type
= xceiv
->label
;
2695 case 0: /* POWERUP DEFAULT == 0 */
2699 type
= "INTEGRATED";
2701 case 21: /* internal loopback */
2702 type
= "(loopback)";
2704 case 14: /* transceiverless */
2709 ERR("unrecognized UDC HMC mode %d\n", hmc
);
2713 INFO("hmc mode %d, transceiver %s\n", hmc
, type
);
2715 /* a "gadget" abstracts/virtualizes the controller */
2716 status
= omap_udc_setup(odev
, xceiv
);
2721 // "udc" is now valid
2722 pullup_disable(udc
);
2723 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
2724 udc
->gadget
.is_otg
= (config
->otg
!= 0);
2727 /* USB general purpose IRQ: ep0, state changes, dma, etc */
2728 status
= request_irq(odev
->resource
[1].start
, omap_udc_irq
,
2729 SA_SAMPLE_RANDOM
, driver_name
, udc
);
2731 ERR( "can't get irq %ld, err %d\n",
2732 odev
->resource
[1].start
, status
);
2736 /* USB "non-iso" IRQ (PIO for all but ep0) */
2737 status
= request_irq(odev
->resource
[2].start
, omap_udc_pio_irq
,
2738 SA_SAMPLE_RANDOM
, "omap_udc pio", udc
);
2740 ERR( "can't get irq %ld, err %d\n",
2741 odev
->resource
[2].start
, status
);
2745 status
= request_irq(odev
->resource
[3].start
, omap_udc_iso_irq
,
2746 SA_INTERRUPT
, "omap_udc iso", udc
);
2748 ERR("can't get irq %ld, err %d\n",
2749 odev
->resource
[3].start
, status
);
2755 device_add(&udc
->gadget
.dev
);
2760 free_irq(odev
->resource
[2].start
, udc
);
2764 free_irq(odev
->resource
[1].start
, udc
);
2772 put_device(xceiv
->dev
);
2773 release_mem_region(odev
->resource
[0].start
,
2774 odev
->resource
[0].end
- odev
->resource
[0].start
+ 1);
2778 static int __exit
omap_udc_remove(struct device
*dev
)
2780 struct platform_device
*odev
= to_platform_device(dev
);
2781 DECLARE_COMPLETION(done
);
2788 pullup_disable(udc
);
2789 if (udc
->transceiver
) {
2790 put_device(udc
->transceiver
->dev
);
2791 udc
->transceiver
= 0;
2793 UDC_SYSCON1_REG
= 0;
2798 free_irq(odev
->resource
[3].start
, udc
);
2800 free_irq(odev
->resource
[2].start
, udc
);
2801 free_irq(odev
->resource
[1].start
, udc
);
2803 release_mem_region(odev
->resource
[0].start
,
2804 odev
->resource
[0].end
- odev
->resource
[0].start
+ 1);
2806 device_unregister(&udc
->gadget
.dev
);
2807 wait_for_completion(&done
);
2812 static int omap_udc_suspend(struct device
*dev
, pm_message_t state
, u32 level
)
2817 DBG("suspend, state %d\n", state
);
2818 omap_pullup(&udc
->gadget
, 0);
2819 udc
->gadget
.dev
.power
.power_state
= PMSG_SUSPEND
;
2820 udc
->gadget
.dev
.parent
->power
.power_state
= PMSG_SUSPEND
;
2824 static int omap_udc_resume(struct device
*dev
, u32 level
)
2829 DBG("resume + wakeup/SRP\n");
2830 udc
->gadget
.dev
.parent
->power
.power_state
= PMSG_ON
;
2831 udc
->gadget
.dev
.power
.power_state
= PMSG_ON
;
2832 omap_pullup(&udc
->gadget
, 1);
2834 /* maybe the host would enumerate us if we nudged it */
2836 return omap_wakeup(&udc
->gadget
);
2839 /*-------------------------------------------------------------------------*/
2841 static struct device_driver udc_driver
= {
2842 .name
= (char *) driver_name
,
2843 .bus
= &platform_bus_type
,
2844 .probe
= omap_udc_probe
,
2845 .remove
= __exit_p(omap_udc_remove
),
2846 .suspend
= omap_udc_suspend
,
2847 .resume
= omap_udc_resume
,
2850 static int __init
udc_init(void)
2852 INFO("%s, version: " DRIVER_VERSION
2856 "%s\n", driver_desc
,
2857 use_dma
? " (dma)" : "");
2858 return driver_register(&udc_driver
);
2860 module_init(udc_init
);
2862 static void __exit
udc_exit(void)
2864 driver_unregister(&udc_driver
);
2866 module_exit(udc_exit
);
2868 MODULE_DESCRIPTION(DRIVER_DESC
);
2869 MODULE_LICENSE("GPL");