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>
49 #include <asm/cacheflush.h>
51 #include "fsl_usb2_udc.h"
53 #define DRIVER_DESC "Freescale High-Speed USB SOC Device Controller driver"
54 #define DRIVER_AUTHOR "Li Yang/Jiang Bo"
55 #define DRIVER_VERSION "Apr 20, 2007"
57 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
59 static const char driver_name
[] = "fsl-usb2-udc";
60 static const char driver_desc
[] = DRIVER_DESC
;
62 static struct usb_dr_device
*dr_regs
;
63 #ifndef CONFIG_ARCH_MXC
64 static struct usb_sys_interface
*usb_sys_regs
;
67 /* it is initialized in probe() */
68 static struct fsl_udc
*udc_controller
= NULL
;
70 static const struct usb_endpoint_descriptor
72 .bLength
= USB_DT_ENDPOINT_SIZE
,
73 .bDescriptorType
= USB_DT_ENDPOINT
,
74 .bEndpointAddress
= 0,
75 .bmAttributes
= USB_ENDPOINT_XFER_CONTROL
,
76 .wMaxPacketSize
= USB_MAX_CTRL_PAYLOAD
,
79 static void fsl_ep_fifo_flush(struct usb_ep
*_ep
);
83 * On some SoCs, the USB controller registers can be big or little endian,
84 * depending on the version of the chip. In order to be able to run the
85 * same kernel binary on 2 different versions of an SoC, the BE/LE decision
86 * must be made at run time. _fsl_readl and fsl_writel are pointers to the
87 * BE or LE readl() and writel() functions, and fsl_readl() and fsl_writel()
88 * call through those pointers. Platform code for SoCs that have BE USB
89 * registers should set pdata->big_endian_mmio flag.
91 * This also applies to controller-to-cpu accessors for the USB descriptors,
92 * since their endianness is also SoC dependant. Platform code for SoCs that
93 * have BE USB descriptors should set pdata->big_endian_desc flag.
95 static u32
_fsl_readl_be(const unsigned __iomem
*p
)
100 static u32
_fsl_readl_le(const unsigned __iomem
*p
)
105 static void _fsl_writel_be(u32 v
, unsigned __iomem
*p
)
110 static void _fsl_writel_le(u32 v
, unsigned __iomem
*p
)
115 static u32 (*_fsl_readl
)(const unsigned __iomem
*p
);
116 static void (*_fsl_writel
)(u32 v
, unsigned __iomem
*p
);
118 #define fsl_readl(p) (*_fsl_readl)((p))
119 #define fsl_writel(v, p) (*_fsl_writel)((v), (p))
121 static inline u32
cpu_to_hc32(const u32 x
)
123 return udc_controller
->pdata
->big_endian_desc
124 ? (__force u32
)cpu_to_be32(x
)
125 : (__force u32
)cpu_to_le32(x
);
128 static inline u32
hc32_to_cpu(const u32 x
)
130 return udc_controller
->pdata
->big_endian_desc
131 ? be32_to_cpu((__force __be32
)x
)
132 : le32_to_cpu((__force __le32
)x
);
134 #else /* !CONFIG_PPC32 */
135 #define fsl_readl(addr) readl(addr)
136 #define fsl_writel(val32, addr) writel(val32, addr)
137 #define cpu_to_hc32(x) cpu_to_le32(x)
138 #define hc32_to_cpu(x) le32_to_cpu(x)
139 #endif /* CONFIG_PPC32 */
141 /********************************************************************
142 * Internal Used Function
143 ********************************************************************/
144 /*-----------------------------------------------------------------
145 * done() - retire a request; caller blocked irqs
146 * @status : request status to be set, only works when
147 * request is still in progress.
148 *--------------------------------------------------------------*/
149 static void done(struct fsl_ep
*ep
, struct fsl_req
*req
, int status
)
151 struct fsl_udc
*udc
= NULL
;
152 unsigned char stopped
= ep
->stopped
;
153 struct ep_td_struct
*curr_td
, *next_td
;
156 udc
= (struct fsl_udc
*)ep
->udc
;
157 /* Removed the req from fsl_ep->queue */
158 list_del_init(&req
->queue
);
160 /* req.status should be set as -EINPROGRESS in ep_queue() */
161 if (req
->req
.status
== -EINPROGRESS
)
162 req
->req
.status
= status
;
164 status
= req
->req
.status
;
166 /* Free dtd for the request */
168 for (j
= 0; j
< req
->dtd_count
; j
++) {
170 if (j
!= req
->dtd_count
- 1) {
171 next_td
= curr_td
->next_td_virt
;
173 dma_pool_free(udc
->td_pool
, curr_td
, curr_td
->td_dma
);
177 dma_unmap_single(ep
->udc
->gadget
.dev
.parent
,
178 req
->req
.dma
, req
->req
.length
,
182 req
->req
.dma
= DMA_ADDR_INVALID
;
185 dma_sync_single_for_cpu(ep
->udc
->gadget
.dev
.parent
,
186 req
->req
.dma
, req
->req
.length
,
191 if (status
&& (status
!= -ESHUTDOWN
))
192 VDBG("complete %s req %p stat %d len %u/%u",
193 ep
->ep
.name
, &req
->req
, status
,
194 req
->req
.actual
, req
->req
.length
);
198 spin_unlock(&ep
->udc
->lock
);
199 /* complete() is from gadget layer,
200 * eg fsg->bulk_in_complete() */
201 if (req
->req
.complete
)
202 req
->req
.complete(&ep
->ep
, &req
->req
);
204 spin_lock(&ep
->udc
->lock
);
205 ep
->stopped
= stopped
;
208 /*-----------------------------------------------------------------
209 * nuke(): delete all requests related to this ep
210 * called with spinlock held
211 *--------------------------------------------------------------*/
212 static void nuke(struct fsl_ep
*ep
, int status
)
217 fsl_ep_fifo_flush(&ep
->ep
);
219 /* Whether this eq has request linked */
220 while (!list_empty(&ep
->queue
)) {
221 struct fsl_req
*req
= NULL
;
223 req
= list_entry(ep
->queue
.next
, struct fsl_req
, queue
);
224 done(ep
, req
, status
);
228 /*------------------------------------------------------------------
229 Internal Hardware related function
230 ------------------------------------------------------------------*/
232 static int dr_controller_setup(struct fsl_udc
*udc
)
234 unsigned int tmp
, portctrl
, ep_num
;
235 unsigned int max_no_of_ep
;
236 #ifndef CONFIG_ARCH_MXC
239 unsigned long timeout
;
240 #define FSL_UDC_RESET_TIMEOUT 1000
242 /* Config PHY interface */
243 portctrl
= fsl_readl(&dr_regs
->portsc1
);
244 portctrl
&= ~(PORTSCX_PHY_TYPE_SEL
| PORTSCX_PORT_WIDTH
);
245 switch (udc
->phy_mode
) {
246 case FSL_USB2_PHY_ULPI
:
247 portctrl
|= PORTSCX_PTS_ULPI
;
249 case FSL_USB2_PHY_UTMI_WIDE
:
250 portctrl
|= PORTSCX_PTW_16BIT
;
252 case FSL_USB2_PHY_UTMI
:
253 portctrl
|= PORTSCX_PTS_UTMI
;
255 case FSL_USB2_PHY_SERIAL
:
256 portctrl
|= PORTSCX_PTS_FSLS
;
261 fsl_writel(portctrl
, &dr_regs
->portsc1
);
263 /* Stop and reset the usb controller */
264 tmp
= fsl_readl(&dr_regs
->usbcmd
);
265 tmp
&= ~USB_CMD_RUN_STOP
;
266 fsl_writel(tmp
, &dr_regs
->usbcmd
);
268 tmp
= fsl_readl(&dr_regs
->usbcmd
);
269 tmp
|= USB_CMD_CTRL_RESET
;
270 fsl_writel(tmp
, &dr_regs
->usbcmd
);
272 /* Wait for reset to complete */
273 timeout
= jiffies
+ FSL_UDC_RESET_TIMEOUT
;
274 while (fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_CTRL_RESET
) {
275 if (time_after(jiffies
, timeout
)) {
276 ERR("udc reset timeout!\n");
282 /* Set the controller as device mode */
283 tmp
= fsl_readl(&dr_regs
->usbmode
);
284 tmp
&= ~USB_MODE_CTRL_MODE_MASK
; /* clear mode bits */
285 tmp
|= USB_MODE_CTRL_MODE_DEVICE
;
286 /* Disable Setup Lockout */
287 tmp
|= USB_MODE_SETUP_LOCK_OFF
;
290 fsl_writel(tmp
, &dr_regs
->usbmode
);
292 /* Clear the setup status */
293 fsl_writel(0, &dr_regs
->usbsts
);
295 tmp
= udc
->ep_qh_dma
;
296 tmp
&= USB_EP_LIST_ADDRESS_MASK
;
297 fsl_writel(tmp
, &dr_regs
->endpointlistaddr
);
299 VDBG("vir[qh_base] is %p phy[qh_base] is 0x%8x reg is 0x%8x",
300 udc
->ep_qh
, (int)tmp
,
301 fsl_readl(&dr_regs
->endpointlistaddr
));
303 max_no_of_ep
= (0x0000001F & fsl_readl(&dr_regs
->dccparams
));
304 for (ep_num
= 1; ep_num
< max_no_of_ep
; ep_num
++) {
305 tmp
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
306 tmp
&= ~(EPCTRL_TX_TYPE
| EPCTRL_RX_TYPE
);
307 tmp
|= (EPCTRL_EP_TYPE_BULK
<< EPCTRL_TX_EP_TYPE_SHIFT
)
308 | (EPCTRL_EP_TYPE_BULK
<< EPCTRL_RX_EP_TYPE_SHIFT
);
309 fsl_writel(tmp
, &dr_regs
->endptctrl
[ep_num
]);
311 /* Config control enable i/o output, cpu endian register */
312 #ifndef CONFIG_ARCH_MXC
313 if (udc
->pdata
->have_sysif_regs
) {
314 ctrl
= __raw_readl(&usb_sys_regs
->control
);
315 ctrl
|= USB_CTRL_IOENB
;
316 __raw_writel(ctrl
, &usb_sys_regs
->control
);
320 #if defined(CONFIG_PPC32) && !defined(CONFIG_NOT_COHERENT_CACHE)
321 /* Turn on cache snooping hardware, since some PowerPC platforms
322 * wholly rely on hardware to deal with cache coherent. */
324 if (udc
->pdata
->have_sysif_regs
) {
325 /* Setup Snooping for all the 4GB space */
326 tmp
= SNOOP_SIZE_2GB
; /* starts from 0x0, size 2G */
327 __raw_writel(tmp
, &usb_sys_regs
->snoop1
);
328 tmp
|= 0x80000000; /* starts from 0x8000000, size 2G */
329 __raw_writel(tmp
, &usb_sys_regs
->snoop2
);
336 /* Enable DR irq and set controller to run state */
337 static void dr_controller_run(struct fsl_udc
*udc
)
341 /* Enable DR irq reg */
342 temp
= USB_INTR_INT_EN
| USB_INTR_ERR_INT_EN
343 | USB_INTR_PTC_DETECT_EN
| USB_INTR_RESET_EN
344 | USB_INTR_DEVICE_SUSPEND
| USB_INTR_SYS_ERR_EN
;
346 fsl_writel(temp
, &dr_regs
->usbintr
);
348 /* Clear stopped bit */
351 /* Set the controller as device mode */
352 temp
= fsl_readl(&dr_regs
->usbmode
);
353 temp
|= USB_MODE_CTRL_MODE_DEVICE
;
354 fsl_writel(temp
, &dr_regs
->usbmode
);
356 /* Set controller to Run */
357 temp
= fsl_readl(&dr_regs
->usbcmd
);
358 temp
|= USB_CMD_RUN_STOP
;
359 fsl_writel(temp
, &dr_regs
->usbcmd
);
362 static void dr_controller_stop(struct fsl_udc
*udc
)
366 pr_debug("%s\n", __func__
);
368 /* if we're in OTG mode, and the Host is currently using the port,
369 * stop now and don't rip the controller out from under the
372 if (udc
->gadget
.is_otg
) {
373 if (!(fsl_readl(&dr_regs
->otgsc
) & OTGSC_STS_USB_ID
)) {
374 pr_debug("udc: Leaving early\n");
379 /* disable all INTR */
380 fsl_writel(0, &dr_regs
->usbintr
);
382 /* Set stopped bit for isr */
385 /* disable IO output */
386 /* usb_sys_regs->control = 0; */
388 /* set controller to Stop */
389 tmp
= fsl_readl(&dr_regs
->usbcmd
);
390 tmp
&= ~USB_CMD_RUN_STOP
;
391 fsl_writel(tmp
, &dr_regs
->usbcmd
);
394 static void dr_ep_setup(unsigned char ep_num
, unsigned char dir
,
395 unsigned char ep_type
)
397 unsigned int tmp_epctrl
= 0;
399 tmp_epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
402 tmp_epctrl
|= EPCTRL_TX_DATA_TOGGLE_RST
;
403 tmp_epctrl
|= EPCTRL_TX_ENABLE
;
404 tmp_epctrl
&= ~EPCTRL_TX_TYPE
;
405 tmp_epctrl
|= ((unsigned int)(ep_type
)
406 << EPCTRL_TX_EP_TYPE_SHIFT
);
409 tmp_epctrl
|= EPCTRL_RX_DATA_TOGGLE_RST
;
410 tmp_epctrl
|= EPCTRL_RX_ENABLE
;
411 tmp_epctrl
&= ~EPCTRL_RX_TYPE
;
412 tmp_epctrl
|= ((unsigned int)(ep_type
)
413 << EPCTRL_RX_EP_TYPE_SHIFT
);
416 fsl_writel(tmp_epctrl
, &dr_regs
->endptctrl
[ep_num
]);
420 dr_ep_change_stall(unsigned char ep_num
, unsigned char dir
, int value
)
424 tmp_epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
427 /* set the stall bit */
429 tmp_epctrl
|= EPCTRL_TX_EP_STALL
;
431 tmp_epctrl
|= EPCTRL_RX_EP_STALL
;
433 /* clear the stall bit and reset data toggle */
435 tmp_epctrl
&= ~EPCTRL_TX_EP_STALL
;
436 tmp_epctrl
|= EPCTRL_TX_DATA_TOGGLE_RST
;
438 tmp_epctrl
&= ~EPCTRL_RX_EP_STALL
;
439 tmp_epctrl
|= EPCTRL_RX_DATA_TOGGLE_RST
;
442 fsl_writel(tmp_epctrl
, &dr_regs
->endptctrl
[ep_num
]);
445 /* Get stall status of a specific ep
446 Return: 0: not stalled; 1:stalled */
447 static int dr_ep_get_stall(unsigned char ep_num
, unsigned char dir
)
451 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
453 return (epctrl
& EPCTRL_TX_EP_STALL
) ? 1 : 0;
455 return (epctrl
& EPCTRL_RX_EP_STALL
) ? 1 : 0;
458 /********************************************************************
459 Internal Structure Build up functions
460 ********************************************************************/
462 /*------------------------------------------------------------------
463 * struct_ep_qh_setup(): set the Endpoint Capabilites field of QH
464 * @zlt: Zero Length Termination Select (1: disable; 0: enable)
466 ------------------------------------------------------------------*/
467 static void struct_ep_qh_setup(struct fsl_udc
*udc
, unsigned char ep_num
,
468 unsigned char dir
, unsigned char ep_type
,
469 unsigned int max_pkt_len
,
470 unsigned int zlt
, unsigned char mult
)
472 struct ep_queue_head
*p_QH
= &udc
->ep_qh
[2 * ep_num
+ dir
];
473 unsigned int tmp
= 0;
475 /* set the Endpoint Capabilites in QH */
477 case USB_ENDPOINT_XFER_CONTROL
:
478 /* Interrupt On Setup (IOS). for control ep */
479 tmp
= (max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
)
482 case USB_ENDPOINT_XFER_ISOC
:
483 tmp
= (max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
)
484 | (mult
<< EP_QUEUE_HEAD_MULT_POS
);
486 case USB_ENDPOINT_XFER_BULK
:
487 case USB_ENDPOINT_XFER_INT
:
488 tmp
= max_pkt_len
<< EP_QUEUE_HEAD_MAX_PKT_LEN_POS
;
491 VDBG("error ep type is %d", ep_type
);
495 tmp
|= EP_QUEUE_HEAD_ZLT_SEL
;
497 p_QH
->max_pkt_length
= cpu_to_hc32(tmp
);
498 p_QH
->next_dtd_ptr
= 1;
499 p_QH
->size_ioc_int_sts
= 0;
502 /* Setup qh structure and ep register for ep0. */
503 static void ep0_setup(struct fsl_udc
*udc
)
505 /* the intialization of an ep includes: fields in QH, Regs,
507 struct_ep_qh_setup(udc
, 0, USB_RECV
, USB_ENDPOINT_XFER_CONTROL
,
508 USB_MAX_CTRL_PAYLOAD
, 0, 0);
509 struct_ep_qh_setup(udc
, 0, USB_SEND
, USB_ENDPOINT_XFER_CONTROL
,
510 USB_MAX_CTRL_PAYLOAD
, 0, 0);
511 dr_ep_setup(0, USB_RECV
, USB_ENDPOINT_XFER_CONTROL
);
512 dr_ep_setup(0, USB_SEND
, USB_ENDPOINT_XFER_CONTROL
);
518 /***********************************************************************
519 Endpoint Management Functions
520 ***********************************************************************/
522 /*-------------------------------------------------------------------------
523 * when configurations are set, or when interface settings change
524 * for example the do_set_interface() in gadget layer,
525 * the driver will enable or disable the relevant endpoints
526 * ep0 doesn't use this routine. It is always enabled.
527 -------------------------------------------------------------------------*/
528 static int fsl_ep_enable(struct usb_ep
*_ep
,
529 const struct usb_endpoint_descriptor
*desc
)
531 struct fsl_udc
*udc
= NULL
;
532 struct fsl_ep
*ep
= NULL
;
533 unsigned short max
= 0;
534 unsigned char mult
= 0, zlt
;
535 int retval
= -EINVAL
;
536 unsigned long flags
= 0;
538 ep
= container_of(_ep
, struct fsl_ep
, ep
);
540 /* catch various bogus parameters */
541 if (!_ep
|| !desc
|| ep
->desc
542 || (desc
->bDescriptorType
!= USB_DT_ENDPOINT
))
547 if (!udc
->driver
|| (udc
->gadget
.speed
== USB_SPEED_UNKNOWN
))
550 max
= le16_to_cpu(desc
->wMaxPacketSize
);
552 /* Disable automatic zlp generation. Driver is responsible to indicate
553 * explicitly through req->req.zero. This is needed to enable multi-td
557 /* Assume the max packet size from gadget is always correct */
558 switch (desc
->bmAttributes
& 0x03) {
559 case USB_ENDPOINT_XFER_CONTROL
:
560 case USB_ENDPOINT_XFER_BULK
:
561 case USB_ENDPOINT_XFER_INT
:
562 /* mult = 0. Execute N Transactions as demonstrated by
563 * the USB variable length packet protocol where N is
564 * computed using the Maximum Packet Length (dQH) and
565 * the Total Bytes field (dTD) */
568 case USB_ENDPOINT_XFER_ISOC
:
569 /* Calculate transactions needed for high bandwidth iso */
570 mult
= (unsigned char)(1 + ((max
>> 11) & 0x03));
571 max
= max
& 0x7ff; /* bit 0~10 */
572 /* 3 transactions at most */
580 spin_lock_irqsave(&udc
->lock
, flags
);
581 ep
->ep
.maxpacket
= max
;
585 /* Controller related setup */
586 /* Init EPx Queue Head (Ep Capabilites field in QH
587 * according to max, zlt, mult) */
588 struct_ep_qh_setup(udc
, (unsigned char) ep_index(ep
),
589 (unsigned char) ((desc
->bEndpointAddress
& USB_DIR_IN
)
590 ? USB_SEND
: USB_RECV
),
591 (unsigned char) (desc
->bmAttributes
592 & USB_ENDPOINT_XFERTYPE_MASK
),
595 /* Init endpoint ctrl register */
596 dr_ep_setup((unsigned char) ep_index(ep
),
597 (unsigned char) ((desc
->bEndpointAddress
& USB_DIR_IN
)
598 ? USB_SEND
: USB_RECV
),
599 (unsigned char) (desc
->bmAttributes
600 & USB_ENDPOINT_XFERTYPE_MASK
));
602 spin_unlock_irqrestore(&udc
->lock
, flags
);
605 VDBG("enabled %s (ep%d%s) maxpacket %d",ep
->ep
.name
,
606 ep
->desc
->bEndpointAddress
& 0x0f,
607 (desc
->bEndpointAddress
& USB_DIR_IN
)
608 ? "in" : "out", max
);
613 /*---------------------------------------------------------------------
614 * @ep : the ep being unconfigured. May not be ep0
615 * Any pending and uncomplete req will complete with status (-ESHUTDOWN)
616 *---------------------------------------------------------------------*/
617 static int fsl_ep_disable(struct usb_ep
*_ep
)
619 struct fsl_udc
*udc
= NULL
;
620 struct fsl_ep
*ep
= NULL
;
621 unsigned long flags
= 0;
625 ep
= container_of(_ep
, struct fsl_ep
, ep
);
626 if (!_ep
|| !ep
->desc
) {
627 VDBG("%s not enabled", _ep
? ep
->ep
.name
: NULL
);
631 /* disable ep on controller */
632 ep_num
= ep_index(ep
);
633 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
635 epctrl
&= ~(EPCTRL_TX_ENABLE
| EPCTRL_TX_TYPE
);
636 epctrl
|= EPCTRL_EP_TYPE_BULK
<< EPCTRL_TX_EP_TYPE_SHIFT
;
638 epctrl
&= ~(EPCTRL_RX_ENABLE
| EPCTRL_TX_TYPE
);
639 epctrl
|= EPCTRL_EP_TYPE_BULK
<< EPCTRL_RX_EP_TYPE_SHIFT
;
641 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
643 udc
= (struct fsl_udc
*)ep
->udc
;
644 spin_lock_irqsave(&udc
->lock
, flags
);
646 /* nuke all pending requests (does flush) */
647 nuke(ep
, -ESHUTDOWN
);
651 spin_unlock_irqrestore(&udc
->lock
, flags
);
653 VDBG("disabled %s OK", _ep
->name
);
657 /*---------------------------------------------------------------------
658 * allocate a request object used by this endpoint
659 * the main operation is to insert the req->queue to the eq->queue
660 * Returns the request, or null if one could not be allocated
661 *---------------------------------------------------------------------*/
662 static struct usb_request
*
663 fsl_alloc_request(struct usb_ep
*_ep
, gfp_t gfp_flags
)
665 struct fsl_req
*req
= NULL
;
667 req
= kzalloc(sizeof *req
, gfp_flags
);
671 req
->req
.dma
= DMA_ADDR_INVALID
;
672 INIT_LIST_HEAD(&req
->queue
);
677 static void fsl_free_request(struct usb_ep
*_ep
, struct usb_request
*_req
)
679 struct fsl_req
*req
= NULL
;
681 req
= container_of(_req
, struct fsl_req
, req
);
687 /*-------------------------------------------------------------------------*/
688 static void fsl_queue_td(struct fsl_ep
*ep
, struct fsl_req
*req
)
690 int i
= ep_index(ep
) * 2 + ep_is_in(ep
);
691 u32 temp
, bitmask
, tmp_stat
;
692 struct ep_queue_head
*dQH
= &ep
->udc
->ep_qh
[i
];
694 /* VDBG("QH addr Register 0x%8x", dr_regs->endpointlistaddr);
695 VDBG("ep_qh[%d] addr is 0x%8x", i, (u32)&(ep->udc->ep_qh[i])); */
697 bitmask
= ep_is_in(ep
)
698 ? (1 << (ep_index(ep
) + 16))
699 : (1 << (ep_index(ep
)));
701 /* check if the pipe is empty */
702 if (!(list_empty(&ep
->queue
))) {
703 /* Add td to the end */
704 struct fsl_req
*lastreq
;
705 lastreq
= list_entry(ep
->queue
.prev
, struct fsl_req
, queue
);
706 lastreq
->tail
->next_td_ptr
=
707 cpu_to_hc32(req
->head
->td_dma
& DTD_ADDR_MASK
);
708 /* Read prime bit, if 1 goto done */
709 if (fsl_readl(&dr_regs
->endpointprime
) & bitmask
)
713 /* Set ATDTW bit in USBCMD */
714 temp
= fsl_readl(&dr_regs
->usbcmd
);
715 fsl_writel(temp
| USB_CMD_ATDTW
, &dr_regs
->usbcmd
);
717 /* Read correct status bit */
718 tmp_stat
= fsl_readl(&dr_regs
->endptstatus
) & bitmask
;
720 } while (!(fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_ATDTW
));
722 /* Write ATDTW bit to 0 */
723 temp
= fsl_readl(&dr_regs
->usbcmd
);
724 fsl_writel(temp
& ~USB_CMD_ATDTW
, &dr_regs
->usbcmd
);
730 /* Write dQH next pointer and terminate bit to 0 */
731 temp
= req
->head
->td_dma
& EP_QUEUE_HEAD_NEXT_POINTER_MASK
;
732 dQH
->next_dtd_ptr
= cpu_to_hc32(temp
);
734 /* Clear active and halt bit */
735 temp
= cpu_to_hc32(~(EP_QUEUE_HEAD_STATUS_ACTIVE
736 | EP_QUEUE_HEAD_STATUS_HALT
));
737 dQH
->size_ioc_int_sts
&= temp
;
739 /* Ensure that updates to the QH will occur before priming. */
742 /* Prime endpoint by writing 1 to ENDPTPRIME */
744 ? (1 << (ep_index(ep
) + 16))
745 : (1 << (ep_index(ep
)));
746 fsl_writel(temp
, &dr_regs
->endpointprime
);
751 /* Fill in the dTD structure
752 * @req: request that the transfer belongs to
753 * @length: return actually data length of the dTD
754 * @dma: return dma address of the dTD
755 * @is_last: return flag if it is the last dTD of the request
756 * return: pointer to the built dTD */
757 static struct ep_td_struct
*fsl_build_dtd(struct fsl_req
*req
, unsigned *length
,
758 dma_addr_t
*dma
, int *is_last
)
761 struct ep_td_struct
*dtd
;
763 /* how big will this transfer be? */
764 *length
= min(req
->req
.length
- req
->req
.actual
,
765 (unsigned)EP_MAX_LENGTH_TRANSFER
);
767 dtd
= dma_pool_alloc(udc_controller
->td_pool
, GFP_KERNEL
, dma
);
772 /* Clear reserved field */
773 swap_temp
= hc32_to_cpu(dtd
->size_ioc_sts
);
774 swap_temp
&= ~DTD_RESERVED_FIELDS
;
775 dtd
->size_ioc_sts
= cpu_to_hc32(swap_temp
);
777 /* Init all of buffer page pointers */
778 swap_temp
= (u32
) (req
->req
.dma
+ req
->req
.actual
);
779 dtd
->buff_ptr0
= cpu_to_hc32(swap_temp
);
780 dtd
->buff_ptr1
= cpu_to_hc32(swap_temp
+ 0x1000);
781 dtd
->buff_ptr2
= cpu_to_hc32(swap_temp
+ 0x2000);
782 dtd
->buff_ptr3
= cpu_to_hc32(swap_temp
+ 0x3000);
783 dtd
->buff_ptr4
= cpu_to_hc32(swap_temp
+ 0x4000);
785 req
->req
.actual
+= *length
;
787 /* zlp is needed if req->req.zero is set */
789 if (*length
== 0 || (*length
% req
->ep
->ep
.maxpacket
) != 0)
793 } else if (req
->req
.length
== req
->req
.actual
)
799 VDBG("multi-dtd request!");
800 /* Fill in the transfer size; set active bit */
801 swap_temp
= ((*length
<< DTD_LENGTH_BIT_POS
) | DTD_STATUS_ACTIVE
);
803 /* Enable interrupt for the last dtd of a request */
804 if (*is_last
&& !req
->req
.no_interrupt
)
805 swap_temp
|= DTD_IOC
;
807 dtd
->size_ioc_sts
= cpu_to_hc32(swap_temp
);
811 VDBG("length = %d address= 0x%x", *length
, (int)*dma
);
816 /* Generate dtd chain for a request */
817 static int fsl_req_to_dtd(struct fsl_req
*req
)
822 struct ep_td_struct
*last_dtd
= NULL
, *dtd
;
826 dtd
= fsl_build_dtd(req
, &count
, &dma
, &is_last
);
834 last_dtd
->next_td_ptr
= cpu_to_hc32(dma
);
835 last_dtd
->next_td_virt
= dtd
;
842 dtd
->next_td_ptr
= cpu_to_hc32(DTD_NEXT_TERMINATE
);
849 /* queues (submits) an I/O request to an endpoint */
851 fsl_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, gfp_t gfp_flags
)
853 struct fsl_ep
*ep
= container_of(_ep
, struct fsl_ep
, ep
);
854 struct fsl_req
*req
= container_of(_req
, struct fsl_req
, req
);
858 /* catch various bogus parameters */
859 if (!_req
|| !req
->req
.complete
|| !req
->req
.buf
860 || !list_empty(&req
->queue
)) {
861 VDBG("%s, bad params", __func__
);
864 if (unlikely(!_ep
|| !ep
->desc
)) {
865 VDBG("%s, bad ep", __func__
);
868 if (ep
->desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
869 if (req
->req
.length
> ep
->ep
.maxpacket
)
874 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
879 /* map virtual address to hardware */
880 if (req
->req
.dma
== DMA_ADDR_INVALID
) {
881 req
->req
.dma
= dma_map_single(ep
->udc
->gadget
.dev
.parent
,
883 req
->req
.length
, ep_is_in(ep
)
888 dma_sync_single_for_device(ep
->udc
->gadget
.dev
.parent
,
889 req
->req
.dma
, req
->req
.length
,
896 req
->req
.status
= -EINPROGRESS
;
900 spin_lock_irqsave(&udc
->lock
, flags
);
902 /* build dtds and push them to device queue */
903 if (!fsl_req_to_dtd(req
)) {
904 fsl_queue_td(ep
, req
);
906 spin_unlock_irqrestore(&udc
->lock
, flags
);
910 /* Update ep0 state */
911 if ((ep_index(ep
) == 0))
912 udc
->ep0_state
= DATA_STATE_XMIT
;
914 /* irq handler advances the queue */
916 list_add_tail(&req
->queue
, &ep
->queue
);
917 spin_unlock_irqrestore(&udc
->lock
, flags
);
922 /* dequeues (cancels, unlinks) an I/O request from an endpoint */
923 static int fsl_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
925 struct fsl_ep
*ep
= container_of(_ep
, struct fsl_ep
, ep
);
928 int ep_num
, stopped
, ret
= 0;
934 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
935 stopped
= ep
->stopped
;
937 /* Stop the ep before we deal with the queue */
939 ep_num
= ep_index(ep
);
940 epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
942 epctrl
&= ~EPCTRL_TX_ENABLE
;
944 epctrl
&= ~EPCTRL_RX_ENABLE
;
945 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
947 /* make sure it's actually queued on this endpoint */
948 list_for_each_entry(req
, &ep
->queue
, queue
) {
949 if (&req
->req
== _req
)
952 if (&req
->req
!= _req
) {
957 /* The request is in progress, or completed but not dequeued */
958 if (ep
->queue
.next
== &req
->queue
) {
959 _req
->status
= -ECONNRESET
;
960 fsl_ep_fifo_flush(_ep
); /* flush current transfer */
962 /* The request isn't the last request in this ep queue */
963 if (req
->queue
.next
!= &ep
->queue
) {
964 struct ep_queue_head
*qh
;
965 struct fsl_req
*next_req
;
968 next_req
= list_entry(req
->queue
.next
, struct fsl_req
,
971 /* Point the QH to the first TD of next request */
972 fsl_writel((u32
) next_req
->head
, &qh
->curr_dtd_ptr
);
975 /* The request hasn't been processed, patch up the TD chain */
977 struct fsl_req
*prev_req
;
979 prev_req
= list_entry(req
->queue
.prev
, struct fsl_req
, queue
);
980 fsl_writel(fsl_readl(&req
->tail
->next_td_ptr
),
981 &prev_req
->tail
->next_td_ptr
);
985 done(ep
, req
, -ECONNRESET
);
988 out
: epctrl
= fsl_readl(&dr_regs
->endptctrl
[ep_num
]);
990 epctrl
|= EPCTRL_TX_ENABLE
;
992 epctrl
|= EPCTRL_RX_ENABLE
;
993 fsl_writel(epctrl
, &dr_regs
->endptctrl
[ep_num
]);
994 ep
->stopped
= stopped
;
996 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1000 /*-------------------------------------------------------------------------*/
1002 /*-----------------------------------------------------------------
1003 * modify the endpoint halt feature
1004 * @ep: the non-isochronous endpoint being stalled
1005 * @value: 1--set halt 0--clear halt
1006 * Returns zero, or a negative error code.
1007 *----------------------------------------------------------------*/
1008 static int fsl_ep_set_halt(struct usb_ep
*_ep
, int value
)
1010 struct fsl_ep
*ep
= NULL
;
1011 unsigned long flags
= 0;
1012 int status
= -EOPNOTSUPP
; /* operation not supported */
1013 unsigned char ep_dir
= 0, ep_num
= 0;
1014 struct fsl_udc
*udc
= NULL
;
1016 ep
= container_of(_ep
, struct fsl_ep
, ep
);
1018 if (!_ep
|| !ep
->desc
) {
1023 if (ep
->desc
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
1024 status
= -EOPNOTSUPP
;
1028 /* Attempt to halt IN ep will fail if any transfer requests
1029 * are still queue */
1030 if (value
&& ep_is_in(ep
) && !list_empty(&ep
->queue
)) {
1036 ep_dir
= ep_is_in(ep
) ? USB_SEND
: USB_RECV
;
1037 ep_num
= (unsigned char)(ep_index(ep
));
1038 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1039 dr_ep_change_stall(ep_num
, ep_dir
, value
);
1040 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1042 if (ep_index(ep
) == 0) {
1043 udc
->ep0_state
= WAIT_FOR_SETUP
;
1047 VDBG(" %s %s halt stat %d", ep
->ep
.name
,
1048 value
? "set" : "clear", status
);
1053 static int fsl_ep_fifo_status(struct usb_ep
*_ep
)
1056 struct fsl_udc
*udc
;
1059 struct ep_queue_head
*d_qh
;
1061 ep
= container_of(_ep
, struct fsl_ep
, ep
);
1062 if (!_ep
|| (!ep
->desc
&& ep_index(ep
) != 0))
1065 udc
= (struct fsl_udc
*)ep
->udc
;
1067 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1070 d_qh
= &ep
->udc
->ep_qh
[ep_index(ep
) * 2 + ep_is_in(ep
)];
1072 bitmask
= (ep_is_in(ep
)) ? (1 << (ep_index(ep
) + 16)) :
1073 (1 << (ep_index(ep
)));
1075 if (fsl_readl(&dr_regs
->endptstatus
) & bitmask
)
1076 size
= (d_qh
->size_ioc_int_sts
& DTD_PACKET_SIZE
)
1077 >> DTD_LENGTH_BIT_POS
;
1079 pr_debug("%s %u\n", __func__
, size
);
1083 static void fsl_ep_fifo_flush(struct usb_ep
*_ep
)
1088 unsigned long timeout
;
1089 #define FSL_UDC_FLUSH_TIMEOUT 1000
1094 ep
= container_of(_ep
, struct fsl_ep
, ep
);
1098 ep_num
= ep_index(ep
);
1099 ep_dir
= ep_is_in(ep
) ? USB_SEND
: USB_RECV
;
1102 bits
= (1 << 16) | 1;
1103 else if (ep_dir
== USB_SEND
)
1104 bits
= 1 << (16 + ep_num
);
1108 timeout
= jiffies
+ FSL_UDC_FLUSH_TIMEOUT
;
1110 fsl_writel(bits
, &dr_regs
->endptflush
);
1112 /* Wait until flush complete */
1113 while (fsl_readl(&dr_regs
->endptflush
)) {
1114 if (time_after(jiffies
, timeout
)) {
1115 ERR("ep flush timeout\n");
1120 /* See if we need to flush again */
1121 } while (fsl_readl(&dr_regs
->endptstatus
) & bits
);
1124 static struct usb_ep_ops fsl_ep_ops
= {
1125 .enable
= fsl_ep_enable
,
1126 .disable
= fsl_ep_disable
,
1128 .alloc_request
= fsl_alloc_request
,
1129 .free_request
= fsl_free_request
,
1131 .queue
= fsl_ep_queue
,
1132 .dequeue
= fsl_ep_dequeue
,
1134 .set_halt
= fsl_ep_set_halt
,
1135 .fifo_status
= fsl_ep_fifo_status
,
1136 .fifo_flush
= fsl_ep_fifo_flush
, /* flush fifo */
1139 /*-------------------------------------------------------------------------
1140 Gadget Driver Layer Operations
1141 -------------------------------------------------------------------------*/
1143 /*----------------------------------------------------------------------
1144 * Get the current frame number (from DR frame_index Reg )
1145 *----------------------------------------------------------------------*/
1146 static int fsl_get_frame(struct usb_gadget
*gadget
)
1148 return (int)(fsl_readl(&dr_regs
->frindex
) & USB_FRINDEX_MASKS
);
1151 /*-----------------------------------------------------------------------
1152 * Tries to wake up the host connected to this gadget
1153 -----------------------------------------------------------------------*/
1154 static int fsl_wakeup(struct usb_gadget
*gadget
)
1156 struct fsl_udc
*udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1159 /* Remote wakeup feature not enabled by host */
1160 if (!udc
->remote_wakeup
)
1163 portsc
= fsl_readl(&dr_regs
->portsc1
);
1164 /* not suspended? */
1165 if (!(portsc
& PORTSCX_PORT_SUSPEND
))
1167 /* trigger force resume */
1168 portsc
|= PORTSCX_PORT_FORCE_RESUME
;
1169 fsl_writel(portsc
, &dr_regs
->portsc1
);
1173 static int can_pullup(struct fsl_udc
*udc
)
1175 return udc
->driver
&& udc
->softconnect
&& udc
->vbus_active
;
1178 /* Notify controller that VBUS is powered, Called by whatever
1179 detects VBUS sessions */
1180 static int fsl_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1182 struct fsl_udc
*udc
;
1183 unsigned long flags
;
1185 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1186 spin_lock_irqsave(&udc
->lock
, flags
);
1187 VDBG("VBUS %s", is_active
? "on" : "off");
1188 udc
->vbus_active
= (is_active
!= 0);
1189 if (can_pullup(udc
))
1190 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) | USB_CMD_RUN_STOP
),
1193 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
),
1195 spin_unlock_irqrestore(&udc
->lock
, flags
);
1199 /* constrain controller's VBUS power usage
1200 * This call is used by gadget drivers during SET_CONFIGURATION calls,
1201 * reporting how much power the device may consume. For example, this
1202 * could affect how quickly batteries are recharged.
1204 * Returns zero on success, else negative errno.
1206 static int fsl_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1208 struct fsl_udc
*udc
;
1210 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1211 if (udc
->transceiver
)
1212 return otg_set_power(udc
->transceiver
, mA
);
1216 /* Change Data+ pullup status
1217 * this func is used by usb_gadget_connect/disconnet
1219 static int fsl_pullup(struct usb_gadget
*gadget
, int is_on
)
1221 struct fsl_udc
*udc
;
1223 udc
= container_of(gadget
, struct fsl_udc
, gadget
);
1224 udc
->softconnect
= (is_on
!= 0);
1225 if (can_pullup(udc
))
1226 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) | USB_CMD_RUN_STOP
),
1229 fsl_writel((fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
),
1235 static int fsl_start(struct usb_gadget_driver
*driver
,
1236 int (*bind
)(struct usb_gadget
*));
1237 static int fsl_stop(struct usb_gadget_driver
*driver
);
1238 /* defined in gadget.h */
1239 static struct usb_gadget_ops fsl_gadget_ops
= {
1240 .get_frame
= fsl_get_frame
,
1241 .wakeup
= fsl_wakeup
,
1242 /* .set_selfpowered = fsl_set_selfpowered, */ /* Always selfpowered */
1243 .vbus_session
= fsl_vbus_session
,
1244 .vbus_draw
= fsl_vbus_draw
,
1245 .pullup
= fsl_pullup
,
1250 /* Set protocol stall on ep0, protocol stall will automatically be cleared
1251 on new transaction */
1252 static void ep0stall(struct fsl_udc
*udc
)
1256 /* must set tx and rx to stall at the same time */
1257 tmp
= fsl_readl(&dr_regs
->endptctrl
[0]);
1258 tmp
|= EPCTRL_TX_EP_STALL
| EPCTRL_RX_EP_STALL
;
1259 fsl_writel(tmp
, &dr_regs
->endptctrl
[0]);
1260 udc
->ep0_state
= WAIT_FOR_SETUP
;
1264 /* Prime a status phase for ep0 */
1265 static int ep0_prime_status(struct fsl_udc
*udc
, int direction
)
1267 struct fsl_req
*req
= udc
->status_req
;
1270 if (direction
== EP_DIR_IN
)
1271 udc
->ep0_dir
= USB_DIR_IN
;
1273 udc
->ep0_dir
= USB_DIR_OUT
;
1276 udc
->ep0_state
= WAIT_FOR_OUT_STATUS
;
1279 req
->req
.length
= 0;
1280 req
->req
.status
= -EINPROGRESS
;
1281 req
->req
.actual
= 0;
1282 req
->req
.complete
= NULL
;
1285 if (fsl_req_to_dtd(req
) == 0)
1286 fsl_queue_td(ep
, req
);
1290 list_add_tail(&req
->queue
, &ep
->queue
);
1295 static void udc_reset_ep_queue(struct fsl_udc
*udc
, u8 pipe
)
1297 struct fsl_ep
*ep
= get_ep_by_pipe(udc
, pipe
);
1300 nuke(ep
, -ESHUTDOWN
);
1306 static void ch9setaddress(struct fsl_udc
*udc
, u16 value
, u16 index
, u16 length
)
1308 /* Save the new address to device struct */
1309 udc
->device_address
= (u8
) value
;
1310 /* Update usb state */
1311 udc
->usb_state
= USB_STATE_ADDRESS
;
1313 if (ep0_prime_status(udc
, EP_DIR_IN
))
1320 static void ch9getstatus(struct fsl_udc
*udc
, u8 request_type
, u16 value
,
1321 u16 index
, u16 length
)
1323 u16 tmp
= 0; /* Status, cpu endian */
1324 struct fsl_req
*req
;
1329 if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_DEVICE
) {
1330 /* Get device status */
1331 tmp
= 1 << USB_DEVICE_SELF_POWERED
;
1332 tmp
|= udc
->remote_wakeup
<< USB_DEVICE_REMOTE_WAKEUP
;
1333 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_INTERFACE
) {
1334 /* Get interface status */
1335 /* We don't have interface information in udc driver */
1337 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_ENDPOINT
) {
1338 /* Get endpoint status */
1339 struct fsl_ep
*target_ep
;
1341 target_ep
= get_ep_by_pipe(udc
, get_pipe_by_windex(index
));
1343 /* stall if endpoint doesn't exist */
1344 if (!target_ep
->desc
)
1346 tmp
= dr_ep_get_stall(ep_index(target_ep
), ep_is_in(target_ep
))
1347 << USB_ENDPOINT_HALT
;
1350 udc
->ep0_dir
= USB_DIR_IN
;
1351 /* Borrow the per device status_req */
1352 req
= udc
->status_req
;
1353 /* Fill in the reqest structure */
1354 *((u16
*) req
->req
.buf
) = cpu_to_le16(tmp
);
1356 /* flush cache for the req buffer */
1357 flush_dcache_range((u32
)req
->req
.buf
, (u32
)req
->req
.buf
+ 8);
1360 req
->req
.length
= 2;
1361 req
->req
.status
= -EINPROGRESS
;
1362 req
->req
.actual
= 0;
1363 req
->req
.complete
= NULL
;
1366 /* prime the data phase */
1367 if ((fsl_req_to_dtd(req
) == 0))
1368 fsl_queue_td(ep
, req
);
1372 list_add_tail(&req
->queue
, &ep
->queue
);
1373 udc
->ep0_state
= DATA_STATE_XMIT
;
1379 static void setup_received_irq(struct fsl_udc
*udc
,
1380 struct usb_ctrlrequest
*setup
)
1382 u16 wValue
= le16_to_cpu(setup
->wValue
);
1383 u16 wIndex
= le16_to_cpu(setup
->wIndex
);
1384 u16 wLength
= le16_to_cpu(setup
->wLength
);
1386 udc_reset_ep_queue(udc
, 0);
1388 /* We process some stardard setup requests here */
1389 switch (setup
->bRequest
) {
1390 case USB_REQ_GET_STATUS
:
1391 /* Data+Status phase from udc */
1392 if ((setup
->bRequestType
& (USB_DIR_IN
| USB_TYPE_MASK
))
1393 != (USB_DIR_IN
| USB_TYPE_STANDARD
))
1395 ch9getstatus(udc
, setup
->bRequestType
, wValue
, wIndex
, wLength
);
1398 case USB_REQ_SET_ADDRESS
:
1399 /* Status phase from udc */
1400 if (setup
->bRequestType
!= (USB_DIR_OUT
| USB_TYPE_STANDARD
1401 | USB_RECIP_DEVICE
))
1403 ch9setaddress(udc
, wValue
, wIndex
, wLength
);
1406 case USB_REQ_CLEAR_FEATURE
:
1407 case USB_REQ_SET_FEATURE
:
1408 /* Status phase from udc */
1410 int rc
= -EOPNOTSUPP
;
1413 if ((setup
->bRequestType
& (USB_RECIP_MASK
| USB_TYPE_MASK
))
1414 == (USB_RECIP_ENDPOINT
| USB_TYPE_STANDARD
)) {
1415 int pipe
= get_pipe_by_windex(wIndex
);
1418 if (wValue
!= 0 || wLength
!= 0 || pipe
> udc
->max_ep
)
1420 ep
= get_ep_by_pipe(udc
, pipe
);
1422 spin_unlock(&udc
->lock
);
1423 rc
= fsl_ep_set_halt(&ep
->ep
,
1424 (setup
->bRequest
== USB_REQ_SET_FEATURE
)
1426 spin_lock(&udc
->lock
);
1428 } else if ((setup
->bRequestType
& (USB_RECIP_MASK
1429 | USB_TYPE_MASK
)) == (USB_RECIP_DEVICE
1430 | USB_TYPE_STANDARD
)) {
1431 /* Note: The driver has not include OTG support yet.
1432 * This will be set when OTG support is added */
1433 if (wValue
== USB_DEVICE_TEST_MODE
)
1435 else if (gadget_is_otg(&udc
->gadget
)) {
1436 if (setup
->bRequest
==
1437 USB_DEVICE_B_HNP_ENABLE
)
1438 udc
->gadget
.b_hnp_enable
= 1;
1439 else if (setup
->bRequest
==
1440 USB_DEVICE_A_HNP_SUPPORT
)
1441 udc
->gadget
.a_hnp_support
= 1;
1442 else if (setup
->bRequest
==
1443 USB_DEVICE_A_ALT_HNP_SUPPORT
)
1444 udc
->gadget
.a_alt_hnp_support
= 1;
1451 if (ep0_prime_status(udc
, EP_DIR_IN
))
1458 tmp
= fsl_readl(&dr_regs
->portsc1
) | (ptc
<< 16);
1459 fsl_writel(tmp
, &dr_regs
->portsc1
);
1460 printk(KERN_INFO
"udc: switch to test mode %d.\n", ptc
);
1470 /* Requests handled by gadget */
1472 /* Data phase from gadget, status phase from udc */
1473 udc
->ep0_dir
= (setup
->bRequestType
& USB_DIR_IN
)
1474 ? USB_DIR_IN
: USB_DIR_OUT
;
1475 spin_unlock(&udc
->lock
);
1476 if (udc
->driver
->setup(&udc
->gadget
,
1477 &udc
->local_setup_buff
) < 0)
1479 spin_lock(&udc
->lock
);
1480 udc
->ep0_state
= (setup
->bRequestType
& USB_DIR_IN
)
1481 ? DATA_STATE_XMIT
: DATA_STATE_RECV
;
1483 /* No data phase, IN status from gadget */
1484 udc
->ep0_dir
= USB_DIR_IN
;
1485 spin_unlock(&udc
->lock
);
1486 if (udc
->driver
->setup(&udc
->gadget
,
1487 &udc
->local_setup_buff
) < 0)
1489 spin_lock(&udc
->lock
);
1490 udc
->ep0_state
= WAIT_FOR_OUT_STATUS
;
1494 /* Process request for Data or Status phase of ep0
1495 * prime status phase if needed */
1496 static void ep0_req_complete(struct fsl_udc
*udc
, struct fsl_ep
*ep0
,
1497 struct fsl_req
*req
)
1499 if (udc
->usb_state
== USB_STATE_ADDRESS
) {
1500 /* Set the new address */
1501 u32 new_address
= (u32
) udc
->device_address
;
1502 fsl_writel(new_address
<< USB_DEVICE_ADDRESS_BIT_POS
,
1503 &dr_regs
->deviceaddr
);
1508 switch (udc
->ep0_state
) {
1509 case DATA_STATE_XMIT
:
1510 /* receive status phase */
1511 if (ep0_prime_status(udc
, EP_DIR_OUT
))
1514 case DATA_STATE_RECV
:
1515 /* send status phase */
1516 if (ep0_prime_status(udc
, EP_DIR_IN
))
1519 case WAIT_FOR_OUT_STATUS
:
1520 udc
->ep0_state
= WAIT_FOR_SETUP
;
1522 case WAIT_FOR_SETUP
:
1523 ERR("Unexpect ep0 packets\n");
1531 /* Tripwire mechanism to ensure a setup packet payload is extracted without
1532 * being corrupted by another incoming setup packet */
1533 static void tripwire_handler(struct fsl_udc
*udc
, u8 ep_num
, u8
*buffer_ptr
)
1536 struct ep_queue_head
*qh
;
1537 struct fsl_usb2_platform_data
*pdata
= udc
->pdata
;
1539 qh
= &udc
->ep_qh
[ep_num
* 2 + EP_DIR_OUT
];
1541 /* Clear bit in ENDPTSETUPSTAT */
1542 temp
= fsl_readl(&dr_regs
->endptsetupstat
);
1543 fsl_writel(temp
| (1 << ep_num
), &dr_regs
->endptsetupstat
);
1545 /* while a hazard exists when setup package arrives */
1547 /* Set Setup Tripwire */
1548 temp
= fsl_readl(&dr_regs
->usbcmd
);
1549 fsl_writel(temp
| USB_CMD_SUTW
, &dr_regs
->usbcmd
);
1551 /* Copy the setup packet to local buffer */
1552 if (pdata
->le_setup_buf
) {
1553 u32
*p
= (u32
*)buffer_ptr
;
1554 u32
*s
= (u32
*)qh
->setup_buffer
;
1556 /* Convert little endian setup buffer to CPU endian */
1557 *p
++ = le32_to_cpu(*s
++);
1558 *p
= le32_to_cpu(*s
);
1560 memcpy(buffer_ptr
, (u8
*) qh
->setup_buffer
, 8);
1562 } while (!(fsl_readl(&dr_regs
->usbcmd
) & USB_CMD_SUTW
));
1564 /* Clear Setup Tripwire */
1565 temp
= fsl_readl(&dr_regs
->usbcmd
);
1566 fsl_writel(temp
& ~USB_CMD_SUTW
, &dr_regs
->usbcmd
);
1569 /* process-ep_req(): free the completed Tds for this req */
1570 static int process_ep_req(struct fsl_udc
*udc
, int pipe
,
1571 struct fsl_req
*curr_req
)
1573 struct ep_td_struct
*curr_td
;
1574 int td_complete
, actual
, remaining_length
, j
, tmp
;
1577 struct ep_queue_head
*curr_qh
= &udc
->ep_qh
[pipe
];
1578 int direction
= pipe
% 2;
1580 curr_td
= curr_req
->head
;
1582 actual
= curr_req
->req
.length
;
1584 for (j
= 0; j
< curr_req
->dtd_count
; j
++) {
1585 remaining_length
= (hc32_to_cpu(curr_td
->size_ioc_sts
)
1587 >> DTD_LENGTH_BIT_POS
;
1588 actual
-= remaining_length
;
1590 errors
= hc32_to_cpu(curr_td
->size_ioc_sts
);
1591 if (errors
& DTD_ERROR_MASK
) {
1592 if (errors
& DTD_STATUS_HALTED
) {
1593 ERR("dTD error %08x QH=%d\n", errors
, pipe
);
1594 /* Clear the errors and Halt condition */
1595 tmp
= hc32_to_cpu(curr_qh
->size_ioc_int_sts
);
1597 curr_qh
->size_ioc_int_sts
= cpu_to_hc32(tmp
);
1599 /* FIXME: continue with next queued TD? */
1603 if (errors
& DTD_STATUS_DATA_BUFF_ERR
) {
1604 VDBG("Transfer overflow");
1607 } else if (errors
& DTD_STATUS_TRANSACTION_ERR
) {
1612 ERR("Unknown error has occurred (0x%x)!\n",
1615 } else if (hc32_to_cpu(curr_td
->size_ioc_sts
)
1616 & DTD_STATUS_ACTIVE
) {
1617 VDBG("Request not complete");
1618 status
= REQ_UNCOMPLETE
;
1620 } else if (remaining_length
) {
1622 VDBG("Transmit dTD remaining length not zero");
1631 VDBG("dTD transmitted successful");
1634 if (j
!= curr_req
->dtd_count
- 1)
1635 curr_td
= (struct ep_td_struct
*)curr_td
->next_td_virt
;
1641 curr_req
->req
.actual
= actual
;
1646 /* Process a DTD completion interrupt */
1647 static void dtd_complete_irq(struct fsl_udc
*udc
)
1650 int i
, ep_num
, direction
, bit_mask
, status
;
1651 struct fsl_ep
*curr_ep
;
1652 struct fsl_req
*curr_req
, *temp_req
;
1654 /* Clear the bits in the register */
1655 bit_pos
= fsl_readl(&dr_regs
->endptcomplete
);
1656 fsl_writel(bit_pos
, &dr_regs
->endptcomplete
);
1661 for (i
= 0; i
< udc
->max_ep
* 2; i
++) {
1665 bit_mask
= 1 << (ep_num
+ 16 * direction
);
1667 if (!(bit_pos
& bit_mask
))
1670 curr_ep
= get_ep_by_pipe(udc
, i
);
1672 /* If the ep is configured */
1673 if (curr_ep
->name
== NULL
) {
1674 WARNING("Invalid EP?");
1678 /* process the req queue until an uncomplete request */
1679 list_for_each_entry_safe(curr_req
, temp_req
, &curr_ep
->queue
,
1681 status
= process_ep_req(udc
, i
, curr_req
);
1683 VDBG("status of process_ep_req= %d, ep = %d",
1685 if (status
== REQ_UNCOMPLETE
)
1687 /* write back status to req */
1688 curr_req
->req
.status
= status
;
1691 ep0_req_complete(udc
, curr_ep
, curr_req
);
1694 done(curr_ep
, curr_req
, status
);
1699 /* Process a port change interrupt */
1700 static void port_change_irq(struct fsl_udc
*udc
)
1707 /* Bus resetting is finished */
1708 if (!(fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_RESET
)) {
1710 speed
= (fsl_readl(&dr_regs
->portsc1
)
1711 & PORTSCX_PORT_SPEED_MASK
);
1713 case PORTSCX_PORT_SPEED_HIGH
:
1714 udc
->gadget
.speed
= USB_SPEED_HIGH
;
1716 case PORTSCX_PORT_SPEED_FULL
:
1717 udc
->gadget
.speed
= USB_SPEED_FULL
;
1719 case PORTSCX_PORT_SPEED_LOW
:
1720 udc
->gadget
.speed
= USB_SPEED_LOW
;
1723 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1728 /* Update USB state */
1729 if (!udc
->resume_state
)
1730 udc
->usb_state
= USB_STATE_DEFAULT
;
1733 /* Process suspend interrupt */
1734 static void suspend_irq(struct fsl_udc
*udc
)
1736 udc
->resume_state
= udc
->usb_state
;
1737 udc
->usb_state
= USB_STATE_SUSPENDED
;
1739 /* report suspend to the driver, serial.c does not support this */
1740 if (udc
->driver
->suspend
)
1741 udc
->driver
->suspend(&udc
->gadget
);
1744 static void bus_resume(struct fsl_udc
*udc
)
1746 udc
->usb_state
= udc
->resume_state
;
1747 udc
->resume_state
= 0;
1749 /* report resume to the driver, serial.c does not support this */
1750 if (udc
->driver
->resume
)
1751 udc
->driver
->resume(&udc
->gadget
);
1754 /* Clear up all ep queues */
1755 static int reset_queues(struct fsl_udc
*udc
)
1759 for (pipe
= 0; pipe
< udc
->max_pipes
; pipe
++)
1760 udc_reset_ep_queue(udc
, pipe
);
1762 /* report disconnect; the driver is already quiesced */
1763 spin_unlock(&udc
->lock
);
1764 udc
->driver
->disconnect(&udc
->gadget
);
1765 spin_lock(&udc
->lock
);
1770 /* Process reset interrupt */
1771 static void reset_irq(struct fsl_udc
*udc
)
1774 unsigned long timeout
;
1776 /* Clear the device address */
1777 temp
= fsl_readl(&dr_regs
->deviceaddr
);
1778 fsl_writel(temp
& ~USB_DEVICE_ADDRESS_MASK
, &dr_regs
->deviceaddr
);
1780 udc
->device_address
= 0;
1782 /* Clear usb state */
1783 udc
->resume_state
= 0;
1785 udc
->ep0_state
= WAIT_FOR_SETUP
;
1786 udc
->remote_wakeup
= 0; /* default to 0 on reset */
1787 udc
->gadget
.b_hnp_enable
= 0;
1788 udc
->gadget
.a_hnp_support
= 0;
1789 udc
->gadget
.a_alt_hnp_support
= 0;
1791 /* Clear all the setup token semaphores */
1792 temp
= fsl_readl(&dr_regs
->endptsetupstat
);
1793 fsl_writel(temp
, &dr_regs
->endptsetupstat
);
1795 /* Clear all the endpoint complete status bits */
1796 temp
= fsl_readl(&dr_regs
->endptcomplete
);
1797 fsl_writel(temp
, &dr_regs
->endptcomplete
);
1799 timeout
= jiffies
+ 100;
1800 while (fsl_readl(&dr_regs
->endpointprime
)) {
1801 /* Wait until all endptprime bits cleared */
1802 if (time_after(jiffies
, timeout
)) {
1803 ERR("Timeout for reset\n");
1809 /* Write 1s to the flush register */
1810 fsl_writel(0xffffffff, &dr_regs
->endptflush
);
1812 if (fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_RESET
) {
1814 /* Bus is reseting */
1816 /* Reset all the queues, include XD, dTD, EP queue
1817 * head and TR Queue */
1819 udc
->usb_state
= USB_STATE_DEFAULT
;
1821 VDBG("Controller reset");
1822 /* initialize usb hw reg except for regs for EP, not
1823 * touch usbintr reg */
1824 dr_controller_setup(udc
);
1826 /* Reset all internal used Queues */
1831 /* Enable DR IRQ reg, Set Run bit, change udc state */
1832 dr_controller_run(udc
);
1833 udc
->usb_state
= USB_STATE_ATTACHED
;
1838 * USB device controller interrupt handler
1840 static irqreturn_t
fsl_udc_irq(int irq
, void *_udc
)
1842 struct fsl_udc
*udc
= _udc
;
1844 irqreturn_t status
= IRQ_NONE
;
1845 unsigned long flags
;
1847 /* Disable ISR for OTG host mode */
1850 spin_lock_irqsave(&udc
->lock
, flags
);
1851 irq_src
= fsl_readl(&dr_regs
->usbsts
) & fsl_readl(&dr_regs
->usbintr
);
1852 /* Clear notification bits */
1853 fsl_writel(irq_src
, &dr_regs
->usbsts
);
1855 /* VDBG("irq_src [0x%8x]", irq_src); */
1857 /* Need to resume? */
1858 if (udc
->usb_state
== USB_STATE_SUSPENDED
)
1859 if ((fsl_readl(&dr_regs
->portsc1
) & PORTSCX_PORT_SUSPEND
) == 0)
1863 if (irq_src
& USB_STS_INT
) {
1865 /* Setup package, we only support ep0 as control ep */
1866 if (fsl_readl(&dr_regs
->endptsetupstat
) & EP_SETUP_STATUS_EP0
) {
1867 tripwire_handler(udc
, 0,
1868 (u8
*) (&udc
->local_setup_buff
));
1869 setup_received_irq(udc
, &udc
->local_setup_buff
);
1870 status
= IRQ_HANDLED
;
1873 /* completion of dtd */
1874 if (fsl_readl(&dr_regs
->endptcomplete
)) {
1875 dtd_complete_irq(udc
);
1876 status
= IRQ_HANDLED
;
1880 /* SOF (for ISO transfer) */
1881 if (irq_src
& USB_STS_SOF
) {
1882 status
= IRQ_HANDLED
;
1886 if (irq_src
& USB_STS_PORT_CHANGE
) {
1887 port_change_irq(udc
);
1888 status
= IRQ_HANDLED
;
1891 /* Reset Received */
1892 if (irq_src
& USB_STS_RESET
) {
1895 status
= IRQ_HANDLED
;
1898 /* Sleep Enable (Suspend) */
1899 if (irq_src
& USB_STS_SUSPEND
) {
1901 status
= IRQ_HANDLED
;
1904 if (irq_src
& (USB_STS_ERR
| USB_STS_SYS_ERR
)) {
1905 VDBG("Error IRQ %x", irq_src
);
1908 spin_unlock_irqrestore(&udc
->lock
, flags
);
1912 /*----------------------------------------------------------------*
1913 * Hook to gadget drivers
1914 * Called by initialization code of gadget drivers
1915 *----------------------------------------------------------------*/
1916 static int fsl_start(struct usb_gadget_driver
*driver
,
1917 int (*bind
)(struct usb_gadget
*))
1919 int retval
= -ENODEV
;
1920 unsigned long flags
= 0;
1922 if (!udc_controller
)
1925 if (!driver
|| (driver
->speed
!= USB_SPEED_FULL
1926 && driver
->speed
!= USB_SPEED_HIGH
)
1927 || !bind
|| !driver
->disconnect
|| !driver
->setup
)
1930 if (udc_controller
->driver
)
1933 /* lock is needed but whether should use this lock or another */
1934 spin_lock_irqsave(&udc_controller
->lock
, flags
);
1936 driver
->driver
.bus
= NULL
;
1937 /* hook up the driver */
1938 udc_controller
->driver
= driver
;
1939 udc_controller
->gadget
.dev
.driver
= &driver
->driver
;
1940 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
1942 /* bind udc driver to gadget driver */
1943 retval
= bind(&udc_controller
->gadget
);
1945 VDBG("bind to %s --> %d", driver
->driver
.name
, retval
);
1946 udc_controller
->gadget
.dev
.driver
= NULL
;
1947 udc_controller
->driver
= NULL
;
1951 if (udc_controller
->transceiver
) {
1952 /* Suspend the controller until OTG enable it */
1953 udc_controller
->stopped
= 1;
1954 printk(KERN_INFO
"Suspend udc for OTG auto detect\n");
1956 /* connect to bus through transceiver */
1957 if (udc_controller
->transceiver
) {
1958 retval
= otg_set_peripheral(udc_controller
->transceiver
,
1959 &udc_controller
->gadget
);
1961 ERR("can't bind to transceiver\n");
1962 driver
->unbind(&udc_controller
->gadget
);
1963 udc_controller
->gadget
.dev
.driver
= 0;
1964 udc_controller
->driver
= 0;
1969 /* Enable DR IRQ reg and set USBCMD reg Run bit */
1970 dr_controller_run(udc_controller
);
1971 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
1972 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
1973 udc_controller
->ep0_dir
= 0;
1975 printk(KERN_INFO
"%s: bind to driver %s\n",
1976 udc_controller
->gadget
.name
, driver
->driver
.name
);
1980 printk(KERN_WARNING
"gadget driver register failed %d\n",
1985 /* Disconnect from gadget driver */
1986 static int fsl_stop(struct usb_gadget_driver
*driver
)
1988 struct fsl_ep
*loop_ep
;
1989 unsigned long flags
;
1991 if (!udc_controller
)
1994 if (!driver
|| driver
!= udc_controller
->driver
|| !driver
->unbind
)
1997 if (udc_controller
->transceiver
)
1998 otg_set_peripheral(udc_controller
->transceiver
, NULL
);
2000 /* stop DR, disable intr */
2001 dr_controller_stop(udc_controller
);
2003 /* in fact, no needed */
2004 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
2005 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
2006 udc_controller
->ep0_dir
= 0;
2008 /* stand operation */
2009 spin_lock_irqsave(&udc_controller
->lock
, flags
);
2010 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2011 nuke(&udc_controller
->eps
[0], -ESHUTDOWN
);
2012 list_for_each_entry(loop_ep
, &udc_controller
->gadget
.ep_list
,
2014 nuke(loop_ep
, -ESHUTDOWN
);
2015 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
2017 /* report disconnect; the controller is already quiesced */
2018 driver
->disconnect(&udc_controller
->gadget
);
2020 /* unbind gadget and unhook driver. */
2021 driver
->unbind(&udc_controller
->gadget
);
2022 udc_controller
->gadget
.dev
.driver
= NULL
;
2023 udc_controller
->driver
= NULL
;
2025 printk(KERN_WARNING
"unregistered gadget driver '%s'\n",
2026 driver
->driver
.name
);
2030 /*-------------------------------------------------------------------------
2031 PROC File System Support
2032 -------------------------------------------------------------------------*/
2033 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2035 #include <linux/seq_file.h>
2037 static const char proc_filename
[] = "driver/fsl_usb2_udc";
2039 static int fsl_proc_read(char *page
, char **start
, off_t off
, int count
,
2040 int *eof
, void *_dev
)
2044 unsigned size
= count
;
2045 unsigned long flags
;
2048 struct fsl_ep
*ep
= NULL
;
2049 struct fsl_req
*req
;
2051 struct fsl_udc
*udc
= udc_controller
;
2055 spin_lock_irqsave(&udc
->lock
, flags
);
2057 /* ------basic driver information ---- */
2058 t
= scnprintf(next
, size
,
2061 "Gadget driver: %s\n\n",
2062 driver_name
, DRIVER_VERSION
,
2063 udc
->driver
? udc
->driver
->driver
.name
: "(none)");
2067 /* ------ DR Registers ----- */
2068 tmp_reg
= fsl_readl(&dr_regs
->usbcmd
);
2069 t
= scnprintf(next
, size
,
2073 (tmp_reg
& USB_CMD_SUTW
) ? 1 : 0,
2074 (tmp_reg
& USB_CMD_RUN_STOP
) ? "Run" : "Stop");
2078 tmp_reg
= fsl_readl(&dr_regs
->usbsts
);
2079 t
= scnprintf(next
, size
,
2081 "Dr Suspend: %d Reset Received: %d System Error: %s "
2082 "USB Error Interrupt: %s\n\n",
2083 (tmp_reg
& USB_STS_SUSPEND
) ? 1 : 0,
2084 (tmp_reg
& USB_STS_RESET
) ? 1 : 0,
2085 (tmp_reg
& USB_STS_SYS_ERR
) ? "Err" : "Normal",
2086 (tmp_reg
& USB_STS_ERR
) ? "Err detected" : "No err");
2090 tmp_reg
= fsl_readl(&dr_regs
->usbintr
);
2091 t
= scnprintf(next
, size
,
2092 "USB Intrrupt Enable Reg:\n"
2093 "Sleep Enable: %d SOF Received Enable: %d "
2094 "Reset Enable: %d\n"
2095 "System Error Enable: %d "
2096 "Port Change Dectected Enable: %d\n"
2097 "USB Error Intr Enable: %d USB Intr Enable: %d\n\n",
2098 (tmp_reg
& USB_INTR_DEVICE_SUSPEND
) ? 1 : 0,
2099 (tmp_reg
& USB_INTR_SOF_EN
) ? 1 : 0,
2100 (tmp_reg
& USB_INTR_RESET_EN
) ? 1 : 0,
2101 (tmp_reg
& USB_INTR_SYS_ERR_EN
) ? 1 : 0,
2102 (tmp_reg
& USB_INTR_PTC_DETECT_EN
) ? 1 : 0,
2103 (tmp_reg
& USB_INTR_ERR_INT_EN
) ? 1 : 0,
2104 (tmp_reg
& USB_INTR_INT_EN
) ? 1 : 0);
2108 tmp_reg
= fsl_readl(&dr_regs
->frindex
);
2109 t
= scnprintf(next
, size
,
2110 "USB Frame Index Reg: Frame Number is 0x%x\n\n",
2111 (tmp_reg
& USB_FRINDEX_MASKS
));
2115 tmp_reg
= fsl_readl(&dr_regs
->deviceaddr
);
2116 t
= scnprintf(next
, size
,
2117 "USB Device Address Reg: Device Addr is 0x%x\n\n",
2118 (tmp_reg
& USB_DEVICE_ADDRESS_MASK
));
2122 tmp_reg
= fsl_readl(&dr_regs
->endpointlistaddr
);
2123 t
= scnprintf(next
, size
,
2124 "USB Endpoint List Address Reg: "
2125 "Device Addr is 0x%x\n\n",
2126 (tmp_reg
& USB_EP_LIST_ADDRESS_MASK
));
2130 tmp_reg
= fsl_readl(&dr_regs
->portsc1
);
2131 t
= scnprintf(next
, size
,
2132 "USB Port Status&Control Reg:\n"
2133 "Port Transceiver Type : %s Port Speed: %s\n"
2134 "PHY Low Power Suspend: %s Port Reset: %s "
2135 "Port Suspend Mode: %s\n"
2136 "Over-current Change: %s "
2137 "Port Enable/Disable Change: %s\n"
2138 "Port Enabled/Disabled: %s "
2139 "Current Connect Status: %s\n\n", ( {
2141 switch (tmp_reg
& PORTSCX_PTS_FSLS
) {
2142 case PORTSCX_PTS_UTMI
:
2144 case PORTSCX_PTS_ULPI
:
2146 case PORTSCX_PTS_FSLS
:
2147 s
= "FS/LS Serial"; break;
2153 switch (tmp_reg
& PORTSCX_PORT_SPEED_UNDEF
) {
2154 case PORTSCX_PORT_SPEED_FULL
:
2155 s
= "Full Speed"; break;
2156 case PORTSCX_PORT_SPEED_LOW
:
2157 s
= "Low Speed"; break;
2158 case PORTSCX_PORT_SPEED_HIGH
:
2159 s
= "High Speed"; break;
2161 s
= "Undefined"; break;
2165 (tmp_reg
& PORTSCX_PHY_LOW_POWER_SPD
) ?
2166 "Normal PHY mode" : "Low power mode",
2167 (tmp_reg
& PORTSCX_PORT_RESET
) ? "In Reset" :
2169 (tmp_reg
& PORTSCX_PORT_SUSPEND
) ? "In " : "Not in",
2170 (tmp_reg
& PORTSCX_OVER_CURRENT_CHG
) ? "Dected" :
2172 (tmp_reg
& PORTSCX_PORT_EN_DIS_CHANGE
) ? "Disable" :
2174 (tmp_reg
& PORTSCX_PORT_ENABLE
) ? "Enable" :
2176 (tmp_reg
& PORTSCX_CURRENT_CONNECT_STATUS
) ?
2177 "Attached" : "Not-Att");
2181 tmp_reg
= fsl_readl(&dr_regs
->usbmode
);
2182 t
= scnprintf(next
, size
,
2183 "USB Mode Reg: Controller Mode is: %s\n\n", ( {
2185 switch (tmp_reg
& USB_MODE_CTRL_MODE_HOST
) {
2186 case USB_MODE_CTRL_MODE_IDLE
:
2188 case USB_MODE_CTRL_MODE_DEVICE
:
2189 s
= "Device Controller"; break;
2190 case USB_MODE_CTRL_MODE_HOST
:
2191 s
= "Host Controller"; break;
2200 tmp_reg
= fsl_readl(&dr_regs
->endptsetupstat
);
2201 t
= scnprintf(next
, size
,
2202 "Endpoint Setup Status Reg: SETUP on ep 0x%x\n\n",
2203 (tmp_reg
& EP_SETUP_STATUS_MASK
));
2207 for (i
= 0; i
< udc
->max_ep
/ 2; i
++) {
2208 tmp_reg
= fsl_readl(&dr_regs
->endptctrl
[i
]);
2209 t
= scnprintf(next
, size
, "EP Ctrl Reg [0x%x]: = [0x%x]\n",
2214 tmp_reg
= fsl_readl(&dr_regs
->endpointprime
);
2215 t
= scnprintf(next
, size
, "EP Prime Reg = [0x%x]\n\n", tmp_reg
);
2219 #ifndef CONFIG_ARCH_MXC
2220 if (udc
->pdata
->have_sysif_regs
) {
2221 tmp_reg
= usb_sys_regs
->snoop1
;
2222 t
= scnprintf(next
, size
, "Snoop1 Reg : = [0x%x]\n\n", tmp_reg
);
2226 tmp_reg
= usb_sys_regs
->control
;
2227 t
= scnprintf(next
, size
, "General Control Reg : = [0x%x]\n\n",
2234 /* ------fsl_udc, fsl_ep, fsl_request structure information ----- */
2236 t
= scnprintf(next
, size
, "For %s Maxpkt is 0x%x index is 0x%x\n",
2237 ep
->ep
.name
, ep_maxpacket(ep
), ep_index(ep
));
2241 if (list_empty(&ep
->queue
)) {
2242 t
= scnprintf(next
, size
, "its req queue is empty\n\n");
2246 list_for_each_entry(req
, &ep
->queue
, queue
) {
2247 t
= scnprintf(next
, size
,
2248 "req %p actual 0x%x length 0x%x buf %p\n",
2249 &req
->req
, req
->req
.actual
,
2250 req
->req
.length
, req
->req
.buf
);
2255 /* other gadget->eplist ep */
2256 list_for_each_entry(ep
, &udc
->gadget
.ep_list
, ep
.ep_list
) {
2258 t
= scnprintf(next
, size
,
2259 "\nFor %s Maxpkt is 0x%x "
2261 ep
->ep
.name
, ep_maxpacket(ep
),
2266 if (list_empty(&ep
->queue
)) {
2267 t
= scnprintf(next
, size
,
2268 "its req queue is empty\n\n");
2272 list_for_each_entry(req
, &ep
->queue
, queue
) {
2273 t
= scnprintf(next
, size
,
2274 "req %p actual 0x%x length "
2276 &req
->req
, req
->req
.actual
,
2277 req
->req
.length
, req
->req
.buf
);
2280 } /* end for each_entry of ep req */
2281 } /* end for else */
2282 } /* end for if(ep->queue) */
2283 } /* end (ep->desc) */
2285 spin_unlock_irqrestore(&udc
->lock
, flags
);
2288 return count
- size
;
2291 #define create_proc_file() create_proc_read_entry(proc_filename, \
2292 0, NULL, fsl_proc_read, NULL)
2294 #define remove_proc_file() remove_proc_entry(proc_filename, NULL)
2296 #else /* !CONFIG_USB_GADGET_DEBUG_FILES */
2298 #define create_proc_file() do {} while (0)
2299 #define remove_proc_file() do {} while (0)
2301 #endif /* CONFIG_USB_GADGET_DEBUG_FILES */
2303 /*-------------------------------------------------------------------------*/
2305 /* Release udc structures */
2306 static void fsl_udc_release(struct device
*dev
)
2308 complete(udc_controller
->done
);
2309 dma_free_coherent(dev
->parent
, udc_controller
->ep_qh_size
,
2310 udc_controller
->ep_qh
, udc_controller
->ep_qh_dma
);
2311 kfree(udc_controller
);
2314 /******************************************************************
2315 Internal structure setup functions
2316 *******************************************************************/
2317 /*------------------------------------------------------------------
2318 * init resource for globle controller
2319 * Return the udc handle on success or NULL on failure
2320 ------------------------------------------------------------------*/
2321 static int __init
struct_udc_setup(struct fsl_udc
*udc
,
2322 struct platform_device
*pdev
)
2324 struct fsl_usb2_platform_data
*pdata
;
2327 pdata
= pdev
->dev
.platform_data
;
2328 udc
->phy_mode
= pdata
->phy_mode
;
2330 udc
->eps
= kzalloc(sizeof(struct fsl_ep
) * udc
->max_ep
, GFP_KERNEL
);
2332 ERR("malloc fsl_ep failed\n");
2336 /* initialized QHs, take care of alignment */
2337 size
= udc
->max_ep
* sizeof(struct ep_queue_head
);
2338 if (size
< QH_ALIGNMENT
)
2339 size
= QH_ALIGNMENT
;
2340 else if ((size
% QH_ALIGNMENT
) != 0) {
2341 size
+= QH_ALIGNMENT
+ 1;
2342 size
&= ~(QH_ALIGNMENT
- 1);
2344 udc
->ep_qh
= dma_alloc_coherent(&pdev
->dev
, size
,
2345 &udc
->ep_qh_dma
, GFP_KERNEL
);
2347 ERR("malloc QHs for udc failed\n");
2352 udc
->ep_qh_size
= size
;
2354 /* Initialize ep0 status request structure */
2355 /* FIXME: fsl_alloc_request() ignores ep argument */
2356 udc
->status_req
= container_of(fsl_alloc_request(NULL
, GFP_KERNEL
),
2357 struct fsl_req
, req
);
2358 /* allocate a small amount of memory to get valid address */
2359 udc
->status_req
->req
.buf
= kmalloc(8, GFP_KERNEL
);
2360 udc
->status_req
->req
.dma
= virt_to_phys(udc
->status_req
->req
.buf
);
2362 udc
->resume_state
= USB_STATE_NOTATTACHED
;
2363 udc
->usb_state
= USB_STATE_POWERED
;
2365 udc
->remote_wakeup
= 0; /* default to 0 on reset */
2370 /*----------------------------------------------------------------
2371 * Setup the fsl_ep struct for eps
2372 * Link fsl_ep->ep to gadget->ep_list
2373 * ep0out is not used so do nothing here
2374 * ep0in should be taken care
2375 *--------------------------------------------------------------*/
2376 static int __init
struct_ep_setup(struct fsl_udc
*udc
, unsigned char index
,
2377 char *name
, int link
)
2379 struct fsl_ep
*ep
= &udc
->eps
[index
];
2382 strcpy(ep
->name
, name
);
2383 ep
->ep
.name
= ep
->name
;
2385 ep
->ep
.ops
= &fsl_ep_ops
;
2388 /* for ep0: maxP defined in desc
2389 * for other eps, maxP is set by epautoconfig() called by gadget layer
2391 ep
->ep
.maxpacket
= (unsigned short) ~0;
2393 /* the queue lists any req for this ep */
2394 INIT_LIST_HEAD(&ep
->queue
);
2396 /* gagdet.ep_list used for ep_autoconfig so no ep0 */
2398 list_add_tail(&ep
->ep
.ep_list
, &udc
->gadget
.ep_list
);
2399 ep
->gadget
= &udc
->gadget
;
2400 ep
->qh
= &udc
->ep_qh
[index
];
2405 /* Driver probe function
2406 * all intialization operations implemented here except enabling usb_intr reg
2407 * board setup should have been done in the platform code
2409 static int __init
fsl_udc_probe(struct platform_device
*pdev
)
2411 struct fsl_usb2_platform_data
*pdata
;
2412 struct resource
*res
;
2417 if (strcmp(pdev
->name
, driver_name
)) {
2418 VDBG("Wrong device");
2422 udc_controller
= kzalloc(sizeof(struct fsl_udc
), GFP_KERNEL
);
2423 if (udc_controller
== NULL
) {
2424 ERR("malloc udc failed\n");
2428 pdata
= pdev
->dev
.platform_data
;
2429 udc_controller
->pdata
= pdata
;
2430 spin_lock_init(&udc_controller
->lock
);
2431 udc_controller
->stopped
= 1;
2433 #ifdef CONFIG_USB_OTG
2434 if (pdata
->operating_mode
== FSL_USB2_DR_OTG
) {
2435 udc_controller
->transceiver
= otg_get_transceiver();
2436 if (!udc_controller
->transceiver
) {
2437 ERR("Can't find OTG driver!\n");
2444 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2450 if (pdata
->operating_mode
== FSL_USB2_DR_DEVICE
) {
2451 if (!request_mem_region(res
->start
, res
->end
- res
->start
+ 1,
2453 ERR("request mem region for %s failed\n", pdev
->name
);
2459 dr_regs
= ioremap(res
->start
, resource_size(res
));
2462 goto err_release_mem_region
;
2465 pdata
->regs
= (void *)dr_regs
;
2468 * do platform specific init: check the clock, grab/config pins, etc.
2470 if (pdata
->init
&& pdata
->init(pdev
)) {
2472 goto err_iounmap_noclk
;
2475 /* Set accessors only after pdata->init() ! */
2476 if (pdata
->big_endian_mmio
) {
2477 _fsl_readl
= _fsl_readl_be
;
2478 _fsl_writel
= _fsl_writel_be
;
2480 _fsl_readl
= _fsl_readl_le
;
2481 _fsl_writel
= _fsl_writel_le
;
2484 #ifndef CONFIG_ARCH_MXC
2485 if (pdata
->have_sysif_regs
)
2486 usb_sys_regs
= (struct usb_sys_interface
*)
2487 ((u32
)dr_regs
+ USB_DR_SYS_OFFSET
);
2490 /* Initialize USB clocks */
2491 ret
= fsl_udc_clk_init(pdev
);
2493 goto err_iounmap_noclk
;
2495 /* Read Device Controller Capability Parameters register */
2496 dccparams
= fsl_readl(&dr_regs
->dccparams
);
2497 if (!(dccparams
& DCCPARAMS_DC
)) {
2498 ERR("This SOC doesn't support device role\n");
2502 /* Get max device endpoints */
2503 /* DEN is bidirectional ep number, max_ep doubles the number */
2504 udc_controller
->max_ep
= (dccparams
& DCCPARAMS_DEN_MASK
) * 2;
2506 udc_controller
->irq
= platform_get_irq(pdev
, 0);
2507 if (!udc_controller
->irq
) {
2512 ret
= request_irq(udc_controller
->irq
, fsl_udc_irq
, IRQF_SHARED
,
2513 driver_name
, udc_controller
);
2515 ERR("cannot request irq %d err %d\n",
2516 udc_controller
->irq
, ret
);
2520 /* Initialize the udc structure including QH member and other member */
2521 if (struct_udc_setup(udc_controller
, pdev
)) {
2522 ERR("Can't initialize udc data structure\n");
2527 if (!udc_controller
->transceiver
) {
2528 /* initialize usb hw reg except for regs for EP,
2529 * leave usbintr reg untouched */
2530 dr_controller_setup(udc_controller
);
2533 fsl_udc_clk_finalize(pdev
);
2535 /* Setup gadget structure */
2536 udc_controller
->gadget
.ops
= &fsl_gadget_ops
;
2537 udc_controller
->gadget
.is_dualspeed
= 1;
2538 udc_controller
->gadget
.ep0
= &udc_controller
->eps
[0].ep
;
2539 INIT_LIST_HEAD(&udc_controller
->gadget
.ep_list
);
2540 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2541 udc_controller
->gadget
.name
= driver_name
;
2543 /* Setup gadget.dev and register with kernel */
2544 dev_set_name(&udc_controller
->gadget
.dev
, "gadget");
2545 udc_controller
->gadget
.dev
.release
= fsl_udc_release
;
2546 udc_controller
->gadget
.dev
.parent
= &pdev
->dev
;
2547 ret
= device_register(&udc_controller
->gadget
.dev
);
2551 if (udc_controller
->transceiver
)
2552 udc_controller
->gadget
.is_otg
= 1;
2554 /* setup QH and epctrl for ep0 */
2555 ep0_setup(udc_controller
);
2557 /* setup udc->eps[] for ep0 */
2558 struct_ep_setup(udc_controller
, 0, "ep0", 0);
2559 /* for ep0: the desc defined here;
2560 * for other eps, gadget layer called ep_enable with defined desc
2562 udc_controller
->eps
[0].desc
= &fsl_ep0_desc
;
2563 udc_controller
->eps
[0].ep
.maxpacket
= USB_MAX_CTRL_PAYLOAD
;
2565 /* setup the udc->eps[] for non-control endpoints and link
2566 * to gadget.ep_list */
2567 for (i
= 1; i
< (int)(udc_controller
->max_ep
/ 2); i
++) {
2570 sprintf(name
, "ep%dout", i
);
2571 struct_ep_setup(udc_controller
, i
* 2, name
, 1);
2572 sprintf(name
, "ep%din", i
);
2573 struct_ep_setup(udc_controller
, i
* 2 + 1, name
, 1);
2576 /* use dma_pool for TD management */
2577 udc_controller
->td_pool
= dma_pool_create("udc_td", &pdev
->dev
,
2578 sizeof(struct ep_td_struct
),
2579 DTD_ALIGNMENT
, UDC_DMA_BOUNDARY
);
2580 if (udc_controller
->td_pool
== NULL
) {
2582 goto err_unregister
;
2585 ret
= usb_add_gadget_udc(&pdev
->dev
, &udc_controller
->gadget
);
2593 dma_pool_destroy(udc_controller
->td_pool
);
2595 device_unregister(&udc_controller
->gadget
.dev
);
2597 free_irq(udc_controller
->irq
, udc_controller
);
2601 fsl_udc_clk_release();
2604 err_release_mem_region
:
2605 if (pdata
->operating_mode
== FSL_USB2_DR_DEVICE
)
2606 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2608 kfree(udc_controller
);
2609 udc_controller
= NULL
;
2613 /* Driver removal function
2614 * Free resources and finish pending transactions
2616 static int __exit
fsl_udc_remove(struct platform_device
*pdev
)
2618 struct resource
*res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2619 struct fsl_usb2_platform_data
*pdata
= pdev
->dev
.platform_data
;
2621 DECLARE_COMPLETION(done
);
2623 if (!udc_controller
)
2626 usb_del_gadget_udc(&udc_controller
->gadget
);
2627 udc_controller
->done
= &done
;
2629 fsl_udc_clk_release();
2631 /* DR has been stopped in usb_gadget_unregister_driver() */
2634 /* Free allocated memory */
2635 kfree(udc_controller
->status_req
->req
.buf
);
2636 kfree(udc_controller
->status_req
);
2637 kfree(udc_controller
->eps
);
2639 dma_pool_destroy(udc_controller
->td_pool
);
2640 free_irq(udc_controller
->irq
, udc_controller
);
2642 if (pdata
->operating_mode
== FSL_USB2_DR_DEVICE
)
2643 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2645 device_unregister(&udc_controller
->gadget
.dev
);
2646 /* free udc --wait for the release() finished */
2647 wait_for_completion(&done
);
2650 * do platform specific un-initialization:
2651 * release iomux pins, etc.
2659 /*-----------------------------------------------------------------
2660 * Modify Power management attributes
2661 * Used by OTG statemachine to disable gadget temporarily
2662 -----------------------------------------------------------------*/
2663 static int fsl_udc_suspend(struct platform_device
*pdev
, pm_message_t state
)
2665 dr_controller_stop(udc_controller
);
2669 /*-----------------------------------------------------------------
2670 * Invoked on USB resume. May be called in_interrupt.
2671 * Here we start the DR controller and enable the irq
2672 *-----------------------------------------------------------------*/
2673 static int fsl_udc_resume(struct platform_device
*pdev
)
2675 /* Enable DR irq reg and set controller Run */
2676 if (udc_controller
->stopped
) {
2677 dr_controller_setup(udc_controller
);
2678 dr_controller_run(udc_controller
);
2680 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
2681 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
2682 udc_controller
->ep0_dir
= 0;
2686 static int fsl_udc_otg_suspend(struct device
*dev
, pm_message_t state
)
2688 struct fsl_udc
*udc
= udc_controller
;
2691 mode
= fsl_readl(&dr_regs
->usbmode
) & USB_MODE_CTRL_MODE_MASK
;
2693 pr_debug("%s(): mode 0x%x stopped %d\n", __func__
, mode
, udc
->stopped
);
2696 * If the controller is already stopped, then this must be a
2697 * PM suspend. Remember this fact, so that we will leave the
2698 * controller stopped at PM resume time.
2701 pr_debug("gadget already stopped, leaving early\n");
2702 udc
->already_stopped
= 1;
2706 if (mode
!= USB_MODE_CTRL_MODE_DEVICE
) {
2707 pr_debug("gadget not in device mode, leaving early\n");
2711 /* stop the controller */
2712 usbcmd
= fsl_readl(&dr_regs
->usbcmd
) & ~USB_CMD_RUN_STOP
;
2713 fsl_writel(usbcmd
, &dr_regs
->usbcmd
);
2717 pr_info("USB Gadget suspended\n");
2722 static int fsl_udc_otg_resume(struct device
*dev
)
2724 pr_debug("%s(): stopped %d already_stopped %d\n", __func__
,
2725 udc_controller
->stopped
, udc_controller
->already_stopped
);
2728 * If the controller was stopped at suspend time, then
2729 * don't resume it now.
2731 if (udc_controller
->already_stopped
) {
2732 udc_controller
->already_stopped
= 0;
2733 pr_debug("gadget was already stopped, leaving early\n");
2737 pr_info("USB Gadget resume\n");
2739 return fsl_udc_resume(NULL
);
2742 /*-------------------------------------------------------------------------
2743 Register entry point for the peripheral controller driver
2744 --------------------------------------------------------------------------*/
2746 static struct platform_driver udc_driver
= {
2747 .remove
= __exit_p(fsl_udc_remove
),
2748 /* these suspend and resume are not usb suspend and resume */
2749 .suspend
= fsl_udc_suspend
,
2750 .resume
= fsl_udc_resume
,
2752 .name
= (char *)driver_name
,
2753 .owner
= THIS_MODULE
,
2754 /* udc suspend/resume called from OTG driver */
2755 .suspend
= fsl_udc_otg_suspend
,
2756 .resume
= fsl_udc_otg_resume
,
2760 static int __init
udc_init(void)
2762 printk(KERN_INFO
"%s (%s)\n", driver_desc
, DRIVER_VERSION
);
2763 return platform_driver_probe(&udc_driver
, fsl_udc_probe
);
2766 module_init(udc_init
);
2768 static void __exit
udc_exit(void)
2770 platform_driver_unregister(&udc_driver
);
2771 printk(KERN_WARNING
"%s unregistered\n", driver_desc
);
2774 module_exit(udc_exit
);
2776 MODULE_DESCRIPTION(DRIVER_DESC
);
2777 MODULE_AUTHOR(DRIVER_AUTHOR
);
2778 MODULE_LICENSE("GPL");
2779 MODULE_ALIAS("platform:fsl-usb2-udc");