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
< le16_to_cpu
170 (desc
->wMaxPacketSize
)) {
171 DBG("%s, bad ep or descriptor\n", __func__
);
174 maxp
= le16_to_cpu (desc
->wMaxPacketSize
);
175 if ((desc
->bmAttributes
== USB_ENDPOINT_XFER_BULK
176 && maxp
!= ep
->maxpacket
)
177 || le16_to_cpu(desc
->wMaxPacketSize
) > ep
->maxpacket
178 || !desc
->wMaxPacketSize
) {
179 DBG("%s, bad %s maxpacket\n", __func__
, _ep
->name
);
184 if ((desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
185 && desc
->bInterval
!= 1)) {
186 /* hardware wants period = 1; USB allows 2^(Interval-1) */
187 DBG("%s, unsupported ISO period %dms\n", _ep
->name
,
188 1 << (desc
->bInterval
- 1));
192 if (desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
193 DBG("%s, ISO nyet\n", _ep
->name
);
198 /* xfer types must match, except that interrupt ~= bulk */
199 if (ep
->bmAttributes
!= desc
->bmAttributes
200 && ep
->bmAttributes
!= USB_ENDPOINT_XFER_BULK
201 && desc
->bmAttributes
!= USB_ENDPOINT_XFER_INT
) {
202 DBG("%s, %s type mismatch\n", __func__
, _ep
->name
);
207 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
208 DBG("%s, bogus device state\n", __func__
);
212 spin_lock_irqsave(&udc
->lock
, flags
);
217 ep
->ep
.maxpacket
= maxp
;
219 /* set endpoint to initial state */
223 use_ep(ep
, UDC_EP_SEL
);
224 omap_writew(udc
->clr_halt
, UDC_CTRL
);
228 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
229 list_add(&ep
->iso
, &udc
->iso
);
231 /* maybe assign a DMA channel to this endpoint */
232 if (use_dma
&& desc
->bmAttributes
== USB_ENDPOINT_XFER_BULK
)
233 /* FIXME ISO can dma, but prefers first channel */
234 dma_channel_claim(ep
, 0);
236 /* PIO OUT may RX packets */
237 if (desc
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
239 && !(ep
->bEndpointAddress
& USB_DIR_IN
)) {
240 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
241 ep
->ackwait
= 1 + ep
->double_buf
;
244 spin_unlock_irqrestore(&udc
->lock
, flags
);
245 VDBG("%s enabled\n", _ep
->name
);
249 static void nuke(struct omap_ep
*, int status
);
251 static int omap_ep_disable(struct usb_ep
*_ep
)
253 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
256 if (!_ep
|| !ep
->desc
) {
257 DBG("%s, %s not enabled\n", __func__
,
258 _ep
? ep
->ep
.name
: NULL
);
262 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
264 nuke (ep
, -ESHUTDOWN
);
265 ep
->ep
.maxpacket
= ep
->maxpacket
;
267 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
268 list_del_init(&ep
->iso
);
269 del_timer(&ep
->timer
);
271 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
273 VDBG("%s disabled\n", _ep
->name
);
277 /*-------------------------------------------------------------------------*/
279 static struct usb_request
*
280 omap_alloc_request(struct usb_ep
*ep
, gfp_t gfp_flags
)
282 struct omap_req
*req
;
284 req
= kzalloc(sizeof(*req
), gfp_flags
);
286 req
->req
.dma
= DMA_ADDR_INVALID
;
287 INIT_LIST_HEAD (&req
->queue
);
293 omap_free_request(struct usb_ep
*ep
, struct usb_request
*_req
)
295 struct omap_req
*req
= container_of(_req
, struct omap_req
, req
);
301 /*-------------------------------------------------------------------------*/
304 done(struct omap_ep
*ep
, struct omap_req
*req
, int status
)
306 unsigned stopped
= ep
->stopped
;
308 list_del_init(&req
->queue
);
310 if (req
->req
.status
== -EINPROGRESS
)
311 req
->req
.status
= status
;
313 status
= req
->req
.status
;
315 if (use_dma
&& ep
->has_dma
) {
317 dma_unmap_single(ep
->udc
->gadget
.dev
.parent
,
318 req
->req
.dma
, req
->req
.length
,
319 (ep
->bEndpointAddress
& USB_DIR_IN
)
322 req
->req
.dma
= DMA_ADDR_INVALID
;
325 dma_sync_single_for_cpu(ep
->udc
->gadget
.dev
.parent
,
326 req
->req
.dma
, req
->req
.length
,
327 (ep
->bEndpointAddress
& USB_DIR_IN
)
333 if (status
&& status
!= -ESHUTDOWN
)
335 VDBG("complete %s req %p stat %d len %u/%u\n",
336 ep
->ep
.name
, &req
->req
, status
,
337 req
->req
.actual
, req
->req
.length
);
339 /* don't modify queue heads during completion callback */
341 spin_unlock(&ep
->udc
->lock
);
342 req
->req
.complete(&ep
->ep
, &req
->req
);
343 spin_lock(&ep
->udc
->lock
);
344 ep
->stopped
= stopped
;
347 /*-------------------------------------------------------------------------*/
349 #define UDC_FIFO_FULL (UDC_NON_ISO_FIFO_FULL | UDC_ISO_FIFO_FULL)
350 #define UDC_FIFO_UNWRITABLE (UDC_EP_HALTED | UDC_FIFO_FULL)
352 #define FIFO_EMPTY (UDC_NON_ISO_FIFO_EMPTY | UDC_ISO_FIFO_EMPTY)
353 #define FIFO_UNREADABLE (UDC_EP_HALTED | FIFO_EMPTY)
356 write_packet(u8
*buf
, struct omap_req
*req
, unsigned max
)
361 len
= min(req
->req
.length
- req
->req
.actual
, max
);
362 req
->req
.actual
+= len
;
365 if (likely((((int)buf
) & 1) == 0)) {
368 omap_writew(*wp
++, UDC_DATA
);
374 omap_writeb(*buf
++, UDC_DATA
);
378 // FIXME change r/w fifo calling convention
381 // return: 0 = still running, 1 = completed, negative = errno
382 static int write_fifo(struct omap_ep
*ep
, struct omap_req
*req
)
389 buf
= req
->req
.buf
+ req
->req
.actual
;
392 /* PIO-IN isn't double buffered except for iso */
393 ep_stat
= omap_readw(UDC_STAT_FLG
);
394 if (ep_stat
& UDC_FIFO_UNWRITABLE
)
397 count
= ep
->ep
.maxpacket
;
398 count
= write_packet(buf
, req
, count
);
399 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
402 /* last packet is often short (sometimes a zlp) */
403 if (count
!= ep
->ep
.maxpacket
)
405 else if (req
->req
.length
== req
->req
.actual
411 /* NOTE: requests complete when all IN data is in a
412 * FIFO (or sometimes later, if a zlp was needed).
413 * Use usb_ep_fifo_status() where needed.
421 read_packet(u8
*buf
, struct omap_req
*req
, unsigned avail
)
426 len
= min(req
->req
.length
- req
->req
.actual
, avail
);
427 req
->req
.actual
+= len
;
430 if (likely((((int)buf
) & 1) == 0)) {
433 *wp
++ = omap_readw(UDC_DATA
);
439 *buf
++ = omap_readb(UDC_DATA
);
443 // return: 0 = still running, 1 = queue empty, negative = errno
444 static int read_fifo(struct omap_ep
*ep
, struct omap_req
*req
)
447 unsigned count
, avail
;
450 buf
= req
->req
.buf
+ req
->req
.actual
;
454 u16 ep_stat
= omap_readw(UDC_STAT_FLG
);
457 if (ep_stat
& FIFO_EMPTY
) {
462 if (ep_stat
& UDC_EP_HALTED
)
465 if (ep_stat
& UDC_FIFO_FULL
)
466 avail
= ep
->ep
.maxpacket
;
468 avail
= omap_readw(UDC_RXFSTAT
);
469 ep
->fnf
= ep
->double_buf
;
471 count
= read_packet(buf
, req
, avail
);
473 /* partial packet reads may not be errors */
474 if (count
< ep
->ep
.maxpacket
) {
476 /* overflowed this request? flush extra data */
477 if (count
!= avail
) {
478 req
->req
.status
= -EOVERFLOW
;
481 omap_readw(UDC_DATA
);
483 } else if (req
->req
.length
== req
->req
.actual
)
488 if (!ep
->bEndpointAddress
)
497 /*-------------------------------------------------------------------------*/
499 static u16
dma_src_len(struct omap_ep
*ep
, dma_addr_t start
)
503 /* IN-DMA needs this on fault/cancel paths, so 15xx misreports
504 * the last transfer's bytecount by more than a FIFO's worth.
506 if (cpu_is_omap15xx())
509 end
= omap_get_dma_src_pos(ep
->lch
);
510 if (end
== ep
->dma_counter
)
513 end
|= start
& (0xffff << 16);
519 static u16
dma_dest_len(struct omap_ep
*ep
, dma_addr_t start
)
523 end
= omap_get_dma_dst_pos(ep
->lch
);
524 if (end
== ep
->dma_counter
)
527 end
|= start
& (0xffff << 16);
528 if (cpu_is_omap15xx())
536 /* Each USB transfer request using DMA maps to one or more DMA transfers.
537 * When DMA completion isn't request completion, the UDC continues with
538 * the next DMA transfer for that USB transfer.
541 static void next_in_dma(struct omap_ep
*ep
, struct omap_req
*req
)
544 unsigned length
= req
->req
.length
- req
->req
.actual
;
545 const int sync_mode
= cpu_is_omap15xx()
546 ? OMAP_DMA_SYNC_FRAME
547 : OMAP_DMA_SYNC_ELEMENT
;
550 if (cpu_is_omap24xx())
551 dma_trigger
= OMAP24XX_DMA(USB_W2FC_TX0
, ep
->dma_channel
);
553 /* measure length in either bytes or packets */
554 if ((cpu_is_omap16xx() && length
<= UDC_TXN_TSC
)
555 || (cpu_is_omap24xx() && length
< ep
->maxpacket
)
556 || (cpu_is_omap15xx() && length
< ep
->maxpacket
)) {
557 txdma_ctrl
= UDC_TXN_EOT
| length
;
558 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S8
,
559 length
, 1, sync_mode
, dma_trigger
, 0);
561 length
= min(length
/ ep
->maxpacket
,
562 (unsigned) UDC_TXN_TSC
+ 1);
564 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S16
,
565 ep
->ep
.maxpacket
>> 1, length
, sync_mode
,
567 length
*= ep
->maxpacket
;
569 omap_set_dma_src_params(ep
->lch
, OMAP_DMA_PORT_EMIFF
,
570 OMAP_DMA_AMODE_POST_INC
, req
->req
.dma
+ req
->req
.actual
,
573 omap_start_dma(ep
->lch
);
574 ep
->dma_counter
= omap_get_dma_src_pos(ep
->lch
);
575 w
= omap_readw(UDC_DMA_IRQ_EN
);
576 w
|= UDC_TX_DONE_IE(ep
->dma_channel
);
577 omap_writew(w
, UDC_DMA_IRQ_EN
);
578 omap_writew(UDC_TXN_START
| txdma_ctrl
, UDC_TXDMA(ep
->dma_channel
));
579 req
->dma_bytes
= length
;
582 static void finish_in_dma(struct omap_ep
*ep
, struct omap_req
*req
, int status
)
587 req
->req
.actual
+= req
->dma_bytes
;
589 /* return if this request needs to send data or zlp */
590 if (req
->req
.actual
< req
->req
.length
)
593 && req
->dma_bytes
!= 0
594 && (req
->req
.actual
% ep
->maxpacket
) == 0)
597 req
->req
.actual
+= dma_src_len(ep
, req
->req
.dma
601 omap_stop_dma(ep
->lch
);
602 w
= omap_readw(UDC_DMA_IRQ_EN
);
603 w
&= ~UDC_TX_DONE_IE(ep
->dma_channel
);
604 omap_writew(w
, UDC_DMA_IRQ_EN
);
605 done(ep
, req
, status
);
608 static void next_out_dma(struct omap_ep
*ep
, struct omap_req
*req
)
610 unsigned packets
= req
->req
.length
- req
->req
.actual
;
614 if (cpu_is_omap24xx())
615 dma_trigger
= OMAP24XX_DMA(USB_W2FC_RX0
, ep
->dma_channel
);
617 /* NOTE: we filtered out "short reads" before, so we know
618 * the buffer has only whole numbers of packets.
619 * except MODE SELECT(6) sent the 24 bytes data in OMAP24XX DMA mode
621 if (cpu_is_omap24xx() && packets
< ep
->maxpacket
) {
622 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S8
,
623 packets
, 1, OMAP_DMA_SYNC_ELEMENT
,
625 req
->dma_bytes
= packets
;
627 /* set up this DMA transfer, enable the fifo, start */
628 packets
/= ep
->ep
.maxpacket
;
629 packets
= min(packets
, (unsigned)UDC_RXN_TC
+ 1);
630 req
->dma_bytes
= packets
* ep
->ep
.maxpacket
;
631 omap_set_dma_transfer_params(ep
->lch
, OMAP_DMA_DATA_TYPE_S16
,
632 ep
->ep
.maxpacket
>> 1, packets
,
633 OMAP_DMA_SYNC_ELEMENT
,
636 omap_set_dma_dest_params(ep
->lch
, OMAP_DMA_PORT_EMIFF
,
637 OMAP_DMA_AMODE_POST_INC
, req
->req
.dma
+ req
->req
.actual
,
639 ep
->dma_counter
= omap_get_dma_dst_pos(ep
->lch
);
641 omap_writew(UDC_RXN_STOP
| (packets
- 1), UDC_RXDMA(ep
->dma_channel
));
642 w
= omap_readw(UDC_DMA_IRQ_EN
);
643 w
|= UDC_RX_EOT_IE(ep
->dma_channel
);
644 omap_writew(w
, UDC_DMA_IRQ_EN
);
645 omap_writew(ep
->bEndpointAddress
& 0xf, UDC_EP_NUM
);
646 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
648 omap_start_dma(ep
->lch
);
652 finish_out_dma(struct omap_ep
*ep
, struct omap_req
*req
, int status
, int one
)
657 ep
->dma_counter
= (u16
) (req
->req
.dma
+ req
->req
.actual
);
658 count
= dma_dest_len(ep
, req
->req
.dma
+ req
->req
.actual
);
659 count
+= req
->req
.actual
;
662 if (count
<= req
->req
.length
)
663 req
->req
.actual
= count
;
665 if (count
!= req
->dma_bytes
|| status
)
666 omap_stop_dma(ep
->lch
);
668 /* if this wasn't short, request may need another transfer */
669 else if (req
->req
.actual
< req
->req
.length
)
673 w
= omap_readw(UDC_DMA_IRQ_EN
);
674 w
&= ~UDC_RX_EOT_IE(ep
->dma_channel
);
675 omap_writew(w
, UDC_DMA_IRQ_EN
);
676 done(ep
, req
, status
);
679 static void dma_irq(struct omap_udc
*udc
, u16 irq_src
)
681 u16 dman_stat
= omap_readw(UDC_DMAN_STAT
);
683 struct omap_req
*req
;
685 /* IN dma: tx to host */
686 if (irq_src
& UDC_TXN_DONE
) {
687 ep
= &udc
->ep
[16 + UDC_DMA_TX_SRC(dman_stat
)];
689 /* can see TXN_DONE after dma abort */
690 if (!list_empty(&ep
->queue
)) {
691 req
= container_of(ep
->queue
.next
,
692 struct omap_req
, queue
);
693 finish_in_dma(ep
, req
, 0);
695 omap_writew(UDC_TXN_DONE
, UDC_IRQ_SRC
);
697 if (!list_empty (&ep
->queue
)) {
698 req
= container_of(ep
->queue
.next
,
699 struct omap_req
, queue
);
700 next_in_dma(ep
, req
);
704 /* OUT dma: rx from host */
705 if (irq_src
& UDC_RXN_EOT
) {
706 ep
= &udc
->ep
[UDC_DMA_RX_SRC(dman_stat
)];
708 /* can see RXN_EOT after dma abort */
709 if (!list_empty(&ep
->queue
)) {
710 req
= container_of(ep
->queue
.next
,
711 struct omap_req
, queue
);
712 finish_out_dma(ep
, req
, 0, dman_stat
& UDC_DMA_RX_SB
);
714 omap_writew(UDC_RXN_EOT
, UDC_IRQ_SRC
);
716 if (!list_empty (&ep
->queue
)) {
717 req
= container_of(ep
->queue
.next
,
718 struct omap_req
, queue
);
719 next_out_dma(ep
, req
);
723 if (irq_src
& UDC_RXN_CNT
) {
724 ep
= &udc
->ep
[UDC_DMA_RX_SRC(dman_stat
)];
726 /* omap15xx does this unasked... */
727 VDBG("%s, RX_CNT irq?\n", ep
->ep
.name
);
728 omap_writew(UDC_RXN_CNT
, UDC_IRQ_SRC
);
732 static void dma_error(int lch
, u16 ch_status
, void *data
)
734 struct omap_ep
*ep
= data
;
736 /* if ch_status & OMAP_DMA_DROP_IRQ ... */
737 /* if ch_status & OMAP1_DMA_TOUT_IRQ ... */
738 ERR("%s dma error, lch %d status %02x\n", ep
->ep
.name
, lch
, ch_status
);
740 /* complete current transfer ... */
743 static void dma_channel_claim(struct omap_ep
*ep
, unsigned channel
)
746 int status
, restart
, is_in
;
749 is_in
= ep
->bEndpointAddress
& USB_DIR_IN
;
751 reg
= omap_readw(UDC_TXDMA_CFG
);
753 reg
= omap_readw(UDC_RXDMA_CFG
);
754 reg
|= UDC_DMA_REQ
; /* "pulse" activated */
758 if (channel
== 0 || channel
> 3) {
759 if ((reg
& 0x0f00) == 0)
761 else if ((reg
& 0x00f0) == 0)
763 else if ((reg
& 0x000f) == 0) /* preferred for ISO */
770 reg
|= (0x0f & ep
->bEndpointAddress
) << (4 * (channel
- 1));
771 ep
->dma_channel
= channel
;
774 if (cpu_is_omap24xx())
775 dma_channel
= OMAP24XX_DMA(USB_W2FC_TX0
, channel
);
777 dma_channel
= OMAP_DMA_USB_W2FC_TX0
- 1 + channel
;
778 status
= omap_request_dma(dma_channel
,
779 ep
->ep
.name
, dma_error
, ep
, &ep
->lch
);
781 omap_writew(reg
, UDC_TXDMA_CFG
);
783 omap_set_dma_src_burst_mode(ep
->lch
,
784 OMAP_DMA_DATA_BURST_4
);
785 omap_set_dma_src_data_pack(ep
->lch
, 1);
787 omap_set_dma_dest_params(ep
->lch
,
789 OMAP_DMA_AMODE_CONSTANT
,
794 if (cpu_is_omap24xx())
795 dma_channel
= OMAP24XX_DMA(USB_W2FC_RX0
, channel
);
797 dma_channel
= OMAP_DMA_USB_W2FC_RX0
- 1 + channel
;
799 status
= omap_request_dma(dma_channel
,
800 ep
->ep
.name
, dma_error
, ep
, &ep
->lch
);
802 omap_writew(reg
, UDC_RXDMA_CFG
);
804 omap_set_dma_src_params(ep
->lch
,
806 OMAP_DMA_AMODE_CONSTANT
,
810 omap_set_dma_dest_burst_mode(ep
->lch
,
811 OMAP_DMA_DATA_BURST_4
);
812 omap_set_dma_dest_data_pack(ep
->lch
, 1);
819 omap_disable_dma_irq(ep
->lch
, OMAP_DMA_BLOCK_IRQ
);
821 /* channel type P: hw synch (fifo) */
822 if (cpu_class_is_omap1() && !cpu_is_omap15xx())
823 omap_set_dma_channel_mode(ep
->lch
, OMAP_DMA_LCH_P
);
827 /* restart any queue, even if the claim failed */
828 restart
= !ep
->stopped
&& !list_empty(&ep
->queue
);
831 DBG("%s no dma channel: %d%s\n", ep
->ep
.name
, status
,
832 restart
? " (restart)" : "");
834 DBG("%s claimed %cxdma%d lch %d%s\n", ep
->ep
.name
,
836 ep
->dma_channel
- 1, ep
->lch
,
837 restart
? " (restart)" : "");
840 struct omap_req
*req
;
841 req
= container_of(ep
->queue
.next
, struct omap_req
, queue
);
843 (is_in
? next_in_dma
: next_out_dma
)(ep
, req
);
845 use_ep(ep
, UDC_EP_SEL
);
846 (is_in
? write_fifo
: read_fifo
)(ep
, req
);
849 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
850 ep
->ackwait
= 1 + ep
->double_buf
;
852 /* IN: 6 wait states before it'll tx */
857 static void dma_channel_release(struct omap_ep
*ep
)
859 int shift
= 4 * (ep
->dma_channel
- 1);
860 u16 mask
= 0x0f << shift
;
861 struct omap_req
*req
;
864 /* abort any active usb transfer request */
865 if (!list_empty(&ep
->queue
))
866 req
= container_of(ep
->queue
.next
, struct omap_req
, queue
);
870 active
= omap_get_dma_active_status(ep
->lch
);
872 DBG("%s release %s %cxdma%d %p\n", ep
->ep
.name
,
873 active
? "active" : "idle",
874 (ep
->bEndpointAddress
& USB_DIR_IN
) ? 't' : 'r',
875 ep
->dma_channel
- 1, req
);
877 /* NOTE: re-setting RX_REQ/TX_REQ because of a chip bug (before
878 * OMAP 1710 ES2.0) where reading the DMA_CFG can clear them.
881 /* wait till current packet DMA finishes, and fifo empties */
882 if (ep
->bEndpointAddress
& USB_DIR_IN
) {
883 omap_writew((omap_readw(UDC_TXDMA_CFG
) & ~mask
) | UDC_DMA_REQ
,
887 finish_in_dma(ep
, req
, -ECONNRESET
);
889 /* clear FIFO; hosts probably won't empty it */
890 use_ep(ep
, UDC_EP_SEL
);
891 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
894 while (omap_readw(UDC_TXDMA_CFG
) & mask
)
897 omap_writew((omap_readw(UDC_RXDMA_CFG
) & ~mask
) | UDC_DMA_REQ
,
900 /* dma empties the fifo */
901 while (omap_readw(UDC_RXDMA_CFG
) & mask
)
904 finish_out_dma(ep
, req
, -ECONNRESET
, 0);
906 omap_free_dma(ep
->lch
);
909 /* has_dma still set, till endpoint is fully quiesced */
913 /*-------------------------------------------------------------------------*/
916 omap_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, gfp_t gfp_flags
)
918 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
919 struct omap_req
*req
= container_of(_req
, struct omap_req
, req
);
920 struct omap_udc
*udc
;
924 /* catch various bogus parameters */
925 if (!_req
|| !req
->req
.complete
|| !req
->req
.buf
926 || !list_empty(&req
->queue
)) {
927 DBG("%s, bad params\n", __func__
);
930 if (!_ep
|| (!ep
->desc
&& ep
->bEndpointAddress
)) {
931 DBG("%s, bad ep\n", __func__
);
934 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
935 if (req
->req
.length
> ep
->ep
.maxpacket
)
940 /* this isn't bogus, but OMAP DMA isn't the only hardware to
941 * have a hard time with partial packet reads... reject it.
942 * Except OMAP2 can handle the small packets.
946 && ep
->bEndpointAddress
!= 0
947 && (ep
->bEndpointAddress
& USB_DIR_IN
) == 0
948 && !cpu_class_is_omap2()
949 && (req
->req
.length
% ep
->ep
.maxpacket
) != 0) {
950 DBG("%s, no partial packet OUT reads\n", __func__
);
955 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
958 if (use_dma
&& ep
->has_dma
) {
959 if (req
->req
.dma
== DMA_ADDR_INVALID
) {
960 req
->req
.dma
= dma_map_single(
961 ep
->udc
->gadget
.dev
.parent
,
964 (ep
->bEndpointAddress
& USB_DIR_IN
)
969 dma_sync_single_for_device(
970 ep
->udc
->gadget
.dev
.parent
,
971 req
->req
.dma
, req
->req
.length
,
972 (ep
->bEndpointAddress
& USB_DIR_IN
)
979 VDBG("%s queue req %p, len %d buf %p\n",
980 ep
->ep
.name
, _req
, _req
->length
, _req
->buf
);
982 spin_lock_irqsave(&udc
->lock
, flags
);
984 req
->req
.status
= -EINPROGRESS
;
987 /* maybe kickstart non-iso i/o queues */
991 w
= omap_readw(UDC_IRQ_EN
);
993 omap_writew(w
, UDC_IRQ_EN
);
994 } else if (list_empty(&ep
->queue
) && !ep
->stopped
&& !ep
->ackwait
) {
997 if (ep
->bEndpointAddress
== 0) {
998 if (!udc
->ep0_pending
|| !list_empty (&ep
->queue
)) {
999 spin_unlock_irqrestore(&udc
->lock
, flags
);
1003 /* empty DATA stage? */
1004 is_in
= udc
->ep0_in
;
1005 if (!req
->req
.length
) {
1007 /* chip became CONFIGURED or ADDRESSED
1008 * earlier; drivers may already have queued
1009 * requests to non-control endpoints
1011 if (udc
->ep0_set_config
) {
1012 u16 irq_en
= omap_readw(UDC_IRQ_EN
);
1014 irq_en
|= UDC_DS_CHG_IE
| UDC_EP0_IE
;
1015 if (!udc
->ep0_reset_config
)
1016 irq_en
|= UDC_EPN_RX_IE
1018 omap_writew(irq_en
, UDC_IRQ_EN
);
1021 /* STATUS for zero length DATA stages is
1022 * always an IN ... even for IN transfers,
1023 * a weird case which seem to stall OMAP.
1025 omap_writew(UDC_EP_SEL
| UDC_EP_DIR
, UDC_EP_NUM
);
1026 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1027 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1028 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1031 udc
->ep0_pending
= 0;
1035 /* non-empty DATA stage */
1037 omap_writew(UDC_EP_SEL
| UDC_EP_DIR
, UDC_EP_NUM
);
1041 omap_writew(UDC_EP_SEL
, UDC_EP_NUM
);
1044 is_in
= ep
->bEndpointAddress
& USB_DIR_IN
;
1046 use_ep(ep
, UDC_EP_SEL
);
1047 /* if ISO: SOF IRQs must be enabled/disabled! */
1051 (is_in
? next_in_dma
: next_out_dma
)(ep
, req
);
1053 if ((is_in
? write_fifo
: read_fifo
)(ep
, req
) == 1)
1057 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1058 ep
->ackwait
= 1 + ep
->double_buf
;
1060 /* IN: 6 wait states before it'll tx */
1065 /* irq handler advances the queue */
1067 list_add_tail(&req
->queue
, &ep
->queue
);
1068 spin_unlock_irqrestore(&udc
->lock
, flags
);
1073 static int omap_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
1075 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
1076 struct omap_req
*req
;
1077 unsigned long flags
;
1082 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1084 /* make sure it's actually queued on this endpoint */
1085 list_for_each_entry (req
, &ep
->queue
, queue
) {
1086 if (&req
->req
== _req
)
1089 if (&req
->req
!= _req
) {
1090 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1094 if (use_dma
&& ep
->dma_channel
&& ep
->queue
.next
== &req
->queue
) {
1095 int channel
= ep
->dma_channel
;
1097 /* releasing the channel cancels the request,
1098 * reclaiming the channel restarts the queue
1100 dma_channel_release(ep
);
1101 dma_channel_claim(ep
, channel
);
1103 done(ep
, req
, -ECONNRESET
);
1104 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1108 /*-------------------------------------------------------------------------*/
1110 static int omap_ep_set_halt(struct usb_ep
*_ep
, int value
)
1112 struct omap_ep
*ep
= container_of(_ep
, struct omap_ep
, ep
);
1113 unsigned long flags
;
1114 int status
= -EOPNOTSUPP
;
1116 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1118 /* just use protocol stalls for ep0; real halts are annoying */
1119 if (ep
->bEndpointAddress
== 0) {
1120 if (!ep
->udc
->ep0_pending
)
1123 if (ep
->udc
->ep0_set_config
) {
1124 WARNING("error changing config?\n");
1125 omap_writew(UDC_CLR_CFG
, UDC_SYSCON2
);
1127 omap_writew(UDC_STALL_CMD
, UDC_SYSCON2
);
1128 ep
->udc
->ep0_pending
= 0;
1133 /* otherwise, all active non-ISO endpoints can halt */
1134 } else if (ep
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
&& ep
->desc
) {
1136 /* IN endpoints must already be idle */
1137 if ((ep
->bEndpointAddress
& USB_DIR_IN
)
1138 && !list_empty(&ep
->queue
)) {
1146 if (use_dma
&& ep
->dma_channel
1147 && !list_empty(&ep
->queue
)) {
1148 channel
= ep
->dma_channel
;
1149 dma_channel_release(ep
);
1153 use_ep(ep
, UDC_EP_SEL
);
1154 if (omap_readw(UDC_STAT_FLG
) & UDC_NON_ISO_FIFO_EMPTY
) {
1155 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
1162 dma_channel_claim(ep
, channel
);
1165 omap_writew(ep
->udc
->clr_halt
, UDC_CTRL
);
1167 if (!(ep
->bEndpointAddress
& USB_DIR_IN
)) {
1168 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1169 ep
->ackwait
= 1 + ep
->double_buf
;
1174 VDBG("%s %s halt stat %d\n", ep
->ep
.name
,
1175 value
? "set" : "clear", status
);
1177 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1181 static struct usb_ep_ops omap_ep_ops
= {
1182 .enable
= omap_ep_enable
,
1183 .disable
= omap_ep_disable
,
1185 .alloc_request
= omap_alloc_request
,
1186 .free_request
= omap_free_request
,
1188 .queue
= omap_ep_queue
,
1189 .dequeue
= omap_ep_dequeue
,
1191 .set_halt
= omap_ep_set_halt
,
1192 // fifo_status ... report bytes in fifo
1193 // fifo_flush ... flush fifo
1196 /*-------------------------------------------------------------------------*/
1198 static int omap_get_frame(struct usb_gadget
*gadget
)
1200 u16 sof
= omap_readw(UDC_SOF
);
1201 return (sof
& UDC_TS_OK
) ? (sof
& UDC_TS
) : -EL2NSYNC
;
1204 static int omap_wakeup(struct usb_gadget
*gadget
)
1206 struct omap_udc
*udc
;
1207 unsigned long flags
;
1208 int retval
= -EHOSTUNREACH
;
1210 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1212 spin_lock_irqsave(&udc
->lock
, flags
);
1213 if (udc
->devstat
& UDC_SUS
) {
1214 /* NOTE: OTG spec erratum says that OTG devices may
1215 * issue wakeups without host enable.
1217 if (udc
->devstat
& (UDC_B_HNP_ENABLE
|UDC_R_WK_OK
)) {
1218 DBG("remote wakeup...\n");
1219 omap_writew(UDC_RMT_WKP
, UDC_SYSCON2
);
1223 /* NOTE: non-OTG systems may use SRP TOO... */
1224 } else if (!(udc
->devstat
& UDC_ATT
)) {
1225 if (udc
->transceiver
)
1226 retval
= otg_start_srp(udc
->transceiver
);
1228 spin_unlock_irqrestore(&udc
->lock
, flags
);
1234 omap_set_selfpowered(struct usb_gadget
*gadget
, int is_selfpowered
)
1236 struct omap_udc
*udc
;
1237 unsigned long flags
;
1240 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1241 spin_lock_irqsave(&udc
->lock
, flags
);
1242 syscon1
= omap_readw(UDC_SYSCON1
);
1244 syscon1
|= UDC_SELF_PWR
;
1246 syscon1
&= ~UDC_SELF_PWR
;
1247 omap_writew(syscon1
, UDC_SYSCON1
);
1248 spin_unlock_irqrestore(&udc
->lock
, flags
);
1253 static int can_pullup(struct omap_udc
*udc
)
1255 return udc
->driver
&& udc
->softconnect
&& udc
->vbus_active
;
1258 static void pullup_enable(struct omap_udc
*udc
)
1262 w
= omap_readw(UDC_SYSCON1
);
1264 omap_writew(w
, UDC_SYSCON1
);
1265 if (!gadget_is_otg(&udc
->gadget
) && !cpu_is_omap15xx()) {
1268 l
= omap_readl(OTG_CTRL
);
1270 omap_writel(l
, OTG_CTRL
);
1272 omap_writew(UDC_DS_CHG_IE
, UDC_IRQ_EN
);
1275 static void pullup_disable(struct omap_udc
*udc
)
1279 if (!gadget_is_otg(&udc
->gadget
) && !cpu_is_omap15xx()) {
1282 l
= omap_readl(OTG_CTRL
);
1284 omap_writel(l
, OTG_CTRL
);
1286 omap_writew(UDC_DS_CHG_IE
, UDC_IRQ_EN
);
1287 w
= omap_readw(UDC_SYSCON1
);
1288 w
&= ~UDC_PULLUP_EN
;
1289 omap_writew(w
, UDC_SYSCON1
);
1292 static struct omap_udc
*udc
;
1294 static void omap_udc_enable_clock(int enable
)
1296 if (udc
== NULL
|| udc
->dc_clk
== NULL
|| udc
->hhc_clk
== NULL
)
1300 clk_enable(udc
->dc_clk
);
1301 clk_enable(udc
->hhc_clk
);
1304 clk_disable(udc
->hhc_clk
);
1305 clk_disable(udc
->dc_clk
);
1310 * Called by whatever detects VBUS sessions: external transceiver
1311 * driver, or maybe GPIO0 VBUS IRQ. May request 48 MHz clock.
1313 static int omap_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1315 struct omap_udc
*udc
;
1316 unsigned long flags
;
1319 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1320 spin_lock_irqsave(&udc
->lock
, flags
);
1321 VDBG("VBUS %s\n", is_active
? "on" : "off");
1322 udc
->vbus_active
= (is_active
!= 0);
1323 if (cpu_is_omap15xx()) {
1324 /* "software" detect, ignored if !VBUS_MODE_1510 */
1325 l
= omap_readl(FUNC_MUX_CTRL_0
);
1327 l
|= VBUS_CTRL_1510
;
1329 l
&= ~VBUS_CTRL_1510
;
1330 omap_writel(l
, FUNC_MUX_CTRL_0
);
1332 if (udc
->dc_clk
!= NULL
&& is_active
) {
1333 if (!udc
->clk_requested
) {
1334 omap_udc_enable_clock(1);
1335 udc
->clk_requested
= 1;
1338 if (can_pullup(udc
))
1341 pullup_disable(udc
);
1342 if (udc
->dc_clk
!= NULL
&& !is_active
) {
1343 if (udc
->clk_requested
) {
1344 omap_udc_enable_clock(0);
1345 udc
->clk_requested
= 0;
1348 spin_unlock_irqrestore(&udc
->lock
, flags
);
1352 static int omap_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1354 struct omap_udc
*udc
;
1356 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1357 if (udc
->transceiver
)
1358 return otg_set_power(udc
->transceiver
, mA
);
1362 static int omap_pullup(struct usb_gadget
*gadget
, int is_on
)
1364 struct omap_udc
*udc
;
1365 unsigned long flags
;
1367 udc
= container_of(gadget
, struct omap_udc
, gadget
);
1368 spin_lock_irqsave(&udc
->lock
, flags
);
1369 udc
->softconnect
= (is_on
!= 0);
1370 if (can_pullup(udc
))
1373 pullup_disable(udc
);
1374 spin_unlock_irqrestore(&udc
->lock
, flags
);
1378 static struct usb_gadget_ops omap_gadget_ops
= {
1379 .get_frame
= omap_get_frame
,
1380 .wakeup
= omap_wakeup
,
1381 .set_selfpowered
= omap_set_selfpowered
,
1382 .vbus_session
= omap_vbus_session
,
1383 .vbus_draw
= omap_vbus_draw
,
1384 .pullup
= omap_pullup
,
1387 /*-------------------------------------------------------------------------*/
1389 /* dequeue ALL requests; caller holds udc->lock */
1390 static void nuke(struct omap_ep
*ep
, int status
)
1392 struct omap_req
*req
;
1396 if (use_dma
&& ep
->dma_channel
)
1397 dma_channel_release(ep
);
1400 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1401 if (ep
->bEndpointAddress
&& ep
->bmAttributes
!= USB_ENDPOINT_XFER_ISOC
)
1402 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
1404 while (!list_empty(&ep
->queue
)) {
1405 req
= list_entry(ep
->queue
.next
, struct omap_req
, queue
);
1406 done(ep
, req
, status
);
1410 /* caller holds udc->lock */
1411 static void udc_quiesce(struct omap_udc
*udc
)
1415 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1416 nuke(&udc
->ep
[0], -ESHUTDOWN
);
1417 list_for_each_entry (ep
, &udc
->gadget
.ep_list
, ep
.ep_list
)
1418 nuke(ep
, -ESHUTDOWN
);
1421 /*-------------------------------------------------------------------------*/
1423 static void update_otg(struct omap_udc
*udc
)
1427 if (!gadget_is_otg(&udc
->gadget
))
1430 if (omap_readl(OTG_CTRL
) & OTG_ID
)
1431 devstat
= omap_readw(UDC_DEVSTAT
);
1435 udc
->gadget
.b_hnp_enable
= !!(devstat
& UDC_B_HNP_ENABLE
);
1436 udc
->gadget
.a_hnp_support
= !!(devstat
& UDC_A_HNP_SUPPORT
);
1437 udc
->gadget
.a_alt_hnp_support
= !!(devstat
& UDC_A_ALT_HNP_SUPPORT
);
1439 /* Enable HNP early, avoiding races on suspend irq path.
1440 * ASSUMES OTG state machine B_BUS_REQ input is true.
1442 if (udc
->gadget
.b_hnp_enable
) {
1445 l
= omap_readl(OTG_CTRL
);
1446 l
|= OTG_B_HNPEN
| OTG_B_BUSREQ
;
1448 omap_writel(l
, OTG_CTRL
);
1452 static void ep0_irq(struct omap_udc
*udc
, u16 irq_src
)
1454 struct omap_ep
*ep0
= &udc
->ep
[0];
1455 struct omap_req
*req
= NULL
;
1459 /* Clear any pending requests and then scrub any rx/tx state
1460 * before starting to handle the SETUP request.
1462 if (irq_src
& UDC_SETUP
) {
1463 u16 ack
= irq_src
& (UDC_EP0_TX
|UDC_EP0_RX
);
1467 omap_writew(ack
, UDC_IRQ_SRC
);
1468 irq_src
= UDC_SETUP
;
1472 /* IN/OUT packets mean we're in the DATA or STATUS stage.
1473 * This driver uses only uses protocol stalls (ep0 never halts),
1474 * and if we got this far the gadget driver already had a
1475 * chance to stall. Tries to be forgiving of host oddities.
1477 * NOTE: the last chance gadget drivers have to stall control
1478 * requests is during their request completion callback.
1480 if (!list_empty(&ep0
->queue
))
1481 req
= container_of(ep0
->queue
.next
, struct omap_req
, queue
);
1483 /* IN == TX to host */
1484 if (irq_src
& UDC_EP0_TX
) {
1487 omap_writew(UDC_EP0_TX
, UDC_IRQ_SRC
);
1488 omap_writew(UDC_EP_SEL
|UDC_EP_DIR
, UDC_EP_NUM
);
1489 stat
= omap_readw(UDC_STAT_FLG
);
1490 if (stat
& UDC_ACK
) {
1492 /* write next IN packet from response,
1493 * or set up the status stage.
1496 stat
= write_fifo(ep0
, req
);
1497 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1498 if (!req
&& udc
->ep0_pending
) {
1499 omap_writew(UDC_EP_SEL
, UDC_EP_NUM
);
1500 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1501 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1502 omap_writew(0, UDC_EP_NUM
);
1503 udc
->ep0_pending
= 0;
1504 } /* else: 6 wait states before it'll tx */
1506 /* ack status stage of OUT transfer */
1507 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1512 } else if (stat
& UDC_STALL
) {
1513 omap_writew(UDC_CLR_HALT
, UDC_CTRL
);
1514 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1516 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1520 /* OUT == RX from host */
1521 if (irq_src
& UDC_EP0_RX
) {
1524 omap_writew(UDC_EP0_RX
, UDC_IRQ_SRC
);
1525 omap_writew(UDC_EP_SEL
, UDC_EP_NUM
);
1526 stat
= omap_readw(UDC_STAT_FLG
);
1527 if (stat
& UDC_ACK
) {
1530 /* read next OUT packet of request, maybe
1531 * reactiviting the fifo; stall on errors.
1533 if (!req
|| (stat
= read_fifo(ep0
, req
)) < 0) {
1534 omap_writew(UDC_STALL_CMD
, UDC_SYSCON2
);
1535 udc
->ep0_pending
= 0;
1537 } else if (stat
== 0)
1538 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1539 omap_writew(0, UDC_EP_NUM
);
1541 /* activate status stage */
1544 /* that may have STALLed ep0... */
1545 omap_writew(UDC_EP_SEL
| UDC_EP_DIR
,
1547 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1548 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1549 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1550 udc
->ep0_pending
= 0;
1553 /* ack status stage of IN transfer */
1554 omap_writew(0, UDC_EP_NUM
);
1558 } else if (stat
& UDC_STALL
) {
1559 omap_writew(UDC_CLR_HALT
, UDC_CTRL
);
1560 omap_writew(0, UDC_EP_NUM
);
1562 omap_writew(0, UDC_EP_NUM
);
1566 /* SETUP starts all control transfers */
1567 if (irq_src
& UDC_SETUP
) {
1570 struct usb_ctrlrequest r
;
1572 int status
= -EINVAL
;
1575 /* read the (latest) SETUP message */
1577 omap_writew(UDC_SETUP_SEL
, UDC_EP_NUM
);
1578 /* two bytes at a time */
1579 u
.word
[0] = omap_readw(UDC_DATA
);
1580 u
.word
[1] = omap_readw(UDC_DATA
);
1581 u
.word
[2] = omap_readw(UDC_DATA
);
1582 u
.word
[3] = omap_readw(UDC_DATA
);
1583 omap_writew(0, UDC_EP_NUM
);
1584 } while (omap_readw(UDC_IRQ_SRC
) & UDC_SETUP
);
1586 #define w_value le16_to_cpu(u.r.wValue)
1587 #define w_index le16_to_cpu(u.r.wIndex)
1588 #define w_length le16_to_cpu(u.r.wLength)
1590 /* Delegate almost all control requests to the gadget driver,
1591 * except for a handful of ch9 status/feature requests that
1592 * hardware doesn't autodecode _and_ the gadget API hides.
1594 udc
->ep0_in
= (u
.r
.bRequestType
& USB_DIR_IN
) != 0;
1595 udc
->ep0_set_config
= 0;
1596 udc
->ep0_pending
= 1;
1599 switch (u
.r
.bRequest
) {
1600 case USB_REQ_SET_CONFIGURATION
:
1601 /* udc needs to know when ep != 0 is valid */
1602 if (u
.r
.bRequestType
!= USB_RECIP_DEVICE
)
1606 udc
->ep0_set_config
= 1;
1607 udc
->ep0_reset_config
= (w_value
== 0);
1608 VDBG("set config %d\n", w_value
);
1610 /* update udc NOW since gadget driver may start
1611 * queueing requests immediately; clear config
1612 * later if it fails the request.
1614 if (udc
->ep0_reset_config
)
1615 omap_writew(UDC_CLR_CFG
, UDC_SYSCON2
);
1617 omap_writew(UDC_DEV_CFG
, UDC_SYSCON2
);
1620 case USB_REQ_CLEAR_FEATURE
:
1621 /* clear endpoint halt */
1622 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
1624 if (w_value
!= USB_ENDPOINT_HALT
1627 ep
= &udc
->ep
[w_index
& 0xf];
1629 if (w_index
& USB_DIR_IN
)
1631 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
1635 omap_writew(udc
->clr_halt
, UDC_CTRL
);
1637 if (!(ep
->bEndpointAddress
& USB_DIR_IN
)) {
1638 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1639 ep
->ackwait
= 1 + ep
->double_buf
;
1641 /* NOTE: assumes the host behaves sanely,
1642 * only clearing real halts. Else we may
1643 * need to kill pending transfers and then
1644 * restart the queue... very messy for DMA!
1647 VDBG("%s halt cleared by host\n", ep
->name
);
1648 goto ep0out_status_stage
;
1649 case USB_REQ_SET_FEATURE
:
1650 /* set endpoint halt */
1651 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
1653 if (w_value
!= USB_ENDPOINT_HALT
1656 ep
= &udc
->ep
[w_index
& 0xf];
1657 if (w_index
& USB_DIR_IN
)
1659 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
1660 || ep
== ep0
|| !ep
->desc
)
1662 if (use_dma
&& ep
->has_dma
) {
1663 /* this has rude side-effects (aborts) and
1664 * can't really work if DMA-IN is active
1666 DBG("%s host set_halt, NYET \n", ep
->name
);
1670 /* can't halt if fifo isn't empty... */
1671 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1672 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
1673 VDBG("%s halted by host\n", ep
->name
);
1674 ep0out_status_stage
:
1676 omap_writew(UDC_EP_SEL
|UDC_EP_DIR
, UDC_EP_NUM
);
1677 omap_writew(UDC_CLR_EP
, UDC_CTRL
);
1678 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1679 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1680 udc
->ep0_pending
= 0;
1682 case USB_REQ_GET_STATUS
:
1683 /* USB_ENDPOINT_HALT status? */
1684 if (u
.r
.bRequestType
!= (USB_DIR_IN
|USB_RECIP_ENDPOINT
))
1687 /* ep0 never stalls */
1688 if (!(w_index
& 0xf))
1691 /* only active endpoints count */
1692 ep
= &udc
->ep
[w_index
& 0xf];
1693 if (w_index
& USB_DIR_IN
)
1698 /* iso never stalls */
1699 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
1702 /* FIXME don't assume non-halted endpoints!! */
1703 ERR("%s status, can't report\n", ep
->ep
.name
);
1707 /* return interface status. if we were pedantic,
1708 * we'd detect non-existent interfaces, and stall.
1710 if (u
.r
.bRequestType
1711 != (USB_DIR_IN
|USB_RECIP_INTERFACE
))
1715 /* return two zero bytes */
1716 omap_writew(UDC_EP_SEL
|UDC_EP_DIR
, UDC_EP_NUM
);
1717 omap_writew(0, UDC_DATA
);
1718 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1719 omap_writew(UDC_EP_DIR
, UDC_EP_NUM
);
1721 VDBG("GET_STATUS, interface %d\n", w_index
);
1722 /* next, status stage */
1726 /* activate the ep0out fifo right away */
1727 if (!udc
->ep0_in
&& w_length
) {
1728 omap_writew(0, UDC_EP_NUM
);
1729 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1732 /* gadget drivers see class/vendor specific requests,
1733 * {SET,GET}_{INTERFACE,DESCRIPTOR,CONFIGURATION},
1736 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1737 u
.r
.bRequestType
, u
.r
.bRequest
,
1738 w_value
, w_index
, w_length
);
1744 /* The gadget driver may return an error here,
1745 * causing an immediate protocol stall.
1747 * Else it must issue a response, either queueing a
1748 * response buffer for the DATA stage, or halting ep0
1749 * (causing a protocol stall, not a real halt). A
1750 * zero length buffer means no DATA stage.
1752 * It's fine to issue that response after the setup()
1753 * call returns, and this IRQ was handled.
1756 spin_unlock(&udc
->lock
);
1757 status
= udc
->driver
->setup (&udc
->gadget
, &u
.r
);
1758 spin_lock(&udc
->lock
);
1764 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1765 u
.r
.bRequestType
, u
.r
.bRequest
, status
);
1766 if (udc
->ep0_set_config
) {
1767 if (udc
->ep0_reset_config
)
1768 WARNING("error resetting config?\n");
1770 omap_writew(UDC_CLR_CFG
, UDC_SYSCON2
);
1772 omap_writew(UDC_STALL_CMD
, UDC_SYSCON2
);
1773 udc
->ep0_pending
= 0;
1778 /*-------------------------------------------------------------------------*/
1780 #define OTG_FLAGS (UDC_B_HNP_ENABLE|UDC_A_HNP_SUPPORT|UDC_A_ALT_HNP_SUPPORT)
1782 static void devstate_irq(struct omap_udc
*udc
, u16 irq_src
)
1784 u16 devstat
, change
;
1786 devstat
= omap_readw(UDC_DEVSTAT
);
1787 change
= devstat
^ udc
->devstat
;
1788 udc
->devstat
= devstat
;
1790 if (change
& (UDC_USB_RESET
|UDC_ATT
)) {
1793 if (change
& UDC_ATT
) {
1794 /* driver for any external transceiver will
1795 * have called omap_vbus_session() already
1797 if (devstat
& UDC_ATT
) {
1798 udc
->gadget
.speed
= USB_SPEED_FULL
;
1800 if (!udc
->transceiver
)
1802 // if (driver->connect) call it
1803 } else if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
1804 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1805 if (!udc
->transceiver
)
1806 pullup_disable(udc
);
1807 DBG("disconnect, gadget %s\n",
1808 udc
->driver
->driver
.name
);
1809 if (udc
->driver
->disconnect
) {
1810 spin_unlock(&udc
->lock
);
1811 udc
->driver
->disconnect(&udc
->gadget
);
1812 spin_lock(&udc
->lock
);
1818 if (change
& UDC_USB_RESET
) {
1819 if (devstat
& UDC_USB_RESET
) {
1822 udc
->gadget
.speed
= USB_SPEED_FULL
;
1823 INFO("USB reset done, gadget %s\n",
1824 udc
->driver
->driver
.name
);
1825 /* ep0 traffic is legal from now on */
1826 omap_writew(UDC_DS_CHG_IE
| UDC_EP0_IE
,
1829 change
&= ~UDC_USB_RESET
;
1832 if (change
& UDC_SUS
) {
1833 if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
1834 // FIXME tell isp1301 to suspend/resume (?)
1835 if (devstat
& UDC_SUS
) {
1838 /* HNP could be under way already */
1839 if (udc
->gadget
.speed
== USB_SPEED_FULL
1840 && udc
->driver
->suspend
) {
1841 spin_unlock(&udc
->lock
);
1842 udc
->driver
->suspend(&udc
->gadget
);
1843 spin_lock(&udc
->lock
);
1845 if (udc
->transceiver
)
1846 otg_set_suspend(udc
->transceiver
, 1);
1849 if (udc
->transceiver
)
1850 otg_set_suspend(udc
->transceiver
, 0);
1851 if (udc
->gadget
.speed
== USB_SPEED_FULL
1852 && udc
->driver
->resume
) {
1853 spin_unlock(&udc
->lock
);
1854 udc
->driver
->resume(&udc
->gadget
);
1855 spin_lock(&udc
->lock
);
1861 if (!cpu_is_omap15xx() && (change
& OTG_FLAGS
)) {
1863 change
&= ~OTG_FLAGS
;
1866 change
&= ~(UDC_CFG
|UDC_DEF
|UDC_ADD
);
1868 VDBG("devstat %03x, ignore change %03x\n",
1871 omap_writew(UDC_DS_CHG
, UDC_IRQ_SRC
);
1874 static irqreturn_t
omap_udc_irq(int irq
, void *_udc
)
1876 struct omap_udc
*udc
= _udc
;
1878 irqreturn_t status
= IRQ_NONE
;
1879 unsigned long flags
;
1881 spin_lock_irqsave(&udc
->lock
, flags
);
1882 irq_src
= omap_readw(UDC_IRQ_SRC
);
1884 /* Device state change (usb ch9 stuff) */
1885 if (irq_src
& UDC_DS_CHG
) {
1886 devstate_irq(_udc
, irq_src
);
1887 status
= IRQ_HANDLED
;
1888 irq_src
&= ~UDC_DS_CHG
;
1891 /* EP0 control transfers */
1892 if (irq_src
& (UDC_EP0_RX
|UDC_SETUP
|UDC_EP0_TX
)) {
1893 ep0_irq(_udc
, irq_src
);
1894 status
= IRQ_HANDLED
;
1895 irq_src
&= ~(UDC_EP0_RX
|UDC_SETUP
|UDC_EP0_TX
);
1898 /* DMA transfer completion */
1899 if (use_dma
&& (irq_src
& (UDC_TXN_DONE
|UDC_RXN_CNT
|UDC_RXN_EOT
))) {
1900 dma_irq(_udc
, irq_src
);
1901 status
= IRQ_HANDLED
;
1902 irq_src
&= ~(UDC_TXN_DONE
|UDC_RXN_CNT
|UDC_RXN_EOT
);
1905 irq_src
&= ~(UDC_IRQ_SOF
| UDC_EPN_TX
|UDC_EPN_RX
);
1907 DBG("udc_irq, unhandled %03x\n", irq_src
);
1908 spin_unlock_irqrestore(&udc
->lock
, flags
);
1913 /* workaround for seemingly-lost IRQs for RX ACKs... */
1914 #define PIO_OUT_TIMEOUT (jiffies + HZ/3)
1915 #define HALF_FULL(f) (!((f)&(UDC_NON_ISO_FIFO_FULL|UDC_NON_ISO_FIFO_EMPTY)))
1917 static void pio_out_timer(unsigned long _ep
)
1919 struct omap_ep
*ep
= (void *) _ep
;
1920 unsigned long flags
;
1923 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1924 if (!list_empty(&ep
->queue
) && ep
->ackwait
) {
1925 use_ep(ep
, UDC_EP_SEL
);
1926 stat_flg
= omap_readw(UDC_STAT_FLG
);
1928 if ((stat_flg
& UDC_ACK
) && (!(stat_flg
& UDC_FIFO_EN
)
1929 || (ep
->double_buf
&& HALF_FULL(stat_flg
)))) {
1930 struct omap_req
*req
;
1932 VDBG("%s: lose, %04x\n", ep
->ep
.name
, stat_flg
);
1933 req
= container_of(ep
->queue
.next
,
1934 struct omap_req
, queue
);
1935 (void) read_fifo(ep
, req
);
1936 omap_writew(ep
->bEndpointAddress
, UDC_EP_NUM
);
1937 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1938 ep
->ackwait
= 1 + ep
->double_buf
;
1942 mod_timer(&ep
->timer
, PIO_OUT_TIMEOUT
);
1943 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1946 static irqreturn_t
omap_udc_pio_irq(int irq
, void *_dev
)
1948 u16 epn_stat
, irq_src
;
1949 irqreturn_t status
= IRQ_NONE
;
1952 struct omap_udc
*udc
= _dev
;
1953 struct omap_req
*req
;
1954 unsigned long flags
;
1956 spin_lock_irqsave(&udc
->lock
, flags
);
1957 epn_stat
= omap_readw(UDC_EPN_STAT
);
1958 irq_src
= omap_readw(UDC_IRQ_SRC
);
1960 /* handle OUT first, to avoid some wasteful NAKs */
1961 if (irq_src
& UDC_EPN_RX
) {
1962 epnum
= (epn_stat
>> 8) & 0x0f;
1963 omap_writew(UDC_EPN_RX
, UDC_IRQ_SRC
);
1964 status
= IRQ_HANDLED
;
1965 ep
= &udc
->ep
[epnum
];
1968 omap_writew(epnum
| UDC_EP_SEL
, UDC_EP_NUM
);
1970 if (omap_readw(UDC_STAT_FLG
) & UDC_ACK
) {
1972 if (!list_empty(&ep
->queue
)) {
1974 req
= container_of(ep
->queue
.next
,
1975 struct omap_req
, queue
);
1976 stat
= read_fifo(ep
, req
);
1977 if (!ep
->double_buf
)
1981 /* min 6 clock delay before clearing EP_SEL ... */
1982 epn_stat
= omap_readw(UDC_EPN_STAT
);
1983 epn_stat
= omap_readw(UDC_EPN_STAT
);
1984 omap_writew(epnum
, UDC_EP_NUM
);
1986 /* enabling fifo _after_ clearing ACK, contrary to docs,
1987 * reduces lossage; timer still needed though (sigh).
1990 omap_writew(UDC_SET_FIFO_EN
, UDC_CTRL
);
1991 ep
->ackwait
= 1 + ep
->double_buf
;
1993 mod_timer(&ep
->timer
, PIO_OUT_TIMEOUT
);
1996 /* then IN transfers */
1997 else if (irq_src
& UDC_EPN_TX
) {
1998 epnum
= epn_stat
& 0x0f;
1999 omap_writew(UDC_EPN_TX
, UDC_IRQ_SRC
);
2000 status
= IRQ_HANDLED
;
2001 ep
= &udc
->ep
[16 + epnum
];
2004 omap_writew(epnum
| UDC_EP_DIR
| UDC_EP_SEL
, UDC_EP_NUM
);
2005 if (omap_readw(UDC_STAT_FLG
) & UDC_ACK
) {
2007 if (!list_empty(&ep
->queue
)) {
2008 req
= container_of(ep
->queue
.next
,
2009 struct omap_req
, queue
);
2010 (void) write_fifo(ep
, req
);
2013 /* min 6 clock delay before clearing EP_SEL ... */
2014 epn_stat
= omap_readw(UDC_EPN_STAT
);
2015 epn_stat
= omap_readw(UDC_EPN_STAT
);
2016 omap_writew(epnum
| UDC_EP_DIR
, UDC_EP_NUM
);
2017 /* then 6 clocks before it'd tx */
2020 spin_unlock_irqrestore(&udc
->lock
, flags
);
2025 static irqreturn_t
omap_udc_iso_irq(int irq
, void *_dev
)
2027 struct omap_udc
*udc
= _dev
;
2030 unsigned long flags
;
2032 spin_lock_irqsave(&udc
->lock
, flags
);
2034 /* handle all non-DMA ISO transfers */
2035 list_for_each_entry (ep
, &udc
->iso
, iso
) {
2037 struct omap_req
*req
;
2039 if (ep
->has_dma
|| list_empty(&ep
->queue
))
2041 req
= list_entry(ep
->queue
.next
, struct omap_req
, queue
);
2043 use_ep(ep
, UDC_EP_SEL
);
2044 stat
= omap_readw(UDC_STAT_FLG
);
2046 /* NOTE: like the other controller drivers, this isn't
2047 * currently reporting lost or damaged frames.
2049 if (ep
->bEndpointAddress
& USB_DIR_IN
) {
2050 if (stat
& UDC_MISS_IN
)
2051 /* done(ep, req, -EPROTO) */;
2053 write_fifo(ep
, req
);
2057 if (stat
& UDC_NO_RXPACKET
)
2058 status
= -EREMOTEIO
;
2059 else if (stat
& UDC_ISO_ERR
)
2061 else if (stat
& UDC_DATA_FLUSH
)
2065 /* done(ep, req, status) */;
2070 /* 6 wait states before next EP */
2073 if (!list_empty(&ep
->queue
))
2079 w
= omap_readw(UDC_IRQ_EN
);
2081 omap_writew(w
, UDC_IRQ_EN
);
2083 omap_writew(UDC_IRQ_SOF
, UDC_IRQ_SRC
);
2085 spin_unlock_irqrestore(&udc
->lock
, flags
);
2090 /*-------------------------------------------------------------------------*/
2092 static inline int machine_without_vbus_sense(void)
2094 return (machine_is_omap_innovator()
2095 || machine_is_omap_osk()
2096 || machine_is_omap_apollon()
2097 #ifndef CONFIG_MACH_OMAP_H4_OTG
2098 || machine_is_omap_h4()
2101 || cpu_is_omap7xx() /* No known omap7xx boards with vbus sense */
2105 int usb_gadget_probe_driver(struct usb_gadget_driver
*driver
,
2106 int (*bind
)(struct usb_gadget
*))
2108 int status
= -ENODEV
;
2110 unsigned long flags
;
2112 /* basic sanity tests */
2116 // FIXME if otg, check: driver->is_otg
2117 || driver
->speed
< USB_SPEED_FULL
2118 || !bind
|| !driver
->setup
)
2121 spin_lock_irqsave(&udc
->lock
, flags
);
2123 spin_unlock_irqrestore(&udc
->lock
, flags
);
2128 list_for_each_entry (ep
, &udc
->gadget
.ep_list
, ep
.ep_list
) {
2130 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
)
2133 omap_writew(UDC_SET_HALT
, UDC_CTRL
);
2135 udc
->ep0_pending
= 0;
2136 udc
->ep
[0].irqs
= 0;
2137 udc
->softconnect
= 1;
2139 /* hook up the driver */
2140 driver
->driver
.bus
= NULL
;
2141 udc
->driver
= driver
;
2142 udc
->gadget
.dev
.driver
= &driver
->driver
;
2143 spin_unlock_irqrestore(&udc
->lock
, flags
);
2145 if (udc
->dc_clk
!= NULL
)
2146 omap_udc_enable_clock(1);
2148 status
= bind(&udc
->gadget
);
2150 DBG("bind to %s --> %d\n", driver
->driver
.name
, status
);
2151 udc
->gadget
.dev
.driver
= NULL
;
2155 DBG("bound to driver %s\n", driver
->driver
.name
);
2157 omap_writew(UDC_IRQ_SRC_MASK
, UDC_IRQ_SRC
);
2159 /* connect to bus through transceiver */
2160 if (udc
->transceiver
) {
2161 status
= otg_set_peripheral(udc
->transceiver
, &udc
->gadget
);
2163 ERR("can't bind to transceiver\n");
2164 if (driver
->unbind
) {
2165 driver
->unbind (&udc
->gadget
);
2166 udc
->gadget
.dev
.driver
= NULL
;
2172 if (can_pullup(udc
))
2173 pullup_enable (udc
);
2175 pullup_disable (udc
);
2178 /* boards that don't have VBUS sensing can't autogate 48MHz;
2179 * can't enter deep sleep while a gadget driver is active.
2181 if (machine_without_vbus_sense())
2182 omap_vbus_session(&udc
->gadget
, 1);
2185 if (udc
->dc_clk
!= NULL
)
2186 omap_udc_enable_clock(0);
2189 EXPORT_SYMBOL(usb_gadget_probe_driver
);
2191 int usb_gadget_unregister_driver (struct usb_gadget_driver
*driver
)
2193 unsigned long flags
;
2194 int status
= -ENODEV
;
2198 if (!driver
|| driver
!= udc
->driver
|| !driver
->unbind
)
2201 if (udc
->dc_clk
!= NULL
)
2202 omap_udc_enable_clock(1);
2204 if (machine_without_vbus_sense())
2205 omap_vbus_session(&udc
->gadget
, 0);
2207 if (udc
->transceiver
)
2208 (void) otg_set_peripheral(udc
->transceiver
, NULL
);
2210 pullup_disable(udc
);
2212 spin_lock_irqsave(&udc
->lock
, flags
);
2214 spin_unlock_irqrestore(&udc
->lock
, flags
);
2216 driver
->unbind(&udc
->gadget
);
2217 udc
->gadget
.dev
.driver
= NULL
;
2220 if (udc
->dc_clk
!= NULL
)
2221 omap_udc_enable_clock(0);
2222 DBG("unregistered driver '%s'\n", driver
->driver
.name
);
2225 EXPORT_SYMBOL(usb_gadget_unregister_driver
);
2228 /*-------------------------------------------------------------------------*/
2230 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2232 #include <linux/seq_file.h>
2234 static const char proc_filename
[] = "driver/udc";
2236 #define FOURBITS "%s%s%s%s"
2237 #define EIGHTBITS FOURBITS FOURBITS
2239 static void proc_ep_show(struct seq_file
*s
, struct omap_ep
*ep
)
2242 struct omap_req
*req
;
2247 if (use_dma
&& ep
->has_dma
)
2248 snprintf(buf
, sizeof buf
, "(%cxdma%d lch%d) ",
2249 (ep
->bEndpointAddress
& USB_DIR_IN
) ? 't' : 'r',
2250 ep
->dma_channel
- 1, ep
->lch
);
2254 stat_flg
= omap_readw(UDC_STAT_FLG
);
2256 "\n%s %s%s%sirqs %ld stat %04x " EIGHTBITS FOURBITS
"%s\n",
2258 ep
->double_buf
? "dbuf " : "",
2259 ({char *s
; switch(ep
->ackwait
){
2260 case 0: s
= ""; break;
2261 case 1: s
= "(ackw) "; break;
2262 case 2: s
= "(ackw2) "; break;
2263 default: s
= "(?) "; break;
2266 (stat_flg
& UDC_NO_RXPACKET
) ? "no_rxpacket " : "",
2267 (stat_flg
& UDC_MISS_IN
) ? "miss_in " : "",
2268 (stat_flg
& UDC_DATA_FLUSH
) ? "data_flush " : "",
2269 (stat_flg
& UDC_ISO_ERR
) ? "iso_err " : "",
2270 (stat_flg
& UDC_ISO_FIFO_EMPTY
) ? "iso_fifo_empty " : "",
2271 (stat_flg
& UDC_ISO_FIFO_FULL
) ? "iso_fifo_full " : "",
2272 (stat_flg
& UDC_EP_HALTED
) ? "HALT " : "",
2273 (stat_flg
& UDC_STALL
) ? "STALL " : "",
2274 (stat_flg
& UDC_NAK
) ? "NAK " : "",
2275 (stat_flg
& UDC_ACK
) ? "ACK " : "",
2276 (stat_flg
& UDC_FIFO_EN
) ? "fifo_en " : "",
2277 (stat_flg
& UDC_NON_ISO_FIFO_EMPTY
) ? "fifo_empty " : "",
2278 (stat_flg
& UDC_NON_ISO_FIFO_FULL
) ? "fifo_full " : "");
2280 if (list_empty (&ep
->queue
))
2281 seq_printf(s
, "\t(queue empty)\n");
2283 list_for_each_entry (req
, &ep
->queue
, queue
) {
2284 unsigned length
= req
->req
.actual
;
2286 if (use_dma
&& buf
[0]) {
2287 length
+= ((ep
->bEndpointAddress
& USB_DIR_IN
)
2288 ? dma_src_len
: dma_dest_len
)
2289 (ep
, req
->req
.dma
+ length
);
2292 seq_printf(s
, "\treq %p len %d/%d buf %p\n",
2294 req
->req
.length
, req
->req
.buf
);
2298 static char *trx_mode(unsigned m
, int enabled
)
2301 case 0: return enabled
? "*6wire" : "unused";
2302 case 1: return "4wire";
2303 case 2: return "3wire";
2304 case 3: return "6wire";
2305 default: return "unknown";
2309 static int proc_otg_show(struct seq_file
*s
)
2313 char *ctrl_name
= "(UNKNOWN)";
2315 /* XXX This needs major revision for OMAP2+ */
2316 tmp
= omap_readl(OTG_REV
);
2317 if (cpu_class_is_omap1()) {
2318 ctrl_name
= "tranceiver_ctrl";
2319 trans
= omap_readw(USB_TRANSCEIVER_CTRL
);
2321 seq_printf(s
, "\nOTG rev %d.%d, %s %05x\n",
2322 tmp
>> 4, tmp
& 0xf, ctrl_name
, trans
);
2323 tmp
= omap_readw(OTG_SYSCON_1
);
2324 seq_printf(s
, "otg_syscon1 %08x usb2 %s, usb1 %s, usb0 %s,"
2326 trx_mode(USB2_TRX_MODE(tmp
), trans
& CONF_USB2_UNI_R
),
2327 trx_mode(USB1_TRX_MODE(tmp
), trans
& CONF_USB1_UNI_R
),
2328 (USB0_TRX_MODE(tmp
) == 0 && !cpu_is_omap1710())
2330 : trx_mode(USB0_TRX_MODE(tmp
), 1),
2331 (tmp
& OTG_IDLE_EN
) ? " !otg" : "",
2332 (tmp
& HST_IDLE_EN
) ? " !host" : "",
2333 (tmp
& DEV_IDLE_EN
) ? " !dev" : "",
2334 (tmp
& OTG_RESET_DONE
) ? " reset_done" : " reset_active");
2335 tmp
= omap_readl(OTG_SYSCON_2
);
2336 seq_printf(s
, "otg_syscon2 %08x%s" EIGHTBITS
2337 " b_ase_brst=%d hmc=%d\n", tmp
,
2338 (tmp
& OTG_EN
) ? " otg_en" : "",
2339 (tmp
& USBX_SYNCHRO
) ? " synchro" : "",
2340 // much more SRP stuff
2341 (tmp
& SRP_DATA
) ? " srp_data" : "",
2342 (tmp
& SRP_VBUS
) ? " srp_vbus" : "",
2343 (tmp
& OTG_PADEN
) ? " otg_paden" : "",
2344 (tmp
& HMC_PADEN
) ? " hmc_paden" : "",
2345 (tmp
& UHOST_EN
) ? " uhost_en" : "",
2346 (tmp
& HMC_TLLSPEED
) ? " tllspeed" : "",
2347 (tmp
& HMC_TLLATTACH
) ? " tllattach" : "",
2350 tmp
= omap_readl(OTG_CTRL
);
2351 seq_printf(s
, "otg_ctrl %06x" EIGHTBITS EIGHTBITS
"%s\n", tmp
,
2352 (tmp
& OTG_ASESSVLD
) ? " asess" : "",
2353 (tmp
& OTG_BSESSEND
) ? " bsess_end" : "",
2354 (tmp
& OTG_BSESSVLD
) ? " bsess" : "",
2355 (tmp
& OTG_VBUSVLD
) ? " vbus" : "",
2356 (tmp
& OTG_ID
) ? " id" : "",
2357 (tmp
& OTG_DRIVER_SEL
) ? " DEVICE" : " HOST",
2358 (tmp
& OTG_A_SETB_HNPEN
) ? " a_setb_hnpen" : "",
2359 (tmp
& OTG_A_BUSREQ
) ? " a_bus" : "",
2360 (tmp
& OTG_B_HNPEN
) ? " b_hnpen" : "",
2361 (tmp
& OTG_B_BUSREQ
) ? " b_bus" : "",
2362 (tmp
& OTG_BUSDROP
) ? " busdrop" : "",
2363 (tmp
& OTG_PULLDOWN
) ? " down" : "",
2364 (tmp
& OTG_PULLUP
) ? " up" : "",
2365 (tmp
& OTG_DRV_VBUS
) ? " drv" : "",
2366 (tmp
& OTG_PD_VBUS
) ? " pd_vb" : "",
2367 (tmp
& OTG_PU_VBUS
) ? " pu_vb" : "",
2368 (tmp
& OTG_PU_ID
) ? " pu_id" : ""
2370 tmp
= omap_readw(OTG_IRQ_EN
);
2371 seq_printf(s
, "otg_irq_en %04x" "\n", tmp
);
2372 tmp
= omap_readw(OTG_IRQ_SRC
);
2373 seq_printf(s
, "otg_irq_src %04x" "\n", tmp
);
2374 tmp
= omap_readw(OTG_OUTCTRL
);
2375 seq_printf(s
, "otg_outctrl %04x" "\n", tmp
);
2376 tmp
= omap_readw(OTG_TEST
);
2377 seq_printf(s
, "otg_test %04x" "\n", tmp
);
2381 static int proc_udc_show(struct seq_file
*s
, void *_
)
2385 unsigned long flags
;
2387 spin_lock_irqsave(&udc
->lock
, flags
);
2389 seq_printf(s
, "%s, version: " DRIVER_VERSION
2395 use_dma
? " (dma)" : "");
2397 tmp
= omap_readw(UDC_REV
) & 0xff;
2399 "UDC rev %d.%d, fifo mode %d, gadget %s\n"
2400 "hmc %d, transceiver %s\n",
2401 tmp
>> 4, tmp
& 0xf,
2403 udc
->driver
? udc
->driver
->driver
.name
: "(none)",
2406 ? udc
->transceiver
->label
2407 : ((cpu_is_omap1710() || cpu_is_omap24xx())
2408 ? "external" : "(none)"));
2409 if (cpu_class_is_omap1()) {
2410 seq_printf(s
, "ULPD control %04x req %04x status %04x\n",
2411 omap_readw(ULPD_CLOCK_CTRL
),
2412 omap_readw(ULPD_SOFT_REQ
),
2413 omap_readw(ULPD_STATUS_REQ
));
2416 /* OTG controller registers */
2417 if (!cpu_is_omap15xx())
2420 tmp
= omap_readw(UDC_SYSCON1
);
2421 seq_printf(s
, "\nsyscon1 %04x" EIGHTBITS
"\n", tmp
,
2422 (tmp
& UDC_CFG_LOCK
) ? " cfg_lock" : "",
2423 (tmp
& UDC_DATA_ENDIAN
) ? " data_endian" : "",
2424 (tmp
& UDC_DMA_ENDIAN
) ? " dma_endian" : "",
2425 (tmp
& UDC_NAK_EN
) ? " nak" : "",
2426 (tmp
& UDC_AUTODECODE_DIS
) ? " autodecode_dis" : "",
2427 (tmp
& UDC_SELF_PWR
) ? " self_pwr" : "",
2428 (tmp
& UDC_SOFF_DIS
) ? " soff_dis" : "",
2429 (tmp
& UDC_PULLUP_EN
) ? " PULLUP" : "");
2430 // syscon2 is write-only
2432 /* UDC controller registers */
2433 if (!(tmp
& UDC_PULLUP_EN
)) {
2434 seq_printf(s
, "(suspended)\n");
2435 spin_unlock_irqrestore(&udc
->lock
, flags
);
2439 tmp
= omap_readw(UDC_DEVSTAT
);
2440 seq_printf(s
, "devstat %04x" EIGHTBITS
"%s%s\n", tmp
,
2441 (tmp
& UDC_B_HNP_ENABLE
) ? " b_hnp" : "",
2442 (tmp
& UDC_A_HNP_SUPPORT
) ? " a_hnp" : "",
2443 (tmp
& UDC_A_ALT_HNP_SUPPORT
) ? " a_alt_hnp" : "",
2444 (tmp
& UDC_R_WK_OK
) ? " r_wk_ok" : "",
2445 (tmp
& UDC_USB_RESET
) ? " usb_reset" : "",
2446 (tmp
& UDC_SUS
) ? " SUS" : "",
2447 (tmp
& UDC_CFG
) ? " CFG" : "",
2448 (tmp
& UDC_ADD
) ? " ADD" : "",
2449 (tmp
& UDC_DEF
) ? " DEF" : "",
2450 (tmp
& UDC_ATT
) ? " ATT" : "");
2451 seq_printf(s
, "sof %04x\n", omap_readw(UDC_SOF
));
2452 tmp
= omap_readw(UDC_IRQ_EN
);
2453 seq_printf(s
, "irq_en %04x" FOURBITS
"%s\n", tmp
,
2454 (tmp
& UDC_SOF_IE
) ? " sof" : "",
2455 (tmp
& UDC_EPN_RX_IE
) ? " epn_rx" : "",
2456 (tmp
& UDC_EPN_TX_IE
) ? " epn_tx" : "",
2457 (tmp
& UDC_DS_CHG_IE
) ? " ds_chg" : "",
2458 (tmp
& UDC_EP0_IE
) ? " ep0" : "");
2459 tmp
= omap_readw(UDC_IRQ_SRC
);
2460 seq_printf(s
, "irq_src %04x" EIGHTBITS
"%s%s\n", tmp
,
2461 (tmp
& UDC_TXN_DONE
) ? " txn_done" : "",
2462 (tmp
& UDC_RXN_CNT
) ? " rxn_cnt" : "",
2463 (tmp
& UDC_RXN_EOT
) ? " rxn_eot" : "",
2464 (tmp
& UDC_IRQ_SOF
) ? " sof" : "",
2465 (tmp
& UDC_EPN_RX
) ? " epn_rx" : "",
2466 (tmp
& UDC_EPN_TX
) ? " epn_tx" : "",
2467 (tmp
& UDC_DS_CHG
) ? " ds_chg" : "",
2468 (tmp
& UDC_SETUP
) ? " setup" : "",
2469 (tmp
& UDC_EP0_RX
) ? " ep0out" : "",
2470 (tmp
& UDC_EP0_TX
) ? " ep0in" : "");
2474 tmp
= omap_readw(UDC_DMA_IRQ_EN
);
2475 seq_printf(s
, "dma_irq_en %04x%s" EIGHTBITS
"\n", tmp
,
2476 (tmp
& UDC_TX_DONE_IE(3)) ? " tx2_done" : "",
2477 (tmp
& UDC_RX_CNT_IE(3)) ? " rx2_cnt" : "",
2478 (tmp
& UDC_RX_EOT_IE(3)) ? " rx2_eot" : "",
2480 (tmp
& UDC_TX_DONE_IE(2)) ? " tx1_done" : "",
2481 (tmp
& UDC_RX_CNT_IE(2)) ? " rx1_cnt" : "",
2482 (tmp
& UDC_RX_EOT_IE(2)) ? " rx1_eot" : "",
2484 (tmp
& UDC_TX_DONE_IE(1)) ? " tx0_done" : "",
2485 (tmp
& UDC_RX_CNT_IE(1)) ? " rx0_cnt" : "",
2486 (tmp
& UDC_RX_EOT_IE(1)) ? " rx0_eot" : "");
2488 tmp
= omap_readw(UDC_RXDMA_CFG
);
2489 seq_printf(s
, "rxdma_cfg %04x\n", tmp
);
2491 for (i
= 0; i
< 3; i
++) {
2492 if ((tmp
& (0x0f << (i
* 4))) == 0)
2494 seq_printf(s
, "rxdma[%d] %04x\n", i
,
2495 omap_readw(UDC_RXDMA(i
+ 1)));
2498 tmp
= omap_readw(UDC_TXDMA_CFG
);
2499 seq_printf(s
, "txdma_cfg %04x\n", tmp
);
2501 for (i
= 0; i
< 3; i
++) {
2502 if (!(tmp
& (0x0f << (i
* 4))))
2504 seq_printf(s
, "txdma[%d] %04x\n", i
,
2505 omap_readw(UDC_TXDMA(i
+ 1)));
2510 tmp
= omap_readw(UDC_DEVSTAT
);
2511 if (tmp
& UDC_ATT
) {
2512 proc_ep_show(s
, &udc
->ep
[0]);
2513 if (tmp
& UDC_ADD
) {
2514 list_for_each_entry (ep
, &udc
->gadget
.ep_list
,
2517 proc_ep_show(s
, ep
);
2521 spin_unlock_irqrestore(&udc
->lock
, flags
);
2525 static int proc_udc_open(struct inode
*inode
, struct file
*file
)
2527 return single_open(file
, proc_udc_show
, NULL
);
2530 static const struct file_operations proc_ops
= {
2531 .owner
= THIS_MODULE
,
2532 .open
= proc_udc_open
,
2534 .llseek
= seq_lseek
,
2535 .release
= single_release
,
2538 static void create_proc_file(void)
2540 proc_create(proc_filename
, 0, NULL
, &proc_ops
);
2543 static void remove_proc_file(void)
2545 remove_proc_entry(proc_filename
, NULL
);
2550 static inline void create_proc_file(void) {}
2551 static inline void remove_proc_file(void) {}
2555 /*-------------------------------------------------------------------------*/
2557 /* Before this controller can enumerate, we need to pick an endpoint
2558 * configuration, or "fifo_mode" That involves allocating 2KB of packet
2559 * buffer space among the endpoints we'll be operating.
2561 * NOTE: as of OMAP 1710 ES2.0, writing a new endpoint config when
2562 * UDC_SYSCON_1.CFG_LOCK is set can now work. We won't use that
2563 * capability yet though.
2565 static unsigned __init
2566 omap_ep_setup(char *name
, u8 addr
, u8 type
,
2567 unsigned buf
, unsigned maxp
, int dbuf
)
2572 /* OUT endpoints first, then IN */
2573 ep
= &udc
->ep
[addr
& 0xf];
2574 if (addr
& USB_DIR_IN
)
2577 /* in case of ep init table bugs */
2578 BUG_ON(ep
->name
[0]);
2580 /* chip setup ... bit values are same for IN, OUT */
2581 if (type
== USB_ENDPOINT_XFER_ISOC
) {
2583 case 8: epn_rxtx
= 0 << 12; break;
2584 case 16: epn_rxtx
= 1 << 12; break;
2585 case 32: epn_rxtx
= 2 << 12; break;
2586 case 64: epn_rxtx
= 3 << 12; break;
2587 case 128: epn_rxtx
= 4 << 12; break;
2588 case 256: epn_rxtx
= 5 << 12; break;
2589 case 512: epn_rxtx
= 6 << 12; break;
2592 epn_rxtx
|= UDC_EPN_RX_ISO
;
2595 /* double-buffering "not supported" on 15xx,
2596 * and ignored for PIO-IN on newer chips
2597 * (for more reliable behavior)
2599 if (!use_dma
|| cpu_is_omap15xx() || cpu_is_omap24xx())
2603 case 8: epn_rxtx
= 0 << 12; break;
2604 case 16: epn_rxtx
= 1 << 12; break;
2605 case 32: epn_rxtx
= 2 << 12; break;
2606 case 64: epn_rxtx
= 3 << 12; break;
2610 epn_rxtx
|= UDC_EPN_RX_DB
;
2611 init_timer(&ep
->timer
);
2612 ep
->timer
.function
= pio_out_timer
;
2613 ep
->timer
.data
= (unsigned long) ep
;
2616 epn_rxtx
|= UDC_EPN_RX_VALID
;
2618 epn_rxtx
|= buf
>> 3;
2620 DBG("%s addr %02x rxtx %04x maxp %d%s buf %d\n",
2621 name
, addr
, epn_rxtx
, maxp
, dbuf
? "x2" : "", buf
);
2623 if (addr
& USB_DIR_IN
)
2624 omap_writew(epn_rxtx
, UDC_EP_TX(addr
& 0xf));
2626 omap_writew(epn_rxtx
, UDC_EP_RX(addr
));
2628 /* next endpoint's buffer starts after this one's */
2634 /* set up driver data structures */
2635 BUG_ON(strlen(name
) >= sizeof ep
->name
);
2636 strlcpy(ep
->name
, name
, sizeof ep
->name
);
2637 INIT_LIST_HEAD(&ep
->queue
);
2638 INIT_LIST_HEAD(&ep
->iso
);
2639 ep
->bEndpointAddress
= addr
;
2640 ep
->bmAttributes
= type
;
2641 ep
->double_buf
= dbuf
;
2644 ep
->ep
.name
= ep
->name
;
2645 ep
->ep
.ops
= &omap_ep_ops
;
2646 ep
->ep
.maxpacket
= ep
->maxpacket
= maxp
;
2647 list_add_tail (&ep
->ep
.ep_list
, &udc
->gadget
.ep_list
);
2652 static void omap_udc_release(struct device
*dev
)
2654 complete(udc
->done
);
2660 omap_udc_setup(struct platform_device
*odev
, struct otg_transceiver
*xceiv
)
2664 /* abolish any previous hardware state */
2665 omap_writew(0, UDC_SYSCON1
);
2666 omap_writew(0, UDC_IRQ_EN
);
2667 omap_writew(UDC_IRQ_SRC_MASK
, UDC_IRQ_SRC
);
2668 omap_writew(0, UDC_DMA_IRQ_EN
);
2669 omap_writew(0, UDC_RXDMA_CFG
);
2670 omap_writew(0, UDC_TXDMA_CFG
);
2672 /* UDC_PULLUP_EN gates the chip clock */
2673 // OTG_SYSCON_1 |= DEV_IDLE_EN;
2675 udc
= kzalloc(sizeof(*udc
), GFP_KERNEL
);
2679 spin_lock_init (&udc
->lock
);
2681 udc
->gadget
.ops
= &omap_gadget_ops
;
2682 udc
->gadget
.ep0
= &udc
->ep
[0].ep
;
2683 INIT_LIST_HEAD(&udc
->gadget
.ep_list
);
2684 INIT_LIST_HEAD(&udc
->iso
);
2685 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2686 udc
->gadget
.name
= driver_name
;
2688 device_initialize(&udc
->gadget
.dev
);
2689 dev_set_name(&udc
->gadget
.dev
, "gadget");
2690 udc
->gadget
.dev
.release
= omap_udc_release
;
2691 udc
->gadget
.dev
.parent
= &odev
->dev
;
2693 udc
->gadget
.dev
.dma_mask
= odev
->dev
.dma_mask
;
2695 udc
->transceiver
= xceiv
;
2697 /* ep0 is special; put it right after the SETUP buffer */
2698 buf
= omap_ep_setup("ep0", 0, USB_ENDPOINT_XFER_CONTROL
,
2699 8 /* after SETUP */, 64 /* maxpacket */, 0);
2700 list_del_init(&udc
->ep
[0].ep
.ep_list
);
2702 /* initially disable all non-ep0 endpoints */
2703 for (tmp
= 1; tmp
< 15; tmp
++) {
2704 omap_writew(0, UDC_EP_RX(tmp
));
2705 omap_writew(0, UDC_EP_TX(tmp
));
2708 #define OMAP_BULK_EP(name,addr) \
2709 buf = omap_ep_setup(name "-bulk", addr, \
2710 USB_ENDPOINT_XFER_BULK, buf, 64, 1);
2711 #define OMAP_INT_EP(name,addr, maxp) \
2712 buf = omap_ep_setup(name "-int", addr, \
2713 USB_ENDPOINT_XFER_INT, buf, maxp, 0);
2714 #define OMAP_ISO_EP(name,addr, maxp) \
2715 buf = omap_ep_setup(name "-iso", addr, \
2716 USB_ENDPOINT_XFER_ISOC, buf, maxp, 1);
2718 switch (fifo_mode
) {
2720 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2721 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2722 OMAP_INT_EP("ep3in", USB_DIR_IN
| 3, 16);
2725 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2726 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2727 OMAP_INT_EP("ep9in", USB_DIR_IN
| 9, 16);
2729 OMAP_BULK_EP("ep3in", USB_DIR_IN
| 3);
2730 OMAP_BULK_EP("ep4out", USB_DIR_OUT
| 4);
2731 OMAP_INT_EP("ep10in", USB_DIR_IN
| 10, 16);
2733 OMAP_BULK_EP("ep5in", USB_DIR_IN
| 5);
2734 OMAP_BULK_EP("ep5out", USB_DIR_OUT
| 5);
2735 OMAP_INT_EP("ep11in", USB_DIR_IN
| 11, 16);
2737 OMAP_BULK_EP("ep6in", USB_DIR_IN
| 6);
2738 OMAP_BULK_EP("ep6out", USB_DIR_OUT
| 6);
2739 OMAP_INT_EP("ep12in", USB_DIR_IN
| 12, 16);
2741 OMAP_BULK_EP("ep7in", USB_DIR_IN
| 7);
2742 OMAP_BULK_EP("ep7out", USB_DIR_OUT
| 7);
2743 OMAP_INT_EP("ep13in", USB_DIR_IN
| 13, 16);
2744 OMAP_INT_EP("ep13out", USB_DIR_OUT
| 13, 16);
2746 OMAP_BULK_EP("ep8in", USB_DIR_IN
| 8);
2747 OMAP_BULK_EP("ep8out", USB_DIR_OUT
| 8);
2748 OMAP_INT_EP("ep14in", USB_DIR_IN
| 14, 16);
2749 OMAP_INT_EP("ep14out", USB_DIR_OUT
| 14, 16);
2751 OMAP_BULK_EP("ep15in", USB_DIR_IN
| 15);
2752 OMAP_BULK_EP("ep15out", USB_DIR_OUT
| 15);
2757 case 2: /* mixed iso/bulk */
2758 OMAP_ISO_EP("ep1in", USB_DIR_IN
| 1, 256);
2759 OMAP_ISO_EP("ep2out", USB_DIR_OUT
| 2, 256);
2760 OMAP_ISO_EP("ep3in", USB_DIR_IN
| 3, 128);
2761 OMAP_ISO_EP("ep4out", USB_DIR_OUT
| 4, 128);
2763 OMAP_INT_EP("ep5in", USB_DIR_IN
| 5, 16);
2765 OMAP_BULK_EP("ep6in", USB_DIR_IN
| 6);
2766 OMAP_BULK_EP("ep7out", USB_DIR_OUT
| 7);
2767 OMAP_INT_EP("ep8in", USB_DIR_IN
| 8, 16);
2769 case 3: /* mixed bulk/iso */
2770 OMAP_BULK_EP("ep1in", USB_DIR_IN
| 1);
2771 OMAP_BULK_EP("ep2out", USB_DIR_OUT
| 2);
2772 OMAP_INT_EP("ep3in", USB_DIR_IN
| 3, 16);
2774 OMAP_BULK_EP("ep4in", USB_DIR_IN
| 4);
2775 OMAP_BULK_EP("ep5out", USB_DIR_OUT
| 5);
2776 OMAP_INT_EP("ep6in", USB_DIR_IN
| 6, 16);
2778 OMAP_ISO_EP("ep7in", USB_DIR_IN
| 7, 256);
2779 OMAP_ISO_EP("ep8out", USB_DIR_OUT
| 8, 256);
2780 OMAP_INT_EP("ep9in", USB_DIR_IN
| 9, 16);
2784 /* add more modes as needed */
2787 ERR("unsupported fifo_mode #%d\n", fifo_mode
);
2790 omap_writew(UDC_CFG_LOCK
|UDC_SELF_PWR
, UDC_SYSCON1
);
2791 INFO("fifo mode %d, %d bytes not used\n", fifo_mode
, 2048 - buf
);
2795 static int __init
omap_udc_probe(struct platform_device
*pdev
)
2797 int status
= -ENODEV
;
2799 struct otg_transceiver
*xceiv
= NULL
;
2800 const char *type
= NULL
;
2801 struct omap_usb_config
*config
= pdev
->dev
.platform_data
;
2803 struct clk
*hhc_clk
;
2805 /* NOTE: "knows" the order of the resources! */
2806 if (!request_mem_region(pdev
->resource
[0].start
,
2807 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1,
2809 DBG("request_mem_region failed\n");
2813 if (cpu_is_omap16xx()) {
2814 dc_clk
= clk_get(&pdev
->dev
, "usb_dc_ck");
2815 hhc_clk
= clk_get(&pdev
->dev
, "usb_hhc_ck");
2816 BUG_ON(IS_ERR(dc_clk
) || IS_ERR(hhc_clk
));
2817 /* can't use omap_udc_enable_clock yet */
2819 clk_enable(hhc_clk
);
2823 if (cpu_is_omap24xx()) {
2824 dc_clk
= clk_get(&pdev
->dev
, "usb_fck");
2825 hhc_clk
= clk_get(&pdev
->dev
, "usb_l4_ick");
2826 BUG_ON(IS_ERR(dc_clk
) || IS_ERR(hhc_clk
));
2827 /* can't use omap_udc_enable_clock yet */
2829 clk_enable(hhc_clk
);
2833 if (cpu_is_omap7xx()) {
2834 dc_clk
= clk_get(&pdev
->dev
, "usb_dc_ck");
2835 hhc_clk
= clk_get(&pdev
->dev
, "l3_ocpi_ck");
2836 BUG_ON(IS_ERR(dc_clk
) || IS_ERR(hhc_clk
));
2837 /* can't use omap_udc_enable_clock yet */
2839 clk_enable(hhc_clk
);
2843 INFO("OMAP UDC rev %d.%d%s\n",
2844 omap_readw(UDC_REV
) >> 4, omap_readw(UDC_REV
) & 0xf,
2845 config
->otg
? ", Mini-AB" : "");
2847 /* use the mode given to us by board init code */
2848 if (cpu_is_omap15xx()) {
2852 if (machine_without_vbus_sense()) {
2853 /* just set up software VBUS detect, and then
2854 * later rig it so we always report VBUS.
2855 * FIXME without really sensing VBUS, we can't
2856 * know when to turn PULLUP_EN on/off; and that
2857 * means we always "need" the 48MHz clock.
2859 u32 tmp
= omap_readl(FUNC_MUX_CTRL_0
);
2860 tmp
&= ~VBUS_CTRL_1510
;
2861 omap_writel(tmp
, FUNC_MUX_CTRL_0
);
2862 tmp
|= VBUS_MODE_1510
;
2863 tmp
&= ~VBUS_CTRL_1510
;
2864 omap_writel(tmp
, FUNC_MUX_CTRL_0
);
2867 /* The transceiver may package some GPIO logic or handle
2868 * loopback and/or transceiverless setup; if we find one,
2869 * use it. Except for OTG, we don't _need_ to talk to one;
2870 * but not having one probably means no VBUS detection.
2872 xceiv
= otg_get_transceiver();
2874 type
= xceiv
->label
;
2875 else if (config
->otg
) {
2876 DBG("OTG requires external transceiver!\n");
2882 if (cpu_is_omap24xx()) {
2883 /* this could be transceiverless in one of the
2884 * "we don't need to know" modes.
2891 case 0: /* POWERUP DEFAULT == 0 */
2895 if (!cpu_is_omap1710()) {
2896 type
= "integrated";
2906 DBG("external transceiver not registered!\n");
2910 case 21: /* internal loopback */
2913 case 14: /* transceiverless */
2914 if (cpu_is_omap1710())
2924 ERR("unrecognized UDC HMC mode %d\n", hmc
);
2929 INFO("hmc mode %d, %s transceiver\n", hmc
, type
);
2931 /* a "gadget" abstracts/virtualizes the controller */
2932 status
= omap_udc_setup(pdev
, xceiv
);
2937 // "udc" is now valid
2938 pullup_disable(udc
);
2939 #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
2940 udc
->gadget
.is_otg
= (config
->otg
!= 0);
2943 /* starting with omap1710 es2.0, clear toggle is a separate bit */
2944 if (omap_readw(UDC_REV
) >= 0x61)
2945 udc
->clr_halt
= UDC_RESET_EP
| UDC_CLRDATA_TOGGLE
;
2947 udc
->clr_halt
= UDC_RESET_EP
;
2949 /* USB general purpose IRQ: ep0, state changes, dma, etc */
2950 status
= request_irq(pdev
->resource
[1].start
, omap_udc_irq
,
2951 IRQF_SAMPLE_RANDOM
, driver_name
, udc
);
2953 ERR("can't get irq %d, err %d\n",
2954 (int) pdev
->resource
[1].start
, status
);
2958 /* USB "non-iso" IRQ (PIO for all but ep0) */
2959 status
= request_irq(pdev
->resource
[2].start
, omap_udc_pio_irq
,
2960 IRQF_SAMPLE_RANDOM
, "omap_udc pio", udc
);
2962 ERR("can't get irq %d, err %d\n",
2963 (int) pdev
->resource
[2].start
, status
);
2967 status
= request_irq(pdev
->resource
[3].start
, omap_udc_iso_irq
,
2968 IRQF_DISABLED
, "omap_udc iso", udc
);
2970 ERR("can't get irq %d, err %d\n",
2971 (int) pdev
->resource
[3].start
, status
);
2975 if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
2976 udc
->dc_clk
= dc_clk
;
2977 udc
->hhc_clk
= hhc_clk
;
2978 clk_disable(hhc_clk
);
2979 clk_disable(dc_clk
);
2982 if (cpu_is_omap24xx()) {
2983 udc
->dc_clk
= dc_clk
;
2984 udc
->hhc_clk
= hhc_clk
;
2985 /* FIXME OMAP2 don't release hhc & dc clock */
2987 clk_disable(hhc_clk
);
2988 clk_disable(dc_clk
);
2993 status
= device_add(&udc
->gadget
.dev
);
2996 /* If fail, fall through */
2999 free_irq(pdev
->resource
[2].start
, udc
);
3003 free_irq(pdev
->resource
[1].start
, udc
);
3011 otg_put_transceiver(xceiv
);
3013 if (cpu_is_omap16xx() || cpu_is_omap24xx() || cpu_is_omap7xx()) {
3014 clk_disable(hhc_clk
);
3015 clk_disable(dc_clk
);
3020 release_mem_region(pdev
->resource
[0].start
,
3021 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1);
3026 static int __exit
omap_udc_remove(struct platform_device
*pdev
)
3028 DECLARE_COMPLETION_ONSTACK(done
);
3037 pullup_disable(udc
);
3038 if (udc
->transceiver
) {
3039 otg_put_transceiver(udc
->transceiver
);
3040 udc
->transceiver
= NULL
;
3042 omap_writew(0, UDC_SYSCON1
);
3047 free_irq(pdev
->resource
[3].start
, udc
);
3049 free_irq(pdev
->resource
[2].start
, udc
);
3050 free_irq(pdev
->resource
[1].start
, udc
);
3053 if (udc
->clk_requested
)
3054 omap_udc_enable_clock(0);
3055 clk_put(udc
->hhc_clk
);
3056 clk_put(udc
->dc_clk
);
3059 release_mem_region(pdev
->resource
[0].start
,
3060 pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1);
3062 device_unregister(&udc
->gadget
.dev
);
3063 wait_for_completion(&done
);
3068 /* suspend/resume/wakeup from sysfs (echo > power/state) or when the
3069 * system is forced into deep sleep
3071 * REVISIT we should probably reject suspend requests when there's a host
3072 * session active, rather than disconnecting, at least on boards that can
3073 * report VBUS irqs (UDC_DEVSTAT.UDC_ATT). And in any case, we need to
3074 * make host resumes and VBUS detection trigger OMAP wakeup events; that
3075 * may involve talking to an external transceiver (e.g. isp1301).
3078 static int omap_udc_suspend(struct platform_device
*dev
, pm_message_t message
)
3082 devstat
= omap_readw(UDC_DEVSTAT
);
3084 /* we're requesting 48 MHz clock if the pullup is enabled
3085 * (== we're attached to the host) and we're not suspended,
3086 * which would prevent entry to deep sleep...
3088 if ((devstat
& UDC_ATT
) != 0 && (devstat
& UDC_SUS
) == 0) {
3089 WARNING("session active; suspend requires disconnect\n");
3090 omap_pullup(&udc
->gadget
, 0);
3096 static int omap_udc_resume(struct platform_device
*dev
)
3098 DBG("resume + wakeup/SRP\n");
3099 omap_pullup(&udc
->gadget
, 1);
3101 /* maybe the host would enumerate us if we nudged it */
3103 return omap_wakeup(&udc
->gadget
);
3106 /*-------------------------------------------------------------------------*/
3108 static struct platform_driver udc_driver
= {
3109 .remove
= __exit_p(omap_udc_remove
),
3110 .suspend
= omap_udc_suspend
,
3111 .resume
= omap_udc_resume
,
3113 .owner
= THIS_MODULE
,
3114 .name
= (char *) driver_name
,
3118 static int __init
udc_init(void)
3120 /* Disable DMA for omap7xx -- it doesn't work right. */
3121 if (cpu_is_omap7xx())
3124 INFO("%s, version: " DRIVER_VERSION
3128 "%s\n", driver_desc
,
3129 use_dma
? " (dma)" : "");
3130 return platform_driver_probe(&udc_driver
, omap_udc_probe
);
3132 module_init(udc_init
);
3134 static void __exit
udc_exit(void)
3136 platform_driver_unregister(&udc_driver
);
3138 module_exit(udc_exit
);
3140 MODULE_DESCRIPTION(DRIVER_DESC
);
3141 MODULE_LICENSE("GPL");
3142 MODULE_ALIAS("platform:omap_udc");