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>
47 #include <linux/prefetch.h>
49 #include <asm/byteorder.h>
52 #include <asm/system.h>
53 #include <asm/unaligned.h>
54 #include <asm/mach-types.h>
63 /* bulk DMA seems to be behaving for both IN and OUT */
69 #define DRIVER_DESC "OMAP UDC driver"
70 #define DRIVER_VERSION "4 October 2004"
72 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
74 #define OMAP2_DMA_CH(ch) (((ch) - 1) << 1)
75 #define OMAP24XX_DMA(name, ch) (OMAP24XX_DMA_##name + OMAP2_DMA_CH(ch))
78 * The OMAP UDC needs _very_ early endpoint setup: before enabling the
79 * D+ pullup to allow enumeration. That's too early for the gadget
80 * framework to use from usb_endpoint_enable(), which happens after
81 * enumeration as part of activating an interface. (But if we add an
82 * optional new "UDC not yet running" state to the gadget driver model,
83 * even just during driver binding, the endpoint autoconfig logic is the
84 * natural spot to manufacture new endpoints.)
86 * So instead of using endpoint enable calls to control the hardware setup,
87 * this driver defines a "fifo mode" parameter. It's used during driver
88 * initialization to choose among a set of pre-defined endpoint configs.
89 * See omap_udc_setup() for available modes, or to add others. That code
90 * lives in an init section, so use this driver as a module if you need
91 * to change the fifo mode after the kernel boots.
93 * Gadget drivers normally ignore endpoints they don't care about, and
94 * won't include them in configuration descriptors. That means only
95 * misbehaving hosts would even notice they exist.
98 static unsigned fifo_mode
= 3;
100 static unsigned fifo_mode
= 0;
103 /* "modprobe omap_udc fifo_mode=42", or else as a kernel
104 * boot parameter "omap_udc:fifo_mode=42"
106 module_param (fifo_mode
, uint
, 0);
107 MODULE_PARM_DESC (fifo_mode
, "endpoint configuration");
110 static unsigned use_dma
= 1;
112 /* "modprobe omap_udc use_dma=y", or else as a kernel
113 * boot parameter "omap_udc:use_dma=y"
115 module_param (use_dma
, bool, 0);
116 MODULE_PARM_DESC (use_dma
, "enable/disable DMA");
119 /* save a bit of code */
121 #endif /* !USE_DMA */
124 static const char driver_name
[] = "omap_udc";
125 static const char driver_desc
[] = DRIVER_DESC
;
127 /*-------------------------------------------------------------------------*/
129 /* there's a notion of "current endpoint" for modifying endpoint
130 * state, and PIO access to its FIFO.
133 static void use_ep(struct omap_ep
*ep
, u16 select
)
135 u16 num
= ep
->bEndpointAddress
& 0x0f;
137 if (ep
->bEndpointAddress
& USB_DIR_IN
)
139 omap_writew(num
| select
, UDC_EP_NUM
);
140 /* when select, MUST deselect later !! */
143 static inline void deselect_ep(void)
147 w
= omap_readw(UDC_EP_NUM
);
149 omap_writew(w
, UDC_EP_NUM
);
150 /* 6 wait states before TX will happen */
153 static void dma_channel_claim(struct omap_ep
*ep
, unsigned preferred
);
155 /*-------------------------------------------------------------------------*/
157 static int omap_ep_enable(struct usb_ep
*_ep
,
158 const struct usb_endpoint_descriptor
*desc
)
160 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
161 struct omap_udc
*udc
;
165 /* catch various bogus parameters */
166 if (!_ep
|| !desc
|| ep
->desc
167 || desc
->bDescriptorType
!= USB_DT_ENDPOINT
168 || ep
->bEndpointAddress
!= desc
->bEndpointAddress
169 || ep
->maxpacket
< usb_endpoint_maxp(desc
)) {
170 DBG("%s, bad ep or descriptor\n", __func__
);
173 maxp
= usb_endpoint_maxp(desc
);
174 if ((desc
->bmAttributes
== USB_ENDPOINT_XFER_BULK
175 && maxp
!= ep
->maxpacket
)
176 || usb_endpoint_maxp(desc
) > ep
->maxpacket
177 || !desc
->wMaxPacketSize
) {
178 DBG("%s, bad %s maxpacket\n", __func__
, _ep
->name
);
183 if ((desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
184 && desc
->bInterval
!= 1)) {
185 /* hardware wants period = 1; USB allows 2^(Interval-1) */
186 DBG("%s, unsupported ISO period %dms\n", _ep
->name
,
187 1 << (desc
->bInterval
- 1));
191 if (desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
192 DBG("%s, ISO nyet\n", _ep
->name
);
197 /* xfer types must match, except that interrupt ~= bulk */
198 if (ep
->bmAttributes
!= desc
->bmAttributes
199 && ep
->bmAttributes
!= USB_ENDPOINT_XFER_BULK
200 && desc
->bmAttributes
!= USB_ENDPOINT_XFER_INT
) {
201 DBG("%s, %s type mismatch\n", __func__
, _ep
->name
);
206 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
207 DBG("%s, bogus device state\n", __func__
);
211 spin_lock_irqsave(&udc
->lock
, flags
);
216 ep
->ep
.maxpacket
= maxp
;
218 /* set endpoint to initial state */
222 use_ep(ep
, UDC_EP_SEL
);
223 omap_writew(udc
->clr_halt
, UDC_CTRL
);
227 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
228 list_add(&ep
->iso
, &udc
->iso
);
230 /* maybe assign a DMA channel to this endpoint */
231 if (use_dma
&& desc
->bmAttributes
== USB_ENDPOINT_XFER_BULK
)
232 /* FIXME ISO can dma, but prefers first channel */
233 dma_channel_claim(ep
, 0);
235 /* PIO OUT may RX packets */
236 if (desc
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
238 && !(ep
->bEndpointAddress
& USB_DIR_IN
)) {
239 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
240 ep
->ackwait
= 1 + ep
->double_buf
;
243 spin_unlock_irqrestore(&udc
->lock
, flags
);
244 VDBG("%s enabled\n", _ep
->name
);
248 static void nuke(struct omap_ep
*, int status
);
250 static int omap_ep_disable(struct usb_ep
*_ep
)
252 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
255 if (!_ep
|| !ep
->desc
) {
256 DBG("%s, %s not enabled\n", __func__
,
257 _ep
? ep
->ep
.name
: NULL
);
261 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
263 nuke (ep
, -ESHUTDOWN
);
264 ep
->ep
.maxpacket
= ep
->maxpacket
;
266 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
267 list_del_init(&ep
->iso
);
268 del_timer(&ep
->timer
);
270 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
272 VDBG("%s disabled\n", _ep
->name
);
276 /*-------------------------------------------------------------------------*/
278 static struct usb_request
*
279 omap_alloc_request(struct usb_ep
*ep
, gfp_t gfp_flags
)
281 struct omap_req
*req
;
283 req
= kzalloc(sizeof(*req
), gfp_flags
);
285 req
->req
.dma
= DMA_ADDR_INVALID
;
286 INIT_LIST_HEAD (&req
->queue
);
292 omap_free_request(struct usb_ep
*ep
, struct usb_request
*_req
)
294 struct omap_req
*req
= container_of(_req
, struct omap_req
, req
);
300 /*-------------------------------------------------------------------------*/
303 done(struct omap_ep
*ep
, struct omap_req
*req
, int status
)
305 unsigned stopped
= ep
->stopped
;
307 list_del_init(&req
->queue
);
309 if (req
->req
.status
== -EINPROGRESS
)
310 req
->req
.status
= status
;
312 status
= req
->req
.status
;
314 if (use_dma
&& ep
->has_dma
) {
316 dma_unmap_single(ep
->udc
->gadget
.dev
.parent
,
317 req
->req
.dma
, req
->req
.length
,
318 (ep
->bEndpointAddress
& USB_DIR_IN
)
321 req
->req
.dma
= DMA_ADDR_INVALID
;
324 dma_sync_single_for_cpu(ep
->udc
->gadget
.dev
.parent
,
325 req
->req
.dma
, req
->req
.length
,
326 (ep
->bEndpointAddress
& USB_DIR_IN
)
332 if (status
&& status
!= -ESHUTDOWN
)
334 VDBG("complete %s req %p stat %d len %u/%u\n",
335 ep
->ep
.name
, &req
->req
, status
,
336 req
->req
.actual
, req
->req
.length
);
338 /* don't modify queue heads during completion callback */
340 spin_unlock(&ep
->udc
->lock
);
341 req
->req
.complete(&ep
->ep
, &req
->req
);
342 spin_lock(&ep
->udc
->lock
);
343 ep
->stopped
= stopped
;
346 /*-------------------------------------------------------------------------*/
348 #define UDC_FIFO_FULL (UDC_NON_ISO_FIFO_FULL | UDC_ISO_FIFO_FULL)
349 #define UDC_FIFO_UNWRITABLE (UDC_EP_HALTED | UDC_FIFO_FULL)
351 #define FIFO_EMPTY (UDC_NON_ISO_FIFO_EMPTY | UDC_ISO_FIFO_EMPTY)
352 #define FIFO_UNREADABLE (UDC_EP_HALTED | FIFO_EMPTY)
355 write_packet(u8
*buf
, struct omap_req
*req
, unsigned max
)
360 len
= min(req
->req
.length
- req
->req
.actual
, max
);
361 req
->req
.actual
+= len
;
364 if (likely((((int)buf
) & 1) == 0)) {
367 omap_writew(*wp
++, UDC_DATA
);
373 omap_writeb(*buf
++, UDC_DATA
);
377 // FIXME change r/w fifo calling convention
380 // return: 0 = still running, 1 = completed, negative = errno
381 static int write_fifo(struct omap_ep
*ep
, struct omap_req
*req
)
388 buf
= req
->req
.buf
+ req
->req
.actual
;
391 /* PIO-IN isn't double buffered except for iso */
392 ep_stat
= omap_readw(UDC_STAT_FLG
);
393 if (ep_stat
& UDC_FIFO_UNWRITABLE
)
396 count
= ep
->ep
.maxpacket
;
397 count
= write_packet(buf
, req
, count
);
398 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
401 /* last packet is often short (sometimes a zlp) */
402 if (count
!= ep
->ep
.maxpacket
)
404 else if (req
->req
.length
== req
->req
.actual
410 /* NOTE: requests complete when all IN data is in a
411 * FIFO (or sometimes later, if a zlp was needed).
412 * Use usb_ep_fifo_status() where needed.
420 read_packet(u8
*buf
, struct omap_req
*req
, unsigned avail
)
425 len
= min(req
->req
.length
- req
->req
.actual
, avail
);
426 req
->req
.actual
+= len
;
429 if (likely((((int)buf
) & 1) == 0)) {
432 *wp
++ = omap_readw(UDC_DATA
);
438 *buf
++ = omap_readb(UDC_DATA
);
442 // return: 0 = still running, 1 = queue empty, negative = errno
443 static int read_fifo(struct omap_ep
*ep
, struct omap_req
*req
)
446 unsigned count
, avail
;
449 buf
= req
->req
.buf
+ req
->req
.actual
;
453 u16 ep_stat
= omap_readw(UDC_STAT_FLG
);
456 if (ep_stat
& FIFO_EMPTY
) {
461 if (ep_stat
& UDC_EP_HALTED
)
464 if (ep_stat
& UDC_FIFO_FULL
)
465 avail
= ep
->ep
.maxpacket
;
467 avail
= omap_readw(UDC_RXFSTAT
);
468 ep
->fnf
= ep
->double_buf
;
470 count
= read_packet(buf
, req
, avail
);
472 /* partial packet reads may not be errors */
473 if (count
< ep
->ep
.maxpacket
) {
475 /* overflowed this request? flush extra data */
476 if (count
!= avail
) {
477 req
->req
.status
= -EOVERFLOW
;
480 omap_readw(UDC_DATA
);
482 } else if (req
->req
.length
== req
->req
.actual
)
487 if (!ep
->bEndpointAddress
)
496 /*-------------------------------------------------------------------------*/
498 static u16
dma_src_len(struct omap_ep
*ep
, dma_addr_t start
)
502 /* IN-DMA needs this on fault/cancel paths, so 15xx misreports
503 * the last transfer's bytecount by more than a FIFO's worth.
505 if (cpu_is_omap15xx())
508 end
= omap_get_dma_src_pos(ep
->lch
);
509 if (end
== ep
->dma_counter
)
512 end
|= start
& (0xffff << 16);
518 static u16
dma_dest_len(struct omap_ep
*ep
, dma_addr_t start
)
522 end
= omap_get_dma_dst_pos(ep
->lch
);
523 if (end
== ep
->dma_counter
)
526 end
|= start
& (0xffff << 16);
527 if (cpu_is_omap15xx())
535 /* Each USB transfer request using DMA maps to one or more DMA transfers.
536 * When DMA completion isn't request completion, the UDC continues with
537 * the next DMA transfer for that USB transfer.
540 static void next_in_dma(struct omap_ep
*ep
, struct omap_req
*req
)
543 unsigned length
= req
->req
.length
- req
->req
.actual
;
544 const int sync_mode
= cpu_is_omap15xx()
545 ? OMAP_DMA_SYNC_FRAME
546 : OMAP_DMA_SYNC_ELEMENT
;
549 if (cpu_is_omap24xx())
550 dma_trigger
= OMAP24XX_DMA(USB_W2FC_TX0
, ep
->dma_channel
);
552 /* measure length in either bytes or packets */
553 if ((cpu_is_omap16xx() && length
<= UDC_TXN_TSC
)
554 || (cpu_is_omap24xx() && length
< ep
->maxpacket
)
555 || (cpu_is_omap15xx() && length
< ep
->maxpacket
)) {
556 txdma_ctrl
= UDC_TXN_EOT
| length
;
557 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S8
,
558 length
, 1, sync_mode
, dma_trigger
, 0);
560 length
= min(length
/ ep
->maxpacket
,
561 (unsigned) UDC_TXN_TSC
+ 1);
563 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S16
,
564 ep
->ep
.maxpacket
>> 1, length
, sync_mode
,
566 length
*= ep
->maxpacket
;
568 omap_set_dma_src_params(ep
->lch
, OMAP_DMA_PORT_EMIFF
,
569 OMAP_DMA_AMODE_POST_INC
, req
->req
.dma
+ req
->req
.actual
,
572 omap_start_dma(ep
->lch
);
573 ep
->dma_counter
= omap_get_dma_src_pos(ep
->lch
);
574 w
= omap_readw(UDC_DMA_IRQ_EN
);
575 w
|= UDC_TX_DONE_IE(ep
->dma_channel
);
576 omap_writew(w
, UDC_DMA_IRQ_EN
);
577 omap_writew(UDC_TXN_START
| txdma_ctrl
, UDC_TXDMA(ep
->dma_channel
));
578 req
->dma_bytes
= length
;
581 static void finish_in_dma(struct omap_ep
*ep
, struct omap_req
*req
, int status
)
586 req
->req
.actual
+= req
->dma_bytes
;
588 /* return if this request needs to send data or zlp */
589 if (req
->req
.actual
< req
->req
.length
)
592 && req
->dma_bytes
!= 0
593 && (req
->req
.actual
% ep
->maxpacket
) == 0)
596 req
->req
.actual
+= dma_src_len(ep
, req
->req
.dma
600 omap_stop_dma(ep
->lch
);
601 w
= omap_readw(UDC_DMA_IRQ_EN
);
602 w
&= ~UDC_TX_DONE_IE(ep
->dma_channel
);
603 omap_writew(w
, UDC_DMA_IRQ_EN
);
604 done(ep
, req
, status
);
607 static void next_out_dma(struct omap_ep
*ep
, struct omap_req
*req
)
609 unsigned packets
= req
->req
.length
- req
->req
.actual
;
613 if (cpu_is_omap24xx())
614 dma_trigger
= OMAP24XX_DMA(USB_W2FC_RX0
, ep
->dma_channel
);
616 /* NOTE: we filtered out "short reads" before, so we know
617 * the buffer has only whole numbers of packets.
618 * except MODE SELECT(6) sent the 24 bytes data in OMAP24XX DMA mode
620 if (cpu_is_omap24xx() && packets
< ep
->maxpacket
) {
621 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S8
,
622 packets
, 1, OMAP_DMA_SYNC_ELEMENT
,
624 req
->dma_bytes
= packets
;
626 /* set up this DMA transfer, enable the fifo, start */
627 packets
/= ep
->ep
.maxpacket
;
628 packets
= min(packets
, (unsigned)UDC_RXN_TC
+ 1);
629 req
->dma_bytes
= packets
* ep
->ep
.maxpacket
;
630 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S16
,
631 ep
->ep
.maxpacket
>> 1, packets
,
632 OMAP_DMA_SYNC_ELEMENT
,
635 omap_set_dma_dest_params(ep
->lch
, OMAP_DMA_PORT_EMIFF
,
636 OMAP_DMA_AMODE_POST_INC
, req
->req
.dma
+ req
->req
.actual
,
638 ep
->dma_counter
= omap_get_dma_dst_pos(ep
->lch
);
640 omap_writew(UDC_RXN_STOP
| (packets
- 1), UDC_RXDMA(ep
->dma_channel
));
641 w
= omap_readw(UDC_DMA_IRQ_EN
);
642 w
|= UDC_RX_EOT_IE(ep
->dma_channel
);
643 omap_writew(w
, UDC_DMA_IRQ_EN
);
644 omap_writew(ep
->bEndpointAddress
& 0xf, UDC_EP_NUM
);
645 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
647 omap_start_dma(ep
->lch
);
651 finish_out_dma(struct omap_ep
*ep
, struct omap_req
*req
, int status
, int one
)
656 ep
->dma_counter
= (u16
) (req
->req
.dma
+ req
->req
.actual
);
657 count
= dma_dest_len(ep
, req
->req
.dma
+ req
->req
.actual
);
658 count
+= req
->req
.actual
;
661 if (count
<= req
->req
.length
)
662 req
->req
.actual
= count
;
664 if (count
!= req
->dma_bytes
|| status
)
665 omap_stop_dma(ep
->lch
);
667 /* if this wasn't short, request may need another transfer */
668 else if (req
->req
.actual
< req
->req
.length
)
672 w
= omap_readw(UDC_DMA_IRQ_EN
);
673 w
&= ~UDC_RX_EOT_IE(ep
->dma_channel
);
674 omap_writew(w
, UDC_DMA_IRQ_EN
);
675 done(ep
, req
, status
);
678 static void dma_irq(struct omap_udc
*udc
, u16 irq_src
)
680 u16 dman_stat
= omap_readw(UDC_DMAN_STAT
);
682 struct omap_req
*req
;
684 /* IN dma: tx to host */
685 if (irq_src
& UDC_TXN_DONE
) {
686 ep
= &udc
->ep
[16 + UDC_DMA_TX_SRC(dman_stat
)];
688 /* can see TXN_DONE after dma abort */
689 if (!list_empty(&ep
->queue
)) {
690 req
= container_of(ep
->queue
.next
,
691 struct omap_req
, queue
);
692 finish_in_dma(ep
, req
, 0);
694 omap_writew(UDC_TXN_DONE
, UDC_IRQ_SRC
);
696 if (!list_empty (&ep
->queue
)) {
697 req
= container_of(ep
->queue
.next
,
698 struct omap_req
, queue
);
699 next_in_dma(ep
, req
);
703 /* OUT dma: rx from host */
704 if (irq_src
& UDC_RXN_EOT
) {
705 ep
= &udc
->ep
[UDC_DMA_RX_SRC(dman_stat
)];
707 /* can see RXN_EOT after dma abort */
708 if (!list_empty(&ep
->queue
)) {
709 req
= container_of(ep
->queue
.next
,
710 struct omap_req
, queue
);
711 finish_out_dma(ep
, req
, 0, dman_stat
& UDC_DMA_RX_SB
);
713 omap_writew(UDC_RXN_EOT
, UDC_IRQ_SRC
);
715 if (!list_empty (&ep
->queue
)) {
716 req
= container_of(ep
->queue
.next
,
717 struct omap_req
, queue
);
718 next_out_dma(ep
, req
);
722 if (irq_src
& UDC_RXN_CNT
) {
723 ep
= &udc
->ep
[UDC_DMA_RX_SRC(dman_stat
)];
725 /* omap15xx does this unasked... */
726 VDBG("%s, RX_CNT irq?\n", ep
->ep
.name
);
727 omap_writew(UDC_RXN_CNT
, UDC_IRQ_SRC
);
731 static void dma_error(int lch
, u16 ch_status
, void *data
)
733 struct omap_ep
*ep
= data
;
735 /* if ch_status & OMAP_DMA_DROP_IRQ ... */
736 /* if ch_status & OMAP1_DMA_TOUT_IRQ ... */
737 ERR("%s dma error, lch %d status %02x\n", ep
->ep
.name
, lch
, ch_status
);
739 /* complete current transfer ... */
742 static void dma_channel_claim(struct omap_ep
*ep
, unsigned channel
)
745 int status
, restart
, is_in
;
748 is_in
= ep
->bEndpointAddress
& USB_DIR_IN
;
750 reg
= omap_readw(UDC_TXDMA_CFG
);
752 reg
= omap_readw(UDC_RXDMA_CFG
);
753 reg
|= UDC_DMA_REQ
; /* "pulse" activated */
757 if (channel
== 0 || channel
> 3) {
758 if ((reg
& 0x0f00) == 0)
760 else if ((reg
& 0x00f0) == 0)
762 else if ((reg
& 0x000f) == 0) /* preferred for ISO */
769 reg
|= (0x0f & ep
->bEndpointAddress
) << (4 * (channel
- 1));
770 ep
->dma_channel
= channel
;
773 if (cpu_is_omap24xx())
774 dma_channel
= OMAP24XX_DMA(USB_W2FC_TX0
, channel
);
776 dma_channel
= OMAP_DMA_USB_W2FC_TX0
- 1 + channel
;
777 status
= omap_request_dma(dma_channel
,
778 ep
->ep
.name
, dma_error
, ep
, &ep
->lch
);
780 omap_writew(reg
, UDC_TXDMA_CFG
);
782 omap_set_dma_src_burst_mode(ep
->lch
,
783 OMAP_DMA_DATA_BURST_4
);
784 omap_set_dma_src_data_pack(ep
->lch
, 1);
786 omap_set_dma_dest_params(ep
->lch
,
788 OMAP_DMA_AMODE_CONSTANT
,
793 if (cpu_is_omap24xx())
794 dma_channel
= OMAP24XX_DMA(USB_W2FC_RX0
, channel
);
796 dma_channel
= OMAP_DMA_USB_W2FC_RX0
- 1 + channel
;
798 status
= omap_request_dma(dma_channel
,
799 ep
->ep
.name
, dma_error
, ep
, &ep
->lch
);
801 omap_writew(reg
, UDC_RXDMA_CFG
);
803 omap_set_dma_src_params(ep
->lch
,
805 OMAP_DMA_AMODE_CONSTANT
,
809 omap_set_dma_dest_burst_mode(ep
->lch
,
810 OMAP_DMA_DATA_BURST_4
);
811 omap_set_dma_dest_data_pack(ep
->lch
, 1);
818 omap_disable_dma_irq(ep
->lch
, OMAP_DMA_BLOCK_IRQ
);
820 /* channel type P: hw synch (fifo) */
821 if (cpu_class_is_omap1() && !cpu_is_omap15xx())
822 omap_set_dma_channel_mode(ep
->lch
, OMAP_DMA_LCH_P
);
826 /* restart any queue, even if the claim failed */
827 restart
= !ep
->stopped
&& !list_empty(&ep
->queue
);
830 DBG("%s no dma channel: %d%s\n", ep
->ep
.name
, status
,
831 restart
? " (restart)" : "");
833 DBG("%s claimed %cxdma%d lch %d%s\n", ep
->ep
.name
,
835 ep
->dma_channel
- 1, ep
->lch
,
836 restart
? " (restart)" : "");
839 struct omap_req
*req
;
840 req
= container_of(ep
->queue
.next
, struct omap_req
, queue
);
842 (is_in
? next_in_dma
: next_out_dma
)(ep
, req
);
844 use_ep(ep
, UDC_EP_SEL
);
845 (is_in
? write_fifo
: read_fifo
)(ep
, req
);
848 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
849 ep
->ackwait
= 1 + ep
->double_buf
;
851 /* IN: 6 wait states before it'll tx */
856 static void dma_channel_release(struct omap_ep
*ep
)
858 int shift
= 4 * (ep
->dma_channel
- 1);
859 u16 mask
= 0x0f << shift
;
860 struct omap_req
*req
;
863 /* abort any active usb transfer request */
864 if (!list_empty(&ep
->queue
))
865 req
= container_of(ep
->queue
.next
, struct omap_req
, queue
);
869 active
= omap_get_dma_active_status(ep
->lch
);
871 DBG("%s release %s %cxdma%d %p\n", ep
->ep
.name
,
872 active
? "active" : "idle",
873 (ep
->bEndpointAddress
& USB_DIR_IN
) ? 't' : 'r',
874 ep
->dma_channel
- 1, req
);
876 /* NOTE: re-setting RX_REQ/TX_REQ because of a chip bug (before
877 * OMAP 1710 ES2.0) where reading the DMA_CFG can clear them.
880 /* wait till current packet DMA finishes, and fifo empties */
881 if (ep
->bEndpointAddress
& USB_DIR_IN
) {
882 omap_writew((omap_readw(UDC_TXDMA_CFG
) & ~mask
) | UDC_DMA_REQ
,
886 finish_in_dma(ep
, req
, -ECONNRESET
);
888 /* clear FIFO; hosts probably won't empty it */
889 use_ep(ep
, UDC_EP_SEL
);
890 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
893 while (omap_readw(UDC_TXDMA_CFG
) & mask
)
896 omap_writew((omap_readw(UDC_RXDMA_CFG
) & ~mask
) | UDC_DMA_REQ
,
899 /* dma empties the fifo */
900 while (omap_readw(UDC_RXDMA_CFG
) & mask
)
903 finish_out_dma(ep
, req
, -ECONNRESET
, 0);
905 omap_free_dma(ep
->lch
);
908 /* has_dma still set, till endpoint is fully quiesced */
912 /*-------------------------------------------------------------------------*/
915 omap_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, gfp_t gfp_flags
)
917 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
918 struct omap_req
*req
= container_of(_req
, struct omap_req
, req
);
919 struct omap_udc
*udc
;
923 /* catch various bogus parameters */
924 if (!_req
|| !req
->req
.complete
|| !req
->req
.buf
925 || !list_empty(&req
->queue
)) {
926 DBG("%s, bad params\n", __func__
);
929 if (!_ep
|| (!ep
->desc
&& ep
->bEndpointAddress
)) {
930 DBG("%s, bad ep\n", __func__
);
933 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
934 if (req
->req
.length
> ep
->ep
.maxpacket
)
939 /* this isn't bogus, but OMAP DMA isn't the only hardware to
940 * have a hard time with partial packet reads... reject it.
941 * Except OMAP2 can handle the small packets.
945 && ep
->bEndpointAddress
!= 0
946 && (ep
->bEndpointAddress
& USB_DIR_IN
) == 0
947 && !cpu_class_is_omap2()
948 && (req
->req
.length
% ep
->ep
.maxpacket
) != 0) {
949 DBG("%s, no partial packet OUT reads\n", __func__
);
954 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
957 if (use_dma
&& ep
->has_dma
) {
958 if (req
->req
.dma
== DMA_ADDR_INVALID
) {
959 req
->req
.dma
= dma_map_single(
960 ep
->udc
->gadget
.dev
.parent
,
963 (ep
->bEndpointAddress
& USB_DIR_IN
)
968 dma_sync_single_for_device(
969 ep
->udc
->gadget
.dev
.parent
,
970 req
->req
.dma
, req
->req
.length
,
971 (ep
->bEndpointAddress
& USB_DIR_IN
)
978 VDBG("%s queue req %p, len %d buf %p\n",
979 ep
->ep
.name
, _req
, _req
->length
, _req
->buf
);
981 spin_lock_irqsave(&udc
->lock
, flags
);
983 req
->req
.status
= -EINPROGRESS
;
986 /* maybe kickstart non-iso i/o queues */
990 w
= omap_readw(UDC_IRQ_EN
);
992 omap_writew(w
, UDC_IRQ_EN
);
993 } else if (list_empty(&ep
->queue
) && !ep
->stopped
&& !ep
->ackwait
) {
996 if (ep
->bEndpointAddress
== 0) {
997 if (!udc
->ep0_pending
|| !list_empty (&ep
->queue
)) {
998 spin_unlock_irqrestore(&udc
->lock
, flags
);
1002 /* empty DATA stage? */
1003 is_in
= udc
->ep0_in
;
1004 if (!req
->req
.length
) {
1006 /* chip became CONFIGURED or ADDRESSED
1007 * earlier; drivers may already have queued
1008 * requests to non-control endpoints
1010 if (udc
->ep0_set_config
) {
1011 u16 irq_en
= omap_readw(UDC_IRQ_EN
);
1013 irq_en
|= UDC_DS_CHG_IE
| UDC_EP0_IE
;
1014 if (!udc
->ep0_reset_config
)
1015 irq_en
|= UDC_EPN_RX_IE
1017 omap_writew(irq_en
, UDC_IRQ_EN
);
1020 /* STATUS for zero length DATA stages is
1021 * always an IN ... even for IN transfers,
1022 * a weird case which seem to stall OMAP.
1024 omap_writew(UDC_EP_SEL
| UDC_EP_DIR
, UDC_EP_NUM
);
1025 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1026 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1027 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1030 udc
->ep0_pending
= 0;
1034 /* non-empty DATA stage */
1036 omap_writew(UDC_EP_SEL
| UDC_EP_DIR
, UDC_EP_NUM
);
1040 omap_writew(UDC_EP_SEL
, UDC_EP_NUM
);
1043 is_in
= ep
->bEndpointAddress
& USB_DIR_IN
;
1045 use_ep(ep
, UDC_EP_SEL
);
1046 /* if ISO: SOF IRQs must be enabled/disabled! */
1050 (is_in
? next_in_dma
: next_out_dma
)(ep
, req
);
1052 if ((is_in
? write_fifo
: read_fifo
)(ep
, req
) == 1)
1056 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1057 ep
->ackwait
= 1 + ep
->double_buf
;
1059 /* IN: 6 wait states before it'll tx */
1064 /* irq handler advances the queue */
1066 list_add_tail(&req
->queue
, &ep
->queue
);
1067 spin_unlock_irqrestore(&udc
->lock
, flags
);
1072 static int omap_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
1074 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
1075 struct omap_req
*req
;
1076 unsigned long flags
;
1081 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1083 /* make sure it's actually queued on this endpoint */
1084 list_for_each_entry (req
, &ep
->queue
, queue
) {
1085 if (&req
->req
== _req
)
1088 if (&req
->req
!= _req
) {
1089 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1093 if (use_dma
&& ep
->dma_channel
&& ep
->queue
.next
== &req
->queue
) {
1094 int channel
= ep
->dma_channel
;
1096 /* releasing the channel cancels the request,
1097 * reclaiming the channel restarts the queue
1099 dma_channel_release(ep
);
1100 dma_channel_claim(ep
, channel
);
1102 done(ep
, req
, -ECONNRESET
);
1103 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1107 /*-------------------------------------------------------------------------*/
1109 static int omap_ep_set_halt(struct usb_ep
*_ep
, int value
)
1111 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
1112 unsigned long flags
;
1113 int status
= -EOPNOTSUPP
;
1115 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1117 /* just use protocol stalls for ep0; real halts are annoying */
1118 if (ep
->bEndpointAddress
== 0) {
1119 if (!ep
->udc
->ep0_pending
)
1122 if (ep
->udc
->ep0_set_config
) {
1123 WARNING("error changing config?\n");
1124 omap_writew(UDC_CLR_CFG
, UDC_SYSCON2
);
1126 omap_writew(UDC_STALL_CMD
, UDC_SYSCON2
);
1127 ep
->udc
->ep0_pending
= 0;
1132 /* otherwise, all active non-ISO endpoints can halt */
1133 } else if (ep
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
&& ep
->desc
) {
1135 /* IN endpoints must already be idle */
1136 if ((ep
->bEndpointAddress
& USB_DIR_IN
)
1137 && !list_empty(&ep
->queue
)) {
1145 if (use_dma
&& ep
->dma_channel
1146 && !list_empty(&ep
->queue
)) {
1147 channel
= ep
->dma_channel
;
1148 dma_channel_release(ep
);
1152 use_ep(ep
, UDC_EP_SEL
);
1153 if (omap_readw(UDC_STAT_FLG
) & UDC_NON_ISO_FIFO_EMPTY
) {
1154 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
1161 dma_channel_claim(ep
, channel
);
1164 omap_writew(ep
->udc
->clr_halt
, UDC_CTRL
);
1166 if (!(ep
->bEndpointAddress
& USB_DIR_IN
)) {
1167 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1168 ep
->ackwait
= 1 + ep
->double_buf
;
1173 VDBG("%s %s halt stat %d\n", ep
->ep
.name
,
1174 value
? "set" : "clear", status
);
1176 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1180 static struct usb_ep_ops omap_ep_ops
= {
1181 .enable
= omap_ep_enable
,
1182 .disable
= omap_ep_disable
,
1184 .alloc_request
= omap_alloc_request
,
1185 .free_request
= omap_free_request
,
1187 .queue
= omap_ep_queue
,
1188 .dequeue
= omap_ep_dequeue
,
1190 .set_halt
= omap_ep_set_halt
,
1191 // fifo_status ... report bytes in fifo
1192 // fifo_flush ... flush fifo
1195 /*-------------------------------------------------------------------------*/
1197 static int omap_get_frame(struct usb_gadget
*gadget
)
1199 u16 sof
= omap_readw(UDC_SOF
);
1200 return (sof
& UDC_TS_OK
) ? (sof
& UDC_TS
) : -EL2NSYNC
;
1203 static int omap_wakeup(struct usb_gadget
*gadget
)
1205 struct omap_udc
*udc
;
1206 unsigned long flags
;
1207 int retval
= -EHOSTUNREACH
;
1209 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1211 spin_lock_irqsave(&udc
->lock
, flags
);
1212 if (udc
->devstat
& UDC_SUS
) {
1213 /* NOTE: OTG spec erratum says that OTG devices may
1214 * issue wakeups without host enable.
1216 if (udc
->devstat
& (UDC_B_HNP_ENABLE
|UDC_R_WK_OK
)) {
1217 DBG("remote wakeup...\n");
1218 omap_writew(UDC_RMT_WKP
, UDC_SYSCON2
);
1222 /* NOTE: non-OTG systems may use SRP TOO... */
1223 } else if (!(udc
->devstat
& UDC_ATT
)) {
1224 if (udc
->transceiver
)
1225 retval
= otg_start_srp(udc
->transceiver
);
1227 spin_unlock_irqrestore(&udc
->lock
, flags
);
1233 omap_set_selfpowered(struct usb_gadget
*gadget
, int is_selfpowered
)
1235 struct omap_udc
*udc
;
1236 unsigned long flags
;
1239 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1240 spin_lock_irqsave(&udc
->lock
, flags
);
1241 syscon1
= omap_readw(UDC_SYSCON1
);
1243 syscon1
|= UDC_SELF_PWR
;
1245 syscon1
&= ~UDC_SELF_PWR
;
1246 omap_writew(syscon1
, UDC_SYSCON1
);
1247 spin_unlock_irqrestore(&udc
->lock
, flags
);
1252 static int can_pullup(struct omap_udc
*udc
)
1254 return udc
->driver
&& udc
->softconnect
&& udc
->vbus_active
;
1257 static void pullup_enable(struct omap_udc
*udc
)
1261 w
= omap_readw(UDC_SYSCON1
);
1263 omap_writew(w
, UDC_SYSCON1
);
1264 if (!gadget_is_otg(&udc
->gadget
) && !cpu_is_omap15xx()) {
1267 l
= omap_readl(OTG_CTRL
);
1269 omap_writel(l
, OTG_CTRL
);
1271 omap_writew(UDC_DS_CHG_IE
, UDC_IRQ_EN
);
1274 static void pullup_disable(struct omap_udc
*udc
)
1278 if (!gadget_is_otg(&udc
->gadget
) && !cpu_is_omap15xx()) {
1281 l
= omap_readl(OTG_CTRL
);
1283 omap_writel(l
, OTG_CTRL
);
1285 omap_writew(UDC_DS_CHG_IE
, UDC_IRQ_EN
);
1286 w
= omap_readw(UDC_SYSCON1
);
1287 w
&= ~UDC_PULLUP_EN
;
1288 omap_writew(w
, UDC_SYSCON1
);
1291 static struct omap_udc
*udc
;
1293 static void omap_udc_enable_clock(int enable
)
1295 if (udc
== NULL
|| udc
->dc_clk
== NULL
|| udc
->hhc_clk
== NULL
)
1299 clk_enable(udc
->dc_clk
);
1300 clk_enable(udc
->hhc_clk
);
1303 clk_disable(udc
->hhc_clk
);
1304 clk_disable(udc
->dc_clk
);
1309 * Called by whatever detects VBUS sessions: external transceiver
1310 * driver, or maybe GPIO0 VBUS IRQ. May request 48 MHz clock.
1312 static int omap_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1314 struct omap_udc
*udc
;
1315 unsigned long flags
;
1318 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1319 spin_lock_irqsave(&udc
->lock
, flags
);
1320 VDBG("VBUS %s\n", is_active
? "on" : "off");
1321 udc
->vbus_active
= (is_active
!= 0);
1322 if (cpu_is_omap15xx()) {
1323 /* "software" detect, ignored if !VBUS_MODE_1510 */
1324 l
= omap_readl(FUNC_MUX_CTRL_0
);
1326 l
|= VBUS_CTRL_1510
;
1328 l
&= ~VBUS_CTRL_1510
;
1329 omap_writel(l
, FUNC_MUX_CTRL_0
);
1331 if (udc
->dc_clk
!= NULL
&& is_active
) {
1332 if (!udc
->clk_requested
) {
1333 omap_udc_enable_clock(1);
1334 udc
->clk_requested
= 1;
1337 if (can_pullup(udc
))
1340 pullup_disable(udc
);
1341 if (udc
->dc_clk
!= NULL
&& !is_active
) {
1342 if (udc
->clk_requested
) {
1343 omap_udc_enable_clock(0);
1344 udc
->clk_requested
= 0;
1347 spin_unlock_irqrestore(&udc
->lock
, flags
);
1351 static int omap_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1353 struct omap_udc
*udc
;
1355 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1356 if (udc
->transceiver
)
1357 return otg_set_power(udc
->transceiver
, mA
);
1361 static int omap_pullup(struct usb_gadget
*gadget
, int is_on
)
1363 struct omap_udc
*udc
;
1364 unsigned long flags
;
1366 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1367 spin_lock_irqsave(&udc
->lock
, flags
);
1368 udc
->softconnect
= (is_on
!= 0);
1369 if (can_pullup(udc
))
1372 pullup_disable(udc
);
1373 spin_unlock_irqrestore(&udc
->lock
, flags
);
1377 static int omap_udc_start(struct usb_gadget_driver
*driver
,
1378 int (*bind
)(struct usb_gadget
*));
1379 static int omap_udc_stop(struct usb_gadget_driver
*driver
);
1381 static struct usb_gadget_ops omap_gadget_ops
= {
1382 .get_frame
= omap_get_frame
,
1383 .wakeup
= omap_wakeup
,
1384 .set_selfpowered
= omap_set_selfpowered
,
1385 .vbus_session
= omap_vbus_session
,
1386 .vbus_draw
= omap_vbus_draw
,
1387 .pullup
= omap_pullup
,
1388 .start
= omap_udc_start
,
1389 .stop
= omap_udc_stop
,
1392 /*-------------------------------------------------------------------------*/
1394 /* dequeue ALL requests; caller holds udc->lock */
1395 static void nuke(struct omap_ep
*ep
, int status
)
1397 struct omap_req
*req
;
1401 if (use_dma
&& ep
->dma_channel
)
1402 dma_channel_release(ep
);
1405 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1406 if (ep
->bEndpointAddress
&& ep
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
)
1407 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
1409 while (!list_empty(&ep
->queue
)) {
1410 req
= list_entry(ep
->queue
.next
, struct omap_req
, queue
);
1411 done(ep
, req
, status
);
1415 /* caller holds udc->lock */
1416 static void udc_quiesce(struct omap_udc
*udc
)
1420 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1421 nuke(&udc
->ep
[0], -ESHUTDOWN
);
1422 list_for_each_entry (ep
, &udc
->gadget
.ep_list
, ep
.ep_list
)
1423 nuke(ep
, -ESHUTDOWN
);
1426 /*-------------------------------------------------------------------------*/
1428 static void update_otg(struct omap_udc
*udc
)
1432 if (!gadget_is_otg(&udc
->gadget
))
1435 if (omap_readl(OTG_CTRL
) & OTG_ID
)
1436 devstat
= omap_readw(UDC_DEVSTAT
);
1440 udc
->gadget
.b_hnp_enable
= !!(devstat
& UDC_B_HNP_ENABLE
);
1441 udc
->gadget
.a_hnp_support
= !!(devstat
& UDC_A_HNP_SUPPORT
);
1442 udc
->gadget
.a_alt_hnp_support
= !!(devstat
& UDC_A_ALT_HNP_SUPPORT
);
1444 /* Enable HNP early, avoiding races on suspend irq path.
1445 * ASSUMES OTG state machine B_BUS_REQ input is true.
1447 if (udc
->gadget
.b_hnp_enable
) {
1450 l
= omap_readl(OTG_CTRL
);
1451 l
|= OTG_B_HNPEN
| OTG_B_BUSREQ
;
1453 omap_writel(l
, OTG_CTRL
);
1457 static void ep0_irq(struct omap_udc
*udc
, u16 irq_src
)
1459 struct omap_ep
*ep0
= &udc
->ep
[0];
1460 struct omap_req
*req
= NULL
;
1464 /* Clear any pending requests and then scrub any rx/tx state
1465 * before starting to handle the SETUP request.
1467 if (irq_src
& UDC_SETUP
) {
1468 u16 ack
= irq_src
& (UDC_EP0_TX
|UDC_EP0_RX
);
1472 omap_writew(ack
, UDC_IRQ_SRC
);
1473 irq_src
= UDC_SETUP
;
1477 /* IN/OUT packets mean we're in the DATA or STATUS stage.
1478 * This driver uses only uses protocol stalls (ep0 never halts),
1479 * and if we got this far the gadget driver already had a
1480 * chance to stall. Tries to be forgiving of host oddities.
1482 * NOTE: the last chance gadget drivers have to stall control
1483 * requests is during their request completion callback.
1485 if (!list_empty(&ep0
->queue
))
1486 req
= container_of(ep0
->queue
.next
, struct omap_req
, queue
);
1488 /* IN == TX to host */
1489 if (irq_src
& UDC_EP0_TX
) {
1492 omap_writew(UDC_EP0_TX
, UDC_IRQ_SRC
);
1493 omap_writew(UDC_EP_SEL
|UDC_EP_DIR
, UDC_EP_NUM
);
1494 stat
= omap_readw(UDC_STAT_FLG
);
1495 if (stat
& UDC_ACK
) {
1497 /* write next IN packet from response,
1498 * or set up the status stage.
1501 stat
= write_fifo(ep0
, req
);
1502 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1503 if (!req
&& udc
->ep0_pending
) {
1504 omap_writew(UDC_EP_SEL
, UDC_EP_NUM
);
1505 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1506 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1507 omap_writew(0, UDC_EP_NUM
);
1508 udc
->ep0_pending
= 0;
1509 } /* else: 6 wait states before it'll tx */
1511 /* ack status stage of OUT transfer */
1512 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1517 } else if (stat
& UDC_STALL
) {
1518 omap_writew(UDC_CLR_HALT
, UDC_CTRL
);
1519 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1521 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1525 /* OUT == RX from host */
1526 if (irq_src
& UDC_EP0_RX
) {
1529 omap_writew(UDC_EP0_RX
, UDC_IRQ_SRC
);
1530 omap_writew(UDC_EP_SEL
, UDC_EP_NUM
);
1531 stat
= omap_readw(UDC_STAT_FLG
);
1532 if (stat
& UDC_ACK
) {
1535 /* read next OUT packet of request, maybe
1536 * reactiviting the fifo; stall on errors.
1538 if (!req
|| (stat
= read_fifo(ep0
, req
)) < 0) {
1539 omap_writew(UDC_STALL_CMD
, UDC_SYSCON2
);
1540 udc
->ep0_pending
= 0;
1542 } else if (stat
== 0)
1543 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1544 omap_writew(0, UDC_EP_NUM
);
1546 /* activate status stage */
1549 /* that may have STALLed ep0... */
1550 omap_writew(UDC_EP_SEL
| UDC_EP_DIR
,
1552 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1553 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1554 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1555 udc
->ep0_pending
= 0;
1558 /* ack status stage of IN transfer */
1559 omap_writew(0, UDC_EP_NUM
);
1563 } else if (stat
& UDC_STALL
) {
1564 omap_writew(UDC_CLR_HALT
, UDC_CTRL
);
1565 omap_writew(0, UDC_EP_NUM
);
1567 omap_writew(0, UDC_EP_NUM
);
1571 /* SETUP starts all control transfers */
1572 if (irq_src
& UDC_SETUP
) {
1575 struct usb_ctrlrequest r
;
1577 int status
= -EINVAL
;
1580 /* read the (latest) SETUP message */
1582 omap_writew(UDC_SETUP_SEL
, UDC_EP_NUM
);
1583 /* two bytes at a time */
1584 u
.word
[0] = omap_readw(UDC_DATA
);
1585 u
.word
[1] = omap_readw(UDC_DATA
);
1586 u
.word
[2] = omap_readw(UDC_DATA
);
1587 u
.word
[3] = omap_readw(UDC_DATA
);
1588 omap_writew(0, UDC_EP_NUM
);
1589 } while (omap_readw(UDC_IRQ_SRC
) & UDC_SETUP
);
1591 #define w_value le16_to_cpu(u.r.wValue)
1592 #define w_index le16_to_cpu(u.r.wIndex)
1593 #define w_length le16_to_cpu(u.r.wLength)
1595 /* Delegate almost all control requests to the gadget driver,
1596 * except for a handful of ch9 status/feature requests that
1597 * hardware doesn't autodecode _and_ the gadget API hides.
1599 udc
->ep0_in
= (u
.r
.bRequestType
& USB_DIR_IN
) != 0;
1600 udc
->ep0_set_config
= 0;
1601 udc
->ep0_pending
= 1;
1604 switch (u
.r
.bRequest
) {
1605 case USB_REQ_SET_CONFIGURATION
:
1606 /* udc needs to know when ep != 0 is valid */
1607 if (u
.r
.bRequestType
!= USB_RECIP_DEVICE
)
1611 udc
->ep0_set_config
= 1;
1612 udc
->ep0_reset_config
= (w_value
== 0);
1613 VDBG("set config %d\n", w_value
);
1615 /* update udc NOW since gadget driver may start
1616 * queueing requests immediately; clear config
1617 * later if it fails the request.
1619 if (udc
->ep0_reset_config
)
1620 omap_writew(UDC_CLR_CFG
, UDC_SYSCON2
);
1622 omap_writew(UDC_DEV_CFG
, UDC_SYSCON2
);
1625 case USB_REQ_CLEAR_FEATURE
:
1626 /* clear endpoint halt */
1627 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
1629 if (w_value
!= USB_ENDPOINT_HALT
1632 ep
= &udc
->ep
[w_index
& 0xf];
1634 if (w_index
& USB_DIR_IN
)
1636 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
1640 omap_writew(udc
->clr_halt
, UDC_CTRL
);
1642 if (!(ep
->bEndpointAddress
& USB_DIR_IN
)) {
1643 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1644 ep
->ackwait
= 1 + ep
->double_buf
;
1646 /* NOTE: assumes the host behaves sanely,
1647 * only clearing real halts. Else we may
1648 * need to kill pending transfers and then
1649 * restart the queue... very messy for DMA!
1652 VDBG("%s halt cleared by host\n", ep
->name
);
1653 goto ep0out_status_stage
;
1654 case USB_REQ_SET_FEATURE
:
1655 /* set endpoint halt */
1656 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
1658 if (w_value
!= USB_ENDPOINT_HALT
1661 ep
= &udc
->ep
[w_index
& 0xf];
1662 if (w_index
& USB_DIR_IN
)
1664 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
1665 || ep
== ep0
|| !ep
->desc
)
1667 if (use_dma
&& ep
->has_dma
) {
1668 /* this has rude side-effects (aborts) and
1669 * can't really work if DMA-IN is active
1671 DBG("%s host set_halt, NYET \n", ep
->name
);
1675 /* can't halt if fifo isn't empty... */
1676 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1677 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
1678 VDBG("%s halted by host\n", ep
->name
);
1679 ep0out_status_stage
:
1681 omap_writew(UDC_EP_SEL
|UDC_EP_DIR
, UDC_EP_NUM
);
1682 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1683 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1684 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1685 udc
->ep0_pending
= 0;
1687 case USB_REQ_GET_STATUS
:
1688 /* USB_ENDPOINT_HALT status? */
1689 if (u
.r
.bRequestType
!= (USB_DIR_IN
|USB_RECIP_ENDPOINT
))
1692 /* ep0 never stalls */
1693 if (!(w_index
& 0xf))
1696 /* only active endpoints count */
1697 ep
= &udc
->ep
[w_index
& 0xf];
1698 if (w_index
& USB_DIR_IN
)
1703 /* iso never stalls */
1704 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
1707 /* FIXME don't assume non-halted endpoints!! */
1708 ERR("%s status, can't report\n", ep
->ep
.name
);
1712 /* return interface status. if we were pedantic,
1713 * we'd detect non-existent interfaces, and stall.
1715 if (u
.r
.bRequestType
1716 != (USB_DIR_IN
|USB_RECIP_INTERFACE
))
1720 /* return two zero bytes */
1721 omap_writew(UDC_EP_SEL
|UDC_EP_DIR
, UDC_EP_NUM
);
1722 omap_writew(0, UDC_DATA
);
1723 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1724 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1726 VDBG("GET_STATUS, interface %d\n", w_index
);
1727 /* next, status stage */
1731 /* activate the ep0out fifo right away */
1732 if (!udc
->ep0_in
&& w_length
) {
1733 omap_writew(0, UDC_EP_NUM
);
1734 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1737 /* gadget drivers see class/vendor specific requests,
1738 * {SET,GET}_{INTERFACE,DESCRIPTOR,CONFIGURATION},
1741 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1742 u
.r
.bRequestType
, u
.r
.bRequest
,
1743 w_value
, w_index
, w_length
);
1749 /* The gadget driver may return an error here,
1750 * causing an immediate protocol stall.
1752 * Else it must issue a response, either queueing a
1753 * response buffer for the DATA stage, or halting ep0
1754 * (causing a protocol stall, not a real halt). A
1755 * zero length buffer means no DATA stage.
1757 * It's fine to issue that response after the setup()
1758 * call returns, and this IRQ was handled.
1761 spin_unlock(&udc
->lock
);
1762 status
= udc
->driver
->setup (&udc
->gadget
, &u
.r
);
1763 spin_lock(&udc
->lock
);
1769 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1770 u
.r
.bRequestType
, u
.r
.bRequest
, status
);
1771 if (udc
->ep0_set_config
) {
1772 if (udc
->ep0_reset_config
)
1773 WARNING("error resetting config?\n");
1775 omap_writew(UDC_CLR_CFG
, UDC_SYSCON2
);
1777 omap_writew(UDC_STALL_CMD
, UDC_SYSCON2
);
1778 udc
->ep0_pending
= 0;
1783 /*-------------------------------------------------------------------------*/
1785 #define OTG_FLAGS (UDC_B_HNP_ENABLE|UDC_A_HNP_SUPPORT|UDC_A_ALT_HNP_SUPPORT)
1787 static void devstate_irq(struct omap_udc
*udc
, u16 irq_src
)
1789 u16 devstat
, change
;
1791 devstat
= omap_readw(UDC_DEVSTAT
);
1792 change
= devstat
^ udc
->devstat
;
1793 udc
->devstat
= devstat
;
1795 if (change
& (UDC_USB_RESET
|UDC_ATT
)) {
1798 if (change
& UDC_ATT
) {
1799 /* driver for any external transceiver will
1800 * have called omap_vbus_session() already
1802 if (devstat
& UDC_ATT
) {
1803 udc
->gadget
.speed
= USB_SPEED_FULL
;
1805 if (!udc
->transceiver
)
1807 // if (driver->connect) call it
1808 } else if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
1809 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1810 if (!udc
->transceiver
)
1811 pullup_disable(udc
);
1812 DBG("disconnect, gadget %s\n",
1813 udc
->driver
->driver
.name
);
1814 if (udc
->driver
->disconnect
) {
1815 spin_unlock(&udc
->lock
);
1816 udc
->driver
->disconnect(&udc
->gadget
);
1817 spin_lock(&udc
->lock
);
1823 if (change
& UDC_USB_RESET
) {
1824 if (devstat
& UDC_USB_RESET
) {
1827 udc
->gadget
.speed
= USB_SPEED_FULL
;
1828 INFO("USB reset done, gadget %s\n",
1829 udc
->driver
->driver
.name
);
1830 /* ep0 traffic is legal from now on */
1831 omap_writew(UDC_DS_CHG_IE
| UDC_EP0_IE
,
1834 change
&= ~UDC_USB_RESET
;
1837 if (change
& UDC_SUS
) {
1838 if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
1839 // FIXME tell isp1301 to suspend/resume (?)
1840 if (devstat
& UDC_SUS
) {
1843 /* HNP could be under way already */
1844 if (udc
->gadget
.speed
== USB_SPEED_FULL
1845 && udc
->driver
->suspend
) {
1846 spin_unlock(&udc
->lock
);
1847 udc
->driver
->suspend(&udc
->gadget
);
1848 spin_lock(&udc
->lock
);
1850 if (udc
->transceiver
)
1851 otg_set_suspend(udc
->transceiver
, 1);
1854 if (udc
->transceiver
)
1855 otg_set_suspend(udc
->transceiver
, 0);
1856 if (udc
->gadget
.speed
== USB_SPEED_FULL
1857 && udc
->driver
->resume
) {
1858 spin_unlock(&udc
->lock
);
1859 udc
->driver
->resume(&udc
->gadget
);
1860 spin_lock(&udc
->lock
);
1866 if (!cpu_is_omap15xx() && (change
& OTG_FLAGS
)) {
1868 change
&= ~OTG_FLAGS
;
1871 change
&= ~(UDC_CFG
|UDC_DEF
|UDC_ADD
);
1873 VDBG("devstat %03x, ignore change %03x\n",
1876 omap_writew(UDC_DS_CHG
, UDC_IRQ_SRC
);
1879 static irqreturn_t
omap_udc_irq(int irq
, void *_udc
)
1881 struct omap_udc
*udc
= _udc
;
1883 irqreturn_t status
= IRQ_NONE
;
1884 unsigned long flags
;
1886 spin_lock_irqsave(&udc
->lock
, flags
);
1887 irq_src
= omap_readw(UDC_IRQ_SRC
);
1889 /* Device state change (usb ch9 stuff) */
1890 if (irq_src
& UDC_DS_CHG
) {
1891 devstate_irq(_udc
, irq_src
);
1892 status
= IRQ_HANDLED
;
1893 irq_src
&= ~UDC_DS_CHG
;
1896 /* EP0 control transfers */
1897 if (irq_src
& (UDC_EP0_RX
|UDC_SETUP
|UDC_EP0_TX
)) {
1898 ep0_irq(_udc
, irq_src
);
1899 status
= IRQ_HANDLED
;
1900 irq_src
&= ~(UDC_EP0_RX
|UDC_SETUP
|UDC_EP0_TX
);
1903 /* DMA transfer completion */
1904 if (use_dma
&& (irq_src
& (UDC_TXN_DONE
|UDC_RXN_CNT
|UDC_RXN_EOT
))) {
1905 dma_irq(_udc
, irq_src
);
1906 status
= IRQ_HANDLED
;
1907 irq_src
&= ~(UDC_TXN_DONE
|UDC_RXN_CNT
|UDC_RXN_EOT
);
1910 irq_src
&= ~(UDC_IRQ_SOF
| UDC_EPN_TX
|UDC_EPN_RX
);
1912 DBG("udc_irq, unhandled %03x\n", irq_src
);
1913 spin_unlock_irqrestore(&udc
->lock
, flags
);
1918 /* workaround for seemingly-lost IRQs for RX ACKs... */
1919 #define PIO_OUT_TIMEOUT (jiffies + HZ/3)
1920 #define HALF_FULL(f) (!((f)&(UDC_NON_ISO_FIFO_FULL|UDC_NON_ISO_FIFO_EMPTY)))
1922 static void pio_out_timer(unsigned long _ep
)
1924 struct omap_ep
*ep
= (void *) _ep
;
1925 unsigned long flags
;
1928 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1929 if (!list_empty(&ep
->queue
) && ep
->ackwait
) {
1930 use_ep(ep
, UDC_EP_SEL
);
1931 stat_flg
= omap_readw(UDC_STAT_FLG
);
1933 if ((stat_flg
& UDC_ACK
) && (!(stat_flg
& UDC_FIFO_EN
)
1934 || (ep
->double_buf
&& HALF_FULL(stat_flg
)))) {
1935 struct omap_req
*req
;
1937 VDBG("%s: lose, %04x\n", ep
->ep
.name
, stat_flg
);
1938 req
= container_of(ep
->queue
.next
,
1939 struct omap_req
, queue
);
1940 (void) read_fifo(ep
, req
);
1941 omap_writew(ep
->bEndpointAddress
, UDC_EP_NUM
);
1942 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1943 ep
->ackwait
= 1 + ep
->double_buf
;
1947 mod_timer(&ep
->timer
, PIO_OUT_TIMEOUT
);
1948 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1951 static irqreturn_t
omap_udc_pio_irq(int irq
, void *_dev
)
1953 u16 epn_stat
, irq_src
;
1954 irqreturn_t status
= IRQ_NONE
;
1957 struct omap_udc
*udc
= _dev
;
1958 struct omap_req
*req
;
1959 unsigned long flags
;
1961 spin_lock_irqsave(&udc
->lock
, flags
);
1962 epn_stat
= omap_readw(UDC_EPN_STAT
);
1963 irq_src
= omap_readw(UDC_IRQ_SRC
);
1965 /* handle OUT first, to avoid some wasteful NAKs */
1966 if (irq_src
& UDC_EPN_RX
) {
1967 epnum
= (epn_stat
>> 8) & 0x0f;
1968 omap_writew(UDC_EPN_RX
, UDC_IRQ_SRC
);
1969 status
= IRQ_HANDLED
;
1970 ep
= &udc
->ep
[epnum
];
1973 omap_writew(epnum
| UDC_EP_SEL
, UDC_EP_NUM
);
1975 if (omap_readw(UDC_STAT_FLG
) & UDC_ACK
) {
1977 if (!list_empty(&ep
->queue
)) {
1979 req
= container_of(ep
->queue
.next
,
1980 struct omap_req
, queue
);
1981 stat
= read_fifo(ep
, req
);
1982 if (!ep
->double_buf
)
1986 /* min 6 clock delay before clearing EP_SEL ... */
1987 epn_stat
= omap_readw(UDC_EPN_STAT
);
1988 epn_stat
= omap_readw(UDC_EPN_STAT
);
1989 omap_writew(epnum
, UDC_EP_NUM
);
1991 /* enabling fifo _after_ clearing ACK, contrary to docs,
1992 * reduces lossage; timer still needed though (sigh).
1995 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1996 ep
->ackwait
= 1 + ep
->double_buf
;
1998 mod_timer(&ep
->timer
, PIO_OUT_TIMEOUT
);
2001 /* then IN transfers */
2002 else if (irq_src
& UDC_EPN_TX
) {
2003 epnum
= epn_stat
& 0x0f;
2004 omap_writew(UDC_EPN_TX
, UDC_IRQ_SRC
);
2005 status
= IRQ_HANDLED
;
2006 ep
= &udc
->ep
[16 + epnum
];
2009 omap_writew(epnum
| UDC_EP_DIR
| UDC_EP_SEL
, UDC_EP_NUM
);
2010 if (omap_readw(UDC_STAT_FLG
) & UDC_ACK
) {
2012 if (!list_empty(&ep
->queue
)) {
2013 req
= container_of(ep
->queue
.next
,
2014 struct omap_req
, queue
);
2015 (void) write_fifo(ep
, req
);
2018 /* min 6 clock delay before clearing EP_SEL ... */
2019 epn_stat
= omap_readw(UDC_EPN_STAT
);
2020 epn_stat
= omap_readw(UDC_EPN_STAT
);
2021 omap_writew(epnum
| UDC_EP_DIR
, UDC_EP_NUM
);
2022 /* then 6 clocks before it'd tx */
2025 spin_unlock_irqrestore(&udc
->lock
, flags
);
2030 static irqreturn_t
omap_udc_iso_irq(int irq
, void *_dev
)
2032 struct omap_udc
*udc
= _dev
;
2035 unsigned long flags
;
2037 spin_lock_irqsave(&udc
->lock
, flags
);
2039 /* handle all non-DMA ISO transfers */
2040 list_for_each_entry (ep
, &udc
->iso
, iso
) {
2042 struct omap_req
*req
;
2044 if (ep
->has_dma
|| list_empty(&ep
->queue
))
2046 req
= list_entry(ep
->queue
.next
, struct omap_req
, queue
);
2048 use_ep(ep
, UDC_EP_SEL
);
2049 stat
= omap_readw(UDC_STAT_FLG
);
2051 /* NOTE: like the other controller drivers, this isn't
2052 * currently reporting lost or damaged frames.
2054 if (ep
->bEndpointAddress
& USB_DIR_IN
) {
2055 if (stat
& UDC_MISS_IN
)
2056 /* done(ep, req, -EPROTO) */;
2058 write_fifo(ep
, req
);
2062 if (stat
& UDC_NO_RXPACKET
)
2063 status
= -EREMOTEIO
;
2064 else if (stat
& UDC_ISO_ERR
)
2066 else if (stat
& UDC_DATA_FLUSH
)
2070 /* done(ep, req, status) */;
2075 /* 6 wait states before next EP */
2078 if (!list_empty(&ep
->queue
))
2084 w
= omap_readw(UDC_IRQ_EN
);
2086 omap_writew(w
, UDC_IRQ_EN
);
2088 omap_writew(UDC_IRQ_SOF
, UDC_IRQ_SRC
);
2090 spin_unlock_irqrestore(&udc
->lock
, flags
);
2095 /*-------------------------------------------------------------------------*/
2097 static inline int machine_without_vbus_sense(void)
2099 return (machine_is_omap_innovator()
2100 || machine_is_omap_osk()
2101 || machine_is_omap_apollon()
2102 #ifndef CONFIG_MACH_OMAP_H4_OTG
2103 || machine_is_omap_h4()
2106 || cpu_is_omap7xx() /* No known omap7xx boards with vbus sense */
2110 static int omap_udc_start(struct usb_gadget_driver
*driver
,
2111 int (*bind
)(struct usb_gadget
*))
2113 int status
= -ENODEV
;
2115 unsigned long flags
;
2117 /* basic sanity tests */
2121 // FIXME if otg, check: driver->is_otg
2122 || driver
->speed
< USB_SPEED_FULL
2123 || !bind
|| !driver
->setup
)
2126 spin_lock_irqsave(&udc
->lock
, flags
);
2128 spin_unlock_irqrestore(&udc
->lock
, flags
);
2133 list_for_each_entry (ep
, &udc
->gadget
.ep_list
, ep
.ep_list
) {
2135 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
2138 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
2140 udc
->ep0_pending
= 0;
2141 udc
->ep
[0].irqs
= 0;
2142 udc
->softconnect
= 1;
2144 /* hook up the driver */
2145 driver
->driver
.bus
= NULL
;
2146 udc
->driver
= driver
;
2147 udc
->gadget
.dev
.driver
= &driver
->driver
;
2148 spin_unlock_irqrestore(&udc
->lock
, flags
);
2150 if (udc
->dc_clk
!= NULL
)
2151 omap_udc_enable_clock(1);
2153 status
= bind(&udc
->gadget
);
2155 DBG("bind to %s --> %d\n", driver
->driver
.name
, status
);
2156 udc
->gadget
.dev
.driver
= NULL
;
2160 DBG("bound to driver %s\n", driver
->driver
.name
);
2162 omap_writew(UDC_IRQ_SRC_MASK
, UDC_IRQ_SRC
);
2164 /* connect to bus through transceiver */
2165 if (udc
->transceiver
) {
2166 status
= otg_set_peripheral(udc
->transceiver
, &udc
->gadget
);
2168 ERR("can't bind to transceiver\n");
2169 if (driver
->unbind
) {
2170 driver
->unbind (&udc
->gadget
);
2171 udc
->gadget
.dev
.driver
= NULL
;
2177 if (can_pullup(udc
))
2178 pullup_enable (udc
);
2180 pullup_disable (udc
);
2183 /* boards that don't have VBUS sensing can't autogate 48MHz;
2184 * can't enter deep sleep while a gadget driver is active.
2186 if (machine_without_vbus_sense())
2187 omap_vbus_session(&udc
->gadget
, 1);
2190 if (udc
->dc_clk
!= NULL
)
2191 omap_udc_enable_clock(0);
2195 static int omap_udc_stop(struct usb_gadget_driver
*driver
)
2197 unsigned long flags
;
2198 int status
= -ENODEV
;
2202 if (!driver
|| driver
!= udc
->driver
|| !driver
->unbind
)
2205 if (udc
->dc_clk
!= NULL
)
2206 omap_udc_enable_clock(1);
2208 if (machine_without_vbus_sense())
2209 omap_vbus_session(&udc
->gadget
, 0);
2211 if (udc
->transceiver
)
2212 (void) otg_set_peripheral(udc
->transceiver
, NULL
);
2214 pullup_disable(udc
);
2216 spin_lock_irqsave(&udc
->lock
, flags
);
2218 spin_unlock_irqrestore(&udc
->lock
, flags
);
2220 driver
->unbind(&udc
->gadget
);
2221 udc
->gadget
.dev
.driver
= NULL
;
2224 if (udc
->dc_clk
!= NULL
)
2225 omap_udc_enable_clock(0);
2226 DBG("unregistered driver '%s'\n", driver
->driver
.name
);
2230 /*-------------------------------------------------------------------------*/
2232 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2234 #include <linux/seq_file.h>
2236 static const char proc_filename
[] = "driver/udc";
2238 #define FOURBITS "%s%s%s%s"
2239 #define EIGHTBITS FOURBITS FOURBITS
2241 static void proc_ep_show(struct seq_file
*s
, struct omap_ep
*ep
)
2244 struct omap_req
*req
;
2249 if (use_dma
&& ep
->has_dma
)
2250 snprintf(buf
, sizeof buf
, "(%cxdma%d lch%d) ",
2251 (ep
->bEndpointAddress
& USB_DIR_IN
) ? 't' : 'r',
2252 ep
->dma_channel
- 1, ep
->lch
);
2256 stat_flg
= omap_readw(UDC_STAT_FLG
);
2258 "\n%s %s%s%sirqs %ld stat %04x " EIGHTBITS FOURBITS
"%s\n",
2260 ep
->double_buf
? "dbuf " : "",
2261 ({char *s
; switch(ep
->ackwait
){
2262 case 0: s
= ""; break;
2263 case 1: s
= "(ackw) "; break;
2264 case 2: s
= "(ackw2) "; break;
2265 default: s
= "(?) "; break;
2268 (stat_flg
& UDC_NO_RXPACKET
) ? "no_rxpacket " : "",
2269 (stat_flg
& UDC_MISS_IN
) ? "miss_in " : "",
2270 (stat_flg
& UDC_DATA_FLUSH
) ? "data_flush " : "",
2271 (stat_flg
& UDC_ISO_ERR
) ? "iso_err " : "",
2272 (stat_flg
& UDC_ISO_FIFO_EMPTY
) ? "iso_fifo_empty " : "",
2273 (stat_flg
& UDC_ISO_FIFO_FULL
) ? "iso_fifo_full " : "",
2274 (stat_flg
& UDC_EP_HALTED
) ? "HALT " : "",
2275 (stat_flg
& UDC_STALL
) ? "STALL " : "",
2276 (stat_flg
& UDC_NAK
) ? "NAK " : "",
2277 (stat_flg
& UDC_ACK
) ? "ACK " : "",
2278 (stat_flg
& UDC_FIFO_EN
) ? "fifo_en " : "",
2279 (stat_flg
& UDC_NON_ISO_FIFO_EMPTY
) ? "fifo_empty " : "",
2280 (stat_flg
& UDC_NON_ISO_FIFO_FULL
) ? "fifo_full " : "");
2282 if (list_empty (&ep
->queue
))
2283 seq_printf(s
, "\t(queue empty)\n");
2285 list_for_each_entry (req
, &ep
->queue
, queue
) {
2286 unsigned length
= req
->req
.actual
;
2288 if (use_dma
&& buf
[0]) {
2289 length
+= ((ep
->bEndpointAddress
& USB_DIR_IN
)
2290 ? dma_src_len
: dma_dest_len
)
2291 (ep
, req
->req
.dma
+ length
);
2294 seq_printf(s
, "\treq %p len %d/%d buf %p\n",
2296 req
->req
.length
, req
->req
.buf
);
2300 static char *trx_mode(unsigned m
, int enabled
)
2303 case 0: return enabled
? "*6wire" : "unused";
2304 case 1: return "4wire";
2305 case 2: return "3wire";
2306 case 3: return "6wire";
2307 default: return "unknown";
2311 static int proc_otg_show(struct seq_file
*s
)
2315 char *ctrl_name
= "(UNKNOWN)";
2317 /* XXX This needs major revision for OMAP2+ */
2318 tmp
= omap_readl(OTG_REV
);
2319 if (cpu_class_is_omap1()) {
2320 ctrl_name
= "tranceiver_ctrl";
2321 trans
= omap_readw(USB_TRANSCEIVER_CTRL
);
2323 seq_printf(s
, "\nOTG rev %d.%d, %s %05x\n",
2324 tmp
>> 4, tmp
& 0xf, ctrl_name
, trans
);
2325 tmp
= omap_readw(OTG_SYSCON_1
);
2326 seq_printf(s
, "otg_syscon1 %08x usb2 %s, usb1 %s, usb0 %s,"
2328 trx_mode(USB2_TRX_MODE(tmp
), trans
& CONF_USB2_UNI_R
),
2329 trx_mode(USB1_TRX_MODE(tmp
), trans
& CONF_USB1_UNI_R
),
2330 (USB0_TRX_MODE(tmp
) == 0 && !cpu_is_omap1710())
2332 : trx_mode(USB0_TRX_MODE(tmp
), 1),
2333 (tmp
& OTG_IDLE_EN
) ? " !otg" : "",
2334 (tmp
& HST_IDLE_EN
) ? " !host" : "",
2335 (tmp
& DEV_IDLE_EN
) ? " !dev" : "",
2336 (tmp
& OTG_RESET_DONE
) ? " reset_done" : " reset_active");
2337 tmp
= omap_readl(OTG_SYSCON_2
);
2338 seq_printf(s
, "otg_syscon2 %08x%s" EIGHTBITS
2339 " b_ase_brst=%d hmc=%d\n", tmp
,
2340 (tmp
& OTG_EN
) ? " otg_en" : "",
2341 (tmp
& USBX_SYNCHRO
) ? " synchro" : "",
2342 // much more SRP stuff
2343 (tmp
& SRP_DATA
) ? " srp_data" : "",
2344 (tmp
& SRP_VBUS
) ? " srp_vbus" : "",
2345 (tmp
& OTG_PADEN
) ? " otg_paden" : "",
2346 (tmp
& HMC_PADEN
) ? " hmc_paden" : "",
2347 (tmp
& UHOST_EN
) ? " uhost_en" : "",
2348 (tmp
& HMC_TLLSPEED
) ? " tllspeed" : "",
2349 (tmp
& HMC_TLLATTACH
) ? " tllattach" : "",
2352 tmp
= omap_readl(OTG_CTRL
);
2353 seq_printf(s
, "otg_ctrl %06x" EIGHTBITS EIGHTBITS
"%s\n", tmp
,
2354 (tmp
& OTG_ASESSVLD
) ? " asess" : "",
2355 (tmp
& OTG_BSESSEND
) ? " bsess_end" : "",
2356 (tmp
& OTG_BSESSVLD
) ? " bsess" : "",
2357 (tmp
& OTG_VBUSVLD
) ? " vbus" : "",
2358 (tmp
& OTG_ID
) ? " id" : "",
2359 (tmp
& OTG_DRIVER_SEL
) ? " DEVICE" : " HOST",
2360 (tmp
& OTG_A_SETB_HNPEN
) ? " a_setb_hnpen" : "",
2361 (tmp
& OTG_A_BUSREQ
) ? " a_bus" : "",
2362 (tmp
& OTG_B_HNPEN
) ? " b_hnpen" : "",
2363 (tmp
& OTG_B_BUSREQ
) ? " b_bus" : "",
2364 (tmp
& OTG_BUSDROP
) ? " busdrop" : "",
2365 (tmp
& OTG_PULLDOWN
) ? " down" : "",
2366 (tmp
& OTG_PULLUP
) ? " up" : "",
2367 (tmp
& OTG_DRV_VBUS
) ? " drv" : "",
2368 (tmp
& OTG_PD_VBUS
) ? " pd_vb" : "",
2369 (tmp
& OTG_PU_VBUS
) ? " pu_vb" : "",
2370 (tmp
& OTG_PU_ID
) ? " pu_id" : ""
2372 tmp
= omap_readw(OTG_IRQ_EN
);
2373 seq_printf(s
, "otg_irq_en %04x" "\n", tmp
);
2374 tmp
= omap_readw(OTG_IRQ_SRC
);
2375 seq_printf(s
, "otg_irq_src %04x" "\n", tmp
);
2376 tmp
= omap_readw(OTG_OUTCTRL
);
2377 seq_printf(s
, "otg_outctrl %04x" "\n", tmp
);
2378 tmp
= omap_readw(OTG_TEST
);
2379 seq_printf(s
, "otg_test %04x" "\n", tmp
);
2383 static int proc_udc_show(struct seq_file
*s
, void *_
)
2387 unsigned long flags
;
2389 spin_lock_irqsave(&udc
->lock
, flags
);
2391 seq_printf(s
, "%s, version: " DRIVER_VERSION
2397 use_dma
? " (dma)" : "");
2399 tmp
= omap_readw(UDC_REV
) & 0xff;
2401 "UDC rev %d.%d, fifo mode %d, gadget %s\n"
2402 "hmc %d, transceiver %s\n",
2403 tmp
>> 4, tmp
& 0xf,
2405 udc
->driver
? udc
->driver
->driver
.name
: "(none)",
2408 ? udc
->transceiver
->label
2409 : ((cpu_is_omap1710() || cpu_is_omap24xx())
2410 ? "external" : "(none)"));
2411 if (cpu_class_is_omap1()) {
2412 seq_printf(s
, "ULPD control %04x req %04x status %04x\n",
2413 omap_readw(ULPD_CLOCK_CTRL
),
2414 omap_readw(ULPD_SOFT_REQ
),
2415 omap_readw(ULPD_STATUS_REQ
));
2418 /* OTG controller registers */
2419 if (!cpu_is_omap15xx())
2422 tmp
= omap_readw(UDC_SYSCON1
);
2423 seq_printf(s
, "\nsyscon1 %04x" EIGHTBITS
"\n", tmp
,
2424 (tmp
& UDC_CFG_LOCK
) ? " cfg_lock" : "",
2425 (tmp
& UDC_DATA_ENDIAN
) ? " data_endian" : "",
2426 (tmp
& UDC_DMA_ENDIAN
) ? " dma_endian" : "",
2427 (tmp
& UDC_NAK_EN
) ? " nak" : "",
2428 (tmp
& UDC_AUTODECODE_DIS
) ? " autodecode_dis" : "",
2429 (tmp
& UDC_SELF_PWR
) ? " self_pwr" : "",
2430 (tmp
& UDC_SOFF_DIS
) ? " soff_dis" : "",
2431 (tmp
& UDC_PULLUP_EN
) ? " PULLUP" : "");
2432 // syscon2 is write-only
2434 /* UDC controller registers */
2435 if (!(tmp
& UDC_PULLUP_EN
)) {
2436 seq_printf(s
, "(suspended)\n");
2437 spin_unlock_irqrestore(&udc
->lock
, flags
);
2441 tmp
= omap_readw(UDC_DEVSTAT
);
2442 seq_printf(s
, "devstat %04x" EIGHTBITS
"%s%s\n", tmp
,
2443 (tmp
& UDC_B_HNP_ENABLE
) ? " b_hnp" : "",
2444 (tmp
& UDC_A_HNP_SUPPORT
) ? " a_hnp" : "",
2445 (tmp
& UDC_A_ALT_HNP_SUPPORT
) ? " a_alt_hnp" : "",
2446 (tmp
& UDC_R_WK_OK
) ? " r_wk_ok" : "",
2447 (tmp
& UDC_USB_RESET
) ? " usb_reset" : "",
2448 (tmp
& UDC_SUS
) ? " SUS" : "",
2449 (tmp
& UDC_CFG
) ? " CFG" : "",
2450 (tmp
& UDC_ADD
) ? " ADD" : "",
2451 (tmp
& UDC_DEF
) ? " DEF" : "",
2452 (tmp
& UDC_ATT
) ? " ATT" : "");
2453 seq_printf(s
, "sof %04x\n", omap_readw(UDC_SOF
));
2454 tmp
= omap_readw(UDC_IRQ_EN
);
2455 seq_printf(s
, "irq_en %04x" FOURBITS
"%s\n", tmp
,
2456 (tmp
& UDC_SOF_IE
) ? " sof" : "",
2457 (tmp
& UDC_EPN_RX_IE
) ? " epn_rx" : "",
2458 (tmp
& UDC_EPN_TX_IE
) ? " epn_tx" : "",
2459 (tmp
& UDC_DS_CHG_IE
) ? " ds_chg" : "",
2460 (tmp
& UDC_EP0_IE
) ? " ep0" : "");
2461 tmp
= omap_readw(UDC_IRQ_SRC
);
2462 seq_printf(s
, "irq_src %04x" EIGHTBITS
"%s%s\n", tmp
,
2463 (tmp
& UDC_TXN_DONE
) ? " txn_done" : "",
2464 (tmp
& UDC_RXN_CNT
) ? " rxn_cnt" : "",
2465 (tmp
& UDC_RXN_EOT
) ? " rxn_eot" : "",
2466 (tmp
& UDC_IRQ_SOF
) ? " sof" : "",
2467 (tmp
& UDC_EPN_RX
) ? " epn_rx" : "",
2468 (tmp
& UDC_EPN_TX
) ? " epn_tx" : "",
2469 (tmp
& UDC_DS_CHG
) ? " ds_chg" : "",
2470 (tmp
& UDC_SETUP
) ? " setup" : "",
2471 (tmp
& UDC_EP0_RX
) ? " ep0out" : "",
2472 (tmp
& UDC_EP0_TX
) ? " ep0in" : "");
2476 tmp
= omap_readw(UDC_DMA_IRQ_EN
);
2477 seq_printf(s
, "dma_irq_en %04x%s" EIGHTBITS
"\n", tmp
,
2478 (tmp
& UDC_TX_DONE_IE(3)) ? " tx2_done" : "",
2479 (tmp
& UDC_RX_CNT_IE(3)) ? " rx2_cnt" : "",
2480 (tmp
& UDC_RX_EOT_IE(3)) ? " rx2_eot" : "",
2482 (tmp
& UDC_TX_DONE_IE(2)) ? " tx1_done" : "",
2483 (tmp
& UDC_RX_CNT_IE(2)) ? " rx1_cnt" : "",
2484 (tmp
& UDC_RX_EOT_IE(2)) ? " rx1_eot" : "",
2486 (tmp
& UDC_TX_DONE_IE(1)) ? " tx0_done" : "",
2487 (tmp
& UDC_RX_CNT_IE(1)) ? " rx0_cnt" : "",
2488 (tmp
& UDC_RX_EOT_IE(1)) ? " rx0_eot" : "");
2490 tmp
= omap_readw(UDC_RXDMA_CFG
);
2491 seq_printf(s
, "rxdma_cfg %04x\n", tmp
);
2493 for (i
= 0; i
< 3; i
++) {
2494 if ((tmp
& (0x0f << (i
* 4))) == 0)
2496 seq_printf(s
, "rxdma[%d] %04x\n", i
,
2497 omap_readw(UDC_RXDMA(i
+ 1)));
2500 tmp
= omap_readw(UDC_TXDMA_CFG
);
2501 seq_printf(s
, "txdma_cfg %04x\n", tmp
);
2503 for (i
= 0; i
< 3; i
++) {
2504 if (!(tmp
& (0x0f << (i
* 4))))
2506 seq_printf(s
, "txdma[%d] %04x\n", i
,
2507 omap_readw(UDC_TXDMA(i
+ 1)));
2512 tmp
= omap_readw(UDC_DEVSTAT
);
2513 if (tmp
& UDC_ATT
) {
2514 proc_ep_show(s
, &udc
->ep
[0]);
2515 if (tmp
& UDC_ADD
) {
2516 list_for_each_entry (ep
, &udc
->gadget
.ep_list
,
2519 proc_ep_show(s
, ep
);
2523 spin_unlock_irqrestore(&udc
->lock
, flags
);
2527 static int proc_udc_open(struct inode
*inode
, struct file
*file
)
2529 return single_open(file
, proc_udc_show
, NULL
);
2532 static const struct file_operations proc_ops
= {
2533 .owner
= THIS_MODULE
,
2534 .open
= proc_udc_open
,
2536 .llseek
= seq_lseek
,
2537 .release
= single_release
,
2540 static void create_proc_file(void)
2542 proc_create(proc_filename
, 0, NULL
, &proc_ops
);
2545 static void remove_proc_file(void)
2547 remove_proc_entry(proc_filename
, NULL
);
2552 static inline void create_proc_file(void) {}
2553 static inline void remove_proc_file(void) {}
2557 /*-------------------------------------------------------------------------*/
2559 /* Before this controller can enumerate, we need to pick an endpoint
2560 * configuration, or "fifo_mode" That involves allocating 2KB of packet
2561 * buffer space among the endpoints we'll be operating.
2563 * NOTE: as of OMAP 1710 ES2.0, writing a new endpoint config when
2564 * UDC_SYSCON_1.CFG_LOCK is set can now work. We won't use that
2565 * capability yet though.
2567 static unsigned __init
2568 omap_ep_setup(char *name
, u8 addr
, u8 type
,
2569 unsigned buf
, unsigned maxp
, int dbuf
)
2574 /* OUT endpoints first, then IN */
2575 ep
= &udc
->ep
[addr
& 0xf];
2576 if (addr
& USB_DIR_IN
)
2579 /* in case of ep init table bugs */
2580 BUG_ON(ep
->name
[0]);
2582 /* chip setup ... bit values are same for IN, OUT */
2583 if (type
== USB_ENDPOINT_XFER_ISOC
) {
2585 case 8: epn_rxtx
= 0 << 12; break;
2586 case 16: epn_rxtx
= 1 << 12; break;
2587 case 32: epn_rxtx
= 2 << 12; break;
2588 case 64: epn_rxtx
= 3 << 12; break;
2589 case 128: epn_rxtx
= 4 << 12; break;
2590 case 256: epn_rxtx
= 5 << 12; break;
2591 case 512: epn_rxtx
= 6 << 12; break;
2594 epn_rxtx
|= UDC_EPN_RX_ISO
;
2597 /* double-buffering "not supported" on 15xx,
2598 * and ignored for PIO-IN on newer chips
2599 * (for more reliable behavior)
2601 if (!use_dma
|| cpu_is_omap15xx() || cpu_is_omap24xx())
2605 case 8: epn_rxtx
= 0 << 12; break;
2606 case 16: epn_rxtx
= 1 << 12; break;
2607 case 32: epn_rxtx
= 2 << 12; break;
2608 case 64: epn_rxtx
= 3 << 12; break;
2612 epn_rxtx
|= UDC_EPN_RX_DB
;
2613 init_timer(&ep
->timer
);
2614 ep
->timer
.function
= pio_out_timer
;
2615 ep
->timer
.data
= (unsigned long) ep
;
2618 epn_rxtx
|= UDC_EPN_RX_VALID
;
2620 epn_rxtx
|= buf
>> 3;
2622 DBG("%s addr %02x rxtx %04x maxp %d%s buf %d\n",
2623 name
, addr
, epn_rxtx
, maxp
, dbuf
? "x2" : "", buf
);
2625 if (addr
& USB_DIR_IN
)
2626 omap_writew(epn_rxtx
, UDC_EP_TX(addr
& 0xf));
2628 omap_writew(epn_rxtx
, UDC_EP_RX(addr
));
2630 /* next endpoint's buffer starts after this one's */
2636 /* set up driver data structures */
2637 BUG_ON(strlen(name
) >= sizeof ep
->name
);
2638 strlcpy(ep
->name
, name
, sizeof ep
->name
);
2639 INIT_LIST_HEAD(&ep
->queue
);
2640 INIT_LIST_HEAD(&ep
->iso
);
2641 ep
->bEndpointAddress
= addr
;
2642 ep
->bmAttributes
= type
;
2643 ep
->double_buf
= dbuf
;
2646 ep
->ep
.name
= ep
->name
;
2647 ep
->ep
.ops
= &omap_ep_ops
;
2648 ep
->ep
.maxpacket
= ep
->maxpacket
= maxp
;
2649 list_add_tail (&ep
->ep
.ep_list
, &udc
->gadget
.ep_list
);
2654 static void omap_udc_release(struct device
*dev
)
2656 complete(udc
->done
);
2662 omap_udc_setup(struct platform_device
*odev
, struct otg_transceiver
*xceiv
)
2666 /* abolish any previous hardware state */
2667 omap_writew(0, UDC_SYSCON1
);
2668 omap_writew(0, UDC_IRQ_EN
);
2669 omap_writew(UDC_IRQ_SRC_MASK
, UDC_IRQ_SRC
);
2670 omap_writew(0, UDC_DMA_IRQ_EN
);
2671 omap_writew(0, UDC_RXDMA_CFG
);
2672 omap_writew(0, UDC_TXDMA_CFG
);
2674 /* UDC_PULLUP_EN gates the chip clock */
2675 // OTG_SYSCON_1 |= DEV_IDLE_EN;
2677 udc
= kzalloc(sizeof(*udc
), GFP_KERNEL
);
2681 spin_lock_init (&udc
->lock
);
2683 udc
->gadget
.ops
= &omap_gadget_ops
;
2684 udc
->gadget
.ep0
= &udc
->ep
[0].ep
;
2685 INIT_LIST_HEAD(&udc
->gadget
.ep_list
);
2686 INIT_LIST_HEAD(&udc
->iso
);
2687 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2688 udc
->gadget
.name
= driver_name
;
2690 device_initialize(&udc
->gadget
.dev
);
2691 dev_set_name(&udc
->gadget
.dev
, "gadget");
2692 udc
->gadget
.dev
.release
= omap_udc_release
;
2693 udc
->gadget
.dev
.parent
= &odev
->dev
;
2695 udc
->gadget
.dev
.dma_mask
= odev
->dev
.dma_mask
;
2697 udc
->transceiver
= xceiv
;
2699 /* ep0 is special; put it right after the SETUP buffer */
2700 buf
= omap_ep_setup("ep0", 0, USB_ENDPOINT_XFER_CONTROL
,
2701 8 /* after SETUP */, 64 /* maxpacket */, 0);
2702 list_del_init(&udc
->ep
[0].ep
.ep_list
);
2704 /* initially disable all non-ep0 endpoints */
2705 for (tmp
= 1; tmp
< 15; tmp
++) {
2706 omap_writew(0, UDC_EP_RX(tmp
));
2707 omap_writew(0, UDC_EP_TX(tmp
));
2710 #define OMAP_BULK_EP(name,addr) \
2711 buf = omap_ep_setup(name "-bulk", addr, \
2712 USB_ENDPOINT_XFER_BULK, buf, 64, 1);
2713 #define OMAP_INT_EP(name,addr, maxp) \
2714 buf = omap_ep_setup(name "-int", addr, \
2715 USB_ENDPOINT_XFER_INT, buf, maxp, 0);
2716 #define OMAP_ISO_EP(name,addr, maxp) \
2717 buf = omap_ep_setup(name "-iso", addr, \
2718 USB_ENDPOINT_XFER_ISOC, buf, maxp, 1);
2720 switch (fifo_mode
) {
2722 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2723 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2724 OMAP_INT_EP("ep3in", USB_DIR_IN
| 3, 16);
2727 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2728 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2729 OMAP_INT_EP("ep9in", USB_DIR_IN
| 9, 16);
2731 OMAP_BULK_EP("ep3in", USB_DIR_IN
| 3);
2732 OMAP_BULK_EP("ep4out", USB_DIR_OUT
| 4);
2733 OMAP_INT_EP("ep10in", USB_DIR_IN
| 10, 16);
2735 OMAP_BULK_EP("ep5in", USB_DIR_IN
| 5);
2736 OMAP_BULK_EP("ep5out", USB_DIR_OUT
| 5);
2737 OMAP_INT_EP("ep11in", USB_DIR_IN
| 11, 16);
2739 OMAP_BULK_EP("ep6in", USB_DIR_IN
| 6);
2740 OMAP_BULK_EP("ep6out", USB_DIR_OUT
| 6);
2741 OMAP_INT_EP("ep12in", USB_DIR_IN
| 12, 16);
2743 OMAP_BULK_EP("ep7in", USB_DIR_IN
| 7);
2744 OMAP_BULK_EP("ep7out", USB_DIR_OUT
| 7);
2745 OMAP_INT_EP("ep13in", USB_DIR_IN
| 13, 16);
2746 OMAP_INT_EP("ep13out", USB_DIR_OUT
| 13, 16);
2748 OMAP_BULK_EP("ep8in", USB_DIR_IN
| 8);
2749 OMAP_BULK_EP("ep8out", USB_DIR_OUT
| 8);
2750 OMAP_INT_EP("ep14in", USB_DIR_IN
| 14, 16);
2751 OMAP_INT_EP("ep14out", USB_DIR_OUT
| 14, 16);
2753 OMAP_BULK_EP("ep15in", USB_DIR_IN
| 15);
2754 OMAP_BULK_EP("ep15out", USB_DIR_OUT
| 15);
2759 case 2: /* mixed iso/bulk */
2760 OMAP_ISO_EP("ep1in", USB_DIR_IN
| 1, 256);
2761 OMAP_ISO_EP("ep2out", USB_DIR_OUT
| 2, 256);
2762 OMAP_ISO_EP("ep3in", USB_DIR_IN
| 3, 128);
2763 OMAP_ISO_EP("ep4out", USB_DIR_OUT
| 4, 128);
2765 OMAP_INT_EP("ep5in", USB_DIR_IN
| 5, 16);
2767 OMAP_BULK_EP("ep6in", USB_DIR_IN
| 6);
2768 OMAP_BULK_EP("ep7out", USB_DIR_OUT
| 7);
2769 OMAP_INT_EP("ep8in", USB_DIR_IN
| 8, 16);
2771 case 3: /* mixed bulk/iso */
2772 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2773 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2774 OMAP_INT_EP("ep3in", USB_DIR_IN
| 3, 16);
2776 OMAP_BULK_EP("ep4in", USB_DIR_IN
| 4);
2777 OMAP_BULK_EP("ep5out", USB_DIR_OUT
| 5);
2778 OMAP_INT_EP("ep6in", USB_DIR_IN
| 6, 16);
2780 OMAP_ISO_EP("ep7in", USB_DIR_IN
| 7, 256);
2781 OMAP_ISO_EP("ep8out", USB_DIR_OUT
| 8, 256);
2782 OMAP_INT_EP("ep9in", USB_DIR_IN
| 9, 16);
2786 /* add more modes as needed */
2789 ERR("unsupported fifo_mode #%d\n", fifo_mode
);
2792 omap_writew(UDC_CFG_LOCK
|UDC_SELF_PWR
, UDC_SYSCON1
);
2793 INFO("fifo mode %d, %d bytes not used\n", fifo_mode
, 2048 - buf
);
2797 static int __init
omap_udc_probe(struct platform_device
*pdev
)
2799 int status
= -ENODEV
;
2801 struct otg_transceiver
*xceiv
= NULL
;
2802 const char *type
= NULL
;
2803 struct omap_usb_config
*config
= pdev
->dev
.platform_data
;
2805 struct clk
*hhc_clk
;
2807 /* NOTE: "knows" the order of the resources! */
2808 if (!request_mem_region(pdev
->resource
[0].start
,
2809 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1,
2811 DBG("request_mem_region failed\n");
2815 if (cpu_is_omap16xx()) {
2816 dc_clk
= clk_get(&pdev
->dev
, "usb_dc_ck");
2817 hhc_clk
= clk_get(&pdev
->dev
, "usb_hhc_ck");
2818 BUG_ON(IS_ERR(dc_clk
) || IS_ERR(hhc_clk
));
2819 /* can't use omap_udc_enable_clock yet */
2821 clk_enable(hhc_clk
);
2825 if (cpu_is_omap24xx()) {
2826 dc_clk
= clk_get(&pdev
->dev
, "usb_fck");
2827 hhc_clk
= clk_get(&pdev
->dev
, "usb_l4_ick");
2828 BUG_ON(IS_ERR(dc_clk
) || IS_ERR(hhc_clk
));
2829 /* can't use omap_udc_enable_clock yet */
2831 clk_enable(hhc_clk
);
2835 if (cpu_is_omap7xx()) {
2836 dc_clk
= clk_get(&pdev
->dev
, "usb_dc_ck");
2837 hhc_clk
= clk_get(&pdev
->dev
, "l3_ocpi_ck");
2838 BUG_ON(IS_ERR(dc_clk
) || IS_ERR(hhc_clk
));
2839 /* can't use omap_udc_enable_clock yet */
2841 clk_enable(hhc_clk
);
2845 INFO("OMAP UDC rev %d.%d%s\n",
2846 omap_readw(UDC_REV
) >> 4, omap_readw(UDC_REV
) & 0xf,
2847 config
->otg
? ", Mini-AB" : "");
2849 /* use the mode given to us by board init code */
2850 if (cpu_is_omap15xx()) {
2854 if (machine_without_vbus_sense()) {
2855 /* just set up software VBUS detect, and then
2856 * later rig it so we always report VBUS.
2857 * FIXME without really sensing VBUS, we can't
2858 * know when to turn PULLUP_EN on/off; and that
2859 * means we always "need" the 48MHz clock.
2861 u32 tmp
= omap_readl(FUNC_MUX_CTRL_0
);
2862 tmp
&= ~VBUS_CTRL_1510
;
2863 omap_writel(tmp
, FUNC_MUX_CTRL_0
);
2864 tmp
|= VBUS_MODE_1510
;
2865 tmp
&= ~VBUS_CTRL_1510
;
2866 omap_writel(tmp
, FUNC_MUX_CTRL_0
);
2869 /* The transceiver may package some GPIO logic or handle
2870 * loopback and/or transceiverless setup; if we find one,
2871 * use it. Except for OTG, we don't _need_ to talk to one;
2872 * but not having one probably means no VBUS detection.
2874 xceiv
= otg_get_transceiver();
2876 type
= xceiv
->label
;
2877 else if (config
->otg
) {
2878 DBG("OTG requires external transceiver!\n");
2884 if (cpu_is_omap24xx()) {
2885 /* this could be transceiverless in one of the
2886 * "we don't need to know" modes.
2893 case 0: /* POWERUP DEFAULT == 0 */
2897 if (!cpu_is_omap1710()) {
2898 type
= "integrated";
2908 DBG("external transceiver not registered!\n");
2912 case 21: /* internal loopback */
2915 case 14: /* transceiverless */
2916 if (cpu_is_omap1710())
2926 ERR("unrecognized UDC HMC mode %d\n", hmc
);
2931 INFO("hmc mode %d, %s transceiver\n", hmc
, type
);
2933 /* a "gadget" abstracts/virtualizes the controller */
2934 status
= omap_udc_setup(pdev
, xceiv
);
2939 // "udc" is now valid
2940 pullup_disable(udc
);
2941 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
2942 udc
->gadget
.is_otg
= (config
->otg
!= 0);
2945 /* starting with omap1710 es2.0, clear toggle is a separate bit */
2946 if (omap_readw(UDC_REV
) >= 0x61)
2947 udc
->clr_halt
= UDC_RESET_EP
| UDC_CLRDATA_TOGGLE
;
2949 udc
->clr_halt
= UDC_RESET_EP
;
2951 /* USB general purpose IRQ: ep0, state changes, dma, etc */
2952 status
= request_irq(pdev
->resource
[1].start
, omap_udc_irq
,
2953 IRQF_SAMPLE_RANDOM
, driver_name
, udc
);
2955 ERR("can't get irq %d, err %d\n",
2956 (int) pdev
->resource
[1].start
, status
);
2960 /* USB "non-iso" IRQ (PIO for all but ep0) */
2961 status
= request_irq(pdev
->resource
[2].start
, omap_udc_pio_irq
,
2962 IRQF_SAMPLE_RANDOM
, "omap_udc pio", udc
);
2964 ERR("can't get irq %d, err %d\n",
2965 (int) pdev
->resource
[2].start
, status
);
2969 status
= request_irq(pdev
->resource
[3].start
, omap_udc_iso_irq
,
2970 IRQF_DISABLED
, "omap_udc iso", udc
);
2972 ERR("can't get irq %d, err %d\n",
2973 (int) pdev
->resource
[3].start
, status
);
2977 if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
2978 udc
->dc_clk
= dc_clk
;
2979 udc
->hhc_clk
= hhc_clk
;
2980 clk_disable(hhc_clk
);
2981 clk_disable(dc_clk
);
2984 if (cpu_is_omap24xx()) {
2985 udc
->dc_clk
= dc_clk
;
2986 udc
->hhc_clk
= hhc_clk
;
2987 /* FIXME OMAP2 don't release hhc & dc clock */
2989 clk_disable(hhc_clk
);
2990 clk_disable(dc_clk
);
2995 status
= device_add(&udc
->gadget
.dev
);
2999 status
= usb_add_gadget_udc(&pdev
->dev
, &udc
->gadget
);
3002 /* If fail, fall through */
3008 free_irq(pdev
->resource
[2].start
, udc
);
3012 free_irq(pdev
->resource
[1].start
, udc
);
3020 otg_put_transceiver(xceiv
);
3022 if (cpu_is_omap16xx() || cpu_is_omap24xx() || cpu_is_omap7xx()) {
3023 clk_disable(hhc_clk
);
3024 clk_disable(dc_clk
);
3029 release_mem_region(pdev
->resource
[0].start
,
3030 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1);
3035 static int __exit
omap_udc_remove(struct platform_device
*pdev
)
3037 DECLARE_COMPLETION_ONSTACK(done
);
3042 usb_del_gadget_udc(&udc
->gadget
);
3048 pullup_disable(udc
);
3049 if (udc
->transceiver
) {
3050 otg_put_transceiver(udc
->transceiver
);
3051 udc
->transceiver
= NULL
;
3053 omap_writew(0, UDC_SYSCON1
);
3058 free_irq(pdev
->resource
[3].start
, udc
);
3060 free_irq(pdev
->resource
[2].start
, udc
);
3061 free_irq(pdev
->resource
[1].start
, udc
);
3064 if (udc
->clk_requested
)
3065 omap_udc_enable_clock(0);
3066 clk_put(udc
->hhc_clk
);
3067 clk_put(udc
->dc_clk
);
3070 release_mem_region(pdev
->resource
[0].start
,
3071 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1);
3073 device_unregister(&udc
->gadget
.dev
);
3074 wait_for_completion(&done
);
3079 /* suspend/resume/wakeup from sysfs (echo > power/state) or when the
3080 * system is forced into deep sleep
3082 * REVISIT we should probably reject suspend requests when there's a host
3083 * session active, rather than disconnecting, at least on boards that can
3084 * report VBUS irqs (UDC_DEVSTAT.UDC_ATT). And in any case, we need to
3085 * make host resumes and VBUS detection trigger OMAP wakeup events; that
3086 * may involve talking to an external transceiver (e.g. isp1301).
3089 static int omap_udc_suspend(struct platform_device
*dev
, pm_message_t message
)
3093 devstat
= omap_readw(UDC_DEVSTAT
);
3095 /* we're requesting 48 MHz clock if the pullup is enabled
3096 * (== we're attached to the host) and we're not suspended,
3097 * which would prevent entry to deep sleep...
3099 if ((devstat
& UDC_ATT
) != 0 && (devstat
& UDC_SUS
) == 0) {
3100 WARNING("session active; suspend requires disconnect\n");
3101 omap_pullup(&udc
->gadget
, 0);
3107 static int omap_udc_resume(struct platform_device
*dev
)
3109 DBG("resume + wakeup/SRP\n");
3110 omap_pullup(&udc
->gadget
, 1);
3112 /* maybe the host would enumerate us if we nudged it */
3114 return omap_wakeup(&udc
->gadget
);
3117 /*-------------------------------------------------------------------------*/
3119 static struct platform_driver udc_driver
= {
3120 .remove
= __exit_p(omap_udc_remove
),
3121 .suspend
= omap_udc_suspend
,
3122 .resume
= omap_udc_resume
,
3124 .owner
= THIS_MODULE
,
3125 .name
= (char *) driver_name
,
3129 static int __init
udc_init(void)
3131 /* Disable DMA for omap7xx -- it doesn't work right. */
3132 if (cpu_is_omap7xx())
3135 INFO("%s, version: " DRIVER_VERSION
3139 "%s\n", driver_desc
,
3140 use_dma
? " (dma)" : "");
3141 return platform_driver_probe(&udc_driver
, omap_udc_probe
);
3143 module_init(udc_init
);
3145 static void __exit
udc_exit(void)
3147 platform_driver_unregister(&udc_driver
);
3149 module_exit(udc_exit
);
3151 MODULE_DESCRIPTION(DRIVER_DESC
);
3152 MODULE_LICENSE("GPL");
3153 MODULE_ALIAS("platform:omap_udc");