2 * Copyright (C) 2004-2007 Freescale Semicondutor, Inc. All rights reserved.
4 * Author: Li Yang <leoli@freescale.com>
5 * Jiang Bo <tanya.jiang@freescale.com>
8 * Freescale high-speed USB SOC DR module device controller driver.
9 * This can be found on MPC8349E/MPC8313E cpus.
10 * The driver is previously named as mpc_udc. Based on bare board
11 * code from Dave Liu and Shlomi Gridish.
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
21 #include <linux/module.h>
22 #include <linux/kernel.h>
23 #include <linux/ioport.h>
24 #include <linux/types.h>
25 #include <linux/errno.h>
26 #include <linux/slab.h>
27 #include <linux/init.h>
28 #include <linux/list.h>
29 #include <linux/interrupt.h>
30 #include <linux/proc_fs.h>
32 #include <linux/moduleparam.h>
33 #include <linux/device.h>
34 #include <linux/usb/ch9.h>
35 #include <linux/usb/gadget.h>
36 #include <linux/usb/otg.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/platform_device.h>
39 #include <linux/fsl_devices.h>
40 #include <linux/dmapool.h>
41 #include <linux/delay.h>
43 #include <asm/byteorder.h>
45 #include <asm/system.h>
46 #include <asm/unaligned.h>
49 #include "fsl_usb2_udc.h"
51 #define DRIVER_DESC "Freescale High-Speed USB SOC Device Controller driver"
52 #define DRIVER_AUTHOR "Li Yang/Jiang Bo"
53 #define DRIVER_VERSION "Apr 20, 2007"
55 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
57 static const char driver_name
[] = "fsl-usb2-udc";
58 static const char driver_desc
[] = DRIVER_DESC
;
60 static struct usb_dr_device
*dr_regs
;
61 #ifndef CONFIG_ARCH_MXC
62 static struct usb_sys_interface
*usb_sys_regs
;
65 /* it is initialized in probe() */
66 static struct fsl_udc
*udc_controller
= NULL
;
68 static const struct usb_endpoint_descriptor
70 .bLength
= USB_DT_ENDPOINT_SIZE
,
71 .bDescriptorType
= USB_DT_ENDPOINT
,
72 .bEndpointAddress
= 0,
73 .bmAttributes
= USB_ENDPOINT_XFER_CONTROL
,
74 .wMaxPacketSize
= USB_MAX_CTRL_PAYLOAD
,
77 static void fsl_ep_fifo_flush(struct usb_ep
*_ep
);
80 #define fsl_readl(addr) in_le32(addr)
81 #define fsl_writel(val32, addr) out_le32(addr, val32)
83 #define fsl_readl(addr) readl(addr)
84 #define fsl_writel(val32, addr) writel(val32, addr)
87 /********************************************************************
88 * Internal Used Function
89 ********************************************************************/
90 /*-----------------------------------------------------------------
91 * done() - retire a request; caller blocked irqs
92 * @status : request status to be set, only works when
93 * request is still in progress.
94 *--------------------------------------------------------------*/
95 static void done(struct fsl_ep
*ep
, struct fsl_req
*req
, int status
)
97 struct fsl_udc
*udc
= NULL
;
98 unsigned char stopped
= ep
->stopped
;
99 struct ep_td_struct
*curr_td
, *next_td
;
102 udc
= (struct fsl_udc
*)ep
->udc
;
103 /* Removed the req from fsl_ep->queue */
104 list_del_init(&req
->queue
);
106 /* req.status should be set as -EINPROGRESS in ep_queue() */
107 if (req
->req
.status
== -EINPROGRESS
)
108 req
->req
.status
= status
;
110 status
= req
->req
.status
;
112 /* Free dtd for the request */
114 for (j
= 0; j
< req
->dtd_count
; j
++) {
116 if (j
!= req
->dtd_count
- 1) {
117 next_td
= curr_td
->next_td_virt
;
119 dma_pool_free(udc
->td_pool
, curr_td
, curr_td
->td_dma
);
123 dma_unmap_single(ep
->udc
->gadget
.dev
.parent
,
124 req
->req
.dma
, req
->req
.length
,
128 req
->req
.dma
= DMA_ADDR_INVALID
;
131 dma_sync_single_for_cpu(ep
->udc
->gadget
.dev
.parent
,
132 req
->req
.dma
, req
->req
.length
,
137 if (status
&& (status
!= -ESHUTDOWN
))
138 VDBG("complete %s req %p stat %d len %u/%u",
139 ep
->ep
.name
, &req
->req
, status
,
140 req
->req
.actual
, req
->req
.length
);
144 spin_unlock(&ep
->udc
->lock
);
145 /* complete() is from gadget layer,
146 * eg fsg->bulk_in_complete() */
147 if (req
->req
.complete
)
148 req
->req
.complete(&ep
->ep
, &req
->req
);
150 spin_lock(&ep
->udc
->lock
);
151 ep
->stopped
= stopped
;
154 /*-----------------------------------------------------------------
155 * nuke(): delete all requests related to this ep
156 * called with spinlock held
157 *--------------------------------------------------------------*/
158 static void nuke(struct fsl_ep
*ep
, int status
)
163 fsl_ep_fifo_flush(&ep
->ep
);
165 /* Whether this eq has request linked */
166 while (!list_empty(&ep
->queue
)) {
167 struct fsl_req
*req
= NULL
;
169 req
= list_entry(ep
->queue
.next
, struct fsl_req
, queue
);
170 done(ep
, req
, status
);
174 /*------------------------------------------------------------------
175 Internal Hardware related function
176 ------------------------------------------------------------------*/
178 static int dr_controller_setup(struct fsl_udc
*udc
)
180 unsigned int tmp
, portctrl
;
181 #ifndef CONFIG_ARCH_MXC
184 unsigned long timeout
;
185 #define FSL_UDC_RESET_TIMEOUT 1000
187 /* Config PHY interface */
188 portctrl
= fsl_readl(&dr_regs
->portsc1
);
189 portctrl
&= ~(PORTSCX_PHY_TYPE_SEL
| PORTSCX_PORT_WIDTH
);
190 switch (udc
->phy_mode
) {
191 case FSL_USB2_PHY_ULPI
:
192 portctrl
|= PORTSCX_PTS_ULPI
;
194 case FSL_USB2_PHY_UTMI_WIDE
:
195 portctrl
|= PORTSCX_PTW_16BIT
;
197 case FSL_USB2_PHY_UTMI
:
198 portctrl
|= PORTSCX_PTS_UTMI
;
200 case FSL_USB2_PHY_SERIAL
:
201 portctrl
|= PORTSCX_PTS_FSLS
;
206 fsl_writel(portctrl
, &dr_regs
->portsc1
);
208 /* Stop and reset the usb controller */
209 tmp
= fsl_readl(&dr_regs
->usbcmd
);
210 tmp
&= ~USB_CMD_RUN_STOP
;
211 fsl_writel(tmp
, &dr_regs
->usbcmd
);
213 tmp
= fsl_readl(&dr_regs
->usbcmd
);
214 tmp
|= USB_CMD_CTRL_RESET
;
215 fsl_writel(tmp
, &dr_regs
->usbcmd
);
217 /* Wait for reset to complete */
218 timeout
= jiffies
+ FSL_UDC_RESET_TIMEOUT
;
219 while (fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_CTRL_RESET
) {
220 if (time_after(jiffies
, timeout
)) {
221 ERR("udc reset timeout!\n");
227 /* Set the controller as device mode */
228 tmp
= fsl_readl(&dr_regs
->usbmode
);
229 tmp
|= USB_MODE_CTRL_MODE_DEVICE
;
230 /* Disable Setup Lockout */
231 tmp
|= USB_MODE_SETUP_LOCK_OFF
;
232 fsl_writel(tmp
, &dr_regs
->usbmode
);
234 /* Clear the setup status */
235 fsl_writel(0, &dr_regs
->usbsts
);
237 tmp
= udc
->ep_qh_dma
;
238 tmp
&= USB_EP_LIST_ADDRESS_MASK
;
239 fsl_writel(tmp
, &dr_regs
->endpointlistaddr
);
241 VDBG("vir[qh_base] is %p phy[qh_base] is 0x%8x reg is 0x%8x",
242 udc
->ep_qh
, (int)tmp
,
243 fsl_readl(&dr_regs
->endpointlistaddr
));
245 /* Config control enable i/o output, cpu endian register */
246 #ifndef CONFIG_ARCH_MXC
247 ctrl
= __raw_readl(&usb_sys_regs
->control
);
248 ctrl
|= USB_CTRL_IOENB
;
249 __raw_writel(ctrl
, &usb_sys_regs
->control
);
252 #if defined(CONFIG_PPC32) && !defined(CONFIG_NOT_COHERENT_CACHE)
253 /* Turn on cache snooping hardware, since some PowerPC platforms
254 * wholly rely on hardware to deal with cache coherent. */
256 /* Setup Snooping for all the 4GB space */
257 tmp
= SNOOP_SIZE_2GB
; /* starts from 0x0, size 2G */
258 __raw_writel(tmp
, &usb_sys_regs
->snoop1
);
259 tmp
|= 0x80000000; /* starts from 0x8000000, size 2G */
260 __raw_writel(tmp
, &usb_sys_regs
->snoop2
);
266 /* Enable DR irq and set controller to run state */
267 static void dr_controller_run(struct fsl_udc
*udc
)
271 /* Enable DR irq reg */
272 temp
= USB_INTR_INT_EN
| USB_INTR_ERR_INT_EN
273 | USB_INTR_PTC_DETECT_EN
| USB_INTR_RESET_EN
274 | USB_INTR_DEVICE_SUSPEND
| USB_INTR_SYS_ERR_EN
;
276 fsl_writel(temp
, &dr_regs
->usbintr
);
278 /* Clear stopped bit */
281 /* Set the controller as device mode */
282 temp
= fsl_readl(&dr_regs
->usbmode
);
283 temp
|= USB_MODE_CTRL_MODE_DEVICE
;
284 fsl_writel(temp
, &dr_regs
->usbmode
);
286 /* Set controller to Run */
287 temp
= fsl_readl(&dr_regs
->usbcmd
);
288 temp
|= USB_CMD_RUN_STOP
;
289 fsl_writel(temp
, &dr_regs
->usbcmd
);
294 static void dr_controller_stop(struct fsl_udc
*udc
)
298 /* disable all INTR */
299 fsl_writel(0, &dr_regs
->usbintr
);
301 /* Set stopped bit for isr */
304 /* disable IO output */
305 /* usb_sys_regs->control = 0; */
307 /* set controller to Stop */
308 tmp
= fsl_readl(&dr_regs
->usbcmd
);
309 tmp
&= ~USB_CMD_RUN_STOP
;
310 fsl_writel(tmp
, &dr_regs
->usbcmd
);
315 static void dr_ep_setup(unsigned char ep_num
, unsigned char dir
,
316 unsigned char ep_type
)
318 unsigned int tmp_epctrl
= 0;
320 tmp_epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
323 tmp_epctrl
|= EPCTRL_TX_DATA_TOGGLE_RST
;
324 tmp_epctrl
|= EPCTRL_TX_ENABLE
;
325 tmp_epctrl
|= ((unsigned int)(ep_type
)
326 << EPCTRL_TX_EP_TYPE_SHIFT
);
329 tmp_epctrl
|= EPCTRL_RX_DATA_TOGGLE_RST
;
330 tmp_epctrl
|= EPCTRL_RX_ENABLE
;
331 tmp_epctrl
|= ((unsigned int)(ep_type
)
332 << EPCTRL_RX_EP_TYPE_SHIFT
);
335 fsl_writel(tmp_epctrl
, &dr_regs
->endptctrl
[ep_num
]);
339 dr_ep_change_stall(unsigned char ep_num
, unsigned char dir
, int value
)
343 tmp_epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
346 /* set the stall bit */
348 tmp_epctrl
|= EPCTRL_TX_EP_STALL
;
350 tmp_epctrl
|= EPCTRL_RX_EP_STALL
;
352 /* clear the stall bit and reset data toggle */
354 tmp_epctrl
&= ~EPCTRL_TX_EP_STALL
;
355 tmp_epctrl
|= EPCTRL_TX_DATA_TOGGLE_RST
;
357 tmp_epctrl
&= ~EPCTRL_RX_EP_STALL
;
358 tmp_epctrl
|= EPCTRL_RX_DATA_TOGGLE_RST
;
361 fsl_writel(tmp_epctrl
, &dr_regs
->endptctrl
[ep_num
]);
364 /* Get stall status of a specific ep
365 Return: 0: not stalled; 1:stalled */
366 static int dr_ep_get_stall(unsigned char ep_num
, unsigned char dir
)
370 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
372 return (epctrl
& EPCTRL_TX_EP_STALL
) ? 1 : 0;
374 return (epctrl
& EPCTRL_RX_EP_STALL
) ? 1 : 0;
377 /********************************************************************
378 Internal Structure Build up functions
379 ********************************************************************/
381 /*------------------------------------------------------------------
382 * struct_ep_qh_setup(): set the Endpoint Capabilites field of QH
383 * @zlt: Zero Length Termination Select (1: disable; 0: enable)
385 ------------------------------------------------------------------*/
386 static void struct_ep_qh_setup(struct fsl_udc
*udc
, unsigned char ep_num
,
387 unsigned char dir
, unsigned char ep_type
,
388 unsigned int max_pkt_len
,
389 unsigned int zlt
, unsigned char mult
)
391 struct ep_queue_head
*p_QH
= &udc
->ep_qh
[2 * ep_num
+ dir
];
392 unsigned int tmp
= 0;
394 /* set the Endpoint Capabilites in QH */
396 case USB_ENDPOINT_XFER_CONTROL
:
397 /* Interrupt On Setup (IOS). for control ep */
398 tmp
= (max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
)
401 case USB_ENDPOINT_XFER_ISOC
:
402 tmp
= (max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
)
403 | (mult
<< EP_QUEUE_HEAD_MULT_POS
);
405 case USB_ENDPOINT_XFER_BULK
:
406 case USB_ENDPOINT_XFER_INT
:
407 tmp
= max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
;
410 VDBG("error ep type is %d", ep_type
);
414 tmp
|= EP_QUEUE_HEAD_ZLT_SEL
;
416 p_QH
->max_pkt_length
= cpu_to_le32(tmp
);
417 p_QH
->next_dtd_ptr
= 1;
418 p_QH
->size_ioc_int_sts
= 0;
423 /* Setup qh structure and ep register for ep0. */
424 static void ep0_setup(struct fsl_udc
*udc
)
426 /* the intialization of an ep includes: fields in QH, Regs,
428 struct_ep_qh_setup(udc
, 0, USB_RECV
, USB_ENDPOINT_XFER_CONTROL
,
429 USB_MAX_CTRL_PAYLOAD
, 0, 0);
430 struct_ep_qh_setup(udc
, 0, USB_SEND
, USB_ENDPOINT_XFER_CONTROL
,
431 USB_MAX_CTRL_PAYLOAD
, 0, 0);
432 dr_ep_setup(0, USB_RECV
, USB_ENDPOINT_XFER_CONTROL
);
433 dr_ep_setup(0, USB_SEND
, USB_ENDPOINT_XFER_CONTROL
);
439 /***********************************************************************
440 Endpoint Management Functions
441 ***********************************************************************/
443 /*-------------------------------------------------------------------------
444 * when configurations are set, or when interface settings change
445 * for example the do_set_interface() in gadget layer,
446 * the driver will enable or disable the relevant endpoints
447 * ep0 doesn't use this routine. It is always enabled.
448 -------------------------------------------------------------------------*/
449 static int fsl_ep_enable(struct usb_ep
*_ep
,
450 const struct usb_endpoint_descriptor
*desc
)
452 struct fsl_udc
*udc
= NULL
;
453 struct fsl_ep
*ep
= NULL
;
454 unsigned short max
= 0;
455 unsigned char mult
= 0, zlt
;
456 int retval
= -EINVAL
;
457 unsigned long flags
= 0;
459 ep
= container_of(_ep
, struct fsl_ep
, ep
);
461 /* catch various bogus parameters */
462 if (!_ep
|| !desc
|| ep
->desc
463 || (desc
->bDescriptorType
!= USB_DT_ENDPOINT
))
468 if (!udc
->driver
|| (udc
->gadget
.speed
== USB_SPEED_UNKNOWN
))
471 max
= le16_to_cpu(desc
->wMaxPacketSize
);
473 /* Disable automatic zlp generation. Driver is reponsible to indicate
474 * explicitly through req->req.zero. This is needed to enable multi-td
478 /* Assume the max packet size from gadget is always correct */
479 switch (desc
->bmAttributes
& 0x03) {
480 case USB_ENDPOINT_XFER_CONTROL
:
481 case USB_ENDPOINT_XFER_BULK
:
482 case USB_ENDPOINT_XFER_INT
:
483 /* mult = 0. Execute N Transactions as demonstrated by
484 * the USB variable length packet protocol where N is
485 * computed using the Maximum Packet Length (dQH) and
486 * the Total Bytes field (dTD) */
489 case USB_ENDPOINT_XFER_ISOC
:
490 /* Calculate transactions needed for high bandwidth iso */
491 mult
= (unsigned char)(1 + ((max
>> 11) & 0x03));
492 max
= max
& 0x8ff; /* bit 0~10 */
493 /* 3 transactions at most */
501 spin_lock_irqsave(&udc
->lock
, flags
);
502 ep
->ep
.maxpacket
= max
;
506 /* Controller related setup */
507 /* Init EPx Queue Head (Ep Capabilites field in QH
508 * according to max, zlt, mult) */
509 struct_ep_qh_setup(udc
, (unsigned char) ep_index(ep
),
510 (unsigned char) ((desc
->bEndpointAddress
& USB_DIR_IN
)
511 ? USB_SEND
: USB_RECV
),
512 (unsigned char) (desc
->bmAttributes
513 & USB_ENDPOINT_XFERTYPE_MASK
),
516 /* Init endpoint ctrl register */
517 dr_ep_setup((unsigned char) ep_index(ep
),
518 (unsigned char) ((desc
->bEndpointAddress
& USB_DIR_IN
)
519 ? USB_SEND
: USB_RECV
),
520 (unsigned char) (desc
->bmAttributes
521 & USB_ENDPOINT_XFERTYPE_MASK
));
523 spin_unlock_irqrestore(&udc
->lock
, flags
);
526 VDBG("enabled %s (ep%d%s) maxpacket %d",ep
->ep
.name
,
527 ep
->desc
->bEndpointAddress
& 0x0f,
528 (desc
->bEndpointAddress
& USB_DIR_IN
)
529 ? "in" : "out", max
);
534 /*---------------------------------------------------------------------
535 * @ep : the ep being unconfigured. May not be ep0
536 * Any pending and uncomplete req will complete with status (-ESHUTDOWN)
537 *---------------------------------------------------------------------*/
538 static int fsl_ep_disable(struct usb_ep
*_ep
)
540 struct fsl_udc
*udc
= NULL
;
541 struct fsl_ep
*ep
= NULL
;
542 unsigned long flags
= 0;
546 ep
= container_of(_ep
, struct fsl_ep
, ep
);
547 if (!_ep
|| !ep
->desc
) {
548 VDBG("%s not enabled", _ep
? ep
->ep
.name
: NULL
);
552 /* disable ep on controller */
553 ep_num
= ep_index(ep
);
554 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
556 epctrl
&= ~EPCTRL_TX_ENABLE
;
558 epctrl
&= ~EPCTRL_RX_ENABLE
;
559 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
561 udc
= (struct fsl_udc
*)ep
->udc
;
562 spin_lock_irqsave(&udc
->lock
, flags
);
564 /* nuke all pending requests (does flush) */
565 nuke(ep
, -ESHUTDOWN
);
569 spin_unlock_irqrestore(&udc
->lock
, flags
);
571 VDBG("disabled %s OK", _ep
->name
);
575 /*---------------------------------------------------------------------
576 * allocate a request object used by this endpoint
577 * the main operation is to insert the req->queue to the eq->queue
578 * Returns the request, or null if one could not be allocated
579 *---------------------------------------------------------------------*/
580 static struct usb_request
*
581 fsl_alloc_request(struct usb_ep
*_ep
, gfp_t gfp_flags
)
583 struct fsl_req
*req
= NULL
;
585 req
= kzalloc(sizeof *req
, gfp_flags
);
589 req
->req
.dma
= DMA_ADDR_INVALID
;
590 INIT_LIST_HEAD(&req
->queue
);
595 static void fsl_free_request(struct usb_ep
*_ep
, struct usb_request
*_req
)
597 struct fsl_req
*req
= NULL
;
599 req
= container_of(_req
, struct fsl_req
, req
);
605 /*-------------------------------------------------------------------------*/
606 static void fsl_queue_td(struct fsl_ep
*ep
, struct fsl_req
*req
)
608 int i
= ep_index(ep
) * 2 + ep_is_in(ep
);
609 u32 temp
, bitmask
, tmp_stat
;
610 struct ep_queue_head
*dQH
= &ep
->udc
->ep_qh
[i
];
612 /* VDBG("QH addr Register 0x%8x", dr_regs->endpointlistaddr);
613 VDBG("ep_qh[%d] addr is 0x%8x", i, (u32)&(ep->udc->ep_qh[i])); */
615 bitmask
= ep_is_in(ep
)
616 ? (1 << (ep_index(ep
) + 16))
617 : (1 << (ep_index(ep
)));
619 /* check if the pipe is empty */
620 if (!(list_empty(&ep
->queue
))) {
621 /* Add td to the end */
622 struct fsl_req
*lastreq
;
623 lastreq
= list_entry(ep
->queue
.prev
, struct fsl_req
, queue
);
624 lastreq
->tail
->next_td_ptr
=
625 cpu_to_le32(req
->head
->td_dma
& DTD_ADDR_MASK
);
626 /* Read prime bit, if 1 goto done */
627 if (fsl_readl(&dr_regs
->endpointprime
) & bitmask
)
631 /* Set ATDTW bit in USBCMD */
632 temp
= fsl_readl(&dr_regs
->usbcmd
);
633 fsl_writel(temp
| USB_CMD_ATDTW
, &dr_regs
->usbcmd
);
635 /* Read correct status bit */
636 tmp_stat
= fsl_readl(&dr_regs
->endptstatus
) & bitmask
;
638 } while (!(fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_ATDTW
));
640 /* Write ATDTW bit to 0 */
641 temp
= fsl_readl(&dr_regs
->usbcmd
);
642 fsl_writel(temp
& ~USB_CMD_ATDTW
, &dr_regs
->usbcmd
);
648 /* Write dQH next pointer and terminate bit to 0 */
649 temp
= req
->head
->td_dma
& EP_QUEUE_HEAD_NEXT_POINTER_MASK
;
650 dQH
->next_dtd_ptr
= cpu_to_le32(temp
);
652 /* Clear active and halt bit */
653 temp
= cpu_to_le32(~(EP_QUEUE_HEAD_STATUS_ACTIVE
654 | EP_QUEUE_HEAD_STATUS_HALT
));
655 dQH
->size_ioc_int_sts
&= temp
;
657 /* Ensure that updates to the QH will occure before priming. */
660 /* Prime endpoint by writing 1 to ENDPTPRIME */
662 ? (1 << (ep_index(ep
) + 16))
663 : (1 << (ep_index(ep
)));
664 fsl_writel(temp
, &dr_regs
->endpointprime
);
669 /* Fill in the dTD structure
670 * @req: request that the transfer belongs to
671 * @length: return actually data length of the dTD
672 * @dma: return dma address of the dTD
673 * @is_last: return flag if it is the last dTD of the request
674 * return: pointer to the built dTD */
675 static struct ep_td_struct
*fsl_build_dtd(struct fsl_req
*req
, unsigned *length
,
676 dma_addr_t
*dma
, int *is_last
)
679 struct ep_td_struct
*dtd
;
681 /* how big will this transfer be? */
682 *length
= min(req
->req
.length
- req
->req
.actual
,
683 (unsigned)EP_MAX_LENGTH_TRANSFER
);
685 dtd
= dma_pool_alloc(udc_controller
->td_pool
, GFP_KERNEL
, dma
);
690 /* Clear reserved field */
691 swap_temp
= cpu_to_le32(dtd
->size_ioc_sts
);
692 swap_temp
&= ~DTD_RESERVED_FIELDS
;
693 dtd
->size_ioc_sts
= cpu_to_le32(swap_temp
);
695 /* Init all of buffer page pointers */
696 swap_temp
= (u32
) (req
->req
.dma
+ req
->req
.actual
);
697 dtd
->buff_ptr0
= cpu_to_le32(swap_temp
);
698 dtd
->buff_ptr1
= cpu_to_le32(swap_temp
+ 0x1000);
699 dtd
->buff_ptr2
= cpu_to_le32(swap_temp
+ 0x2000);
700 dtd
->buff_ptr3
= cpu_to_le32(swap_temp
+ 0x3000);
701 dtd
->buff_ptr4
= cpu_to_le32(swap_temp
+ 0x4000);
703 req
->req
.actual
+= *length
;
705 /* zlp is needed if req->req.zero is set */
707 if (*length
== 0 || (*length
% req
->ep
->ep
.maxpacket
) != 0)
711 } else if (req
->req
.length
== req
->req
.actual
)
717 VDBG("multi-dtd request!");
718 /* Fill in the transfer size; set active bit */
719 swap_temp
= ((*length
<< DTD_LENGTH_BIT_POS
) | DTD_STATUS_ACTIVE
);
721 /* Enable interrupt for the last dtd of a request */
722 if (*is_last
&& !req
->req
.no_interrupt
)
723 swap_temp
|= DTD_IOC
;
725 dtd
->size_ioc_sts
= cpu_to_le32(swap_temp
);
729 VDBG("length = %d address= 0x%x", *length
, (int)*dma
);
734 /* Generate dtd chain for a request */
735 static int fsl_req_to_dtd(struct fsl_req
*req
)
740 struct ep_td_struct
*last_dtd
= NULL
, *dtd
;
744 dtd
= fsl_build_dtd(req
, &count
, &dma
, &is_last
);
752 last_dtd
->next_td_ptr
= cpu_to_le32(dma
);
753 last_dtd
->next_td_virt
= dtd
;
760 dtd
->next_td_ptr
= cpu_to_le32(DTD_NEXT_TERMINATE
);
767 /* queues (submits) an I/O request to an endpoint */
769 fsl_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, gfp_t gfp_flags
)
771 struct fsl_ep
*ep
= container_of(_ep
, struct fsl_ep
, ep
);
772 struct fsl_req
*req
= container_of(_req
, struct fsl_req
, req
);
777 /* catch various bogus parameters */
778 if (!_req
|| !req
->req
.complete
|| !req
->req
.buf
779 || !list_empty(&req
->queue
)) {
780 VDBG("%s, bad params", __func__
);
783 if (unlikely(!_ep
|| !ep
->desc
)) {
784 VDBG("%s, bad ep", __func__
);
787 if (ep
->desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
788 if (req
->req
.length
> ep
->ep
.maxpacket
)
794 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
799 /* map virtual address to hardware */
800 if (req
->req
.dma
== DMA_ADDR_INVALID
) {
801 req
->req
.dma
= dma_map_single(ep
->udc
->gadget
.dev
.parent
,
803 req
->req
.length
, ep_is_in(ep
)
808 dma_sync_single_for_device(ep
->udc
->gadget
.dev
.parent
,
809 req
->req
.dma
, req
->req
.length
,
816 req
->req
.status
= -EINPROGRESS
;
820 spin_lock_irqsave(&udc
->lock
, flags
);
822 /* build dtds and push them to device queue */
823 if (!fsl_req_to_dtd(req
)) {
824 fsl_queue_td(ep
, req
);
826 spin_unlock_irqrestore(&udc
->lock
, flags
);
830 /* Update ep0 state */
831 if ((ep_index(ep
) == 0))
832 udc
->ep0_state
= DATA_STATE_XMIT
;
834 /* irq handler advances the queue */
836 list_add_tail(&req
->queue
, &ep
->queue
);
837 spin_unlock_irqrestore(&udc
->lock
, flags
);
842 /* dequeues (cancels, unlinks) an I/O request from an endpoint */
843 static int fsl_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
845 struct fsl_ep
*ep
= container_of(_ep
, struct fsl_ep
, ep
);
848 int ep_num
, stopped
, ret
= 0;
854 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
855 stopped
= ep
->stopped
;
857 /* Stop the ep before we deal with the queue */
859 ep_num
= ep_index(ep
);
860 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
862 epctrl
&= ~EPCTRL_TX_ENABLE
;
864 epctrl
&= ~EPCTRL_RX_ENABLE
;
865 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
867 /* make sure it's actually queued on this endpoint */
868 list_for_each_entry(req
, &ep
->queue
, queue
) {
869 if (&req
->req
== _req
)
872 if (&req
->req
!= _req
) {
877 /* The request is in progress, or completed but not dequeued */
878 if (ep
->queue
.next
== &req
->queue
) {
879 _req
->status
= -ECONNRESET
;
880 fsl_ep_fifo_flush(_ep
); /* flush current transfer */
882 /* The request isn't the last request in this ep queue */
883 if (req
->queue
.next
!= &ep
->queue
) {
884 struct ep_queue_head
*qh
;
885 struct fsl_req
*next_req
;
888 next_req
= list_entry(req
->queue
.next
, struct fsl_req
,
891 /* Point the QH to the first TD of next request */
892 fsl_writel((u32
) next_req
->head
, &qh
->curr_dtd_ptr
);
895 /* The request hasn't been processed, patch up the TD chain */
897 struct fsl_req
*prev_req
;
899 prev_req
= list_entry(req
->queue
.prev
, struct fsl_req
, queue
);
900 fsl_writel(fsl_readl(&req
->tail
->next_td_ptr
),
901 &prev_req
->tail
->next_td_ptr
);
905 done(ep
, req
, -ECONNRESET
);
908 out
: epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
910 epctrl
|= EPCTRL_TX_ENABLE
;
912 epctrl
|= EPCTRL_RX_ENABLE
;
913 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
914 ep
->stopped
= stopped
;
916 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
920 /*-------------------------------------------------------------------------*/
922 /*-----------------------------------------------------------------
923 * modify the endpoint halt feature
924 * @ep: the non-isochronous endpoint being stalled
925 * @value: 1--set halt 0--clear halt
926 * Returns zero, or a negative error code.
927 *----------------------------------------------------------------*/
928 static int fsl_ep_set_halt(struct usb_ep
*_ep
, int value
)
930 struct fsl_ep
*ep
= NULL
;
931 unsigned long flags
= 0;
932 int status
= -EOPNOTSUPP
; /* operation not supported */
933 unsigned char ep_dir
= 0, ep_num
= 0;
934 struct fsl_udc
*udc
= NULL
;
936 ep
= container_of(_ep
, struct fsl_ep
, ep
);
938 if (!_ep
|| !ep
->desc
) {
943 if (ep
->desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
944 status
= -EOPNOTSUPP
;
948 /* Attempt to halt IN ep will fail if any transfer requests
950 if (value
&& ep_is_in(ep
) && !list_empty(&ep
->queue
)) {
956 ep_dir
= ep_is_in(ep
) ? USB_SEND
: USB_RECV
;
957 ep_num
= (unsigned char)(ep_index(ep
));
958 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
959 dr_ep_change_stall(ep_num
, ep_dir
, value
);
960 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
962 if (ep_index(ep
) == 0) {
963 udc
->ep0_state
= WAIT_FOR_SETUP
;
967 VDBG(" %s %s halt stat %d", ep
->ep
.name
,
968 value
? "set" : "clear", status
);
973 static void fsl_ep_fifo_flush(struct usb_ep
*_ep
)
978 unsigned long timeout
;
979 #define FSL_UDC_FLUSH_TIMEOUT 1000
984 ep
= container_of(_ep
, struct fsl_ep
, ep
);
988 ep_num
= ep_index(ep
);
989 ep_dir
= ep_is_in(ep
) ? USB_SEND
: USB_RECV
;
992 bits
= (1 << 16) | 1;
993 else if (ep_dir
== USB_SEND
)
994 bits
= 1 << (16 + ep_num
);
998 timeout
= jiffies
+ FSL_UDC_FLUSH_TIMEOUT
;
1000 fsl_writel(bits
, &dr_regs
->endptflush
);
1002 /* Wait until flush complete */
1003 while (fsl_readl(&dr_regs
->endptflush
)) {
1004 if (time_after(jiffies
, timeout
)) {
1005 ERR("ep flush timeout\n");
1010 /* See if we need to flush again */
1011 } while (fsl_readl(&dr_regs
->endptstatus
) & bits
);
1014 static struct usb_ep_ops fsl_ep_ops
= {
1015 .enable
= fsl_ep_enable
,
1016 .disable
= fsl_ep_disable
,
1018 .alloc_request
= fsl_alloc_request
,
1019 .free_request
= fsl_free_request
,
1021 .queue
= fsl_ep_queue
,
1022 .dequeue
= fsl_ep_dequeue
,
1024 .set_halt
= fsl_ep_set_halt
,
1025 .fifo_flush
= fsl_ep_fifo_flush
, /* flush fifo */
1028 /*-------------------------------------------------------------------------
1029 Gadget Driver Layer Operations
1030 -------------------------------------------------------------------------*/
1032 /*----------------------------------------------------------------------
1033 * Get the current frame number (from DR frame_index Reg )
1034 *----------------------------------------------------------------------*/
1035 static int fsl_get_frame(struct usb_gadget
*gadget
)
1037 return (int)(fsl_readl(&dr_regs
->frindex
) & USB_FRINDEX_MASKS
);
1040 /*-----------------------------------------------------------------------
1041 * Tries to wake up the host connected to this gadget
1042 -----------------------------------------------------------------------*/
1043 static int fsl_wakeup(struct usb_gadget
*gadget
)
1045 struct fsl_udc
*udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1048 /* Remote wakeup feature not enabled by host */
1049 if (!udc
->remote_wakeup
)
1052 portsc
= fsl_readl(&dr_regs
->portsc1
);
1053 /* not suspended? */
1054 if (!(portsc
& PORTSCX_PORT_SUSPEND
))
1056 /* trigger force resume */
1057 portsc
|= PORTSCX_PORT_FORCE_RESUME
;
1058 fsl_writel(portsc
, &dr_regs
->portsc1
);
1062 static int can_pullup(struct fsl_udc
*udc
)
1064 return udc
->driver
&& udc
->softconnect
&& udc
->vbus_active
;
1067 /* Notify controller that VBUS is powered, Called by whatever
1068 detects VBUS sessions */
1069 static int fsl_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1071 struct fsl_udc
*udc
;
1072 unsigned long flags
;
1074 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1075 spin_lock_irqsave(&udc
->lock
, flags
);
1076 VDBG("VBUS %s", is_active
? "on" : "off");
1077 udc
->vbus_active
= (is_active
!= 0);
1078 if (can_pullup(udc
))
1079 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) | USB_CMD_RUN_STOP
),
1082 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
),
1084 spin_unlock_irqrestore(&udc
->lock
, flags
);
1088 /* constrain controller's VBUS power usage
1089 * This call is used by gadget drivers during SET_CONFIGURATION calls,
1090 * reporting how much power the device may consume. For example, this
1091 * could affect how quickly batteries are recharged.
1093 * Returns zero on success, else negative errno.
1095 static int fsl_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1097 struct fsl_udc
*udc
;
1099 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1100 if (udc
->transceiver
)
1101 return otg_set_power(udc
->transceiver
, mA
);
1105 /* Change Data+ pullup status
1106 * this func is used by usb_gadget_connect/disconnet
1108 static int fsl_pullup(struct usb_gadget
*gadget
, int is_on
)
1110 struct fsl_udc
*udc
;
1112 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1113 udc
->softconnect
= (is_on
!= 0);
1114 if (can_pullup(udc
))
1115 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) | USB_CMD_RUN_STOP
),
1118 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
),
1124 /* defined in gadget.h */
1125 static struct usb_gadget_ops fsl_gadget_ops
= {
1126 .get_frame
= fsl_get_frame
,
1127 .wakeup
= fsl_wakeup
,
1128 /* .set_selfpowered = fsl_set_selfpowered, */ /* Always selfpowered */
1129 .vbus_session
= fsl_vbus_session
,
1130 .vbus_draw
= fsl_vbus_draw
,
1131 .pullup
= fsl_pullup
,
1134 /* Set protocol stall on ep0, protocol stall will automatically be cleared
1135 on new transaction */
1136 static void ep0stall(struct fsl_udc
*udc
)
1140 /* must set tx and rx to stall at the same time */
1141 tmp
= fsl_readl(&dr_regs
->endptctrl
[0]);
1142 tmp
|= EPCTRL_TX_EP_STALL
| EPCTRL_RX_EP_STALL
;
1143 fsl_writel(tmp
, &dr_regs
->endptctrl
[0]);
1144 udc
->ep0_state
= WAIT_FOR_SETUP
;
1148 /* Prime a status phase for ep0 */
1149 static int ep0_prime_status(struct fsl_udc
*udc
, int direction
)
1151 struct fsl_req
*req
= udc
->status_req
;
1154 if (direction
== EP_DIR_IN
)
1155 udc
->ep0_dir
= USB_DIR_IN
;
1157 udc
->ep0_dir
= USB_DIR_OUT
;
1160 udc
->ep0_state
= WAIT_FOR_OUT_STATUS
;
1163 req
->req
.length
= 0;
1164 req
->req
.status
= -EINPROGRESS
;
1165 req
->req
.actual
= 0;
1166 req
->req
.complete
= NULL
;
1169 if (fsl_req_to_dtd(req
) == 0)
1170 fsl_queue_td(ep
, req
);
1174 list_add_tail(&req
->queue
, &ep
->queue
);
1179 static void udc_reset_ep_queue(struct fsl_udc
*udc
, u8 pipe
)
1181 struct fsl_ep
*ep
= get_ep_by_pipe(udc
, pipe
);
1184 nuke(ep
, -ESHUTDOWN
);
1190 static void ch9setaddress(struct fsl_udc
*udc
, u16 value
, u16 index
, u16 length
)
1192 /* Save the new address to device struct */
1193 udc
->device_address
= (u8
) value
;
1194 /* Update usb state */
1195 udc
->usb_state
= USB_STATE_ADDRESS
;
1197 if (ep0_prime_status(udc
, EP_DIR_IN
))
1204 static void ch9getstatus(struct fsl_udc
*udc
, u8 request_type
, u16 value
,
1205 u16 index
, u16 length
)
1207 u16 tmp
= 0; /* Status, cpu endian */
1208 struct fsl_req
*req
;
1213 if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_DEVICE
) {
1214 /* Get device status */
1215 tmp
= 1 << USB_DEVICE_SELF_POWERED
;
1216 tmp
|= udc
->remote_wakeup
<< USB_DEVICE_REMOTE_WAKEUP
;
1217 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_INTERFACE
) {
1218 /* Get interface status */
1219 /* We don't have interface information in udc driver */
1221 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_ENDPOINT
) {
1222 /* Get endpoint status */
1223 struct fsl_ep
*target_ep
;
1225 target_ep
= get_ep_by_pipe(udc
, get_pipe_by_windex(index
));
1227 /* stall if endpoint doesn't exist */
1228 if (!target_ep
->desc
)
1230 tmp
= dr_ep_get_stall(ep_index(target_ep
), ep_is_in(target_ep
))
1231 << USB_ENDPOINT_HALT
;
1234 udc
->ep0_dir
= USB_DIR_IN
;
1235 /* Borrow the per device status_req */
1236 req
= udc
->status_req
;
1237 /* Fill in the reqest structure */
1238 *((u16
*) req
->req
.buf
) = cpu_to_le16(tmp
);
1240 req
->req
.length
= 2;
1241 req
->req
.status
= -EINPROGRESS
;
1242 req
->req
.actual
= 0;
1243 req
->req
.complete
= NULL
;
1246 /* prime the data phase */
1247 if ((fsl_req_to_dtd(req
) == 0))
1248 fsl_queue_td(ep
, req
);
1252 list_add_tail(&req
->queue
, &ep
->queue
);
1253 udc
->ep0_state
= DATA_STATE_XMIT
;
1259 static void setup_received_irq(struct fsl_udc
*udc
,
1260 struct usb_ctrlrequest
*setup
)
1262 u16 wValue
= le16_to_cpu(setup
->wValue
);
1263 u16 wIndex
= le16_to_cpu(setup
->wIndex
);
1264 u16 wLength
= le16_to_cpu(setup
->wLength
);
1266 udc_reset_ep_queue(udc
, 0);
1268 /* We process some stardard setup requests here */
1269 switch (setup
->bRequest
) {
1270 case USB_REQ_GET_STATUS
:
1271 /* Data+Status phase from udc */
1272 if ((setup
->bRequestType
& (USB_DIR_IN
| USB_TYPE_MASK
))
1273 != (USB_DIR_IN
| USB_TYPE_STANDARD
))
1275 ch9getstatus(udc
, setup
->bRequestType
, wValue
, wIndex
, wLength
);
1278 case USB_REQ_SET_ADDRESS
:
1279 /* Status phase from udc */
1280 if (setup
->bRequestType
!= (USB_DIR_OUT
| USB_TYPE_STANDARD
1281 | USB_RECIP_DEVICE
))
1283 ch9setaddress(udc
, wValue
, wIndex
, wLength
);
1286 case USB_REQ_CLEAR_FEATURE
:
1287 case USB_REQ_SET_FEATURE
:
1288 /* Status phase from udc */
1290 int rc
= -EOPNOTSUPP
;
1292 if ((setup
->bRequestType
& (USB_RECIP_MASK
| USB_TYPE_MASK
))
1293 == (USB_RECIP_ENDPOINT
| USB_TYPE_STANDARD
)) {
1294 int pipe
= get_pipe_by_windex(wIndex
);
1297 if (wValue
!= 0 || wLength
!= 0 || pipe
> udc
->max_ep
)
1299 ep
= get_ep_by_pipe(udc
, pipe
);
1301 spin_unlock(&udc
->lock
);
1302 rc
= fsl_ep_set_halt(&ep
->ep
,
1303 (setup
->bRequest
== USB_REQ_SET_FEATURE
)
1305 spin_lock(&udc
->lock
);
1307 } else if ((setup
->bRequestType
& (USB_RECIP_MASK
1308 | USB_TYPE_MASK
)) == (USB_RECIP_DEVICE
1309 | USB_TYPE_STANDARD
)) {
1310 /* Note: The driver has not include OTG support yet.
1311 * This will be set when OTG support is added */
1312 if (!gadget_is_otg(&udc
->gadget
))
1314 else if (setup
->bRequest
== USB_DEVICE_B_HNP_ENABLE
)
1315 udc
->gadget
.b_hnp_enable
= 1;
1316 else if (setup
->bRequest
== USB_DEVICE_A_HNP_SUPPORT
)
1317 udc
->gadget
.a_hnp_support
= 1;
1318 else if (setup
->bRequest
==
1319 USB_DEVICE_A_ALT_HNP_SUPPORT
)
1320 udc
->gadget
.a_alt_hnp_support
= 1;
1328 if (ep0_prime_status(udc
, EP_DIR_IN
))
1338 /* Requests handled by gadget */
1340 /* Data phase from gadget, status phase from udc */
1341 udc
->ep0_dir
= (setup
->bRequestType
& USB_DIR_IN
)
1342 ? USB_DIR_IN
: USB_DIR_OUT
;
1343 spin_unlock(&udc
->lock
);
1344 if (udc
->driver
->setup(&udc
->gadget
,
1345 &udc
->local_setup_buff
) < 0)
1347 spin_lock(&udc
->lock
);
1348 udc
->ep0_state
= (setup
->bRequestType
& USB_DIR_IN
)
1349 ? DATA_STATE_XMIT
: DATA_STATE_RECV
;
1351 /* No data phase, IN status from gadget */
1352 udc
->ep0_dir
= USB_DIR_IN
;
1353 spin_unlock(&udc
->lock
);
1354 if (udc
->driver
->setup(&udc
->gadget
,
1355 &udc
->local_setup_buff
) < 0)
1357 spin_lock(&udc
->lock
);
1358 udc
->ep0_state
= WAIT_FOR_OUT_STATUS
;
1362 /* Process request for Data or Status phase of ep0
1363 * prime status phase if needed */
1364 static void ep0_req_complete(struct fsl_udc
*udc
, struct fsl_ep
*ep0
,
1365 struct fsl_req
*req
)
1367 if (udc
->usb_state
== USB_STATE_ADDRESS
) {
1368 /* Set the new address */
1369 u32 new_address
= (u32
) udc
->device_address
;
1370 fsl_writel(new_address
<< USB_DEVICE_ADDRESS_BIT_POS
,
1371 &dr_regs
->deviceaddr
);
1376 switch (udc
->ep0_state
) {
1377 case DATA_STATE_XMIT
:
1378 /* receive status phase */
1379 if (ep0_prime_status(udc
, EP_DIR_OUT
))
1382 case DATA_STATE_RECV
:
1383 /* send status phase */
1384 if (ep0_prime_status(udc
, EP_DIR_IN
))
1387 case WAIT_FOR_OUT_STATUS
:
1388 udc
->ep0_state
= WAIT_FOR_SETUP
;
1390 case WAIT_FOR_SETUP
:
1391 ERR("Unexpect ep0 packets\n");
1399 /* Tripwire mechanism to ensure a setup packet payload is extracted without
1400 * being corrupted by another incoming setup packet */
1401 static void tripwire_handler(struct fsl_udc
*udc
, u8 ep_num
, u8
*buffer_ptr
)
1404 struct ep_queue_head
*qh
;
1406 qh
= &udc
->ep_qh
[ep_num
* 2 + EP_DIR_OUT
];
1408 /* Clear bit in ENDPTSETUPSTAT */
1409 temp
= fsl_readl(&dr_regs
->endptsetupstat
);
1410 fsl_writel(temp
| (1 << ep_num
), &dr_regs
->endptsetupstat
);
1412 /* while a hazard exists when setup package arrives */
1414 /* Set Setup Tripwire */
1415 temp
= fsl_readl(&dr_regs
->usbcmd
);
1416 fsl_writel(temp
| USB_CMD_SUTW
, &dr_regs
->usbcmd
);
1418 /* Copy the setup packet to local buffer */
1419 memcpy(buffer_ptr
, (u8
*) qh
->setup_buffer
, 8);
1420 } while (!(fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_SUTW
));
1422 /* Clear Setup Tripwire */
1423 temp
= fsl_readl(&dr_regs
->usbcmd
);
1424 fsl_writel(temp
& ~USB_CMD_SUTW
, &dr_regs
->usbcmd
);
1427 /* process-ep_req(): free the completed Tds for this req */
1428 static int process_ep_req(struct fsl_udc
*udc
, int pipe
,
1429 struct fsl_req
*curr_req
)
1431 struct ep_td_struct
*curr_td
;
1432 int td_complete
, actual
, remaining_length
, j
, tmp
;
1435 struct ep_queue_head
*curr_qh
= &udc
->ep_qh
[pipe
];
1436 int direction
= pipe
% 2;
1438 curr_td
= curr_req
->head
;
1440 actual
= curr_req
->req
.length
;
1442 for (j
= 0; j
< curr_req
->dtd_count
; j
++) {
1443 remaining_length
= (le32_to_cpu(curr_td
->size_ioc_sts
)
1445 >> DTD_LENGTH_BIT_POS
;
1446 actual
-= remaining_length
;
1448 if ((errors
= le32_to_cpu(curr_td
->size_ioc_sts
) &
1450 if (errors
& DTD_STATUS_HALTED
) {
1451 ERR("dTD error %08x QH=%d\n", errors
, pipe
);
1452 /* Clear the errors and Halt condition */
1453 tmp
= le32_to_cpu(curr_qh
->size_ioc_int_sts
);
1455 curr_qh
->size_ioc_int_sts
= cpu_to_le32(tmp
);
1457 /* FIXME: continue with next queued TD? */
1461 if (errors
& DTD_STATUS_DATA_BUFF_ERR
) {
1462 VDBG("Transfer overflow");
1465 } else if (errors
& DTD_STATUS_TRANSACTION_ERR
) {
1470 ERR("Unknown error has occured (0x%x)!\n",
1473 } else if (le32_to_cpu(curr_td
->size_ioc_sts
)
1474 & DTD_STATUS_ACTIVE
) {
1475 VDBG("Request not complete");
1476 status
= REQ_UNCOMPLETE
;
1478 } else if (remaining_length
) {
1480 VDBG("Transmit dTD remaining length not zero");
1489 VDBG("dTD transmitted successful");
1492 if (j
!= curr_req
->dtd_count
- 1)
1493 curr_td
= (struct ep_td_struct
*)curr_td
->next_td_virt
;
1499 curr_req
->req
.actual
= actual
;
1504 /* Process a DTD completion interrupt */
1505 static void dtd_complete_irq(struct fsl_udc
*udc
)
1508 int i
, ep_num
, direction
, bit_mask
, status
;
1509 struct fsl_ep
*curr_ep
;
1510 struct fsl_req
*curr_req
, *temp_req
;
1512 /* Clear the bits in the register */
1513 bit_pos
= fsl_readl(&dr_regs
->endptcomplete
);
1514 fsl_writel(bit_pos
, &dr_regs
->endptcomplete
);
1519 for (i
= 0; i
< udc
->max_ep
* 2; i
++) {
1523 bit_mask
= 1 << (ep_num
+ 16 * direction
);
1525 if (!(bit_pos
& bit_mask
))
1528 curr_ep
= get_ep_by_pipe(udc
, i
);
1530 /* If the ep is configured */
1531 if (curr_ep
->name
== NULL
) {
1532 WARNING("Invalid EP?");
1536 /* process the req queue until an uncomplete request */
1537 list_for_each_entry_safe(curr_req
, temp_req
, &curr_ep
->queue
,
1539 status
= process_ep_req(udc
, i
, curr_req
);
1541 VDBG("status of process_ep_req= %d, ep = %d",
1543 if (status
== REQ_UNCOMPLETE
)
1545 /* write back status to req */
1546 curr_req
->req
.status
= status
;
1549 ep0_req_complete(udc
, curr_ep
, curr_req
);
1552 done(curr_ep
, curr_req
, status
);
1557 /* Process a port change interrupt */
1558 static void port_change_irq(struct fsl_udc
*udc
)
1562 /* Bus resetting is finished */
1563 if (!(fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_RESET
)) {
1565 speed
= (fsl_readl(&dr_regs
->portsc1
)
1566 & PORTSCX_PORT_SPEED_MASK
);
1568 case PORTSCX_PORT_SPEED_HIGH
:
1569 udc
->gadget
.speed
= USB_SPEED_HIGH
;
1571 case PORTSCX_PORT_SPEED_FULL
:
1572 udc
->gadget
.speed
= USB_SPEED_FULL
;
1574 case PORTSCX_PORT_SPEED_LOW
:
1575 udc
->gadget
.speed
= USB_SPEED_LOW
;
1578 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1583 /* Update USB state */
1584 if (!udc
->resume_state
)
1585 udc
->usb_state
= USB_STATE_DEFAULT
;
1588 /* Process suspend interrupt */
1589 static void suspend_irq(struct fsl_udc
*udc
)
1591 udc
->resume_state
= udc
->usb_state
;
1592 udc
->usb_state
= USB_STATE_SUSPENDED
;
1594 /* report suspend to the driver, serial.c does not support this */
1595 if (udc
->driver
->suspend
)
1596 udc
->driver
->suspend(&udc
->gadget
);
1599 static void bus_resume(struct fsl_udc
*udc
)
1601 udc
->usb_state
= udc
->resume_state
;
1602 udc
->resume_state
= 0;
1604 /* report resume to the driver, serial.c does not support this */
1605 if (udc
->driver
->resume
)
1606 udc
->driver
->resume(&udc
->gadget
);
1609 /* Clear up all ep queues */
1610 static int reset_queues(struct fsl_udc
*udc
)
1614 for (pipe
= 0; pipe
< udc
->max_pipes
; pipe
++)
1615 udc_reset_ep_queue(udc
, pipe
);
1617 /* report disconnect; the driver is already quiesced */
1618 spin_unlock(&udc
->lock
);
1619 udc
->driver
->disconnect(&udc
->gadget
);
1620 spin_lock(&udc
->lock
);
1625 /* Process reset interrupt */
1626 static void reset_irq(struct fsl_udc
*udc
)
1629 unsigned long timeout
;
1631 /* Clear the device address */
1632 temp
= fsl_readl(&dr_regs
->deviceaddr
);
1633 fsl_writel(temp
& ~USB_DEVICE_ADDRESS_MASK
, &dr_regs
->deviceaddr
);
1635 udc
->device_address
= 0;
1637 /* Clear usb state */
1638 udc
->resume_state
= 0;
1640 udc
->ep0_state
= WAIT_FOR_SETUP
;
1641 udc
->remote_wakeup
= 0; /* default to 0 on reset */
1642 udc
->gadget
.b_hnp_enable
= 0;
1643 udc
->gadget
.a_hnp_support
= 0;
1644 udc
->gadget
.a_alt_hnp_support
= 0;
1646 /* Clear all the setup token semaphores */
1647 temp
= fsl_readl(&dr_regs
->endptsetupstat
);
1648 fsl_writel(temp
, &dr_regs
->endptsetupstat
);
1650 /* Clear all the endpoint complete status bits */
1651 temp
= fsl_readl(&dr_regs
->endptcomplete
);
1652 fsl_writel(temp
, &dr_regs
->endptcomplete
);
1654 timeout
= jiffies
+ 100;
1655 while (fsl_readl(&dr_regs
->endpointprime
)) {
1656 /* Wait until all endptprime bits cleared */
1657 if (time_after(jiffies
, timeout
)) {
1658 ERR("Timeout for reset\n");
1664 /* Write 1s to the flush register */
1665 fsl_writel(0xffffffff, &dr_regs
->endptflush
);
1667 if (fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_RESET
) {
1669 /* Reset all the queues, include XD, dTD, EP queue
1670 * head and TR Queue */
1672 udc
->usb_state
= USB_STATE_DEFAULT
;
1674 VDBG("Controller reset");
1675 /* initialize usb hw reg except for regs for EP, not
1676 * touch usbintr reg */
1677 dr_controller_setup(udc
);
1679 /* Reset all internal used Queues */
1684 /* Enable DR IRQ reg, Set Run bit, change udc state */
1685 dr_controller_run(udc
);
1686 udc
->usb_state
= USB_STATE_ATTACHED
;
1691 * USB device controller interrupt handler
1693 static irqreturn_t
fsl_udc_irq(int irq
, void *_udc
)
1695 struct fsl_udc
*udc
= _udc
;
1697 irqreturn_t status
= IRQ_NONE
;
1698 unsigned long flags
;
1700 /* Disable ISR for OTG host mode */
1703 spin_lock_irqsave(&udc
->lock
, flags
);
1704 irq_src
= fsl_readl(&dr_regs
->usbsts
) & fsl_readl(&dr_regs
->usbintr
);
1705 /* Clear notification bits */
1706 fsl_writel(irq_src
, &dr_regs
->usbsts
);
1708 /* VDBG("irq_src [0x%8x]", irq_src); */
1710 /* Need to resume? */
1711 if (udc
->usb_state
== USB_STATE_SUSPENDED
)
1712 if ((fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_SUSPEND
) == 0)
1716 if (irq_src
& USB_STS_INT
) {
1718 /* Setup package, we only support ep0 as control ep */
1719 if (fsl_readl(&dr_regs
->endptsetupstat
) & EP_SETUP_STATUS_EP0
) {
1720 tripwire_handler(udc
, 0,
1721 (u8
*) (&udc
->local_setup_buff
));
1722 setup_received_irq(udc
, &udc
->local_setup_buff
);
1723 status
= IRQ_HANDLED
;
1726 /* completion of dtd */
1727 if (fsl_readl(&dr_regs
->endptcomplete
)) {
1728 dtd_complete_irq(udc
);
1729 status
= IRQ_HANDLED
;
1733 /* SOF (for ISO transfer) */
1734 if (irq_src
& USB_STS_SOF
) {
1735 status
= IRQ_HANDLED
;
1739 if (irq_src
& USB_STS_PORT_CHANGE
) {
1740 port_change_irq(udc
);
1741 status
= IRQ_HANDLED
;
1744 /* Reset Received */
1745 if (irq_src
& USB_STS_RESET
) {
1747 status
= IRQ_HANDLED
;
1750 /* Sleep Enable (Suspend) */
1751 if (irq_src
& USB_STS_SUSPEND
) {
1753 status
= IRQ_HANDLED
;
1756 if (irq_src
& (USB_STS_ERR
| USB_STS_SYS_ERR
)) {
1757 VDBG("Error IRQ %x", irq_src
);
1760 spin_unlock_irqrestore(&udc
->lock
, flags
);
1764 /*----------------------------------------------------------------*
1765 * Hook to gadget drivers
1766 * Called by initialization code of gadget drivers
1767 *----------------------------------------------------------------*/
1768 int usb_gadget_register_driver(struct usb_gadget_driver
*driver
)
1770 int retval
= -ENODEV
;
1771 unsigned long flags
= 0;
1773 if (!udc_controller
)
1776 if (!driver
|| (driver
->speed
!= USB_SPEED_FULL
1777 && driver
->speed
!= USB_SPEED_HIGH
)
1778 || !driver
->bind
|| !driver
->disconnect
1782 if (udc_controller
->driver
)
1785 /* lock is needed but whether should use this lock or another */
1786 spin_lock_irqsave(&udc_controller
->lock
, flags
);
1788 driver
->driver
.bus
= NULL
;
1789 /* hook up the driver */
1790 udc_controller
->driver
= driver
;
1791 udc_controller
->gadget
.dev
.driver
= &driver
->driver
;
1792 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
1794 /* bind udc driver to gadget driver */
1795 retval
= driver
->bind(&udc_controller
->gadget
);
1797 VDBG("bind to %s --> %d", driver
->driver
.name
, retval
);
1798 udc_controller
->gadget
.dev
.driver
= NULL
;
1799 udc_controller
->driver
= NULL
;
1803 /* Enable DR IRQ reg and Set usbcmd reg Run bit */
1804 dr_controller_run(udc_controller
);
1805 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
1806 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
1807 udc_controller
->ep0_dir
= 0;
1808 printk(KERN_INFO
"%s: bind to driver %s\n",
1809 udc_controller
->gadget
.name
, driver
->driver
.name
);
1813 printk(KERN_WARNING
"gadget driver register failed %d\n",
1817 EXPORT_SYMBOL(usb_gadget_register_driver
);
1819 /* Disconnect from gadget driver */
1820 int usb_gadget_unregister_driver(struct usb_gadget_driver
*driver
)
1822 struct fsl_ep
*loop_ep
;
1823 unsigned long flags
;
1825 if (!udc_controller
)
1828 if (!driver
|| driver
!= udc_controller
->driver
|| !driver
->unbind
)
1831 if (udc_controller
->transceiver
)
1832 otg_set_peripheral(udc_controller
->transceiver
, NULL
);
1834 /* stop DR, disable intr */
1835 dr_controller_stop(udc_controller
);
1837 /* in fact, no needed */
1838 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
1839 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
1840 udc_controller
->ep0_dir
= 0;
1842 /* stand operation */
1843 spin_lock_irqsave(&udc_controller
->lock
, flags
);
1844 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1845 nuke(&udc_controller
->eps
[0], -ESHUTDOWN
);
1846 list_for_each_entry(loop_ep
, &udc_controller
->gadget
.ep_list
,
1848 nuke(loop_ep
, -ESHUTDOWN
);
1849 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
1851 /* report disconnect; the controller is already quiesced */
1852 driver
->disconnect(&udc_controller
->gadget
);
1854 /* unbind gadget and unhook driver. */
1855 driver
->unbind(&udc_controller
->gadget
);
1856 udc_controller
->gadget
.dev
.driver
= NULL
;
1857 udc_controller
->driver
= NULL
;
1859 printk(KERN_WARNING
"unregistered gadget driver '%s'\n",
1860 driver
->driver
.name
);
1863 EXPORT_SYMBOL(usb_gadget_unregister_driver
);
1865 /*-------------------------------------------------------------------------
1866 PROC File System Support
1867 -------------------------------------------------------------------------*/
1868 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
1870 #include <linux/seq_file.h>
1872 static const char proc_filename
[] = "driver/fsl_usb2_udc";
1874 static int fsl_proc_read(char *page
, char **start
, off_t off
, int count
,
1875 int *eof
, void *_dev
)
1879 unsigned size
= count
;
1880 unsigned long flags
;
1883 struct fsl_ep
*ep
= NULL
;
1884 struct fsl_req
*req
;
1886 struct fsl_udc
*udc
= udc_controller
;
1890 spin_lock_irqsave(&udc
->lock
, flags
);
1892 /* ------basic driver information ---- */
1893 t
= scnprintf(next
, size
,
1896 "Gadget driver: %s\n\n",
1897 driver_name
, DRIVER_VERSION
,
1898 udc
->driver
? udc
->driver
->driver
.name
: "(none)");
1902 /* ------ DR Registers ----- */
1903 tmp_reg
= fsl_readl(&dr_regs
->usbcmd
);
1904 t
= scnprintf(next
, size
,
1908 (tmp_reg
& USB_CMD_SUTW
) ? 1 : 0,
1909 (tmp_reg
& USB_CMD_RUN_STOP
) ? "Run" : "Stop");
1913 tmp_reg
= fsl_readl(&dr_regs
->usbsts
);
1914 t
= scnprintf(next
, size
,
1916 "Dr Suspend: %d Reset Received: %d System Error: %s "
1917 "USB Error Interrupt: %s\n\n",
1918 (tmp_reg
& USB_STS_SUSPEND
) ? 1 : 0,
1919 (tmp_reg
& USB_STS_RESET
) ? 1 : 0,
1920 (tmp_reg
& USB_STS_SYS_ERR
) ? "Err" : "Normal",
1921 (tmp_reg
& USB_STS_ERR
) ? "Err detected" : "No err");
1925 tmp_reg
= fsl_readl(&dr_regs
->usbintr
);
1926 t
= scnprintf(next
, size
,
1927 "USB Intrrupt Enable Reg:\n"
1928 "Sleep Enable: %d SOF Received Enable: %d "
1929 "Reset Enable: %d\n"
1930 "System Error Enable: %d "
1931 "Port Change Dectected Enable: %d\n"
1932 "USB Error Intr Enable: %d USB Intr Enable: %d\n\n",
1933 (tmp_reg
& USB_INTR_DEVICE_SUSPEND
) ? 1 : 0,
1934 (tmp_reg
& USB_INTR_SOF_EN
) ? 1 : 0,
1935 (tmp_reg
& USB_INTR_RESET_EN
) ? 1 : 0,
1936 (tmp_reg
& USB_INTR_SYS_ERR_EN
) ? 1 : 0,
1937 (tmp_reg
& USB_INTR_PTC_DETECT_EN
) ? 1 : 0,
1938 (tmp_reg
& USB_INTR_ERR_INT_EN
) ? 1 : 0,
1939 (tmp_reg
& USB_INTR_INT_EN
) ? 1 : 0);
1943 tmp_reg
= fsl_readl(&dr_regs
->frindex
);
1944 t
= scnprintf(next
, size
,
1945 "USB Frame Index Reg: Frame Number is 0x%x\n\n",
1946 (tmp_reg
& USB_FRINDEX_MASKS
));
1950 tmp_reg
= fsl_readl(&dr_regs
->deviceaddr
);
1951 t
= scnprintf(next
, size
,
1952 "USB Device Address Reg: Device Addr is 0x%x\n\n",
1953 (tmp_reg
& USB_DEVICE_ADDRESS_MASK
));
1957 tmp_reg
= fsl_readl(&dr_regs
->endpointlistaddr
);
1958 t
= scnprintf(next
, size
,
1959 "USB Endpoint List Address Reg: "
1960 "Device Addr is 0x%x\n\n",
1961 (tmp_reg
& USB_EP_LIST_ADDRESS_MASK
));
1965 tmp_reg
= fsl_readl(&dr_regs
->portsc1
);
1966 t
= scnprintf(next
, size
,
1967 "USB Port Status&Control Reg:\n"
1968 "Port Transceiver Type : %s Port Speed: %s\n"
1969 "PHY Low Power Suspend: %s Port Reset: %s "
1970 "Port Suspend Mode: %s\n"
1971 "Over-current Change: %s "
1972 "Port Enable/Disable Change: %s\n"
1973 "Port Enabled/Disabled: %s "
1974 "Current Connect Status: %s\n\n", ( {
1976 switch (tmp_reg
& PORTSCX_PTS_FSLS
) {
1977 case PORTSCX_PTS_UTMI
:
1979 case PORTSCX_PTS_ULPI
:
1981 case PORTSCX_PTS_FSLS
:
1982 s
= "FS/LS Serial"; break;
1988 switch (tmp_reg
& PORTSCX_PORT_SPEED_UNDEF
) {
1989 case PORTSCX_PORT_SPEED_FULL
:
1990 s
= "Full Speed"; break;
1991 case PORTSCX_PORT_SPEED_LOW
:
1992 s
= "Low Speed"; break;
1993 case PORTSCX_PORT_SPEED_HIGH
:
1994 s
= "High Speed"; break;
1996 s
= "Undefined"; break;
2000 (tmp_reg
& PORTSCX_PHY_LOW_POWER_SPD
) ?
2001 "Normal PHY mode" : "Low power mode",
2002 (tmp_reg
& PORTSCX_PORT_RESET
) ? "In Reset" :
2004 (tmp_reg
& PORTSCX_PORT_SUSPEND
) ? "In " : "Not in",
2005 (tmp_reg
& PORTSCX_OVER_CURRENT_CHG
) ? "Dected" :
2007 (tmp_reg
& PORTSCX_PORT_EN_DIS_CHANGE
) ? "Disable" :
2009 (tmp_reg
& PORTSCX_PORT_ENABLE
) ? "Enable" :
2011 (tmp_reg
& PORTSCX_CURRENT_CONNECT_STATUS
) ?
2012 "Attached" : "Not-Att");
2016 tmp_reg
= fsl_readl(&dr_regs
->usbmode
);
2017 t
= scnprintf(next
, size
,
2018 "USB Mode Reg: Controller Mode is: %s\n\n", ( {
2020 switch (tmp_reg
& USB_MODE_CTRL_MODE_HOST
) {
2021 case USB_MODE_CTRL_MODE_IDLE
:
2023 case USB_MODE_CTRL_MODE_DEVICE
:
2024 s
= "Device Controller"; break;
2025 case USB_MODE_CTRL_MODE_HOST
:
2026 s
= "Host Controller"; break;
2035 tmp_reg
= fsl_readl(&dr_regs
->endptsetupstat
);
2036 t
= scnprintf(next
, size
,
2037 "Endpoint Setup Status Reg: SETUP on ep 0x%x\n\n",
2038 (tmp_reg
& EP_SETUP_STATUS_MASK
));
2042 for (i
= 0; i
< udc
->max_ep
/ 2; i
++) {
2043 tmp_reg
= fsl_readl(&dr_regs
->endptctrl
[i
]);
2044 t
= scnprintf(next
, size
, "EP Ctrl Reg [0x%x]: = [0x%x]\n",
2049 tmp_reg
= fsl_readl(&dr_regs
->endpointprime
);
2050 t
= scnprintf(next
, size
, "EP Prime Reg = [0x%x]\n\n", tmp_reg
);
2054 #ifndef CONFIG_ARCH_MXC
2055 tmp_reg
= usb_sys_regs
->snoop1
;
2056 t
= scnprintf(next
, size
, "Snoop1 Reg : = [0x%x]\n\n", tmp_reg
);
2060 tmp_reg
= usb_sys_regs
->control
;
2061 t
= scnprintf(next
, size
, "General Control Reg : = [0x%x]\n\n",
2067 /* ------fsl_udc, fsl_ep, fsl_request structure information ----- */
2069 t
= scnprintf(next
, size
, "For %s Maxpkt is 0x%x index is 0x%x\n",
2070 ep
->ep
.name
, ep_maxpacket(ep
), ep_index(ep
));
2074 if (list_empty(&ep
->queue
)) {
2075 t
= scnprintf(next
, size
, "its req queue is empty\n\n");
2079 list_for_each_entry(req
, &ep
->queue
, queue
) {
2080 t
= scnprintf(next
, size
,
2081 "req %p actual 0x%x length 0x%x buf %p\n",
2082 &req
->req
, req
->req
.actual
,
2083 req
->req
.length
, req
->req
.buf
);
2088 /* other gadget->eplist ep */
2089 list_for_each_entry(ep
, &udc
->gadget
.ep_list
, ep
.ep_list
) {
2091 t
= scnprintf(next
, size
,
2092 "\nFor %s Maxpkt is 0x%x "
2094 ep
->ep
.name
, ep_maxpacket(ep
),
2099 if (list_empty(&ep
->queue
)) {
2100 t
= scnprintf(next
, size
,
2101 "its req queue is empty\n\n");
2105 list_for_each_entry(req
, &ep
->queue
, queue
) {
2106 t
= scnprintf(next
, size
,
2107 "req %p actual 0x%x length "
2109 &req
->req
, req
->req
.actual
,
2110 req
->req
.length
, req
->req
.buf
);
2113 } /* end for each_entry of ep req */
2114 } /* end for else */
2115 } /* end for if(ep->queue) */
2116 } /* end (ep->desc) */
2118 spin_unlock_irqrestore(&udc
->lock
, flags
);
2121 return count
- size
;
2124 #define create_proc_file() create_proc_read_entry(proc_filename, \
2125 0, NULL, fsl_proc_read, NULL)
2127 #define remove_proc_file() remove_proc_entry(proc_filename, NULL)
2129 #else /* !CONFIG_USB_GADGET_DEBUG_FILES */
2131 #define create_proc_file() do {} while (0)
2132 #define remove_proc_file() do {} while (0)
2134 #endif /* CONFIG_USB_GADGET_DEBUG_FILES */
2136 /*-------------------------------------------------------------------------*/
2138 /* Release udc structures */
2139 static void fsl_udc_release(struct device
*dev
)
2141 complete(udc_controller
->done
);
2142 dma_free_coherent(dev
, udc_controller
->ep_qh_size
,
2143 udc_controller
->ep_qh
, udc_controller
->ep_qh_dma
);
2144 kfree(udc_controller
);
2147 /******************************************************************
2148 Internal structure setup functions
2149 *******************************************************************/
2150 /*------------------------------------------------------------------
2151 * init resource for globle controller
2152 * Return the udc handle on success or NULL on failure
2153 ------------------------------------------------------------------*/
2154 static int __init
struct_udc_setup(struct fsl_udc
*udc
,
2155 struct platform_device
*pdev
)
2157 struct fsl_usb2_platform_data
*pdata
;
2160 pdata
= pdev
->dev
.platform_data
;
2161 udc
->phy_mode
= pdata
->phy_mode
;
2163 udc
->eps
= kzalloc(sizeof(struct fsl_ep
) * udc
->max_ep
, GFP_KERNEL
);
2165 ERR("malloc fsl_ep failed\n");
2169 /* initialized QHs, take care of alignment */
2170 size
= udc
->max_ep
* sizeof(struct ep_queue_head
);
2171 if (size
< QH_ALIGNMENT
)
2172 size
= QH_ALIGNMENT
;
2173 else if ((size
% QH_ALIGNMENT
) != 0) {
2174 size
+= QH_ALIGNMENT
+ 1;
2175 size
&= ~(QH_ALIGNMENT
- 1);
2177 udc
->ep_qh
= dma_alloc_coherent(&pdev
->dev
, size
,
2178 &udc
->ep_qh_dma
, GFP_KERNEL
);
2180 ERR("malloc QHs for udc failed\n");
2185 udc
->ep_qh_size
= size
;
2187 /* Initialize ep0 status request structure */
2188 /* FIXME: fsl_alloc_request() ignores ep argument */
2189 udc
->status_req
= container_of(fsl_alloc_request(NULL
, GFP_KERNEL
),
2190 struct fsl_req
, req
);
2191 /* allocate a small amount of memory to get valid address */
2192 udc
->status_req
->req
.buf
= kmalloc(8, GFP_KERNEL
);
2193 udc
->status_req
->req
.dma
= virt_to_phys(udc
->status_req
->req
.buf
);
2195 udc
->resume_state
= USB_STATE_NOTATTACHED
;
2196 udc
->usb_state
= USB_STATE_POWERED
;
2198 udc
->remote_wakeup
= 0; /* default to 0 on reset */
2203 /*----------------------------------------------------------------
2204 * Setup the fsl_ep struct for eps
2205 * Link fsl_ep->ep to gadget->ep_list
2206 * ep0out is not used so do nothing here
2207 * ep0in should be taken care
2208 *--------------------------------------------------------------*/
2209 static int __init
struct_ep_setup(struct fsl_udc
*udc
, unsigned char index
,
2210 char *name
, int link
)
2212 struct fsl_ep
*ep
= &udc
->eps
[index
];
2215 strcpy(ep
->name
, name
);
2216 ep
->ep
.name
= ep
->name
;
2218 ep
->ep
.ops
= &fsl_ep_ops
;
2221 /* for ep0: maxP defined in desc
2222 * for other eps, maxP is set by epautoconfig() called by gadget layer
2224 ep
->ep
.maxpacket
= (unsigned short) ~0;
2226 /* the queue lists any req for this ep */
2227 INIT_LIST_HEAD(&ep
->queue
);
2229 /* gagdet.ep_list used for ep_autoconfig so no ep0 */
2231 list_add_tail(&ep
->ep
.ep_list
, &udc
->gadget
.ep_list
);
2232 ep
->gadget
= &udc
->gadget
;
2233 ep
->qh
= &udc
->ep_qh
[index
];
2238 /* Driver probe function
2239 * all intialization operations implemented here except enabling usb_intr reg
2240 * board setup should have been done in the platform code
2242 static int __init
fsl_udc_probe(struct platform_device
*pdev
)
2244 struct resource
*res
;
2249 if (strcmp(pdev
->name
, driver_name
)) {
2250 VDBG("Wrong device");
2254 udc_controller
= kzalloc(sizeof(struct fsl_udc
), GFP_KERNEL
);
2255 if (udc_controller
== NULL
) {
2256 ERR("malloc udc failed\n");
2260 spin_lock_init(&udc_controller
->lock
);
2261 udc_controller
->stopped
= 1;
2263 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2269 if (!request_mem_region(res
->start
, res
->end
- res
->start
+ 1,
2271 ERR("request mem region for %s failed\n", pdev
->name
);
2276 dr_regs
= ioremap(res
->start
, resource_size(res
));
2279 goto err_release_mem_region
;
2282 #ifndef CONFIG_ARCH_MXC
2283 usb_sys_regs
= (struct usb_sys_interface
*)
2284 ((u32
)dr_regs
+ USB_DR_SYS_OFFSET
);
2287 /* Initialize USB clocks */
2288 ret
= fsl_udc_clk_init(pdev
);
2290 goto err_iounmap_noclk
;
2292 /* Read Device Controller Capability Parameters register */
2293 dccparams
= fsl_readl(&dr_regs
->dccparams
);
2294 if (!(dccparams
& DCCPARAMS_DC
)) {
2295 ERR("This SOC doesn't support device role\n");
2299 /* Get max device endpoints */
2300 /* DEN is bidirectional ep number, max_ep doubles the number */
2301 udc_controller
->max_ep
= (dccparams
& DCCPARAMS_DEN_MASK
) * 2;
2303 udc_controller
->irq
= platform_get_irq(pdev
, 0);
2304 if (!udc_controller
->irq
) {
2309 ret
= request_irq(udc_controller
->irq
, fsl_udc_irq
, IRQF_SHARED
,
2310 driver_name
, udc_controller
);
2312 ERR("cannot request irq %d err %d\n",
2313 udc_controller
->irq
, ret
);
2317 /* Initialize the udc structure including QH member and other member */
2318 if (struct_udc_setup(udc_controller
, pdev
)) {
2319 ERR("Can't initialize udc data structure\n");
2324 /* initialize usb hw reg except for regs for EP,
2325 * leave usbintr reg untouched */
2326 dr_controller_setup(udc_controller
);
2328 fsl_udc_clk_finalize(pdev
);
2330 /* Setup gadget structure */
2331 udc_controller
->gadget
.ops
= &fsl_gadget_ops
;
2332 udc_controller
->gadget
.is_dualspeed
= 1;
2333 udc_controller
->gadget
.ep0
= &udc_controller
->eps
[0].ep
;
2334 INIT_LIST_HEAD(&udc_controller
->gadget
.ep_list
);
2335 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2336 udc_controller
->gadget
.name
= driver_name
;
2338 /* Setup gadget.dev and register with kernel */
2339 dev_set_name(&udc_controller
->gadget
.dev
, "gadget");
2340 udc_controller
->gadget
.dev
.release
= fsl_udc_release
;
2341 udc_controller
->gadget
.dev
.parent
= &pdev
->dev
;
2342 ret
= device_register(&udc_controller
->gadget
.dev
);
2346 /* setup QH and epctrl for ep0 */
2347 ep0_setup(udc_controller
);
2349 /* setup udc->eps[] for ep0 */
2350 struct_ep_setup(udc_controller
, 0, "ep0", 0);
2351 /* for ep0: the desc defined here;
2352 * for other eps, gadget layer called ep_enable with defined desc
2354 udc_controller
->eps
[0].desc
= &fsl_ep0_desc
;
2355 udc_controller
->eps
[0].ep
.maxpacket
= USB_MAX_CTRL_PAYLOAD
;
2357 /* setup the udc->eps[] for non-control endpoints and link
2358 * to gadget.ep_list */
2359 for (i
= 1; i
< (int)(udc_controller
->max_ep
/ 2); i
++) {
2362 sprintf(name
, "ep%dout", i
);
2363 struct_ep_setup(udc_controller
, i
* 2, name
, 1);
2364 sprintf(name
, "ep%din", i
);
2365 struct_ep_setup(udc_controller
, i
* 2 + 1, name
, 1);
2368 /* use dma_pool for TD management */
2369 udc_controller
->td_pool
= dma_pool_create("udc_td", &pdev
->dev
,
2370 sizeof(struct ep_td_struct
),
2371 DTD_ALIGNMENT
, UDC_DMA_BOUNDARY
);
2372 if (udc_controller
->td_pool
== NULL
) {
2374 goto err_unregister
;
2380 device_unregister(&udc_controller
->gadget
.dev
);
2382 free_irq(udc_controller
->irq
, udc_controller
);
2384 fsl_udc_clk_release();
2387 err_release_mem_region
:
2388 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2390 kfree(udc_controller
);
2391 udc_controller
= NULL
;
2395 /* Driver removal function
2396 * Free resources and finish pending transactions
2398 static int __exit
fsl_udc_remove(struct platform_device
*pdev
)
2400 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2402 DECLARE_COMPLETION(done
);
2404 if (!udc_controller
)
2406 udc_controller
->done
= &done
;
2408 fsl_udc_clk_release();
2410 /* DR has been stopped in usb_gadget_unregister_driver() */
2413 /* Free allocated memory */
2414 kfree(udc_controller
->status_req
->req
.buf
);
2415 kfree(udc_controller
->status_req
);
2416 kfree(udc_controller
->eps
);
2418 dma_pool_destroy(udc_controller
->td_pool
);
2419 free_irq(udc_controller
->irq
, udc_controller
);
2421 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2423 device_unregister(&udc_controller
->gadget
.dev
);
2424 /* free udc --wait for the release() finished */
2425 wait_for_completion(&done
);
2430 /*-----------------------------------------------------------------
2431 * Modify Power management attributes
2432 * Used by OTG statemachine to disable gadget temporarily
2433 -----------------------------------------------------------------*/
2434 static int fsl_udc_suspend(struct platform_device
*pdev
, pm_message_t state
)
2436 dr_controller_stop(udc_controller
);
2440 /*-----------------------------------------------------------------
2441 * Invoked on USB resume. May be called in_interrupt.
2442 * Here we start the DR controller and enable the irq
2443 *-----------------------------------------------------------------*/
2444 static int fsl_udc_resume(struct platform_device
*pdev
)
2446 /* Enable DR irq reg and set controller Run */
2447 if (udc_controller
->stopped
) {
2448 dr_controller_setup(udc_controller
);
2449 dr_controller_run(udc_controller
);
2451 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
2452 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
2453 udc_controller
->ep0_dir
= 0;
2457 /*-------------------------------------------------------------------------
2458 Register entry point for the peripheral controller driver
2459 --------------------------------------------------------------------------*/
2461 static struct platform_driver udc_driver
= {
2462 .remove
= __exit_p(fsl_udc_remove
),
2463 /* these suspend and resume are not usb suspend and resume */
2464 .suspend
= fsl_udc_suspend
,
2465 .resume
= fsl_udc_resume
,
2467 .name
= (char *)driver_name
,
2468 .owner
= THIS_MODULE
,
2472 static int __init
udc_init(void)
2474 printk(KERN_INFO
"%s (%s)\n", driver_desc
, DRIVER_VERSION
);
2475 return platform_driver_probe(&udc_driver
, fsl_udc_probe
);
2478 module_init(udc_init
);
2480 static void __exit
udc_exit(void)
2482 platform_driver_unregister(&udc_driver
);
2483 printk(KERN_WARNING
"%s unregistered\n", driver_desc
);
2486 module_exit(udc_exit
);
2488 MODULE_DESCRIPTION(DRIVER_DESC
);
2489 MODULE_AUTHOR(DRIVER_AUTHOR
);
2490 MODULE_LICENSE("GPL");
2491 MODULE_ALIAS("platform:fsl-usb2-udc");