2 * Copyright (C) 2004-2007,2011 Freescale Semiconductor, Inc.
5 * Author: Li Yang <leoli@freescale.com>
6 * Jiang Bo <tanya.jiang@freescale.com>
9 * Freescale high-speed USB SOC DR module device controller driver.
10 * This can be found on MPC8349E/MPC8313E/MPC5121E cpus.
11 * The driver is previously named as mpc_udc. Based on bare board
12 * code from Dave Liu and Shlomi Gridish.
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/ioport.h>
25 #include <linux/types.h>
26 #include <linux/errno.h>
27 #include <linux/slab.h>
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/interrupt.h>
31 #include <linux/proc_fs.h>
33 #include <linux/moduleparam.h>
34 #include <linux/device.h>
35 #include <linux/usb/ch9.h>
36 #include <linux/usb/gadget.h>
37 #include <linux/usb/otg.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/platform_device.h>
40 #include <linux/fsl_devices.h>
41 #include <linux/dmapool.h>
42 #include <linux/delay.h>
44 #include <asm/byteorder.h>
46 #include <asm/system.h>
47 #include <asm/unaligned.h>
50 #include "fsl_usb2_udc.h"
52 #define DRIVER_DESC "Freescale High-Speed USB SOC Device Controller driver"
53 #define DRIVER_AUTHOR "Li Yang/Jiang Bo"
54 #define DRIVER_VERSION "Apr 20, 2007"
56 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
58 static const char driver_name
[] = "fsl-usb2-udc";
59 static const char driver_desc
[] = DRIVER_DESC
;
61 static struct usb_dr_device
*dr_regs
;
62 #ifndef CONFIG_ARCH_MXC
63 static struct usb_sys_interface
*usb_sys_regs
;
66 /* it is initialized in probe() */
67 static struct fsl_udc
*udc_controller
= NULL
;
69 static const struct usb_endpoint_descriptor
71 .bLength
= USB_DT_ENDPOINT_SIZE
,
72 .bDescriptorType
= USB_DT_ENDPOINT
,
73 .bEndpointAddress
= 0,
74 .bmAttributes
= USB_ENDPOINT_XFER_CONTROL
,
75 .wMaxPacketSize
= USB_MAX_CTRL_PAYLOAD
,
78 static void fsl_ep_fifo_flush(struct usb_ep
*_ep
);
82 * On some SoCs, the USB controller registers can be big or little endian,
83 * depending on the version of the chip. In order to be able to run the
84 * same kernel binary on 2 different versions of an SoC, the BE/LE decision
85 * must be made at run time. _fsl_readl and fsl_writel are pointers to the
86 * BE or LE readl() and writel() functions, and fsl_readl() and fsl_writel()
87 * call through those pointers. Platform code for SoCs that have BE USB
88 * registers should set pdata->big_endian_mmio flag.
90 * This also applies to controller-to-cpu accessors for the USB descriptors,
91 * since their endianness is also SoC dependant. Platform code for SoCs that
92 * have BE USB descriptors should set pdata->big_endian_desc flag.
94 static u32
_fsl_readl_be(const unsigned __iomem
*p
)
99 static u32
_fsl_readl_le(const unsigned __iomem
*p
)
104 static void _fsl_writel_be(u32 v
, unsigned __iomem
*p
)
109 static void _fsl_writel_le(u32 v
, unsigned __iomem
*p
)
114 static u32 (*_fsl_readl
)(const unsigned __iomem
*p
);
115 static void (*_fsl_writel
)(u32 v
, unsigned __iomem
*p
);
117 #define fsl_readl(p) (*_fsl_readl)((p))
118 #define fsl_writel(v, p) (*_fsl_writel)((v), (p))
120 static inline void fsl_set_accessors(struct fsl_usb2_platform_data
*pdata
)
122 if (pdata
->big_endian_mmio
) {
123 _fsl_readl
= _fsl_readl_be
;
124 _fsl_writel
= _fsl_writel_be
;
126 _fsl_readl
= _fsl_readl_le
;
127 _fsl_writel
= _fsl_writel_le
;
131 static inline u32
cpu_to_hc32(const u32 x
)
133 return udc_controller
->pdata
->big_endian_desc
134 ? (__force u32
)cpu_to_be32(x
)
135 : (__force u32
)cpu_to_le32(x
);
138 static inline u32
hc32_to_cpu(const u32 x
)
140 return udc_controller
->pdata
->big_endian_desc
141 ? be32_to_cpu((__force __be32
)x
)
142 : le32_to_cpu((__force __le32
)x
);
144 #else /* !CONFIG_PPC32 */
145 static inline void fsl_set_accessors(struct fsl_usb2_platform_data
*pdata
) {}
147 #define fsl_readl(addr) readl(addr)
148 #define fsl_writel(val32, addr) writel(val32, addr)
149 #define cpu_to_hc32(x) cpu_to_le32(x)
150 #define hc32_to_cpu(x) le32_to_cpu(x)
151 #endif /* CONFIG_PPC32 */
153 /********************************************************************
154 * Internal Used Function
155 ********************************************************************/
156 /*-----------------------------------------------------------------
157 * done() - retire a request; caller blocked irqs
158 * @status : request status to be set, only works when
159 * request is still in progress.
160 *--------------------------------------------------------------*/
161 static void done(struct fsl_ep
*ep
, struct fsl_req
*req
, int status
)
163 struct fsl_udc
*udc
= NULL
;
164 unsigned char stopped
= ep
->stopped
;
165 struct ep_td_struct
*curr_td
, *next_td
;
168 udc
= (struct fsl_udc
*)ep
->udc
;
169 /* Removed the req from fsl_ep->queue */
170 list_del_init(&req
->queue
);
172 /* req.status should be set as -EINPROGRESS in ep_queue() */
173 if (req
->req
.status
== -EINPROGRESS
)
174 req
->req
.status
= status
;
176 status
= req
->req
.status
;
178 /* Free dtd for the request */
180 for (j
= 0; j
< req
->dtd_count
; j
++) {
182 if (j
!= req
->dtd_count
- 1) {
183 next_td
= curr_td
->next_td_virt
;
185 dma_pool_free(udc
->td_pool
, curr_td
, curr_td
->td_dma
);
189 dma_unmap_single(ep
->udc
->gadget
.dev
.parent
,
190 req
->req
.dma
, req
->req
.length
,
194 req
->req
.dma
= DMA_ADDR_INVALID
;
197 dma_sync_single_for_cpu(ep
->udc
->gadget
.dev
.parent
,
198 req
->req
.dma
, req
->req
.length
,
203 if (status
&& (status
!= -ESHUTDOWN
))
204 VDBG("complete %s req %p stat %d len %u/%u",
205 ep
->ep
.name
, &req
->req
, status
,
206 req
->req
.actual
, req
->req
.length
);
210 spin_unlock(&ep
->udc
->lock
);
211 /* complete() is from gadget layer,
212 * eg fsg->bulk_in_complete() */
213 if (req
->req
.complete
)
214 req
->req
.complete(&ep
->ep
, &req
->req
);
216 spin_lock(&ep
->udc
->lock
);
217 ep
->stopped
= stopped
;
220 /*-----------------------------------------------------------------
221 * nuke(): delete all requests related to this ep
222 * called with spinlock held
223 *--------------------------------------------------------------*/
224 static void nuke(struct fsl_ep
*ep
, int status
)
229 fsl_ep_fifo_flush(&ep
->ep
);
231 /* Whether this eq has request linked */
232 while (!list_empty(&ep
->queue
)) {
233 struct fsl_req
*req
= NULL
;
235 req
= list_entry(ep
->queue
.next
, struct fsl_req
, queue
);
236 done(ep
, req
, status
);
240 /*------------------------------------------------------------------
241 Internal Hardware related function
242 ------------------------------------------------------------------*/
244 static int dr_controller_setup(struct fsl_udc
*udc
)
246 unsigned int tmp
, portctrl
, ep_num
;
247 unsigned int max_no_of_ep
;
248 #ifndef CONFIG_ARCH_MXC
251 unsigned long timeout
;
252 #define FSL_UDC_RESET_TIMEOUT 1000
254 /* Config PHY interface */
255 portctrl
= fsl_readl(&dr_regs
->portsc1
);
256 portctrl
&= ~(PORTSCX_PHY_TYPE_SEL
| PORTSCX_PORT_WIDTH
);
257 switch (udc
->phy_mode
) {
258 case FSL_USB2_PHY_ULPI
:
259 portctrl
|= PORTSCX_PTS_ULPI
;
261 case FSL_USB2_PHY_UTMI_WIDE
:
262 portctrl
|= PORTSCX_PTW_16BIT
;
264 case FSL_USB2_PHY_UTMI
:
265 portctrl
|= PORTSCX_PTS_UTMI
;
267 case FSL_USB2_PHY_SERIAL
:
268 portctrl
|= PORTSCX_PTS_FSLS
;
273 fsl_writel(portctrl
, &dr_regs
->portsc1
);
275 /* Stop and reset the usb controller */
276 tmp
= fsl_readl(&dr_regs
->usbcmd
);
277 tmp
&= ~USB_CMD_RUN_STOP
;
278 fsl_writel(tmp
, &dr_regs
->usbcmd
);
280 tmp
= fsl_readl(&dr_regs
->usbcmd
);
281 tmp
|= USB_CMD_CTRL_RESET
;
282 fsl_writel(tmp
, &dr_regs
->usbcmd
);
284 /* Wait for reset to complete */
285 timeout
= jiffies
+ FSL_UDC_RESET_TIMEOUT
;
286 while (fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_CTRL_RESET
) {
287 if (time_after(jiffies
, timeout
)) {
288 ERR("udc reset timeout!\n");
294 /* Set the controller as device mode */
295 tmp
= fsl_readl(&dr_regs
->usbmode
);
296 tmp
&= ~USB_MODE_CTRL_MODE_MASK
; /* clear mode bits */
297 tmp
|= USB_MODE_CTRL_MODE_DEVICE
;
298 /* Disable Setup Lockout */
299 tmp
|= USB_MODE_SETUP_LOCK_OFF
;
302 fsl_writel(tmp
, &dr_regs
->usbmode
);
304 /* Clear the setup status */
305 fsl_writel(0, &dr_regs
->usbsts
);
307 tmp
= udc
->ep_qh_dma
;
308 tmp
&= USB_EP_LIST_ADDRESS_MASK
;
309 fsl_writel(tmp
, &dr_regs
->endpointlistaddr
);
311 VDBG("vir[qh_base] is %p phy[qh_base] is 0x%8x reg is 0x%8x",
312 udc
->ep_qh
, (int)tmp
,
313 fsl_readl(&dr_regs
->endpointlistaddr
));
315 max_no_of_ep
= (0x0000001F & fsl_readl(&dr_regs
->dccparams
));
316 for (ep_num
= 1; ep_num
< max_no_of_ep
; ep_num
++) {
317 tmp
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
318 tmp
&= ~(EPCTRL_TX_TYPE
| EPCTRL_RX_TYPE
);
319 tmp
|= (EPCTRL_EP_TYPE_BULK
<< EPCTRL_TX_EP_TYPE_SHIFT
)
320 | (EPCTRL_EP_TYPE_BULK
<< EPCTRL_RX_EP_TYPE_SHIFT
);
321 fsl_writel(tmp
, &dr_regs
->endptctrl
[ep_num
]);
323 /* Config control enable i/o output, cpu endian register */
324 #ifndef CONFIG_ARCH_MXC
325 if (udc
->pdata
->have_sysif_regs
) {
326 ctrl
= __raw_readl(&usb_sys_regs
->control
);
327 ctrl
|= USB_CTRL_IOENB
;
328 __raw_writel(ctrl
, &usb_sys_regs
->control
);
332 #if defined(CONFIG_PPC32) && !defined(CONFIG_NOT_COHERENT_CACHE)
333 /* Turn on cache snooping hardware, since some PowerPC platforms
334 * wholly rely on hardware to deal with cache coherent. */
336 if (udc
->pdata
->have_sysif_regs
) {
337 /* Setup Snooping for all the 4GB space */
338 tmp
= SNOOP_SIZE_2GB
; /* starts from 0x0, size 2G */
339 __raw_writel(tmp
, &usb_sys_regs
->snoop1
);
340 tmp
|= 0x80000000; /* starts from 0x8000000, size 2G */
341 __raw_writel(tmp
, &usb_sys_regs
->snoop2
);
348 /* Enable DR irq and set controller to run state */
349 static void dr_controller_run(struct fsl_udc
*udc
)
353 /* Enable DR irq reg */
354 temp
= USB_INTR_INT_EN
| USB_INTR_ERR_INT_EN
355 | USB_INTR_PTC_DETECT_EN
| USB_INTR_RESET_EN
356 | USB_INTR_DEVICE_SUSPEND
| USB_INTR_SYS_ERR_EN
;
358 fsl_writel(temp
, &dr_regs
->usbintr
);
360 /* Clear stopped bit */
363 /* Set the controller as device mode */
364 temp
= fsl_readl(&dr_regs
->usbmode
);
365 temp
|= USB_MODE_CTRL_MODE_DEVICE
;
366 fsl_writel(temp
, &dr_regs
->usbmode
);
368 /* Set controller to Run */
369 temp
= fsl_readl(&dr_regs
->usbcmd
);
370 temp
|= USB_CMD_RUN_STOP
;
371 fsl_writel(temp
, &dr_regs
->usbcmd
);
374 static void dr_controller_stop(struct fsl_udc
*udc
)
378 pr_debug("%s\n", __func__
);
380 /* if we're in OTG mode, and the Host is currently using the port,
381 * stop now and don't rip the controller out from under the
384 if (udc
->gadget
.is_otg
) {
385 if (!(fsl_readl(&dr_regs
->otgsc
) & OTGSC_STS_USB_ID
)) {
386 pr_debug("udc: Leaving early\n");
391 /* disable all INTR */
392 fsl_writel(0, &dr_regs
->usbintr
);
394 /* Set stopped bit for isr */
397 /* disable IO output */
398 /* usb_sys_regs->control = 0; */
400 /* set controller to Stop */
401 tmp
= fsl_readl(&dr_regs
->usbcmd
);
402 tmp
&= ~USB_CMD_RUN_STOP
;
403 fsl_writel(tmp
, &dr_regs
->usbcmd
);
406 static void dr_ep_setup(unsigned char ep_num
, unsigned char dir
,
407 unsigned char ep_type
)
409 unsigned int tmp_epctrl
= 0;
411 tmp_epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
414 tmp_epctrl
|= EPCTRL_TX_DATA_TOGGLE_RST
;
415 tmp_epctrl
|= EPCTRL_TX_ENABLE
;
416 tmp_epctrl
&= ~EPCTRL_TX_TYPE
;
417 tmp_epctrl
|= ((unsigned int)(ep_type
)
418 << EPCTRL_TX_EP_TYPE_SHIFT
);
421 tmp_epctrl
|= EPCTRL_RX_DATA_TOGGLE_RST
;
422 tmp_epctrl
|= EPCTRL_RX_ENABLE
;
423 tmp_epctrl
&= ~EPCTRL_RX_TYPE
;
424 tmp_epctrl
|= ((unsigned int)(ep_type
)
425 << EPCTRL_RX_EP_TYPE_SHIFT
);
428 fsl_writel(tmp_epctrl
, &dr_regs
->endptctrl
[ep_num
]);
432 dr_ep_change_stall(unsigned char ep_num
, unsigned char dir
, int value
)
436 tmp_epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
439 /* set the stall bit */
441 tmp_epctrl
|= EPCTRL_TX_EP_STALL
;
443 tmp_epctrl
|= EPCTRL_RX_EP_STALL
;
445 /* clear the stall bit and reset data toggle */
447 tmp_epctrl
&= ~EPCTRL_TX_EP_STALL
;
448 tmp_epctrl
|= EPCTRL_TX_DATA_TOGGLE_RST
;
450 tmp_epctrl
&= ~EPCTRL_RX_EP_STALL
;
451 tmp_epctrl
|= EPCTRL_RX_DATA_TOGGLE_RST
;
454 fsl_writel(tmp_epctrl
, &dr_regs
->endptctrl
[ep_num
]);
457 /* Get stall status of a specific ep
458 Return: 0: not stalled; 1:stalled */
459 static int dr_ep_get_stall(unsigned char ep_num
, unsigned char dir
)
463 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
465 return (epctrl
& EPCTRL_TX_EP_STALL
) ? 1 : 0;
467 return (epctrl
& EPCTRL_RX_EP_STALL
) ? 1 : 0;
470 /********************************************************************
471 Internal Structure Build up functions
472 ********************************************************************/
474 /*------------------------------------------------------------------
475 * struct_ep_qh_setup(): set the Endpoint Capabilites field of QH
476 * @zlt: Zero Length Termination Select (1: disable; 0: enable)
478 ------------------------------------------------------------------*/
479 static void struct_ep_qh_setup(struct fsl_udc
*udc
, unsigned char ep_num
,
480 unsigned char dir
, unsigned char ep_type
,
481 unsigned int max_pkt_len
,
482 unsigned int zlt
, unsigned char mult
)
484 struct ep_queue_head
*p_QH
= &udc
->ep_qh
[2 * ep_num
+ dir
];
485 unsigned int tmp
= 0;
487 /* set the Endpoint Capabilites in QH */
489 case USB_ENDPOINT_XFER_CONTROL
:
490 /* Interrupt On Setup (IOS). for control ep */
491 tmp
= (max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
)
494 case USB_ENDPOINT_XFER_ISOC
:
495 tmp
= (max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
)
496 | (mult
<< EP_QUEUE_HEAD_MULT_POS
);
498 case USB_ENDPOINT_XFER_BULK
:
499 case USB_ENDPOINT_XFER_INT
:
500 tmp
= max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
;
503 VDBG("error ep type is %d", ep_type
);
507 tmp
|= EP_QUEUE_HEAD_ZLT_SEL
;
509 p_QH
->max_pkt_length
= cpu_to_hc32(tmp
);
510 p_QH
->next_dtd_ptr
= 1;
511 p_QH
->size_ioc_int_sts
= 0;
514 /* Setup qh structure and ep register for ep0. */
515 static void ep0_setup(struct fsl_udc
*udc
)
517 /* the intialization of an ep includes: fields in QH, Regs,
519 struct_ep_qh_setup(udc
, 0, USB_RECV
, USB_ENDPOINT_XFER_CONTROL
,
520 USB_MAX_CTRL_PAYLOAD
, 0, 0);
521 struct_ep_qh_setup(udc
, 0, USB_SEND
, USB_ENDPOINT_XFER_CONTROL
,
522 USB_MAX_CTRL_PAYLOAD
, 0, 0);
523 dr_ep_setup(0, USB_RECV
, USB_ENDPOINT_XFER_CONTROL
);
524 dr_ep_setup(0, USB_SEND
, USB_ENDPOINT_XFER_CONTROL
);
530 /***********************************************************************
531 Endpoint Management Functions
532 ***********************************************************************/
534 /*-------------------------------------------------------------------------
535 * when configurations are set, or when interface settings change
536 * for example the do_set_interface() in gadget layer,
537 * the driver will enable or disable the relevant endpoints
538 * ep0 doesn't use this routine. It is always enabled.
539 -------------------------------------------------------------------------*/
540 static int fsl_ep_enable(struct usb_ep
*_ep
,
541 const struct usb_endpoint_descriptor
*desc
)
543 struct fsl_udc
*udc
= NULL
;
544 struct fsl_ep
*ep
= NULL
;
545 unsigned short max
= 0;
546 unsigned char mult
= 0, zlt
;
547 int retval
= -EINVAL
;
548 unsigned long flags
= 0;
550 ep
= container_of(_ep
, struct fsl_ep
, ep
);
552 /* catch various bogus parameters */
553 if (!_ep
|| !desc
|| ep
->desc
554 || (desc
->bDescriptorType
!= USB_DT_ENDPOINT
))
559 if (!udc
->driver
|| (udc
->gadget
.speed
== USB_SPEED_UNKNOWN
))
562 max
= usb_endpoint_maxp(desc
);
564 /* Disable automatic zlp generation. Driver is responsible to indicate
565 * explicitly through req->req.zero. This is needed to enable multi-td
569 /* Assume the max packet size from gadget is always correct */
570 switch (desc
->bmAttributes
& 0x03) {
571 case USB_ENDPOINT_XFER_CONTROL
:
572 case USB_ENDPOINT_XFER_BULK
:
573 case USB_ENDPOINT_XFER_INT
:
574 /* mult = 0. Execute N Transactions as demonstrated by
575 * the USB variable length packet protocol where N is
576 * computed using the Maximum Packet Length (dQH) and
577 * the Total Bytes field (dTD) */
580 case USB_ENDPOINT_XFER_ISOC
:
581 /* Calculate transactions needed for high bandwidth iso */
582 mult
= (unsigned char)(1 + ((max
>> 11) & 0x03));
583 max
= max
& 0x7ff; /* bit 0~10 */
584 /* 3 transactions at most */
592 spin_lock_irqsave(&udc
->lock
, flags
);
593 ep
->ep
.maxpacket
= max
;
597 /* Controller related setup */
598 /* Init EPx Queue Head (Ep Capabilites field in QH
599 * according to max, zlt, mult) */
600 struct_ep_qh_setup(udc
, (unsigned char) ep_index(ep
),
601 (unsigned char) ((desc
->bEndpointAddress
& USB_DIR_IN
)
602 ? USB_SEND
: USB_RECV
),
603 (unsigned char) (desc
->bmAttributes
604 & USB_ENDPOINT_XFERTYPE_MASK
),
607 /* Init endpoint ctrl register */
608 dr_ep_setup((unsigned char) ep_index(ep
),
609 (unsigned char) ((desc
->bEndpointAddress
& USB_DIR_IN
)
610 ? USB_SEND
: USB_RECV
),
611 (unsigned char) (desc
->bmAttributes
612 & USB_ENDPOINT_XFERTYPE_MASK
));
614 spin_unlock_irqrestore(&udc
->lock
, flags
);
617 VDBG("enabled %s (ep%d%s) maxpacket %d",ep
->ep
.name
,
618 ep
->desc
->bEndpointAddress
& 0x0f,
619 (desc
->bEndpointAddress
& USB_DIR_IN
)
620 ? "in" : "out", max
);
625 /*---------------------------------------------------------------------
626 * @ep : the ep being unconfigured. May not be ep0
627 * Any pending and uncomplete req will complete with status (-ESHUTDOWN)
628 *---------------------------------------------------------------------*/
629 static int fsl_ep_disable(struct usb_ep
*_ep
)
631 struct fsl_udc
*udc
= NULL
;
632 struct fsl_ep
*ep
= NULL
;
633 unsigned long flags
= 0;
637 ep
= container_of(_ep
, struct fsl_ep
, ep
);
638 if (!_ep
|| !ep
->desc
) {
639 VDBG("%s not enabled", _ep
? ep
->ep
.name
: NULL
);
643 /* disable ep on controller */
644 ep_num
= ep_index(ep
);
645 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
647 epctrl
&= ~(EPCTRL_TX_ENABLE
| EPCTRL_TX_TYPE
);
648 epctrl
|= EPCTRL_EP_TYPE_BULK
<< EPCTRL_TX_EP_TYPE_SHIFT
;
650 epctrl
&= ~(EPCTRL_RX_ENABLE
| EPCTRL_TX_TYPE
);
651 epctrl
|= EPCTRL_EP_TYPE_BULK
<< EPCTRL_RX_EP_TYPE_SHIFT
;
653 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
655 udc
= (struct fsl_udc
*)ep
->udc
;
656 spin_lock_irqsave(&udc
->lock
, flags
);
658 /* nuke all pending requests (does flush) */
659 nuke(ep
, -ESHUTDOWN
);
663 spin_unlock_irqrestore(&udc
->lock
, flags
);
665 VDBG("disabled %s OK", _ep
->name
);
669 /*---------------------------------------------------------------------
670 * allocate a request object used by this endpoint
671 * the main operation is to insert the req->queue to the eq->queue
672 * Returns the request, or null if one could not be allocated
673 *---------------------------------------------------------------------*/
674 static struct usb_request
*
675 fsl_alloc_request(struct usb_ep
*_ep
, gfp_t gfp_flags
)
677 struct fsl_req
*req
= NULL
;
679 req
= kzalloc(sizeof *req
, gfp_flags
);
683 req
->req
.dma
= DMA_ADDR_INVALID
;
684 INIT_LIST_HEAD(&req
->queue
);
689 static void fsl_free_request(struct usb_ep
*_ep
, struct usb_request
*_req
)
691 struct fsl_req
*req
= NULL
;
693 req
= container_of(_req
, struct fsl_req
, req
);
699 /*-------------------------------------------------------------------------*/
700 static void fsl_queue_td(struct fsl_ep
*ep
, struct fsl_req
*req
)
702 int i
= ep_index(ep
) * 2 + ep_is_in(ep
);
703 u32 temp
, bitmask
, tmp_stat
;
704 struct ep_queue_head
*dQH
= &ep
->udc
->ep_qh
[i
];
706 /* VDBG("QH addr Register 0x%8x", dr_regs->endpointlistaddr);
707 VDBG("ep_qh[%d] addr is 0x%8x", i, (u32)&(ep->udc->ep_qh[i])); */
709 bitmask
= ep_is_in(ep
)
710 ? (1 << (ep_index(ep
) + 16))
711 : (1 << (ep_index(ep
)));
713 /* check if the pipe is empty */
714 if (!(list_empty(&ep
->queue
))) {
715 /* Add td to the end */
716 struct fsl_req
*lastreq
;
717 lastreq
= list_entry(ep
->queue
.prev
, struct fsl_req
, queue
);
718 lastreq
->tail
->next_td_ptr
=
719 cpu_to_hc32(req
->head
->td_dma
& DTD_ADDR_MASK
);
720 /* Read prime bit, if 1 goto done */
721 if (fsl_readl(&dr_regs
->endpointprime
) & bitmask
)
725 /* Set ATDTW bit in USBCMD */
726 temp
= fsl_readl(&dr_regs
->usbcmd
);
727 fsl_writel(temp
| USB_CMD_ATDTW
, &dr_regs
->usbcmd
);
729 /* Read correct status bit */
730 tmp_stat
= fsl_readl(&dr_regs
->endptstatus
) & bitmask
;
732 } while (!(fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_ATDTW
));
734 /* Write ATDTW bit to 0 */
735 temp
= fsl_readl(&dr_regs
->usbcmd
);
736 fsl_writel(temp
& ~USB_CMD_ATDTW
, &dr_regs
->usbcmd
);
742 /* Write dQH next pointer and terminate bit to 0 */
743 temp
= req
->head
->td_dma
& EP_QUEUE_HEAD_NEXT_POINTER_MASK
;
744 dQH
->next_dtd_ptr
= cpu_to_hc32(temp
);
746 /* Clear active and halt bit */
747 temp
= cpu_to_hc32(~(EP_QUEUE_HEAD_STATUS_ACTIVE
748 | EP_QUEUE_HEAD_STATUS_HALT
));
749 dQH
->size_ioc_int_sts
&= temp
;
751 /* Ensure that updates to the QH will occur before priming. */
754 /* Prime endpoint by writing 1 to ENDPTPRIME */
756 ? (1 << (ep_index(ep
) + 16))
757 : (1 << (ep_index(ep
)));
758 fsl_writel(temp
, &dr_regs
->endpointprime
);
763 /* Fill in the dTD structure
764 * @req: request that the transfer belongs to
765 * @length: return actually data length of the dTD
766 * @dma: return dma address of the dTD
767 * @is_last: return flag if it is the last dTD of the request
768 * return: pointer to the built dTD */
769 static struct ep_td_struct
*fsl_build_dtd(struct fsl_req
*req
, unsigned *length
,
770 dma_addr_t
*dma
, int *is_last
)
773 struct ep_td_struct
*dtd
;
775 /* how big will this transfer be? */
776 *length
= min(req
->req
.length
- req
->req
.actual
,
777 (unsigned)EP_MAX_LENGTH_TRANSFER
);
779 dtd
= dma_pool_alloc(udc_controller
->td_pool
, GFP_KERNEL
, dma
);
784 /* Clear reserved field */
785 swap_temp
= hc32_to_cpu(dtd
->size_ioc_sts
);
786 swap_temp
&= ~DTD_RESERVED_FIELDS
;
787 dtd
->size_ioc_sts
= cpu_to_hc32(swap_temp
);
789 /* Init all of buffer page pointers */
790 swap_temp
= (u32
) (req
->req
.dma
+ req
->req
.actual
);
791 dtd
->buff_ptr0
= cpu_to_hc32(swap_temp
);
792 dtd
->buff_ptr1
= cpu_to_hc32(swap_temp
+ 0x1000);
793 dtd
->buff_ptr2
= cpu_to_hc32(swap_temp
+ 0x2000);
794 dtd
->buff_ptr3
= cpu_to_hc32(swap_temp
+ 0x3000);
795 dtd
->buff_ptr4
= cpu_to_hc32(swap_temp
+ 0x4000);
797 req
->req
.actual
+= *length
;
799 /* zlp is needed if req->req.zero is set */
801 if (*length
== 0 || (*length
% req
->ep
->ep
.maxpacket
) != 0)
805 } else if (req
->req
.length
== req
->req
.actual
)
811 VDBG("multi-dtd request!");
812 /* Fill in the transfer size; set active bit */
813 swap_temp
= ((*length
<< DTD_LENGTH_BIT_POS
) | DTD_STATUS_ACTIVE
);
815 /* Enable interrupt for the last dtd of a request */
816 if (*is_last
&& !req
->req
.no_interrupt
)
817 swap_temp
|= DTD_IOC
;
819 dtd
->size_ioc_sts
= cpu_to_hc32(swap_temp
);
823 VDBG("length = %d address= 0x%x", *length
, (int)*dma
);
828 /* Generate dtd chain for a request */
829 static int fsl_req_to_dtd(struct fsl_req
*req
)
834 struct ep_td_struct
*last_dtd
= NULL
, *dtd
;
838 dtd
= fsl_build_dtd(req
, &count
, &dma
, &is_last
);
846 last_dtd
->next_td_ptr
= cpu_to_hc32(dma
);
847 last_dtd
->next_td_virt
= dtd
;
854 dtd
->next_td_ptr
= cpu_to_hc32(DTD_NEXT_TERMINATE
);
861 /* queues (submits) an I/O request to an endpoint */
863 fsl_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, gfp_t gfp_flags
)
865 struct fsl_ep
*ep
= container_of(_ep
, struct fsl_ep
, ep
);
866 struct fsl_req
*req
= container_of(_req
, struct fsl_req
, req
);
870 /* catch various bogus parameters */
871 if (!_req
|| !req
->req
.complete
|| !req
->req
.buf
872 || !list_empty(&req
->queue
)) {
873 VDBG("%s, bad params", __func__
);
876 if (unlikely(!_ep
|| !ep
->desc
)) {
877 VDBG("%s, bad ep", __func__
);
880 if (ep
->desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
881 if (req
->req
.length
> ep
->ep
.maxpacket
)
886 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
891 /* map virtual address to hardware */
892 if (req
->req
.dma
== DMA_ADDR_INVALID
) {
893 req
->req
.dma
= dma_map_single(ep
->udc
->gadget
.dev
.parent
,
895 req
->req
.length
, ep_is_in(ep
)
900 dma_sync_single_for_device(ep
->udc
->gadget
.dev
.parent
,
901 req
->req
.dma
, req
->req
.length
,
908 req
->req
.status
= -EINPROGRESS
;
912 spin_lock_irqsave(&udc
->lock
, flags
);
914 /* build dtds and push them to device queue */
915 if (!fsl_req_to_dtd(req
)) {
916 fsl_queue_td(ep
, req
);
918 spin_unlock_irqrestore(&udc
->lock
, flags
);
922 /* Update ep0 state */
923 if ((ep_index(ep
) == 0))
924 udc
->ep0_state
= DATA_STATE_XMIT
;
926 /* irq handler advances the queue */
928 list_add_tail(&req
->queue
, &ep
->queue
);
929 spin_unlock_irqrestore(&udc
->lock
, flags
);
934 /* dequeues (cancels, unlinks) an I/O request from an endpoint */
935 static int fsl_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
937 struct fsl_ep
*ep
= container_of(_ep
, struct fsl_ep
, ep
);
940 int ep_num
, stopped
, ret
= 0;
946 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
947 stopped
= ep
->stopped
;
949 /* Stop the ep before we deal with the queue */
951 ep_num
= ep_index(ep
);
952 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
954 epctrl
&= ~EPCTRL_TX_ENABLE
;
956 epctrl
&= ~EPCTRL_RX_ENABLE
;
957 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
959 /* make sure it's actually queued on this endpoint */
960 list_for_each_entry(req
, &ep
->queue
, queue
) {
961 if (&req
->req
== _req
)
964 if (&req
->req
!= _req
) {
969 /* The request is in progress, or completed but not dequeued */
970 if (ep
->queue
.next
== &req
->queue
) {
971 _req
->status
= -ECONNRESET
;
972 fsl_ep_fifo_flush(_ep
); /* flush current transfer */
974 /* The request isn't the last request in this ep queue */
975 if (req
->queue
.next
!= &ep
->queue
) {
976 struct ep_queue_head
*qh
;
977 struct fsl_req
*next_req
;
980 next_req
= list_entry(req
->queue
.next
, struct fsl_req
,
983 /* Point the QH to the first TD of next request */
984 fsl_writel((u32
) next_req
->head
, &qh
->curr_dtd_ptr
);
987 /* The request hasn't been processed, patch up the TD chain */
989 struct fsl_req
*prev_req
;
991 prev_req
= list_entry(req
->queue
.prev
, struct fsl_req
, queue
);
992 fsl_writel(fsl_readl(&req
->tail
->next_td_ptr
),
993 &prev_req
->tail
->next_td_ptr
);
997 done(ep
, req
, -ECONNRESET
);
1000 out
: epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
1002 epctrl
|= EPCTRL_TX_ENABLE
;
1004 epctrl
|= EPCTRL_RX_ENABLE
;
1005 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
1006 ep
->stopped
= stopped
;
1008 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1012 /*-------------------------------------------------------------------------*/
1014 /*-----------------------------------------------------------------
1015 * modify the endpoint halt feature
1016 * @ep: the non-isochronous endpoint being stalled
1017 * @value: 1--set halt 0--clear halt
1018 * Returns zero, or a negative error code.
1019 *----------------------------------------------------------------*/
1020 static int fsl_ep_set_halt(struct usb_ep
*_ep
, int value
)
1022 struct fsl_ep
*ep
= NULL
;
1023 unsigned long flags
= 0;
1024 int status
= -EOPNOTSUPP
; /* operation not supported */
1025 unsigned char ep_dir
= 0, ep_num
= 0;
1026 struct fsl_udc
*udc
= NULL
;
1028 ep
= container_of(_ep
, struct fsl_ep
, ep
);
1030 if (!_ep
|| !ep
->desc
) {
1035 if (ep
->desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
1036 status
= -EOPNOTSUPP
;
1040 /* Attempt to halt IN ep will fail if any transfer requests
1041 * are still queue */
1042 if (value
&& ep_is_in(ep
) && !list_empty(&ep
->queue
)) {
1048 ep_dir
= ep_is_in(ep
) ? USB_SEND
: USB_RECV
;
1049 ep_num
= (unsigned char)(ep_index(ep
));
1050 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1051 dr_ep_change_stall(ep_num
, ep_dir
, value
);
1052 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1054 if (ep_index(ep
) == 0) {
1055 udc
->ep0_state
= WAIT_FOR_SETUP
;
1059 VDBG(" %s %s halt stat %d", ep
->ep
.name
,
1060 value
? "set" : "clear", status
);
1065 static int fsl_ep_fifo_status(struct usb_ep
*_ep
)
1068 struct fsl_udc
*udc
;
1071 struct ep_queue_head
*d_qh
;
1073 ep
= container_of(_ep
, struct fsl_ep
, ep
);
1074 if (!_ep
|| (!ep
->desc
&& ep_index(ep
) != 0))
1077 udc
= (struct fsl_udc
*)ep
->udc
;
1079 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1082 d_qh
= &ep
->udc
->ep_qh
[ep_index(ep
) * 2 + ep_is_in(ep
)];
1084 bitmask
= (ep_is_in(ep
)) ? (1 << (ep_index(ep
) + 16)) :
1085 (1 << (ep_index(ep
)));
1087 if (fsl_readl(&dr_regs
->endptstatus
) & bitmask
)
1088 size
= (d_qh
->size_ioc_int_sts
& DTD_PACKET_SIZE
)
1089 >> DTD_LENGTH_BIT_POS
;
1091 pr_debug("%s %u\n", __func__
, size
);
1095 static void fsl_ep_fifo_flush(struct usb_ep
*_ep
)
1100 unsigned long timeout
;
1101 #define FSL_UDC_FLUSH_TIMEOUT 1000
1106 ep
= container_of(_ep
, struct fsl_ep
, ep
);
1110 ep_num
= ep_index(ep
);
1111 ep_dir
= ep_is_in(ep
) ? USB_SEND
: USB_RECV
;
1114 bits
= (1 << 16) | 1;
1115 else if (ep_dir
== USB_SEND
)
1116 bits
= 1 << (16 + ep_num
);
1120 timeout
= jiffies
+ FSL_UDC_FLUSH_TIMEOUT
;
1122 fsl_writel(bits
, &dr_regs
->endptflush
);
1124 /* Wait until flush complete */
1125 while (fsl_readl(&dr_regs
->endptflush
)) {
1126 if (time_after(jiffies
, timeout
)) {
1127 ERR("ep flush timeout\n");
1132 /* See if we need to flush again */
1133 } while (fsl_readl(&dr_regs
->endptstatus
) & bits
);
1136 static struct usb_ep_ops fsl_ep_ops
= {
1137 .enable
= fsl_ep_enable
,
1138 .disable
= fsl_ep_disable
,
1140 .alloc_request
= fsl_alloc_request
,
1141 .free_request
= fsl_free_request
,
1143 .queue
= fsl_ep_queue
,
1144 .dequeue
= fsl_ep_dequeue
,
1146 .set_halt
= fsl_ep_set_halt
,
1147 .fifo_status
= fsl_ep_fifo_status
,
1148 .fifo_flush
= fsl_ep_fifo_flush
, /* flush fifo */
1151 /*-------------------------------------------------------------------------
1152 Gadget Driver Layer Operations
1153 -------------------------------------------------------------------------*/
1155 /*----------------------------------------------------------------------
1156 * Get the current frame number (from DR frame_index Reg )
1157 *----------------------------------------------------------------------*/
1158 static int fsl_get_frame(struct usb_gadget
*gadget
)
1160 return (int)(fsl_readl(&dr_regs
->frindex
) & USB_FRINDEX_MASKS
);
1163 /*-----------------------------------------------------------------------
1164 * Tries to wake up the host connected to this gadget
1165 -----------------------------------------------------------------------*/
1166 static int fsl_wakeup(struct usb_gadget
*gadget
)
1168 struct fsl_udc
*udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1171 /* Remote wakeup feature not enabled by host */
1172 if (!udc
->remote_wakeup
)
1175 portsc
= fsl_readl(&dr_regs
->portsc1
);
1176 /* not suspended? */
1177 if (!(portsc
& PORTSCX_PORT_SUSPEND
))
1179 /* trigger force resume */
1180 portsc
|= PORTSCX_PORT_FORCE_RESUME
;
1181 fsl_writel(portsc
, &dr_regs
->portsc1
);
1185 static int can_pullup(struct fsl_udc
*udc
)
1187 return udc
->driver
&& udc
->softconnect
&& udc
->vbus_active
;
1190 /* Notify controller that VBUS is powered, Called by whatever
1191 detects VBUS sessions */
1192 static int fsl_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1194 struct fsl_udc
*udc
;
1195 unsigned long flags
;
1197 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1198 spin_lock_irqsave(&udc
->lock
, flags
);
1199 VDBG("VBUS %s", is_active
? "on" : "off");
1200 udc
->vbus_active
= (is_active
!= 0);
1201 if (can_pullup(udc
))
1202 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) | USB_CMD_RUN_STOP
),
1205 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
),
1207 spin_unlock_irqrestore(&udc
->lock
, flags
);
1211 /* constrain controller's VBUS power usage
1212 * This call is used by gadget drivers during SET_CONFIGURATION calls,
1213 * reporting how much power the device may consume. For example, this
1214 * could affect how quickly batteries are recharged.
1216 * Returns zero on success, else negative errno.
1218 static int fsl_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1220 struct fsl_udc
*udc
;
1222 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1223 if (udc
->transceiver
)
1224 return otg_set_power(udc
->transceiver
, mA
);
1228 /* Change Data+ pullup status
1229 * this func is used by usb_gadget_connect/disconnet
1231 static int fsl_pullup(struct usb_gadget
*gadget
, int is_on
)
1233 struct fsl_udc
*udc
;
1235 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1236 udc
->softconnect
= (is_on
!= 0);
1237 if (can_pullup(udc
))
1238 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) | USB_CMD_RUN_STOP
),
1241 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
),
1247 static int fsl_start(struct usb_gadget_driver
*driver
,
1248 int (*bind
)(struct usb_gadget
*));
1249 static int fsl_stop(struct usb_gadget_driver
*driver
);
1250 /* defined in gadget.h */
1251 static struct usb_gadget_ops fsl_gadget_ops
= {
1252 .get_frame
= fsl_get_frame
,
1253 .wakeup
= fsl_wakeup
,
1254 /* .set_selfpowered = fsl_set_selfpowered, */ /* Always selfpowered */
1255 .vbus_session
= fsl_vbus_session
,
1256 .vbus_draw
= fsl_vbus_draw
,
1257 .pullup
= fsl_pullup
,
1262 /* Set protocol stall on ep0, protocol stall will automatically be cleared
1263 on new transaction */
1264 static void ep0stall(struct fsl_udc
*udc
)
1268 /* must set tx and rx to stall at the same time */
1269 tmp
= fsl_readl(&dr_regs
->endptctrl
[0]);
1270 tmp
|= EPCTRL_TX_EP_STALL
| EPCTRL_RX_EP_STALL
;
1271 fsl_writel(tmp
, &dr_regs
->endptctrl
[0]);
1272 udc
->ep0_state
= WAIT_FOR_SETUP
;
1276 /* Prime a status phase for ep0 */
1277 static int ep0_prime_status(struct fsl_udc
*udc
, int direction
)
1279 struct fsl_req
*req
= udc
->status_req
;
1282 if (direction
== EP_DIR_IN
)
1283 udc
->ep0_dir
= USB_DIR_IN
;
1285 udc
->ep0_dir
= USB_DIR_OUT
;
1288 udc
->ep0_state
= WAIT_FOR_OUT_STATUS
;
1291 req
->req
.length
= 0;
1292 req
->req
.status
= -EINPROGRESS
;
1293 req
->req
.actual
= 0;
1294 req
->req
.complete
= NULL
;
1297 req
->req
.dma
= dma_map_single(ep
->udc
->gadget
.dev
.parent
,
1298 req
->req
.buf
, req
->req
.length
,
1299 ep_is_in(ep
) ? DMA_TO_DEVICE
: DMA_FROM_DEVICE
);
1302 if (fsl_req_to_dtd(req
) == 0)
1303 fsl_queue_td(ep
, req
);
1307 list_add_tail(&req
->queue
, &ep
->queue
);
1312 static void udc_reset_ep_queue(struct fsl_udc
*udc
, u8 pipe
)
1314 struct fsl_ep
*ep
= get_ep_by_pipe(udc
, pipe
);
1317 nuke(ep
, -ESHUTDOWN
);
1323 static void ch9setaddress(struct fsl_udc
*udc
, u16 value
, u16 index
, u16 length
)
1325 /* Save the new address to device struct */
1326 udc
->device_address
= (u8
) value
;
1327 /* Update usb state */
1328 udc
->usb_state
= USB_STATE_ADDRESS
;
1330 if (ep0_prime_status(udc
, EP_DIR_IN
))
1337 static void ch9getstatus(struct fsl_udc
*udc
, u8 request_type
, u16 value
,
1338 u16 index
, u16 length
)
1340 u16 tmp
= 0; /* Status, cpu endian */
1341 struct fsl_req
*req
;
1346 if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_DEVICE
) {
1347 /* Get device status */
1348 tmp
= 1 << USB_DEVICE_SELF_POWERED
;
1349 tmp
|= udc
->remote_wakeup
<< USB_DEVICE_REMOTE_WAKEUP
;
1350 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_INTERFACE
) {
1351 /* Get interface status */
1352 /* We don't have interface information in udc driver */
1354 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_ENDPOINT
) {
1355 /* Get endpoint status */
1356 struct fsl_ep
*target_ep
;
1358 target_ep
= get_ep_by_pipe(udc
, get_pipe_by_windex(index
));
1360 /* stall if endpoint doesn't exist */
1361 if (!target_ep
->desc
)
1363 tmp
= dr_ep_get_stall(ep_index(target_ep
), ep_is_in(target_ep
))
1364 << USB_ENDPOINT_HALT
;
1367 udc
->ep0_dir
= USB_DIR_IN
;
1368 /* Borrow the per device status_req */
1369 req
= udc
->status_req
;
1370 /* Fill in the reqest structure */
1371 *((u16
*) req
->req
.buf
) = cpu_to_le16(tmp
);
1374 req
->req
.length
= 2;
1375 req
->req
.status
= -EINPROGRESS
;
1376 req
->req
.actual
= 0;
1377 req
->req
.complete
= NULL
;
1380 req
->req
.dma
= dma_map_single(ep
->udc
->gadget
.dev
.parent
,
1381 req
->req
.buf
, req
->req
.length
,
1382 ep_is_in(ep
) ? DMA_TO_DEVICE
: DMA_FROM_DEVICE
);
1385 /* prime the data phase */
1386 if ((fsl_req_to_dtd(req
) == 0))
1387 fsl_queue_td(ep
, req
);
1391 list_add_tail(&req
->queue
, &ep
->queue
);
1392 udc
->ep0_state
= DATA_STATE_XMIT
;
1398 static void setup_received_irq(struct fsl_udc
*udc
,
1399 struct usb_ctrlrequest
*setup
)
1401 u16 wValue
= le16_to_cpu(setup
->wValue
);
1402 u16 wIndex
= le16_to_cpu(setup
->wIndex
);
1403 u16 wLength
= le16_to_cpu(setup
->wLength
);
1405 udc_reset_ep_queue(udc
, 0);
1407 /* We process some stardard setup requests here */
1408 switch (setup
->bRequest
) {
1409 case USB_REQ_GET_STATUS
:
1410 /* Data+Status phase from udc */
1411 if ((setup
->bRequestType
& (USB_DIR_IN
| USB_TYPE_MASK
))
1412 != (USB_DIR_IN
| USB_TYPE_STANDARD
))
1414 ch9getstatus(udc
, setup
->bRequestType
, wValue
, wIndex
, wLength
);
1417 case USB_REQ_SET_ADDRESS
:
1418 /* Status phase from udc */
1419 if (setup
->bRequestType
!= (USB_DIR_OUT
| USB_TYPE_STANDARD
1420 | USB_RECIP_DEVICE
))
1422 ch9setaddress(udc
, wValue
, wIndex
, wLength
);
1425 case USB_REQ_CLEAR_FEATURE
:
1426 case USB_REQ_SET_FEATURE
:
1427 /* Status phase from udc */
1429 int rc
= -EOPNOTSUPP
;
1432 if ((setup
->bRequestType
& (USB_RECIP_MASK
| USB_TYPE_MASK
))
1433 == (USB_RECIP_ENDPOINT
| USB_TYPE_STANDARD
)) {
1434 int pipe
= get_pipe_by_windex(wIndex
);
1437 if (wValue
!= 0 || wLength
!= 0 || pipe
> udc
->max_ep
)
1439 ep
= get_ep_by_pipe(udc
, pipe
);
1441 spin_unlock(&udc
->lock
);
1442 rc
= fsl_ep_set_halt(&ep
->ep
,
1443 (setup
->bRequest
== USB_REQ_SET_FEATURE
)
1445 spin_lock(&udc
->lock
);
1447 } else if ((setup
->bRequestType
& (USB_RECIP_MASK
1448 | USB_TYPE_MASK
)) == (USB_RECIP_DEVICE
1449 | USB_TYPE_STANDARD
)) {
1450 /* Note: The driver has not include OTG support yet.
1451 * This will be set when OTG support is added */
1452 if (wValue
== USB_DEVICE_TEST_MODE
)
1454 else if (gadget_is_otg(&udc
->gadget
)) {
1455 if (setup
->bRequest
==
1456 USB_DEVICE_B_HNP_ENABLE
)
1457 udc
->gadget
.b_hnp_enable
= 1;
1458 else if (setup
->bRequest
==
1459 USB_DEVICE_A_HNP_SUPPORT
)
1460 udc
->gadget
.a_hnp_support
= 1;
1461 else if (setup
->bRequest
==
1462 USB_DEVICE_A_ALT_HNP_SUPPORT
)
1463 udc
->gadget
.a_alt_hnp_support
= 1;
1470 if (ep0_prime_status(udc
, EP_DIR_IN
))
1477 tmp
= fsl_readl(&dr_regs
->portsc1
) | (ptc
<< 16);
1478 fsl_writel(tmp
, &dr_regs
->portsc1
);
1479 printk(KERN_INFO
"udc: switch to test mode %d.\n", ptc
);
1489 /* Requests handled by gadget */
1491 /* Data phase from gadget, status phase from udc */
1492 udc
->ep0_dir
= (setup
->bRequestType
& USB_DIR_IN
)
1493 ? USB_DIR_IN
: USB_DIR_OUT
;
1494 spin_unlock(&udc
->lock
);
1495 if (udc
->driver
->setup(&udc
->gadget
,
1496 &udc
->local_setup_buff
) < 0)
1498 spin_lock(&udc
->lock
);
1499 udc
->ep0_state
= (setup
->bRequestType
& USB_DIR_IN
)
1500 ? DATA_STATE_XMIT
: DATA_STATE_RECV
;
1502 /* No data phase, IN status from gadget */
1503 udc
->ep0_dir
= USB_DIR_IN
;
1504 spin_unlock(&udc
->lock
);
1505 if (udc
->driver
->setup(&udc
->gadget
,
1506 &udc
->local_setup_buff
) < 0)
1508 spin_lock(&udc
->lock
);
1509 udc
->ep0_state
= WAIT_FOR_OUT_STATUS
;
1513 /* Process request for Data or Status phase of ep0
1514 * prime status phase if needed */
1515 static void ep0_req_complete(struct fsl_udc
*udc
, struct fsl_ep
*ep0
,
1516 struct fsl_req
*req
)
1518 if (udc
->usb_state
== USB_STATE_ADDRESS
) {
1519 /* Set the new address */
1520 u32 new_address
= (u32
) udc
->device_address
;
1521 fsl_writel(new_address
<< USB_DEVICE_ADDRESS_BIT_POS
,
1522 &dr_regs
->deviceaddr
);
1527 switch (udc
->ep0_state
) {
1528 case DATA_STATE_XMIT
:
1529 /* receive status phase */
1530 if (ep0_prime_status(udc
, EP_DIR_OUT
))
1533 case DATA_STATE_RECV
:
1534 /* send status phase */
1535 if (ep0_prime_status(udc
, EP_DIR_IN
))
1538 case WAIT_FOR_OUT_STATUS
:
1539 udc
->ep0_state
= WAIT_FOR_SETUP
;
1541 case WAIT_FOR_SETUP
:
1542 ERR("Unexpect ep0 packets\n");
1550 /* Tripwire mechanism to ensure a setup packet payload is extracted without
1551 * being corrupted by another incoming setup packet */
1552 static void tripwire_handler(struct fsl_udc
*udc
, u8 ep_num
, u8
*buffer_ptr
)
1555 struct ep_queue_head
*qh
;
1556 struct fsl_usb2_platform_data
*pdata
= udc
->pdata
;
1558 qh
= &udc
->ep_qh
[ep_num
* 2 + EP_DIR_OUT
];
1560 /* Clear bit in ENDPTSETUPSTAT */
1561 temp
= fsl_readl(&dr_regs
->endptsetupstat
);
1562 fsl_writel(temp
| (1 << ep_num
), &dr_regs
->endptsetupstat
);
1564 /* while a hazard exists when setup package arrives */
1566 /* Set Setup Tripwire */
1567 temp
= fsl_readl(&dr_regs
->usbcmd
);
1568 fsl_writel(temp
| USB_CMD_SUTW
, &dr_regs
->usbcmd
);
1570 /* Copy the setup packet to local buffer */
1571 if (pdata
->le_setup_buf
) {
1572 u32
*p
= (u32
*)buffer_ptr
;
1573 u32
*s
= (u32
*)qh
->setup_buffer
;
1575 /* Convert little endian setup buffer to CPU endian */
1576 *p
++ = le32_to_cpu(*s
++);
1577 *p
= le32_to_cpu(*s
);
1579 memcpy(buffer_ptr
, (u8
*) qh
->setup_buffer
, 8);
1581 } while (!(fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_SUTW
));
1583 /* Clear Setup Tripwire */
1584 temp
= fsl_readl(&dr_regs
->usbcmd
);
1585 fsl_writel(temp
& ~USB_CMD_SUTW
, &dr_regs
->usbcmd
);
1588 /* process-ep_req(): free the completed Tds for this req */
1589 static int process_ep_req(struct fsl_udc
*udc
, int pipe
,
1590 struct fsl_req
*curr_req
)
1592 struct ep_td_struct
*curr_td
;
1593 int td_complete
, actual
, remaining_length
, j
, tmp
;
1596 struct ep_queue_head
*curr_qh
= &udc
->ep_qh
[pipe
];
1597 int direction
= pipe
% 2;
1599 curr_td
= curr_req
->head
;
1601 actual
= curr_req
->req
.length
;
1603 for (j
= 0; j
< curr_req
->dtd_count
; j
++) {
1604 remaining_length
= (hc32_to_cpu(curr_td
->size_ioc_sts
)
1606 >> DTD_LENGTH_BIT_POS
;
1607 actual
-= remaining_length
;
1609 errors
= hc32_to_cpu(curr_td
->size_ioc_sts
);
1610 if (errors
& DTD_ERROR_MASK
) {
1611 if (errors
& DTD_STATUS_HALTED
) {
1612 ERR("dTD error %08x QH=%d\n", errors
, pipe
);
1613 /* Clear the errors and Halt condition */
1614 tmp
= hc32_to_cpu(curr_qh
->size_ioc_int_sts
);
1616 curr_qh
->size_ioc_int_sts
= cpu_to_hc32(tmp
);
1618 /* FIXME: continue with next queued TD? */
1622 if (errors
& DTD_STATUS_DATA_BUFF_ERR
) {
1623 VDBG("Transfer overflow");
1626 } else if (errors
& DTD_STATUS_TRANSACTION_ERR
) {
1631 ERR("Unknown error has occurred (0x%x)!\n",
1634 } else if (hc32_to_cpu(curr_td
->size_ioc_sts
)
1635 & DTD_STATUS_ACTIVE
) {
1636 VDBG("Request not complete");
1637 status
= REQ_UNCOMPLETE
;
1639 } else if (remaining_length
) {
1641 VDBG("Transmit dTD remaining length not zero");
1650 VDBG("dTD transmitted successful");
1653 if (j
!= curr_req
->dtd_count
- 1)
1654 curr_td
= (struct ep_td_struct
*)curr_td
->next_td_virt
;
1660 curr_req
->req
.actual
= actual
;
1665 /* Process a DTD completion interrupt */
1666 static void dtd_complete_irq(struct fsl_udc
*udc
)
1669 int i
, ep_num
, direction
, bit_mask
, status
;
1670 struct fsl_ep
*curr_ep
;
1671 struct fsl_req
*curr_req
, *temp_req
;
1673 /* Clear the bits in the register */
1674 bit_pos
= fsl_readl(&dr_regs
->endptcomplete
);
1675 fsl_writel(bit_pos
, &dr_regs
->endptcomplete
);
1680 for (i
= 0; i
< udc
->max_ep
* 2; i
++) {
1684 bit_mask
= 1 << (ep_num
+ 16 * direction
);
1686 if (!(bit_pos
& bit_mask
))
1689 curr_ep
= get_ep_by_pipe(udc
, i
);
1691 /* If the ep is configured */
1692 if (curr_ep
->name
== NULL
) {
1693 WARNING("Invalid EP?");
1697 /* process the req queue until an uncomplete request */
1698 list_for_each_entry_safe(curr_req
, temp_req
, &curr_ep
->queue
,
1700 status
= process_ep_req(udc
, i
, curr_req
);
1702 VDBG("status of process_ep_req= %d, ep = %d",
1704 if (status
== REQ_UNCOMPLETE
)
1706 /* write back status to req */
1707 curr_req
->req
.status
= status
;
1710 ep0_req_complete(udc
, curr_ep
, curr_req
);
1713 done(curr_ep
, curr_req
, status
);
1718 static inline enum usb_device_speed
portscx_device_speed(u32 reg
)
1720 switch (speed
& PORTSCX_PORT_SPEED_MASK
) {
1721 case PORTSCX_PORT_SPEED_HIGH
:
1722 return USB_SPEED_HIGH
;
1723 case PORTSCX_PORT_SPEED_FULL
:
1724 return USB_SPEED_FULL
;
1725 case PORTSCX_PORT_SPEED_LOW
:
1726 return USB_SPEED_LOW
;
1728 return USB_SPEED_UNKNOWN
;
1732 /* Process a port change interrupt */
1733 static void port_change_irq(struct fsl_udc
*udc
)
1738 /* Bus resetting is finished */
1739 if (!(fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_RESET
))
1742 portscx_device_speed(fsl_readl(&dr_regs
->portsc1
));
1744 /* Update USB state */
1745 if (!udc
->resume_state
)
1746 udc
->usb_state
= USB_STATE_DEFAULT
;
1749 /* Process suspend interrupt */
1750 static void suspend_irq(struct fsl_udc
*udc
)
1752 udc
->resume_state
= udc
->usb_state
;
1753 udc
->usb_state
= USB_STATE_SUSPENDED
;
1755 /* report suspend to the driver, serial.c does not support this */
1756 if (udc
->driver
->suspend
)
1757 udc
->driver
->suspend(&udc
->gadget
);
1760 static void bus_resume(struct fsl_udc
*udc
)
1762 udc
->usb_state
= udc
->resume_state
;
1763 udc
->resume_state
= 0;
1765 /* report resume to the driver, serial.c does not support this */
1766 if (udc
->driver
->resume
)
1767 udc
->driver
->resume(&udc
->gadget
);
1770 /* Clear up all ep queues */
1771 static int reset_queues(struct fsl_udc
*udc
)
1775 for (pipe
= 0; pipe
< udc
->max_pipes
; pipe
++)
1776 udc_reset_ep_queue(udc
, pipe
);
1778 /* report disconnect; the driver is already quiesced */
1779 spin_unlock(&udc
->lock
);
1780 udc
->driver
->disconnect(&udc
->gadget
);
1781 spin_lock(&udc
->lock
);
1786 /* Process reset interrupt */
1787 static void reset_irq(struct fsl_udc
*udc
)
1790 unsigned long timeout
;
1792 /* Clear the device address */
1793 temp
= fsl_readl(&dr_regs
->deviceaddr
);
1794 fsl_writel(temp
& ~USB_DEVICE_ADDRESS_MASK
, &dr_regs
->deviceaddr
);
1796 udc
->device_address
= 0;
1798 /* Clear usb state */
1799 udc
->resume_state
= 0;
1801 udc
->ep0_state
= WAIT_FOR_SETUP
;
1802 udc
->remote_wakeup
= 0; /* default to 0 on reset */
1803 udc
->gadget
.b_hnp_enable
= 0;
1804 udc
->gadget
.a_hnp_support
= 0;
1805 udc
->gadget
.a_alt_hnp_support
= 0;
1807 /* Clear all the setup token semaphores */
1808 temp
= fsl_readl(&dr_regs
->endptsetupstat
);
1809 fsl_writel(temp
, &dr_regs
->endptsetupstat
);
1811 /* Clear all the endpoint complete status bits */
1812 temp
= fsl_readl(&dr_regs
->endptcomplete
);
1813 fsl_writel(temp
, &dr_regs
->endptcomplete
);
1815 timeout
= jiffies
+ 100;
1816 while (fsl_readl(&dr_regs
->endpointprime
)) {
1817 /* Wait until all endptprime bits cleared */
1818 if (time_after(jiffies
, timeout
)) {
1819 ERR("Timeout for reset\n");
1825 /* Write 1s to the flush register */
1826 fsl_writel(0xffffffff, &dr_regs
->endptflush
);
1828 if (fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_RESET
) {
1830 /* Bus is reseting */
1832 /* Reset all the queues, include XD, dTD, EP queue
1833 * head and TR Queue */
1835 udc
->usb_state
= USB_STATE_DEFAULT
;
1837 VDBG("Controller reset");
1838 /* initialize usb hw reg except for regs for EP, not
1839 * touch usbintr reg */
1840 dr_controller_setup(udc
);
1842 /* Reset all internal used Queues */
1847 /* Enable DR IRQ reg, Set Run bit, change udc state */
1848 dr_controller_run(udc
);
1849 udc
->usb_state
= USB_STATE_ATTACHED
;
1854 * USB device controller interrupt handler
1856 static irqreturn_t
fsl_udc_irq(int irq
, void *_udc
)
1858 struct fsl_udc
*udc
= _udc
;
1860 irqreturn_t status
= IRQ_NONE
;
1861 unsigned long flags
;
1863 /* Disable ISR for OTG host mode */
1866 spin_lock_irqsave(&udc
->lock
, flags
);
1867 irq_src
= fsl_readl(&dr_regs
->usbsts
) & fsl_readl(&dr_regs
->usbintr
);
1868 /* Clear notification bits */
1869 fsl_writel(irq_src
, &dr_regs
->usbsts
);
1871 /* VDBG("irq_src [0x%8x]", irq_src); */
1873 /* Need to resume? */
1874 if (udc
->usb_state
== USB_STATE_SUSPENDED
)
1875 if ((fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_SUSPEND
) == 0)
1879 if (irq_src
& USB_STS_INT
) {
1881 /* Setup package, we only support ep0 as control ep */
1882 if (fsl_readl(&dr_regs
->endptsetupstat
) & EP_SETUP_STATUS_EP0
) {
1883 tripwire_handler(udc
, 0,
1884 (u8
*) (&udc
->local_setup_buff
));
1885 setup_received_irq(udc
, &udc
->local_setup_buff
);
1886 status
= IRQ_HANDLED
;
1889 /* completion of dtd */
1890 if (fsl_readl(&dr_regs
->endptcomplete
)) {
1891 dtd_complete_irq(udc
);
1892 status
= IRQ_HANDLED
;
1896 /* SOF (for ISO transfer) */
1897 if (irq_src
& USB_STS_SOF
) {
1898 status
= IRQ_HANDLED
;
1902 if (irq_src
& USB_STS_PORT_CHANGE
) {
1903 port_change_irq(udc
);
1904 status
= IRQ_HANDLED
;
1907 /* Reset Received */
1908 if (irq_src
& USB_STS_RESET
) {
1911 status
= IRQ_HANDLED
;
1914 /* Sleep Enable (Suspend) */
1915 if (irq_src
& USB_STS_SUSPEND
) {
1917 status
= IRQ_HANDLED
;
1920 if (irq_src
& (USB_STS_ERR
| USB_STS_SYS_ERR
)) {
1921 VDBG("Error IRQ %x", irq_src
);
1924 spin_unlock_irqrestore(&udc
->lock
, flags
);
1928 /*----------------------------------------------------------------*
1929 * Hook to gadget drivers
1930 * Called by initialization code of gadget drivers
1931 *----------------------------------------------------------------*/
1932 static int fsl_start(struct usb_gadget_driver
*driver
,
1933 int (*bind
)(struct usb_gadget
*))
1935 int retval
= -ENODEV
;
1936 unsigned long flags
= 0;
1938 if (!udc_controller
)
1941 if (!driver
|| (driver
->speed
!= USB_SPEED_FULL
1942 && driver
->speed
!= USB_SPEED_HIGH
)
1943 || !bind
|| !driver
->disconnect
|| !driver
->setup
)
1946 if (udc_controller
->driver
)
1949 /* lock is needed but whether should use this lock or another */
1950 spin_lock_irqsave(&udc_controller
->lock
, flags
);
1952 driver
->driver
.bus
= NULL
;
1953 /* hook up the driver */
1954 udc_controller
->driver
= driver
;
1955 udc_controller
->gadget
.dev
.driver
= &driver
->driver
;
1956 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
1958 /* bind udc driver to gadget driver */
1959 retval
= bind(&udc_controller
->gadget
);
1961 VDBG("bind to %s --> %d", driver
->driver
.name
, retval
);
1962 udc_controller
->gadget
.dev
.driver
= NULL
;
1963 udc_controller
->driver
= NULL
;
1967 if (udc_controller
->transceiver
) {
1968 /* Suspend the controller until OTG enable it */
1969 udc_controller
->stopped
= 1;
1970 printk(KERN_INFO
"Suspend udc for OTG auto detect\n");
1972 /* connect to bus through transceiver */
1973 if (udc_controller
->transceiver
) {
1974 retval
= otg_set_peripheral(udc_controller
->transceiver
,
1975 &udc_controller
->gadget
);
1977 ERR("can't bind to transceiver\n");
1978 driver
->unbind(&udc_controller
->gadget
);
1979 udc_controller
->gadget
.dev
.driver
= 0;
1980 udc_controller
->driver
= 0;
1985 /* Enable DR IRQ reg and set USBCMD reg Run bit */
1986 dr_controller_run(udc_controller
);
1987 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
1988 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
1989 udc_controller
->ep0_dir
= 0;
1991 printk(KERN_INFO
"%s: bind to driver %s\n",
1992 udc_controller
->gadget
.name
, driver
->driver
.name
);
1996 printk(KERN_WARNING
"gadget driver register failed %d\n",
2001 /* Disconnect from gadget driver */
2002 static int fsl_stop(struct usb_gadget_driver
*driver
)
2004 struct fsl_ep
*loop_ep
;
2005 unsigned long flags
;
2007 if (!udc_controller
)
2010 if (!driver
|| driver
!= udc_controller
->driver
|| !driver
->unbind
)
2013 if (udc_controller
->transceiver
)
2014 otg_set_peripheral(udc_controller
->transceiver
, NULL
);
2016 /* stop DR, disable intr */
2017 dr_controller_stop(udc_controller
);
2019 /* in fact, no needed */
2020 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
2021 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
2022 udc_controller
->ep0_dir
= 0;
2024 /* stand operation */
2025 spin_lock_irqsave(&udc_controller
->lock
, flags
);
2026 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2027 nuke(&udc_controller
->eps
[0], -ESHUTDOWN
);
2028 list_for_each_entry(loop_ep
, &udc_controller
->gadget
.ep_list
,
2030 nuke(loop_ep
, -ESHUTDOWN
);
2031 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
2033 /* report disconnect; the controller is already quiesced */
2034 driver
->disconnect(&udc_controller
->gadget
);
2036 /* unbind gadget and unhook driver. */
2037 driver
->unbind(&udc_controller
->gadget
);
2038 udc_controller
->gadget
.dev
.driver
= NULL
;
2039 udc_controller
->driver
= NULL
;
2041 printk(KERN_WARNING
"unregistered gadget driver '%s'\n",
2042 driver
->driver
.name
);
2046 /*-------------------------------------------------------------------------
2047 PROC File System Support
2048 -------------------------------------------------------------------------*/
2049 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2051 #include <linux/seq_file.h>
2053 static const char proc_filename
[] = "driver/fsl_usb2_udc";
2055 static int fsl_proc_read(char *page
, char **start
, off_t off
, int count
,
2056 int *eof
, void *_dev
)
2060 unsigned size
= count
;
2061 unsigned long flags
;
2064 struct fsl_ep
*ep
= NULL
;
2065 struct fsl_req
*req
;
2067 struct fsl_udc
*udc
= udc_controller
;
2071 spin_lock_irqsave(&udc
->lock
, flags
);
2073 /* ------basic driver information ---- */
2074 t
= scnprintf(next
, size
,
2077 "Gadget driver: %s\n\n",
2078 driver_name
, DRIVER_VERSION
,
2079 udc
->driver
? udc
->driver
->driver
.name
: "(none)");
2083 /* ------ DR Registers ----- */
2084 tmp_reg
= fsl_readl(&dr_regs
->usbcmd
);
2085 t
= scnprintf(next
, size
,
2089 (tmp_reg
& USB_CMD_SUTW
) ? 1 : 0,
2090 (tmp_reg
& USB_CMD_RUN_STOP
) ? "Run" : "Stop");
2094 tmp_reg
= fsl_readl(&dr_regs
->usbsts
);
2095 t
= scnprintf(next
, size
,
2097 "Dr Suspend: %d Reset Received: %d System Error: %s "
2098 "USB Error Interrupt: %s\n\n",
2099 (tmp_reg
& USB_STS_SUSPEND
) ? 1 : 0,
2100 (tmp_reg
& USB_STS_RESET
) ? 1 : 0,
2101 (tmp_reg
& USB_STS_SYS_ERR
) ? "Err" : "Normal",
2102 (tmp_reg
& USB_STS_ERR
) ? "Err detected" : "No err");
2106 tmp_reg
= fsl_readl(&dr_regs
->usbintr
);
2107 t
= scnprintf(next
, size
,
2108 "USB Intrrupt Enable Reg:\n"
2109 "Sleep Enable: %d SOF Received Enable: %d "
2110 "Reset Enable: %d\n"
2111 "System Error Enable: %d "
2112 "Port Change Dectected Enable: %d\n"
2113 "USB Error Intr Enable: %d USB Intr Enable: %d\n\n",
2114 (tmp_reg
& USB_INTR_DEVICE_SUSPEND
) ? 1 : 0,
2115 (tmp_reg
& USB_INTR_SOF_EN
) ? 1 : 0,
2116 (tmp_reg
& USB_INTR_RESET_EN
) ? 1 : 0,
2117 (tmp_reg
& USB_INTR_SYS_ERR_EN
) ? 1 : 0,
2118 (tmp_reg
& USB_INTR_PTC_DETECT_EN
) ? 1 : 0,
2119 (tmp_reg
& USB_INTR_ERR_INT_EN
) ? 1 : 0,
2120 (tmp_reg
& USB_INTR_INT_EN
) ? 1 : 0);
2124 tmp_reg
= fsl_readl(&dr_regs
->frindex
);
2125 t
= scnprintf(next
, size
,
2126 "USB Frame Index Reg: Frame Number is 0x%x\n\n",
2127 (tmp_reg
& USB_FRINDEX_MASKS
));
2131 tmp_reg
= fsl_readl(&dr_regs
->deviceaddr
);
2132 t
= scnprintf(next
, size
,
2133 "USB Device Address Reg: Device Addr is 0x%x\n\n",
2134 (tmp_reg
& USB_DEVICE_ADDRESS_MASK
));
2138 tmp_reg
= fsl_readl(&dr_regs
->endpointlistaddr
);
2139 t
= scnprintf(next
, size
,
2140 "USB Endpoint List Address Reg: "
2141 "Device Addr is 0x%x\n\n",
2142 (tmp_reg
& USB_EP_LIST_ADDRESS_MASK
));
2146 tmp_reg
= fsl_readl(&dr_regs
->portsc1
);
2147 t
= scnprintf(next
, size
,
2148 "USB Port Status&Control Reg:\n"
2149 "Port Transceiver Type : %s Port Speed: %s\n"
2150 "PHY Low Power Suspend: %s Port Reset: %s "
2151 "Port Suspend Mode: %s\n"
2152 "Over-current Change: %s "
2153 "Port Enable/Disable Change: %s\n"
2154 "Port Enabled/Disabled: %s "
2155 "Current Connect Status: %s\n\n", ( {
2157 switch (tmp_reg
& PORTSCX_PTS_FSLS
) {
2158 case PORTSCX_PTS_UTMI
:
2160 case PORTSCX_PTS_ULPI
:
2162 case PORTSCX_PTS_FSLS
:
2163 s
= "FS/LS Serial"; break;
2168 usb_speed_string(portscx_device_speed(tmp_reg
)),
2169 (tmp_reg
& PORTSCX_PHY_LOW_POWER_SPD
) ?
2170 "Normal PHY mode" : "Low power mode",
2171 (tmp_reg
& PORTSCX_PORT_RESET
) ? "In Reset" :
2173 (tmp_reg
& PORTSCX_PORT_SUSPEND
) ? "In " : "Not in",
2174 (tmp_reg
& PORTSCX_OVER_CURRENT_CHG
) ? "Dected" :
2176 (tmp_reg
& PORTSCX_PORT_EN_DIS_CHANGE
) ? "Disable" :
2178 (tmp_reg
& PORTSCX_PORT_ENABLE
) ? "Enable" :
2180 (tmp_reg
& PORTSCX_CURRENT_CONNECT_STATUS
) ?
2181 "Attached" : "Not-Att");
2185 tmp_reg
= fsl_readl(&dr_regs
->usbmode
);
2186 t
= scnprintf(next
, size
,
2187 "USB Mode Reg: Controller Mode is: %s\n\n", ( {
2189 switch (tmp_reg
& USB_MODE_CTRL_MODE_HOST
) {
2190 case USB_MODE_CTRL_MODE_IDLE
:
2192 case USB_MODE_CTRL_MODE_DEVICE
:
2193 s
= "Device Controller"; break;
2194 case USB_MODE_CTRL_MODE_HOST
:
2195 s
= "Host Controller"; break;
2204 tmp_reg
= fsl_readl(&dr_regs
->endptsetupstat
);
2205 t
= scnprintf(next
, size
,
2206 "Endpoint Setup Status Reg: SETUP on ep 0x%x\n\n",
2207 (tmp_reg
& EP_SETUP_STATUS_MASK
));
2211 for (i
= 0; i
< udc
->max_ep
/ 2; i
++) {
2212 tmp_reg
= fsl_readl(&dr_regs
->endptctrl
[i
]);
2213 t
= scnprintf(next
, size
, "EP Ctrl Reg [0x%x]: = [0x%x]\n",
2218 tmp_reg
= fsl_readl(&dr_regs
->endpointprime
);
2219 t
= scnprintf(next
, size
, "EP Prime Reg = [0x%x]\n\n", tmp_reg
);
2223 #ifndef CONFIG_ARCH_MXC
2224 if (udc
->pdata
->have_sysif_regs
) {
2225 tmp_reg
= usb_sys_regs
->snoop1
;
2226 t
= scnprintf(next
, size
, "Snoop1 Reg : = [0x%x]\n\n", tmp_reg
);
2230 tmp_reg
= usb_sys_regs
->control
;
2231 t
= scnprintf(next
, size
, "General Control Reg : = [0x%x]\n\n",
2238 /* ------fsl_udc, fsl_ep, fsl_request structure information ----- */
2240 t
= scnprintf(next
, size
, "For %s Maxpkt is 0x%x index is 0x%x\n",
2241 ep
->ep
.name
, ep_maxpacket(ep
), ep_index(ep
));
2245 if (list_empty(&ep
->queue
)) {
2246 t
= scnprintf(next
, size
, "its req queue is empty\n\n");
2250 list_for_each_entry(req
, &ep
->queue
, queue
) {
2251 t
= scnprintf(next
, size
,
2252 "req %p actual 0x%x length 0x%x buf %p\n",
2253 &req
->req
, req
->req
.actual
,
2254 req
->req
.length
, req
->req
.buf
);
2259 /* other gadget->eplist ep */
2260 list_for_each_entry(ep
, &udc
->gadget
.ep_list
, ep
.ep_list
) {
2262 t
= scnprintf(next
, size
,
2263 "\nFor %s Maxpkt is 0x%x "
2265 ep
->ep
.name
, ep_maxpacket(ep
),
2270 if (list_empty(&ep
->queue
)) {
2271 t
= scnprintf(next
, size
,
2272 "its req queue is empty\n\n");
2276 list_for_each_entry(req
, &ep
->queue
, queue
) {
2277 t
= scnprintf(next
, size
,
2278 "req %p actual 0x%x length "
2280 &req
->req
, req
->req
.actual
,
2281 req
->req
.length
, req
->req
.buf
);
2284 } /* end for each_entry of ep req */
2285 } /* end for else */
2286 } /* end for if(ep->queue) */
2287 } /* end (ep->desc) */
2289 spin_unlock_irqrestore(&udc
->lock
, flags
);
2292 return count
- size
;
2295 #define create_proc_file() create_proc_read_entry(proc_filename, \
2296 0, NULL, fsl_proc_read, NULL)
2298 #define remove_proc_file() remove_proc_entry(proc_filename, NULL)
2300 #else /* !CONFIG_USB_GADGET_DEBUG_FILES */
2302 #define create_proc_file() do {} while (0)
2303 #define remove_proc_file() do {} while (0)
2305 #endif /* CONFIG_USB_GADGET_DEBUG_FILES */
2307 /*-------------------------------------------------------------------------*/
2309 /* Release udc structures */
2310 static void fsl_udc_release(struct device
*dev
)
2312 complete(udc_controller
->done
);
2313 dma_free_coherent(dev
->parent
, udc_controller
->ep_qh_size
,
2314 udc_controller
->ep_qh
, udc_controller
->ep_qh_dma
);
2315 kfree(udc_controller
);
2318 /******************************************************************
2319 Internal structure setup functions
2320 *******************************************************************/
2321 /*------------------------------------------------------------------
2322 * init resource for globle controller
2323 * Return the udc handle on success or NULL on failure
2324 ------------------------------------------------------------------*/
2325 static int __init
struct_udc_setup(struct fsl_udc
*udc
,
2326 struct platform_device
*pdev
)
2328 struct fsl_usb2_platform_data
*pdata
;
2331 pdata
= pdev
->dev
.platform_data
;
2332 udc
->phy_mode
= pdata
->phy_mode
;
2334 udc
->eps
= kzalloc(sizeof(struct fsl_ep
) * udc
->max_ep
, GFP_KERNEL
);
2336 ERR("malloc fsl_ep failed\n");
2340 /* initialized QHs, take care of alignment */
2341 size
= udc
->max_ep
* sizeof(struct ep_queue_head
);
2342 if (size
< QH_ALIGNMENT
)
2343 size
= QH_ALIGNMENT
;
2344 else if ((size
% QH_ALIGNMENT
) != 0) {
2345 size
+= QH_ALIGNMENT
+ 1;
2346 size
&= ~(QH_ALIGNMENT
- 1);
2348 udc
->ep_qh
= dma_alloc_coherent(&pdev
->dev
, size
,
2349 &udc
->ep_qh_dma
, GFP_KERNEL
);
2351 ERR("malloc QHs for udc failed\n");
2356 udc
->ep_qh_size
= size
;
2358 /* Initialize ep0 status request structure */
2359 /* FIXME: fsl_alloc_request() ignores ep argument */
2360 udc
->status_req
= container_of(fsl_alloc_request(NULL
, GFP_KERNEL
),
2361 struct fsl_req
, req
);
2362 /* allocate a small amount of memory to get valid address */
2363 udc
->status_req
->req
.buf
= kmalloc(8, GFP_KERNEL
);
2365 udc
->resume_state
= USB_STATE_NOTATTACHED
;
2366 udc
->usb_state
= USB_STATE_POWERED
;
2368 udc
->remote_wakeup
= 0; /* default to 0 on reset */
2373 /*----------------------------------------------------------------
2374 * Setup the fsl_ep struct for eps
2375 * Link fsl_ep->ep to gadget->ep_list
2376 * ep0out is not used so do nothing here
2377 * ep0in should be taken care
2378 *--------------------------------------------------------------*/
2379 static int __init
struct_ep_setup(struct fsl_udc
*udc
, unsigned char index
,
2380 char *name
, int link
)
2382 struct fsl_ep
*ep
= &udc
->eps
[index
];
2385 strcpy(ep
->name
, name
);
2386 ep
->ep
.name
= ep
->name
;
2388 ep
->ep
.ops
= &fsl_ep_ops
;
2391 /* for ep0: maxP defined in desc
2392 * for other eps, maxP is set by epautoconfig() called by gadget layer
2394 ep
->ep
.maxpacket
= (unsigned short) ~0;
2396 /* the queue lists any req for this ep */
2397 INIT_LIST_HEAD(&ep
->queue
);
2399 /* gagdet.ep_list used for ep_autoconfig so no ep0 */
2401 list_add_tail(&ep
->ep
.ep_list
, &udc
->gadget
.ep_list
);
2402 ep
->gadget
= &udc
->gadget
;
2403 ep
->qh
= &udc
->ep_qh
[index
];
2408 /* Driver probe function
2409 * all intialization operations implemented here except enabling usb_intr reg
2410 * board setup should have been done in the platform code
2412 static int __init
fsl_udc_probe(struct platform_device
*pdev
)
2414 struct fsl_usb2_platform_data
*pdata
;
2415 struct resource
*res
;
2420 if (strcmp(pdev
->name
, driver_name
)) {
2421 VDBG("Wrong device");
2425 udc_controller
= kzalloc(sizeof(struct fsl_udc
), GFP_KERNEL
);
2426 if (udc_controller
== NULL
) {
2427 ERR("malloc udc failed\n");
2431 pdata
= pdev
->dev
.platform_data
;
2432 udc_controller
->pdata
= pdata
;
2433 spin_lock_init(&udc_controller
->lock
);
2434 udc_controller
->stopped
= 1;
2436 #ifdef CONFIG_USB_OTG
2437 if (pdata
->operating_mode
== FSL_USB2_DR_OTG
) {
2438 udc_controller
->transceiver
= otg_get_transceiver();
2439 if (!udc_controller
->transceiver
) {
2440 ERR("Can't find OTG driver!\n");
2447 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2453 if (pdata
->operating_mode
== FSL_USB2_DR_DEVICE
) {
2454 if (!request_mem_region(res
->start
, resource_size(res
),
2456 ERR("request mem region for %s failed\n", pdev
->name
);
2462 dr_regs
= ioremap(res
->start
, resource_size(res
));
2465 goto err_release_mem_region
;
2468 pdata
->regs
= (void *)dr_regs
;
2471 * do platform specific init: check the clock, grab/config pins, etc.
2473 if (pdata
->init
&& pdata
->init(pdev
)) {
2475 goto err_iounmap_noclk
;
2478 /* Set accessors only after pdata->init() ! */
2479 fsl_set_accessors(pdata
);
2481 #ifndef CONFIG_ARCH_MXC
2482 if (pdata
->have_sysif_regs
)
2483 usb_sys_regs
= (struct usb_sys_interface
*)
2484 ((u32
)dr_regs
+ USB_DR_SYS_OFFSET
);
2487 /* Initialize USB clocks */
2488 ret
= fsl_udc_clk_init(pdev
);
2490 goto err_iounmap_noclk
;
2492 /* Read Device Controller Capability Parameters register */
2493 dccparams
= fsl_readl(&dr_regs
->dccparams
);
2494 if (!(dccparams
& DCCPARAMS_DC
)) {
2495 ERR("This SOC doesn't support device role\n");
2499 /* Get max device endpoints */
2500 /* DEN is bidirectional ep number, max_ep doubles the number */
2501 udc_controller
->max_ep
= (dccparams
& DCCPARAMS_DEN_MASK
) * 2;
2503 udc_controller
->irq
= platform_get_irq(pdev
, 0);
2504 if (!udc_controller
->irq
) {
2509 ret
= request_irq(udc_controller
->irq
, fsl_udc_irq
, IRQF_SHARED
,
2510 driver_name
, udc_controller
);
2512 ERR("cannot request irq %d err %d\n",
2513 udc_controller
->irq
, ret
);
2517 /* Initialize the udc structure including QH member and other member */
2518 if (struct_udc_setup(udc_controller
, pdev
)) {
2519 ERR("Can't initialize udc data structure\n");
2524 if (!udc_controller
->transceiver
) {
2525 /* initialize usb hw reg except for regs for EP,
2526 * leave usbintr reg untouched */
2527 dr_controller_setup(udc_controller
);
2530 fsl_udc_clk_finalize(pdev
);
2532 /* Setup gadget structure */
2533 udc_controller
->gadget
.ops
= &fsl_gadget_ops
;
2534 udc_controller
->gadget
.is_dualspeed
= 1;
2535 udc_controller
->gadget
.ep0
= &udc_controller
->eps
[0].ep
;
2536 INIT_LIST_HEAD(&udc_controller
->gadget
.ep_list
);
2537 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2538 udc_controller
->gadget
.name
= driver_name
;
2540 /* Setup gadget.dev and register with kernel */
2541 dev_set_name(&udc_controller
->gadget
.dev
, "gadget");
2542 udc_controller
->gadget
.dev
.release
= fsl_udc_release
;
2543 udc_controller
->gadget
.dev
.parent
= &pdev
->dev
;
2544 ret
= device_register(&udc_controller
->gadget
.dev
);
2548 if (udc_controller
->transceiver
)
2549 udc_controller
->gadget
.is_otg
= 1;
2551 /* setup QH and epctrl for ep0 */
2552 ep0_setup(udc_controller
);
2554 /* setup udc->eps[] for ep0 */
2555 struct_ep_setup(udc_controller
, 0, "ep0", 0);
2556 /* for ep0: the desc defined here;
2557 * for other eps, gadget layer called ep_enable with defined desc
2559 udc_controller
->eps
[0].desc
= &fsl_ep0_desc
;
2560 udc_controller
->eps
[0].ep
.maxpacket
= USB_MAX_CTRL_PAYLOAD
;
2562 /* setup the udc->eps[] for non-control endpoints and link
2563 * to gadget.ep_list */
2564 for (i
= 1; i
< (int)(udc_controller
->max_ep
/ 2); i
++) {
2567 sprintf(name
, "ep%dout", i
);
2568 struct_ep_setup(udc_controller
, i
* 2, name
, 1);
2569 sprintf(name
, "ep%din", i
);
2570 struct_ep_setup(udc_controller
, i
* 2 + 1, name
, 1);
2573 /* use dma_pool for TD management */
2574 udc_controller
->td_pool
= dma_pool_create("udc_td", &pdev
->dev
,
2575 sizeof(struct ep_td_struct
),
2576 DTD_ALIGNMENT
, UDC_DMA_BOUNDARY
);
2577 if (udc_controller
->td_pool
== NULL
) {
2579 goto err_unregister
;
2582 ret
= usb_add_gadget_udc(&pdev
->dev
, &udc_controller
->gadget
);
2590 dma_pool_destroy(udc_controller
->td_pool
);
2592 device_unregister(&udc_controller
->gadget
.dev
);
2594 free_irq(udc_controller
->irq
, udc_controller
);
2598 fsl_udc_clk_release();
2601 err_release_mem_region
:
2602 if (pdata
->operating_mode
== FSL_USB2_DR_DEVICE
)
2603 release_mem_region(res
->start
, resource_size(res
));
2605 kfree(udc_controller
);
2606 udc_controller
= NULL
;
2610 /* Driver removal function
2611 * Free resources and finish pending transactions
2613 static int __exit
fsl_udc_remove(struct platform_device
*pdev
)
2615 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2616 struct fsl_usb2_platform_data
*pdata
= pdev
->dev
.platform_data
;
2618 DECLARE_COMPLETION(done
);
2620 if (!udc_controller
)
2623 usb_del_gadget_udc(&udc_controller
->gadget
);
2624 udc_controller
->done
= &done
;
2626 fsl_udc_clk_release();
2628 /* DR has been stopped in usb_gadget_unregister_driver() */
2631 /* Free allocated memory */
2632 kfree(udc_controller
->status_req
->req
.buf
);
2633 kfree(udc_controller
->status_req
);
2634 kfree(udc_controller
->eps
);
2636 dma_pool_destroy(udc_controller
->td_pool
);
2637 free_irq(udc_controller
->irq
, udc_controller
);
2639 if (pdata
->operating_mode
== FSL_USB2_DR_DEVICE
)
2640 release_mem_region(res
->start
, resource_size(res
));
2642 device_unregister(&udc_controller
->gadget
.dev
);
2643 /* free udc --wait for the release() finished */
2644 wait_for_completion(&done
);
2647 * do platform specific un-initialization:
2648 * release iomux pins, etc.
2656 /*-----------------------------------------------------------------
2657 * Modify Power management attributes
2658 * Used by OTG statemachine to disable gadget temporarily
2659 -----------------------------------------------------------------*/
2660 static int fsl_udc_suspend(struct platform_device
*pdev
, pm_message_t state
)
2662 dr_controller_stop(udc_controller
);
2666 /*-----------------------------------------------------------------
2667 * Invoked on USB resume. May be called in_interrupt.
2668 * Here we start the DR controller and enable the irq
2669 *-----------------------------------------------------------------*/
2670 static int fsl_udc_resume(struct platform_device
*pdev
)
2672 /* Enable DR irq reg and set controller Run */
2673 if (udc_controller
->stopped
) {
2674 dr_controller_setup(udc_controller
);
2675 dr_controller_run(udc_controller
);
2677 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
2678 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
2679 udc_controller
->ep0_dir
= 0;
2683 static int fsl_udc_otg_suspend(struct device
*dev
, pm_message_t state
)
2685 struct fsl_udc
*udc
= udc_controller
;
2688 mode
= fsl_readl(&dr_regs
->usbmode
) & USB_MODE_CTRL_MODE_MASK
;
2690 pr_debug("%s(): mode 0x%x stopped %d\n", __func__
, mode
, udc
->stopped
);
2693 * If the controller is already stopped, then this must be a
2694 * PM suspend. Remember this fact, so that we will leave the
2695 * controller stopped at PM resume time.
2698 pr_debug("gadget already stopped, leaving early\n");
2699 udc
->already_stopped
= 1;
2703 if (mode
!= USB_MODE_CTRL_MODE_DEVICE
) {
2704 pr_debug("gadget not in device mode, leaving early\n");
2708 /* stop the controller */
2709 usbcmd
= fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
;
2710 fsl_writel(usbcmd
, &dr_regs
->usbcmd
);
2714 pr_info("USB Gadget suspended\n");
2719 static int fsl_udc_otg_resume(struct device
*dev
)
2721 pr_debug("%s(): stopped %d already_stopped %d\n", __func__
,
2722 udc_controller
->stopped
, udc_controller
->already_stopped
);
2725 * If the controller was stopped at suspend time, then
2726 * don't resume it now.
2728 if (udc_controller
->already_stopped
) {
2729 udc_controller
->already_stopped
= 0;
2730 pr_debug("gadget was already stopped, leaving early\n");
2734 pr_info("USB Gadget resume\n");
2736 return fsl_udc_resume(NULL
);
2739 /*-------------------------------------------------------------------------
2740 Register entry point for the peripheral controller driver
2741 --------------------------------------------------------------------------*/
2743 static struct platform_driver udc_driver
= {
2744 .remove
= __exit_p(fsl_udc_remove
),
2745 /* these suspend and resume are not usb suspend and resume */
2746 .suspend
= fsl_udc_suspend
,
2747 .resume
= fsl_udc_resume
,
2749 .name
= (char *)driver_name
,
2750 .owner
= THIS_MODULE
,
2751 /* udc suspend/resume called from OTG driver */
2752 .suspend
= fsl_udc_otg_suspend
,
2753 .resume
= fsl_udc_otg_resume
,
2757 static int __init
udc_init(void)
2759 printk(KERN_INFO
"%s (%s)\n", driver_desc
, DRIVER_VERSION
);
2760 return platform_driver_probe(&udc_driver
, fsl_udc_probe
);
2763 module_init(udc_init
);
2765 static void __exit
udc_exit(void)
2767 platform_driver_unregister(&udc_driver
);
2768 printk(KERN_WARNING
"%s unregistered\n", driver_desc
);
2771 module_exit(udc_exit
);
2773 MODULE_DESCRIPTION(DRIVER_DESC
);
2774 MODULE_AUTHOR(DRIVER_AUTHOR
);
2775 MODULE_LICENSE("GPL");
2776 MODULE_ALIAS("platform:fsl-usb2-udc");