2 * driver/usb/gadget/fsl_qe_udc.c
4 * Copyright (c) 2006-2008 Freescale Semiconductor, Inc. All rights reserved.
6 * Xie Xiaobo <X.Xie@freescale.com>
7 * Li Yang <leoli@freescale.com>
8 * Based on bareboard code from Shlomi Gridish.
11 * Freescle QE/CPM USB Pheripheral Controller Driver
12 * The controller can be found on MPC8360, MPC8272, and etc.
13 * MPC8360 Rev 1.1 may need QE mircocode update
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/init.h>
26 #include <linux/ioport.h>
27 #include <linux/types.h>
28 #include <linux/errno.h>
29 #include <linux/err.h>
30 #include <linux/slab.h>
31 #include <linux/list.h>
32 #include <linux/interrupt.h>
34 #include <linux/moduleparam.h>
35 #include <linux/of_address.h>
36 #include <linux/of_platform.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/usb/ch9.h>
39 #include <linux/usb/gadget.h>
40 #include <linux/usb/otg.h>
45 #include "fsl_qe_udc.h"
47 #define DRIVER_DESC "Freescale QE/CPM USB Device Controller driver"
48 #define DRIVER_AUTHOR "Xie XiaoBo"
49 #define DRIVER_VERSION "1.0"
51 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
53 static const char driver_name
[] = "fsl_qe_udc";
54 static const char driver_desc
[] = DRIVER_DESC
;
56 /*ep name is important in gadget, it should obey the convention of ep_match()*/
57 static const char *const ep_name
[] = {
58 "ep0-control", /* everyone has ep0 */
59 /* 3 configurable endpoints */
65 static struct usb_endpoint_descriptor qe_ep0_desc
= {
66 .bLength
= USB_DT_ENDPOINT_SIZE
,
67 .bDescriptorType
= USB_DT_ENDPOINT
,
69 .bEndpointAddress
= 0,
70 .bmAttributes
= USB_ENDPOINT_XFER_CONTROL
,
71 .wMaxPacketSize
= USB_MAX_CTRL_PAYLOAD
,
74 /* it is initialized in probe() */
75 static struct qe_udc
*udc_controller
;
77 /********************************************************************
78 * Internal Used Function Start
79 ********************************************************************/
80 /*-----------------------------------------------------------------
81 * done() - retire a request; caller blocked irqs
82 *--------------------------------------------------------------*/
83 static void done(struct qe_ep
*ep
, struct qe_req
*req
, int status
)
85 struct qe_udc
*udc
= ep
->udc
;
86 unsigned char stopped
= ep
->stopped
;
88 /* the req->queue pointer is used by ep_queue() func, in which
89 * the request will be added into a udc_ep->queue 'd tail
90 * so here the req will be dropped from the ep->queue
92 list_del_init(&req
->queue
);
94 /* req.status should be set as -EINPROGRESS in ep_queue() */
95 if (req
->req
.status
== -EINPROGRESS
)
96 req
->req
.status
= status
;
98 status
= req
->req
.status
;
101 dma_unmap_single(udc
->gadget
.dev
.parent
,
102 req
->req
.dma
, req
->req
.length
,
106 req
->req
.dma
= DMA_ADDR_INVALID
;
109 dma_sync_single_for_cpu(udc
->gadget
.dev
.parent
,
110 req
->req
.dma
, req
->req
.length
,
115 if (status
&& (status
!= -ESHUTDOWN
))
116 dev_vdbg(udc
->dev
, "complete %s req %p stat %d len %u/%u\n",
117 ep
->ep
.name
, &req
->req
, status
,
118 req
->req
.actual
, req
->req
.length
);
120 /* don't modify queue heads during completion callback */
122 spin_unlock(&udc
->lock
);
124 /* this complete() should a func implemented by gadget layer,
125 * eg fsg->bulk_in_complete() */
126 if (req
->req
.complete
)
127 req
->req
.complete(&ep
->ep
, &req
->req
);
129 spin_lock(&udc
->lock
);
131 ep
->stopped
= stopped
;
134 /*-----------------------------------------------------------------
135 * nuke(): delete all requests related to this ep
136 *--------------------------------------------------------------*/
137 static void nuke(struct qe_ep
*ep
, int status
)
139 /* Whether this eq has request linked */
140 while (!list_empty(&ep
->queue
)) {
141 struct qe_req
*req
= NULL
;
142 req
= list_entry(ep
->queue
.next
, struct qe_req
, queue
);
144 done(ep
, req
, status
);
148 /*---------------------------------------------------------------------------*
149 * USB and Endpoint manipulate process, include parameter and register *
150 *---------------------------------------------------------------------------*/
151 /* @value: 1--set stall 0--clean stall */
152 static int qe_eprx_stall_change(struct qe_ep
*ep
, int value
)
155 u8 epnum
= ep
->epnum
;
156 struct qe_udc
*udc
= ep
->udc
;
158 tem_usep
= in_be16(&udc
->usb_regs
->usb_usep
[epnum
]);
159 tem_usep
= tem_usep
& ~USB_RHS_MASK
;
161 tem_usep
|= USB_RHS_STALL
;
162 else if (ep
->dir
== USB_DIR_IN
)
163 tem_usep
|= USB_RHS_IGNORE_OUT
;
165 out_be16(&udc
->usb_regs
->usb_usep
[epnum
], tem_usep
);
169 static int qe_eptx_stall_change(struct qe_ep
*ep
, int value
)
172 u8 epnum
= ep
->epnum
;
173 struct qe_udc
*udc
= ep
->udc
;
175 tem_usep
= in_be16(&udc
->usb_regs
->usb_usep
[epnum
]);
176 tem_usep
= tem_usep
& ~USB_THS_MASK
;
178 tem_usep
|= USB_THS_STALL
;
179 else if (ep
->dir
== USB_DIR_OUT
)
180 tem_usep
|= USB_THS_IGNORE_IN
;
182 out_be16(&udc
->usb_regs
->usb_usep
[epnum
], tem_usep
);
187 static int qe_ep0_stall(struct qe_udc
*udc
)
189 qe_eptx_stall_change(&udc
->eps
[0], 1);
190 qe_eprx_stall_change(&udc
->eps
[0], 1);
191 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
192 udc_controller
->ep0_dir
= 0;
196 static int qe_eprx_nack(struct qe_ep
*ep
)
198 u8 epnum
= ep
->epnum
;
199 struct qe_udc
*udc
= ep
->udc
;
201 if (ep
->state
== EP_STATE_IDLE
) {
202 /* Set the ep's nack */
203 clrsetbits_be16(&udc
->usb_regs
->usb_usep
[epnum
],
204 USB_RHS_MASK
, USB_RHS_NACK
);
206 /* Mask Rx and Busy interrupts */
207 clrbits16(&udc
->usb_regs
->usb_usbmr
,
208 (USB_E_RXB_MASK
| USB_E_BSY_MASK
));
210 ep
->state
= EP_STATE_NACK
;
215 static int qe_eprx_normal(struct qe_ep
*ep
)
217 struct qe_udc
*udc
= ep
->udc
;
219 if (ep
->state
== EP_STATE_NACK
) {
220 clrsetbits_be16(&udc
->usb_regs
->usb_usep
[ep
->epnum
],
221 USB_RTHS_MASK
, USB_THS_IGNORE_IN
);
223 /* Unmask RX interrupts */
224 out_be16(&udc
->usb_regs
->usb_usber
,
225 USB_E_BSY_MASK
| USB_E_RXB_MASK
);
226 setbits16(&udc
->usb_regs
->usb_usbmr
,
227 (USB_E_RXB_MASK
| USB_E_BSY_MASK
));
229 ep
->state
= EP_STATE_IDLE
;
236 static int qe_ep_cmd_stoptx(struct qe_ep
*ep
)
238 if (ep
->udc
->soc_type
== PORT_CPM
)
239 cpm_command(CPM_USB_STOP_TX
| (ep
->epnum
<< CPM_USB_EP_SHIFT
),
240 CPM_USB_STOP_TX_OPCODE
);
242 qe_issue_cmd(QE_USB_STOP_TX
, QE_CR_SUBBLOCK_USB
,
248 static int qe_ep_cmd_restarttx(struct qe_ep
*ep
)
250 if (ep
->udc
->soc_type
== PORT_CPM
)
251 cpm_command(CPM_USB_RESTART_TX
| (ep
->epnum
<<
252 CPM_USB_EP_SHIFT
), CPM_USB_RESTART_TX_OPCODE
);
254 qe_issue_cmd(QE_USB_RESTART_TX
, QE_CR_SUBBLOCK_USB
,
260 static int qe_ep_flushtxfifo(struct qe_ep
*ep
)
262 struct qe_udc
*udc
= ep
->udc
;
267 qe_ep_cmd_stoptx(ep
);
268 out_8(&udc
->usb_regs
->usb_uscom
,
269 USB_CMD_FLUSH_FIFO
| (USB_CMD_EP_MASK
& (ep
->epnum
)));
270 out_be16(&udc
->ep_param
[i
]->tbptr
, in_be16(&udc
->ep_param
[i
]->tbase
));
271 out_be32(&udc
->ep_param
[i
]->tstate
, 0);
272 out_be16(&udc
->ep_param
[i
]->tbcnt
, 0);
274 ep
->c_txbd
= ep
->txbase
;
275 ep
->n_txbd
= ep
->txbase
;
276 qe_ep_cmd_restarttx(ep
);
280 static int qe_ep_filltxfifo(struct qe_ep
*ep
)
282 struct qe_udc
*udc
= ep
->udc
;
284 out_8(&udc
->usb_regs
->usb_uscom
,
285 USB_CMD_STR_FIFO
| (USB_CMD_EP_MASK
& (ep
->epnum
)));
289 static int qe_epbds_reset(struct qe_udc
*udc
, int pipe_num
)
293 struct qe_bd __iomem
*bd
;
296 ep
= &udc
->eps
[pipe_num
];
298 if (ep
->dir
== USB_DIR_OUT
)
299 bdring_len
= USB_BDRING_LEN_RX
;
301 bdring_len
= USB_BDRING_LEN
;
304 for (i
= 0; i
< (bdring_len
- 1); i
++) {
305 out_be32((u32 __iomem
*)bd
, R_E
| R_I
);
308 out_be32((u32 __iomem
*)bd
, R_E
| R_I
| R_W
);
311 for (i
= 0; i
< USB_BDRING_LEN_TX
- 1; i
++) {
312 out_be32(&bd
->buf
, 0);
313 out_be32((u32 __iomem
*)bd
, 0);
316 out_be32((u32 __iomem
*)bd
, T_W
);
321 static int qe_ep_reset(struct qe_udc
*udc
, int pipe_num
)
326 ep
= &udc
->eps
[pipe_num
];
327 tmpusep
= in_be16(&udc
->usb_regs
->usb_usep
[pipe_num
]);
328 tmpusep
&= ~USB_RTHS_MASK
;
332 qe_ep_flushtxfifo(ep
);
335 tmpusep
|= USB_THS_IGNORE_IN
;
338 qe_ep_flushtxfifo(ep
);
339 tmpusep
|= USB_RHS_IGNORE_OUT
;
344 out_be16(&udc
->usb_regs
->usb_usep
[pipe_num
], tmpusep
);
346 qe_epbds_reset(udc
, pipe_num
);
351 static int qe_ep_toggledata01(struct qe_ep
*ep
)
357 static int qe_ep_bd_init(struct qe_udc
*udc
, unsigned char pipe_num
)
359 struct qe_ep
*ep
= &udc
->eps
[pipe_num
];
360 unsigned long tmp_addr
= 0;
361 struct usb_ep_para __iomem
*epparam
;
363 struct qe_bd __iomem
*bd
;
366 if (ep
->dir
== USB_DIR_OUT
)
367 bdring_len
= USB_BDRING_LEN_RX
;
369 bdring_len
= USB_BDRING_LEN
;
371 epparam
= udc
->ep_param
[pipe_num
];
372 /* alloc multi-ram for BD rings and set the ep parameters */
373 tmp_addr
= cpm_muram_alloc(sizeof(struct qe_bd
) * (bdring_len
+
374 USB_BDRING_LEN_TX
), QE_ALIGNMENT_OF_BD
);
375 if (IS_ERR_VALUE(tmp_addr
))
378 out_be16(&epparam
->rbase
, (u16
)tmp_addr
);
379 out_be16(&epparam
->tbase
, (u16
)(tmp_addr
+
380 (sizeof(struct qe_bd
) * bdring_len
)));
382 out_be16(&epparam
->rbptr
, in_be16(&epparam
->rbase
));
383 out_be16(&epparam
->tbptr
, in_be16(&epparam
->tbase
));
385 ep
->rxbase
= cpm_muram_addr(tmp_addr
);
386 ep
->txbase
= cpm_muram_addr(tmp_addr
+ (sizeof(struct qe_bd
)
388 ep
->n_rxbd
= ep
->rxbase
;
389 ep
->e_rxbd
= ep
->rxbase
;
390 ep
->n_txbd
= ep
->txbase
;
391 ep
->c_txbd
= ep
->txbase
;
392 ep
->data01
= 0; /* data0 */
394 /* Init TX and RX bds */
396 for (i
= 0; i
< bdring_len
- 1; i
++) {
397 out_be32(&bd
->buf
, 0);
398 out_be32((u32 __iomem
*)bd
, 0);
401 out_be32(&bd
->buf
, 0);
402 out_be32((u32 __iomem
*)bd
, R_W
);
405 for (i
= 0; i
< USB_BDRING_LEN_TX
- 1; i
++) {
406 out_be32(&bd
->buf
, 0);
407 out_be32((u32 __iomem
*)bd
, 0);
410 out_be32(&bd
->buf
, 0);
411 out_be32((u32 __iomem
*)bd
, T_W
);
416 static int qe_ep_rxbd_update(struct qe_ep
*ep
)
421 struct qe_bd __iomem
*bd
;
422 unsigned int bdring_len
;
424 if (ep
->rxbase
== NULL
)
429 ep
->rxframe
= kmalloc(sizeof(*ep
->rxframe
), GFP_ATOMIC
);
430 if (ep
->rxframe
== NULL
) {
431 dev_err(ep
->udc
->dev
, "malloc rxframe failed\n");
435 qe_frame_init(ep
->rxframe
);
437 if (ep
->dir
== USB_DIR_OUT
)
438 bdring_len
= USB_BDRING_LEN_RX
;
440 bdring_len
= USB_BDRING_LEN
;
442 size
= (ep
->ep
.maxpacket
+ USB_CRC_SIZE
+ 2) * (bdring_len
+ 1);
443 ep
->rxbuffer
= kzalloc(size
, GFP_ATOMIC
);
444 if (ep
->rxbuffer
== NULL
) {
445 dev_err(ep
->udc
->dev
, "malloc rxbuffer failed,size=%d\n",
451 ep
->rxbuf_d
= virt_to_phys((void *)ep
->rxbuffer
);
452 if (ep
->rxbuf_d
== DMA_ADDR_INVALID
) {
453 ep
->rxbuf_d
= dma_map_single(udc_controller
->gadget
.dev
.parent
,
459 dma_sync_single_for_device(udc_controller
->gadget
.dev
.parent
,
465 size
= ep
->ep
.maxpacket
+ USB_CRC_SIZE
+ 2;
467 tmp
= (u32
)(((tmp
>> 2) << 2) + 4);
469 for (i
= 0; i
< bdring_len
- 1; i
++) {
470 out_be32(&bd
->buf
, tmp
);
471 out_be32((u32 __iomem
*)bd
, (R_E
| R_I
));
475 out_be32(&bd
->buf
, tmp
);
476 out_be32((u32 __iomem
*)bd
, (R_E
| R_I
| R_W
));
481 static int qe_ep_register_init(struct qe_udc
*udc
, unsigned char pipe_num
)
483 struct qe_ep
*ep
= &udc
->eps
[pipe_num
];
484 struct usb_ep_para __iomem
*epparam
;
489 epparam
= udc
->ep_param
[pipe_num
];
492 logepnum
= (ep
->desc
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
);
493 usep
|= (logepnum
<< USB_EPNUM_SHIFT
);
495 switch (ep
->desc
->bmAttributes
& 0x03) {
496 case USB_ENDPOINT_XFER_BULK
:
497 usep
|= USB_TRANS_BULK
;
499 case USB_ENDPOINT_XFER_ISOC
:
500 usep
|= USB_TRANS_ISO
;
502 case USB_ENDPOINT_XFER_INT
:
503 usep
|= USB_TRANS_INT
;
506 usep
|= USB_TRANS_CTR
;
512 usep
|= USB_THS_IGNORE_IN
;
515 usep
|= USB_RHS_IGNORE_OUT
;
520 out_be16(&udc
->usb_regs
->usb_usep
[pipe_num
], usep
);
523 out_8(&epparam
->rbmr
, rtfcr
);
524 out_8(&epparam
->tbmr
, rtfcr
);
526 tmp
= (u16
)(ep
->ep
.maxpacket
+ USB_CRC_SIZE
);
527 /* MRBLR must be divisble by 4 */
528 tmp
= (u16
)(((tmp
>> 2) << 2) + 4);
529 out_be16(&epparam
->mrblr
, tmp
);
534 static int qe_ep_init(struct qe_udc
*udc
,
535 unsigned char pipe_num
,
536 const struct usb_endpoint_descriptor
*desc
)
538 struct qe_ep
*ep
= &udc
->eps
[pipe_num
];
543 max
= le16_to_cpu(desc
->wMaxPacketSize
);
545 /* check the max package size validate for this endpoint */
546 /* Refer to USB2.0 spec table 9-13,
549 switch (desc
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) {
550 case USB_ENDPOINT_XFER_BULK
:
551 if (strstr(ep
->ep
.name
, "-iso")
552 || strstr(ep
->ep
.name
, "-int"))
554 switch (udc
->gadget
.speed
) {
556 if ((max
== 128) || (max
== 256) || (max
== 512))
572 case USB_ENDPOINT_XFER_INT
:
573 if (strstr(ep
->ep
.name
, "-iso")) /* bulk is ok */
575 switch (udc
->gadget
.speed
) {
588 case USB_ENDPOINT_XFER_ISOC
:
589 if (strstr(ep
->ep
.name
, "-bulk")
590 || strstr(ep
->ep
.name
, "-int"))
592 switch (udc
->gadget
.speed
) {
603 case USB_ENDPOINT_XFER_CONTROL
:
604 if (strstr(ep
->ep
.name
, "-iso")
605 || strstr(ep
->ep
.name
, "-int"))
607 switch (udc
->gadget
.speed
) {
642 spin_lock_irqsave(&udc
->lock
, flags
);
644 /* initialize ep structure */
645 ep
->ep
.maxpacket
= max
;
646 ep
->tm
= (u8
)(desc
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
);
652 ep
->dir
= USB_DIR_BOTH
;
653 udc
->ep0_dir
= USB_DIR_OUT
;
654 udc
->ep0_state
= WAIT_FOR_SETUP
;
656 switch (desc
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) {
658 ep
->dir
= USB_DIR_OUT
;
661 ep
->dir
= USB_DIR_IN
;
667 /* hardware special operation */
668 qe_ep_bd_init(udc
, pipe_num
);
669 if ((ep
->tm
== USBP_TM_CTL
) || (ep
->dir
== USB_DIR_OUT
)) {
670 reval
= qe_ep_rxbd_update(ep
);
675 if ((ep
->tm
== USBP_TM_CTL
) || (ep
->dir
== USB_DIR_IN
)) {
676 ep
->txframe
= kmalloc(sizeof(*ep
->txframe
), GFP_ATOMIC
);
677 if (ep
->txframe
== NULL
) {
678 dev_err(udc
->dev
, "malloc txframe failed\n");
681 qe_frame_init(ep
->txframe
);
684 qe_ep_register_init(udc
, pipe_num
);
686 /* Now HW will be NAKing transfers to that EP,
687 * until a buffer is queued to it. */
688 spin_unlock_irqrestore(&udc
->lock
, flags
);
695 spin_unlock_irqrestore(&udc
->lock
, flags
);
697 dev_err(udc
->dev
, "failed to initialize %s\n", ep
->ep
.name
);
701 static inline void qe_usb_enable(void)
703 setbits8(&udc_controller
->usb_regs
->usb_usmod
, USB_MODE_EN
);
706 static inline void qe_usb_disable(void)
708 clrbits8(&udc_controller
->usb_regs
->usb_usmod
, USB_MODE_EN
);
711 /*----------------------------------------------------------------------------*
712 * USB and EP basic manipulate function end *
713 *----------------------------------------------------------------------------*/
716 /******************************************************************************
717 UDC transmit and receive process
718 ******************************************************************************/
719 static void recycle_one_rxbd(struct qe_ep
*ep
)
723 bdstatus
= in_be32((u32 __iomem
*)ep
->e_rxbd
);
724 bdstatus
= R_I
| R_E
| (bdstatus
& R_W
);
725 out_be32((u32 __iomem
*)ep
->e_rxbd
, bdstatus
);
728 ep
->e_rxbd
= ep
->rxbase
;
733 static void recycle_rxbds(struct qe_ep
*ep
, unsigned char stopatnext
)
736 struct qe_bd __iomem
*bd
, *nextbd
;
737 unsigned char stop
= 0;
741 bdstatus
= in_be32((u32 __iomem
*)bd
);
743 while (!(bdstatus
& R_E
) && !(bdstatus
& BD_LENGTH_MASK
) && !stop
) {
744 bdstatus
= R_E
| R_I
| (bdstatus
& R_W
);
745 out_be32((u32 __iomem
*)bd
, bdstatus
);
752 bdstatus
= in_be32((u32 __iomem
*)bd
);
753 if (stopatnext
&& (bd
== nextbd
))
760 static void ep_recycle_rxbds(struct qe_ep
*ep
)
762 struct qe_bd __iomem
*bd
= ep
->n_rxbd
;
764 u8 epnum
= ep
->epnum
;
765 struct qe_udc
*udc
= ep
->udc
;
767 bdstatus
= in_be32((u32 __iomem
*)bd
);
768 if (!(bdstatus
& R_E
) && !(bdstatus
& BD_LENGTH_MASK
)) {
770 ((in_be16(&udc
->ep_param
[epnum
]->rbptr
) -
771 in_be16(&udc
->ep_param
[epnum
]->rbase
))
773 bdstatus
= in_be32((u32 __iomem
*)bd
);
781 recycle_rxbds(ep
, 0);
782 ep
->e_rxbd
= ep
->n_rxbd
;
784 recycle_rxbds(ep
, 1);
786 if (in_be16(&udc
->usb_regs
->usb_usber
) & USB_E_BSY_MASK
)
787 out_be16(&udc
->usb_regs
->usb_usber
, USB_E_BSY_MASK
);
789 if (ep
->has_data
<= 0 && (!list_empty(&ep
->queue
)))
795 static void setup_received_handle(struct qe_udc
*udc
,
796 struct usb_ctrlrequest
*setup
);
797 static int qe_ep_rxframe_handle(struct qe_ep
*ep
);
798 static void ep0_req_complete(struct qe_udc
*udc
, struct qe_req
*req
);
799 /* when BD PID is setup, handle the packet */
800 static int ep0_setup_handle(struct qe_udc
*udc
)
802 struct qe_ep
*ep
= &udc
->eps
[0];
803 struct qe_frame
*pframe
;
807 pframe
= ep
->rxframe
;
808 if ((frame_get_info(pframe
) & PID_SETUP
)
809 && (udc
->ep0_state
== WAIT_FOR_SETUP
)) {
810 fsize
= frame_get_length(pframe
);
811 if (unlikely(fsize
!= 8))
813 cp
= (u8
*)&udc
->local_setup_buff
;
814 memcpy(cp
, pframe
->data
, fsize
);
817 /* handle the usb command base on the usb_ctrlrequest */
818 setup_received_handle(udc
, &udc
->local_setup_buff
);
824 static int qe_ep0_rx(struct qe_udc
*udc
)
826 struct qe_ep
*ep
= &udc
->eps
[0];
827 struct qe_frame
*pframe
;
828 struct qe_bd __iomem
*bd
;
829 u32 bdstatus
, length
;
832 pframe
= ep
->rxframe
;
834 if (ep
->dir
== USB_DIR_IN
) {
835 dev_err(udc
->dev
, "ep0 not a control endpoint\n");
840 bdstatus
= in_be32((u32 __iomem
*)bd
);
841 length
= bdstatus
& BD_LENGTH_MASK
;
843 while (!(bdstatus
& R_E
) && length
) {
844 if ((bdstatus
& R_F
) && (bdstatus
& R_L
)
845 && !(bdstatus
& R_ERROR
)) {
846 if (length
== USB_CRC_SIZE
) {
847 udc
->ep0_state
= WAIT_FOR_SETUP
;
849 "receive a ZLP in status phase\n");
851 qe_frame_clean(pframe
);
852 vaddr
= (u32
)phys_to_virt(in_be32(&bd
->buf
));
853 frame_set_data(pframe
, (u8
*)vaddr
);
854 frame_set_length(pframe
,
855 (length
- USB_CRC_SIZE
));
856 frame_set_status(pframe
, FRAME_OK
);
857 switch (bdstatus
& R_PID
) {
859 frame_set_info(pframe
, PID_SETUP
);
862 frame_set_info(pframe
, PID_DATA1
);
865 frame_set_info(pframe
, PID_DATA0
);
869 if ((bdstatus
& R_PID
) == R_PID_SETUP
)
870 ep0_setup_handle(udc
);
872 qe_ep_rxframe_handle(ep
);
875 dev_err(udc
->dev
, "The receive frame with error!\n");
878 /* note: don't clear the rxbd's buffer address */
879 recycle_one_rxbd(ep
);
887 bdstatus
= in_be32((u32 __iomem
*)bd
);
888 length
= bdstatus
& BD_LENGTH_MASK
;
897 static int qe_ep_rxframe_handle(struct qe_ep
*ep
)
899 struct qe_frame
*pframe
;
905 pframe
= ep
->rxframe
;
907 if (frame_get_info(pframe
) & PID_DATA1
)
910 if (framepid
!= ep
->data01
) {
911 dev_err(ep
->udc
->dev
, "the data01 error!\n");
915 fsize
= frame_get_length(pframe
);
916 if (list_empty(&ep
->queue
)) {
917 dev_err(ep
->udc
->dev
, "the %s have no requeue!\n", ep
->name
);
919 req
= list_entry(ep
->queue
.next
, struct qe_req
, queue
);
921 cp
= (u8
*)(req
->req
.buf
) + req
->req
.actual
;
923 memcpy(cp
, pframe
->data
, fsize
);
924 req
->req
.actual
+= fsize
;
925 if ((fsize
< ep
->ep
.maxpacket
) ||
926 (req
->req
.actual
>= req
->req
.length
)) {
928 ep0_req_complete(ep
->udc
, req
);
931 if (list_empty(&ep
->queue
) && ep
->epnum
!= 0)
937 qe_ep_toggledata01(ep
);
942 static void ep_rx_tasklet(unsigned long data
)
944 struct qe_udc
*udc
= (struct qe_udc
*)data
;
946 struct qe_frame
*pframe
;
947 struct qe_bd __iomem
*bd
;
949 u32 bdstatus
, length
;
952 spin_lock_irqsave(&udc
->lock
, flags
);
954 for (i
= 1; i
< USB_MAX_ENDPOINTS
; i
++) {
957 if (ep
->dir
== USB_DIR_IN
|| ep
->enable_tasklet
== 0) {
959 "This is a transmit ep or disable tasklet!\n");
963 pframe
= ep
->rxframe
;
965 bdstatus
= in_be32((u32 __iomem
*)bd
);
966 length
= bdstatus
& BD_LENGTH_MASK
;
968 while (!(bdstatus
& R_E
) && length
) {
969 if (list_empty(&ep
->queue
)) {
972 "The rxep have noreq %d\n",
977 if ((bdstatus
& R_F
) && (bdstatus
& R_L
)
978 && !(bdstatus
& R_ERROR
)) {
979 qe_frame_clean(pframe
);
980 vaddr
= (u32
)phys_to_virt(in_be32(&bd
->buf
));
981 frame_set_data(pframe
, (u8
*)vaddr
);
982 frame_set_length(pframe
,
983 (length
- USB_CRC_SIZE
));
984 frame_set_status(pframe
, FRAME_OK
);
985 switch (bdstatus
& R_PID
) {
987 frame_set_info(pframe
, PID_DATA1
);
990 frame_set_info(pframe
, PID_SETUP
);
993 frame_set_info(pframe
, PID_DATA0
);
996 /* handle the rx frame */
997 qe_ep_rxframe_handle(ep
);
1000 "error in received frame\n");
1002 /* note: don't clear the rxbd's buffer address */
1003 /*clear the length */
1004 out_be32((u32 __iomem
*)bd
, bdstatus
& BD_STATUS_MASK
);
1006 if (!(ep
->localnack
))
1007 recycle_one_rxbd(ep
);
1015 bdstatus
= in_be32((u32 __iomem
*)bd
);
1016 length
= bdstatus
& BD_LENGTH_MASK
;
1022 ep_recycle_rxbds(ep
);
1024 ep
->enable_tasklet
= 0;
1027 spin_unlock_irqrestore(&udc
->lock
, flags
);
1030 static int qe_ep_rx(struct qe_ep
*ep
)
1033 struct qe_frame
*pframe
;
1034 struct qe_bd __iomem
*bd
;
1035 u16 swoffs
, ucoffs
, emptybds
;
1038 pframe
= ep
->rxframe
;
1040 if (ep
->dir
== USB_DIR_IN
) {
1041 dev_err(udc
->dev
, "transmit ep in rx function\n");
1047 swoffs
= (u16
)(bd
- ep
->rxbase
);
1048 ucoffs
= (u16
)((in_be16(&udc
->ep_param
[ep
->epnum
]->rbptr
) -
1049 in_be16(&udc
->ep_param
[ep
->epnum
]->rbase
)) >> 3);
1050 if (swoffs
< ucoffs
)
1051 emptybds
= USB_BDRING_LEN_RX
- ucoffs
+ swoffs
;
1053 emptybds
= swoffs
- ucoffs
;
1055 if (emptybds
< MIN_EMPTY_BDS
) {
1058 dev_vdbg(udc
->dev
, "%d empty bds, send NACK\n", emptybds
);
1060 ep
->has_data
= USB_BDRING_LEN_RX
- emptybds
;
1062 if (list_empty(&ep
->queue
)) {
1064 dev_vdbg(udc
->dev
, "The rxep have no req queued with %d BDs\n",
1069 tasklet_schedule(&udc
->rx_tasklet
);
1070 ep
->enable_tasklet
= 1;
1075 /* send data from a frame, no matter what tx_req */
1076 static int qe_ep_tx(struct qe_ep
*ep
, struct qe_frame
*frame
)
1078 struct qe_udc
*udc
= ep
->udc
;
1079 struct qe_bd __iomem
*bd
;
1081 u32 bdstatus
, pidmask
;
1084 if (ep
->dir
== USB_DIR_OUT
) {
1085 dev_err(udc
->dev
, "receive ep passed to tx function\n");
1089 /* Disable the Tx interrupt */
1090 saveusbmr
= in_be16(&udc
->usb_regs
->usb_usbmr
);
1091 out_be16(&udc
->usb_regs
->usb_usbmr
,
1092 saveusbmr
& ~(USB_E_TXB_MASK
| USB_E_TXE_MASK
));
1095 bdstatus
= in_be32((u32 __iomem
*)bd
);
1097 if (!(bdstatus
& (T_R
| BD_LENGTH_MASK
))) {
1098 if (frame_get_length(frame
) == 0) {
1099 frame_set_data(frame
, udc
->nullbuf
);
1100 frame_set_length(frame
, 2);
1101 frame
->info
|= (ZLP
| NO_CRC
);
1102 dev_vdbg(udc
->dev
, "the frame size = 0\n");
1104 paddr
= virt_to_phys((void *)frame
->data
);
1105 out_be32(&bd
->buf
, paddr
);
1106 bdstatus
= (bdstatus
&T_W
);
1107 if (!(frame_get_info(frame
) & NO_CRC
))
1108 bdstatus
|= T_R
| T_I
| T_L
| T_TC
1109 | frame_get_length(frame
);
1111 bdstatus
|= T_R
| T_I
| T_L
| frame_get_length(frame
);
1113 /* if the packet is a ZLP in status phase */
1114 if ((ep
->epnum
== 0) && (udc
->ep0_state
== DATA_STATE_NEED_ZLP
))
1118 pidmask
= T_PID_DATA1
;
1119 frame
->info
|= PID_DATA1
;
1121 pidmask
= T_PID_DATA0
;
1122 frame
->info
|= PID_DATA0
;
1125 bdstatus
|= pidmask
;
1126 out_be32((u32 __iomem
*)bd
, bdstatus
);
1127 qe_ep_filltxfifo(ep
);
1129 /* enable the TX interrupt */
1130 out_be16(&udc
->usb_regs
->usb_usbmr
, saveusbmr
);
1132 qe_ep_toggledata01(ep
);
1134 ep
->n_txbd
= ep
->txbase
;
1140 out_be16(&udc
->usb_regs
->usb_usbmr
, saveusbmr
);
1141 dev_vdbg(udc
->dev
, "The tx bd is not ready!\n");
1146 /* when a bd was transmitted, the function can
1147 * handle the tx_req, not include ep0 */
1148 static int txcomplete(struct qe_ep
*ep
, unsigned char restart
)
1150 if (ep
->tx_req
!= NULL
) {
1151 struct qe_req
*req
= ep
->tx_req
;
1152 unsigned zlp
= 0, last_len
= 0;
1154 last_len
= min_t(unsigned, req
->req
.length
- ep
->sent
,
1158 int asent
= ep
->last
;
1165 /* zlp needed when req->re.zero is set */
1166 if (req
->req
.zero
) {
1167 if (last_len
== 0 ||
1168 (req
->req
.length
% ep
->ep
.maxpacket
) != 0)
1175 /* a request already were transmitted completely */
1176 if (((ep
->tx_req
->req
.length
- ep
->sent
) <= 0) && !zlp
) {
1177 done(ep
, ep
->tx_req
, 0);
1184 /* we should gain a new tx_req fot this endpoint */
1185 if (ep
->tx_req
== NULL
) {
1186 if (!list_empty(&ep
->queue
)) {
1187 ep
->tx_req
= list_entry(ep
->queue
.next
, struct qe_req
,
1197 /* give a frame and a tx_req, send some data */
1198 static int qe_usb_senddata(struct qe_ep
*ep
, struct qe_frame
*frame
)
1203 qe_frame_clean(frame
);
1204 size
= min_t(u32
, (ep
->tx_req
->req
.length
- ep
->sent
),
1206 buf
= (u8
*)ep
->tx_req
->req
.buf
+ ep
->sent
;
1209 ep
->tx_req
->req
.actual
+= size
;
1210 frame_set_data(frame
, buf
);
1211 frame_set_length(frame
, size
);
1212 frame_set_status(frame
, FRAME_OK
);
1213 frame_set_info(frame
, 0);
1214 return qe_ep_tx(ep
, frame
);
1219 /* give a frame struct,send a ZLP */
1220 static int sendnulldata(struct qe_ep
*ep
, struct qe_frame
*frame
, uint infor
)
1222 struct qe_udc
*udc
= ep
->udc
;
1227 qe_frame_clean(frame
);
1228 frame_set_data(frame
, (u8
*)udc
->nullbuf
);
1229 frame_set_length(frame
, 2);
1230 frame_set_status(frame
, FRAME_OK
);
1231 frame_set_info(frame
, (ZLP
| NO_CRC
| infor
));
1233 return qe_ep_tx(ep
, frame
);
1236 static int frame_create_tx(struct qe_ep
*ep
, struct qe_frame
*frame
)
1238 struct qe_req
*req
= ep
->tx_req
;
1244 if ((req
->req
.length
- ep
->sent
) > 0)
1245 reval
= qe_usb_senddata(ep
, frame
);
1247 reval
= sendnulldata(ep
, frame
, 0);
1252 /* if direction is DIR_IN, the status is Device->Host
1253 * if direction is DIR_OUT, the status transaction is Device<-Host
1254 * in status phase, udc create a request and gain status */
1255 static int ep0_prime_status(struct qe_udc
*udc
, int direction
)
1258 struct qe_ep
*ep
= &udc
->eps
[0];
1260 if (direction
== USB_DIR_IN
) {
1261 udc
->ep0_state
= DATA_STATE_NEED_ZLP
;
1262 udc
->ep0_dir
= USB_DIR_IN
;
1263 sendnulldata(ep
, ep
->txframe
, SETUP_STATUS
| NO_REQ
);
1265 udc
->ep0_dir
= USB_DIR_OUT
;
1266 udc
->ep0_state
= WAIT_FOR_OUT_STATUS
;
1272 /* a request complete in ep0, whether gadget request or udc request */
1273 static void ep0_req_complete(struct qe_udc
*udc
, struct qe_req
*req
)
1275 struct qe_ep
*ep
= &udc
->eps
[0];
1276 /* because usb and ep's status already been set in ch9setaddress() */
1278 switch (udc
->ep0_state
) {
1279 case DATA_STATE_XMIT
:
1281 /* receive status phase */
1282 if (ep0_prime_status(udc
, USB_DIR_OUT
))
1286 case DATA_STATE_NEED_ZLP
:
1288 udc
->ep0_state
= WAIT_FOR_SETUP
;
1291 case DATA_STATE_RECV
:
1293 /* send status phase */
1294 if (ep0_prime_status(udc
, USB_DIR_IN
))
1298 case WAIT_FOR_OUT_STATUS
:
1300 udc
->ep0_state
= WAIT_FOR_SETUP
;
1303 case WAIT_FOR_SETUP
:
1304 dev_vdbg(udc
->dev
, "Unexpected interrupt\n");
1313 static int ep0_txcomplete(struct qe_ep
*ep
, unsigned char restart
)
1315 struct qe_req
*tx_req
= NULL
;
1316 struct qe_frame
*frame
= ep
->txframe
;
1318 if ((frame_get_info(frame
) & (ZLP
| NO_REQ
)) == (ZLP
| NO_REQ
)) {
1320 ep
->udc
->ep0_state
= WAIT_FOR_SETUP
;
1322 sendnulldata(ep
, ep
->txframe
, SETUP_STATUS
| NO_REQ
);
1326 tx_req
= ep
->tx_req
;
1327 if (tx_req
!= NULL
) {
1329 int asent
= ep
->last
;
1336 /* a request already were transmitted completely */
1337 if ((ep
->tx_req
->req
.length
- ep
->sent
) <= 0) {
1338 ep
->tx_req
->req
.actual
= (unsigned int)ep
->sent
;
1339 ep0_req_complete(ep
->udc
, ep
->tx_req
);
1345 dev_vdbg(ep
->udc
->dev
, "the ep0_controller have no req\n");
1351 static int ep0_txframe_handle(struct qe_ep
*ep
)
1353 /* if have error, transmit again */
1354 if (frame_get_status(ep
->txframe
) & FRAME_ERROR
) {
1355 qe_ep_flushtxfifo(ep
);
1356 dev_vdbg(ep
->udc
->dev
, "The EP0 transmit data have error!\n");
1357 if (frame_get_info(ep
->txframe
) & PID_DATA0
)
1362 ep0_txcomplete(ep
, 1);
1364 ep0_txcomplete(ep
, 0);
1366 frame_create_tx(ep
, ep
->txframe
);
1370 static int qe_ep0_txconf(struct qe_ep
*ep
)
1372 struct qe_bd __iomem
*bd
;
1373 struct qe_frame
*pframe
;
1377 bdstatus
= in_be32((u32 __iomem
*)bd
);
1378 while (!(bdstatus
& T_R
) && (bdstatus
& ~T_W
)) {
1379 pframe
= ep
->txframe
;
1381 /* clear and recycle the BD */
1382 out_be32((u32 __iomem
*)bd
, bdstatus
& T_W
);
1383 out_be32(&bd
->buf
, 0);
1385 ep
->c_txbd
= ep
->txbase
;
1389 if (ep
->c_txbd
== ep
->n_txbd
) {
1390 if (bdstatus
& DEVICE_T_ERROR
) {
1391 frame_set_status(pframe
, FRAME_ERROR
);
1392 if (bdstatus
& T_TO
)
1393 pframe
->status
|= TX_ER_TIMEOUT
;
1394 if (bdstatus
& T_UN
)
1395 pframe
->status
|= TX_ER_UNDERUN
;
1397 ep0_txframe_handle(ep
);
1401 bdstatus
= in_be32((u32 __iomem
*)bd
);
1407 static int ep_txframe_handle(struct qe_ep
*ep
)
1409 if (frame_get_status(ep
->txframe
) & FRAME_ERROR
) {
1410 qe_ep_flushtxfifo(ep
);
1411 dev_vdbg(ep
->udc
->dev
, "The EP0 transmit data have error!\n");
1412 if (frame_get_info(ep
->txframe
) & PID_DATA0
)
1421 frame_create_tx(ep
, ep
->txframe
); /* send the data */
1425 /* confirm the already trainsmited bd */
1426 static int qe_ep_txconf(struct qe_ep
*ep
)
1428 struct qe_bd __iomem
*bd
;
1429 struct qe_frame
*pframe
= NULL
;
1431 unsigned char breakonrxinterrupt
= 0;
1434 bdstatus
= in_be32((u32 __iomem
*)bd
);
1435 while (!(bdstatus
& T_R
) && (bdstatus
& ~T_W
)) {
1436 pframe
= ep
->txframe
;
1437 if (bdstatus
& DEVICE_T_ERROR
) {
1438 frame_set_status(pframe
, FRAME_ERROR
);
1439 if (bdstatus
& T_TO
)
1440 pframe
->status
|= TX_ER_TIMEOUT
;
1441 if (bdstatus
& T_UN
)
1442 pframe
->status
|= TX_ER_UNDERUN
;
1445 /* clear and recycle the BD */
1446 out_be32((u32 __iomem
*)bd
, bdstatus
& T_W
);
1447 out_be32(&bd
->buf
, 0);
1449 ep
->c_txbd
= ep
->txbase
;
1453 /* handle the tx frame */
1454 ep_txframe_handle(ep
);
1456 bdstatus
= in_be32((u32 __iomem
*)bd
);
1458 if (breakonrxinterrupt
)
1464 /* Add a request in queue, and try to transmit a packet */
1465 static int ep_req_send(struct qe_ep
*ep
, struct qe_req
*req
)
1469 if (ep
->tx_req
== NULL
) {
1472 txcomplete(ep
, 0); /* can gain a new tx_req */
1473 reval
= frame_create_tx(ep
, ep
->txframe
);
1478 /* Maybe this is a good ideal */
1479 static int ep_req_rx(struct qe_ep
*ep
, struct qe_req
*req
)
1481 struct qe_udc
*udc
= ep
->udc
;
1482 struct qe_frame
*pframe
= NULL
;
1483 struct qe_bd __iomem
*bd
;
1484 u32 bdstatus
, length
;
1490 if (list_empty(&ep
->queue
)) {
1491 dev_vdbg(udc
->dev
, "the req already finish!\n");
1494 pframe
= ep
->rxframe
;
1497 bdstatus
= in_be32((u32 __iomem
*)bd
);
1498 length
= bdstatus
& BD_LENGTH_MASK
;
1500 while (!(bdstatus
& R_E
) && length
) {
1503 if ((bdstatus
& R_F
) && (bdstatus
& R_L
)
1504 && !(bdstatus
& R_ERROR
)) {
1505 qe_frame_clean(pframe
);
1506 vaddr
= (u32
)phys_to_virt(in_be32(&bd
->buf
));
1507 frame_set_data(pframe
, (u8
*)vaddr
);
1508 frame_set_length(pframe
, (length
- USB_CRC_SIZE
));
1509 frame_set_status(pframe
, FRAME_OK
);
1510 switch (bdstatus
& R_PID
) {
1512 frame_set_info(pframe
, PID_DATA1
); break;
1514 frame_set_info(pframe
, PID_DATA0
); break;
1516 /* handle the rx frame */
1518 if (frame_get_info(pframe
) & PID_DATA1
)
1523 if (framepid
!= ep
->data01
) {
1524 dev_vdbg(udc
->dev
, "the data01 error!\n");
1526 fsize
= frame_get_length(pframe
);
1528 cp
= (u8
*)(req
->req
.buf
) + req
->req
.actual
;
1530 memcpy(cp
, pframe
->data
, fsize
);
1531 req
->req
.actual
+= fsize
;
1532 if ((fsize
< ep
->ep
.maxpacket
)
1533 || (req
->req
.actual
>=
1537 if (list_empty(&ep
->queue
))
1541 qe_ep_toggledata01(ep
);
1544 dev_err(udc
->dev
, "The receive frame with error!\n");
1547 /* note: don't clear the rxbd's buffer address *
1548 * only Clear the length */
1549 out_be32((u32 __iomem
*)bd
, (bdstatus
& BD_STATUS_MASK
));
1558 bdstatus
= in_be32((u32 __iomem
*)bd
);
1559 length
= bdstatus
& BD_LENGTH_MASK
;
1563 ep_recycle_rxbds(ep
);
1568 /* only add the request in queue */
1569 static int ep_req_receive(struct qe_ep
*ep
, struct qe_req
*req
)
1571 if (ep
->state
== EP_STATE_NACK
) {
1572 if (ep
->has_data
<= 0) {
1573 /* Enable rx and unmask rx interrupt */
1576 /* Copy the exist BD data */
1584 /********************************************************************
1585 Internal Used Function End
1586 ********************************************************************/
1588 /*-----------------------------------------------------------------------
1589 Endpoint Management Functions For Gadget
1590 -----------------------------------------------------------------------*/
1591 static int qe_ep_enable(struct usb_ep
*_ep
,
1592 const struct usb_endpoint_descriptor
*desc
)
1597 unsigned char epnum
;
1599 ep
= container_of(_ep
, struct qe_ep
, ep
);
1601 /* catch various bogus parameters */
1602 if (!_ep
|| !desc
|| ep
->desc
|| _ep
->name
== ep_name
[0] ||
1603 (desc
->bDescriptorType
!= USB_DT_ENDPOINT
))
1607 if (!udc
->driver
|| (udc
->gadget
.speed
== USB_SPEED_UNKNOWN
))
1610 epnum
= (u8
)desc
->bEndpointAddress
& 0xF;
1612 retval
= qe_ep_init(udc
, epnum
, desc
);
1614 cpm_muram_free(cpm_muram_offset(ep
->rxbase
));
1615 dev_dbg(udc
->dev
, "enable ep%d failed\n", ep
->epnum
);
1618 dev_dbg(udc
->dev
, "enable ep%d successful\n", ep
->epnum
);
1622 static int qe_ep_disable(struct usb_ep
*_ep
)
1626 unsigned long flags
;
1629 ep
= container_of(_ep
, struct qe_ep
, ep
);
1632 if (!_ep
|| !ep
->desc
) {
1633 dev_dbg(udc
->dev
, "%s not enabled\n", _ep
? ep
->ep
.name
: NULL
);
1637 spin_lock_irqsave(&udc
->lock
, flags
);
1638 /* Nuke all pending requests (does flush) */
1639 nuke(ep
, -ESHUTDOWN
);
1643 qe_ep_reset(udc
, ep
->epnum
);
1644 spin_unlock_irqrestore(&udc
->lock
, flags
);
1646 cpm_muram_free(cpm_muram_offset(ep
->rxbase
));
1648 if (ep
->dir
== USB_DIR_OUT
)
1649 size
= (ep
->ep
.maxpacket
+ USB_CRC_SIZE
+ 2) *
1650 (USB_BDRING_LEN_RX
+ 1);
1652 size
= (ep
->ep
.maxpacket
+ USB_CRC_SIZE
+ 2) *
1653 (USB_BDRING_LEN
+ 1);
1655 if (ep
->dir
!= USB_DIR_IN
) {
1658 dma_unmap_single(udc_controller
->gadget
.dev
.parent
,
1661 ep
->rxbuf_d
= DMA_ADDR_INVALID
;
1663 dma_sync_single_for_cpu(
1664 udc_controller
->gadget
.dev
.parent
,
1668 kfree(ep
->rxbuffer
);
1671 if (ep
->dir
!= USB_DIR_OUT
)
1674 dev_dbg(udc
->dev
, "disabled %s OK\n", _ep
->name
);
1678 static struct usb_request
*qe_alloc_request(struct usb_ep
*_ep
, gfp_t gfp_flags
)
1682 req
= kzalloc(sizeof(*req
), gfp_flags
);
1686 req
->req
.dma
= DMA_ADDR_INVALID
;
1688 INIT_LIST_HEAD(&req
->queue
);
1693 static void qe_free_request(struct usb_ep
*_ep
, struct usb_request
*_req
)
1697 req
= container_of(_req
, struct qe_req
, req
);
1703 static int __qe_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
)
1705 struct qe_ep
*ep
= container_of(_ep
, struct qe_ep
, ep
);
1706 struct qe_req
*req
= container_of(_req
, struct qe_req
, req
);
1711 /* catch various bogus parameters */
1712 if (!_req
|| !req
->req
.complete
|| !req
->req
.buf
1713 || !list_empty(&req
->queue
)) {
1714 dev_dbg(udc
->dev
, "bad params\n");
1717 if (!_ep
|| (!ep
->desc
&& ep_index(ep
))) {
1718 dev_dbg(udc
->dev
, "bad ep\n");
1722 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1727 /* map virtual address to hardware */
1728 if (req
->req
.dma
== DMA_ADDR_INVALID
) {
1729 req
->req
.dma
= dma_map_single(ep
->udc
->gadget
.dev
.parent
,
1737 dma_sync_single_for_device(ep
->udc
->gadget
.dev
.parent
,
1738 req
->req
.dma
, req
->req
.length
,
1745 req
->req
.status
= -EINPROGRESS
;
1746 req
->req
.actual
= 0;
1748 list_add_tail(&req
->queue
, &ep
->queue
);
1749 dev_vdbg(udc
->dev
, "gadget have request in %s! %d\n",
1750 ep
->name
, req
->req
.length
);
1752 /* push the request to device */
1754 reval
= ep_req_send(ep
, req
);
1757 if (ep_index(ep
) == 0 && req
->req
.length
> 0) {
1759 udc
->ep0_state
= DATA_STATE_XMIT
;
1761 udc
->ep0_state
= DATA_STATE_RECV
;
1764 if (ep
->dir
== USB_DIR_OUT
)
1765 reval
= ep_req_receive(ep
, req
);
1770 /* queues (submits) an I/O request to an endpoint */
1771 static int qe_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
,
1774 struct qe_ep
*ep
= container_of(_ep
, struct qe_ep
, ep
);
1775 struct qe_udc
*udc
= ep
->udc
;
1776 unsigned long flags
;
1779 spin_lock_irqsave(&udc
->lock
, flags
);
1780 ret
= __qe_ep_queue(_ep
, _req
);
1781 spin_unlock_irqrestore(&udc
->lock
, flags
);
1785 /* dequeues (cancels, unlinks) an I/O request from an endpoint */
1786 static int qe_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
1788 struct qe_ep
*ep
= container_of(_ep
, struct qe_ep
, ep
);
1790 unsigned long flags
;
1795 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1797 /* make sure it's actually queued on this endpoint */
1798 list_for_each_entry(req
, &ep
->queue
, queue
) {
1799 if (&req
->req
== _req
)
1803 if (&req
->req
!= _req
) {
1804 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1808 done(ep
, req
, -ECONNRESET
);
1810 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1814 /*-----------------------------------------------------------------
1815 * modify the endpoint halt feature
1816 * @ep: the non-isochronous endpoint being stalled
1817 * @value: 1--set halt 0--clear halt
1818 * Returns zero, or a negative error code.
1819 *----------------------------------------------------------------*/
1820 static int qe_ep_set_halt(struct usb_ep
*_ep
, int value
)
1823 unsigned long flags
;
1824 int status
= -EOPNOTSUPP
;
1827 ep
= container_of(_ep
, struct qe_ep
, ep
);
1828 if (!_ep
|| !ep
->desc
) {
1834 /* Attempt to halt IN ep will fail if any transfer requests
1835 * are still queue */
1836 if (value
&& ep_is_in(ep
) && !list_empty(&ep
->queue
)) {
1842 spin_lock_irqsave(&ep
->udc
->lock
, flags
);
1843 qe_eptx_stall_change(ep
, value
);
1844 qe_eprx_stall_change(ep
, value
);
1845 spin_unlock_irqrestore(&ep
->udc
->lock
, flags
);
1847 if (ep
->epnum
== 0) {
1848 udc
->ep0_state
= WAIT_FOR_SETUP
;
1852 /* set data toggle to DATA0 on clear halt */
1856 dev_vdbg(udc
->dev
, "%s %s halt stat %d\n", ep
->ep
.name
,
1857 value
? "set" : "clear", status
);
1862 static struct usb_ep_ops qe_ep_ops
= {
1863 .enable
= qe_ep_enable
,
1864 .disable
= qe_ep_disable
,
1866 .alloc_request
= qe_alloc_request
,
1867 .free_request
= qe_free_request
,
1869 .queue
= qe_ep_queue
,
1870 .dequeue
= qe_ep_dequeue
,
1872 .set_halt
= qe_ep_set_halt
,
1875 /*------------------------------------------------------------------------
1876 Gadget Driver Layer Operations
1877 ------------------------------------------------------------------------*/
1879 /* Get the current frame number */
1880 static int qe_get_frame(struct usb_gadget
*gadget
)
1884 tmp
= in_be16(&udc_controller
->usb_param
->frame_n
);
1893 /* Tries to wake up the host connected to this gadget
1895 * Return : 0-success
1896 * Negative-this feature not enabled by host or not supported by device hw
1898 static int qe_wakeup(struct usb_gadget
*gadget
)
1903 /* Notify controller that VBUS is powered, Called by whatever
1904 detects VBUS sessions */
1905 static int qe_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1910 /* constrain controller's VBUS power usage
1911 * This call is used by gadget drivers during SET_CONFIGURATION calls,
1912 * reporting how much power the device may consume. For example, this
1913 * could affect how quickly batteries are recharged.
1915 * Returns zero on success, else negative errno.
1917 static int qe_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1922 /* Change Data+ pullup status
1923 * this func is used by usb_gadget_connect/disconnect
1925 static int qe_pullup(struct usb_gadget
*gadget
, int is_on
)
1930 /* defined in usb_gadget.h */
1931 static struct usb_gadget_ops qe_gadget_ops
= {
1932 .get_frame
= qe_get_frame
,
1933 .wakeup
= qe_wakeup
,
1934 /* .set_selfpowered = qe_set_selfpowered,*/ /* always selfpowered */
1935 .vbus_session
= qe_vbus_session
,
1936 .vbus_draw
= qe_vbus_draw
,
1937 .pullup
= qe_pullup
,
1940 /*-------------------------------------------------------------------------
1941 USB ep0 Setup process in BUS Enumeration
1942 -------------------------------------------------------------------------*/
1943 static int udc_reset_ep_queue(struct qe_udc
*udc
, u8 pipe
)
1945 struct qe_ep
*ep
= &udc
->eps
[pipe
];
1947 nuke(ep
, -ECONNRESET
);
1952 static int reset_queues(struct qe_udc
*udc
)
1956 for (pipe
= 0; pipe
< USB_MAX_ENDPOINTS
; pipe
++)
1957 udc_reset_ep_queue(udc
, pipe
);
1959 /* report disconnect; the driver is already quiesced */
1960 spin_unlock(&udc
->lock
);
1961 udc
->driver
->disconnect(&udc
->gadget
);
1962 spin_lock(&udc
->lock
);
1967 static void ch9setaddress(struct qe_udc
*udc
, u16 value
, u16 index
,
1970 /* Save the new address to device struct */
1971 udc
->device_address
= (u8
) value
;
1972 /* Update usb state */
1973 udc
->usb_state
= USB_STATE_ADDRESS
;
1975 /* Status phase , send a ZLP */
1976 if (ep0_prime_status(udc
, USB_DIR_IN
))
1980 static void ownercomplete(struct usb_ep
*_ep
, struct usb_request
*_req
)
1982 struct qe_req
*req
= container_of(_req
, struct qe_req
, req
);
1984 req
->req
.buf
= NULL
;
1988 static void ch9getstatus(struct qe_udc
*udc
, u8 request_type
, u16 value
,
1989 u16 index
, u16 length
)
1997 if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_DEVICE
) {
1998 /* Get device status */
1999 usb_status
= 1 << USB_DEVICE_SELF_POWERED
;
2000 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_INTERFACE
) {
2001 /* Get interface status */
2002 /* We don't have interface information in udc driver */
2004 } else if ((request_type
& USB_RECIP_MASK
) == USB_RECIP_ENDPOINT
) {
2005 /* Get endpoint status */
2006 int pipe
= index
& USB_ENDPOINT_NUMBER_MASK
;
2007 struct qe_ep
*target_ep
= &udc
->eps
[pipe
];
2010 /* stall if endpoint doesn't exist */
2011 if (!target_ep
->desc
)
2014 usep
= in_be16(&udc
->usb_regs
->usb_usep
[pipe
]);
2015 if (index
& USB_DIR_IN
) {
2016 if (target_ep
->dir
!= USB_DIR_IN
)
2018 if ((usep
& USB_THS_MASK
) == USB_THS_STALL
)
2019 usb_status
= 1 << USB_ENDPOINT_HALT
;
2021 if (target_ep
->dir
!= USB_DIR_OUT
)
2023 if ((usep
& USB_RHS_MASK
) == USB_RHS_STALL
)
2024 usb_status
= 1 << USB_ENDPOINT_HALT
;
2028 req
= container_of(qe_alloc_request(&ep
->ep
, GFP_KERNEL
),
2029 struct qe_req
, req
);
2030 req
->req
.length
= 2;
2031 req
->req
.buf
= udc
->statusbuf
;
2032 *(u16
*)req
->req
.buf
= cpu_to_le16(usb_status
);
2033 req
->req
.status
= -EINPROGRESS
;
2034 req
->req
.actual
= 0;
2035 req
->req
.complete
= ownercomplete
;
2037 udc
->ep0_dir
= USB_DIR_IN
;
2040 status
= __qe_ep_queue(&ep
->ep
, &req
->req
);
2045 dev_err(udc
->dev
, "Can't respond to getstatus request \n");
2049 /* only handle the setup request, suppose the device in normal status */
2050 static void setup_received_handle(struct qe_udc
*udc
,
2051 struct usb_ctrlrequest
*setup
)
2053 /* Fix Endian (udc->local_setup_buff is cpu Endian now)*/
2054 u16 wValue
= le16_to_cpu(setup
->wValue
);
2055 u16 wIndex
= le16_to_cpu(setup
->wIndex
);
2056 u16 wLength
= le16_to_cpu(setup
->wLength
);
2058 /* clear the previous request in the ep0 */
2059 udc_reset_ep_queue(udc
, 0);
2061 if (setup
->bRequestType
& USB_DIR_IN
)
2062 udc
->ep0_dir
= USB_DIR_IN
;
2064 udc
->ep0_dir
= USB_DIR_OUT
;
2066 switch (setup
->bRequest
) {
2067 case USB_REQ_GET_STATUS
:
2068 /* Data+Status phase form udc */
2069 if ((setup
->bRequestType
& (USB_DIR_IN
| USB_TYPE_MASK
))
2070 != (USB_DIR_IN
| USB_TYPE_STANDARD
))
2072 ch9getstatus(udc
, setup
->bRequestType
, wValue
, wIndex
,
2076 case USB_REQ_SET_ADDRESS
:
2077 /* Status phase from udc */
2078 if (setup
->bRequestType
!= (USB_DIR_OUT
| USB_TYPE_STANDARD
|
2081 ch9setaddress(udc
, wValue
, wIndex
, wLength
);
2084 case USB_REQ_CLEAR_FEATURE
:
2085 case USB_REQ_SET_FEATURE
:
2086 /* Requests with no data phase, status phase from udc */
2087 if ((setup
->bRequestType
& USB_TYPE_MASK
)
2088 != USB_TYPE_STANDARD
)
2091 if ((setup
->bRequestType
& USB_RECIP_MASK
)
2092 == USB_RECIP_ENDPOINT
) {
2093 int pipe
= wIndex
& USB_ENDPOINT_NUMBER_MASK
;
2096 if (wValue
!= 0 || wLength
!= 0
2097 || pipe
> USB_MAX_ENDPOINTS
)
2099 ep
= &udc
->eps
[pipe
];
2101 spin_unlock(&udc
->lock
);
2102 qe_ep_set_halt(&ep
->ep
,
2103 (setup
->bRequest
== USB_REQ_SET_FEATURE
)
2105 spin_lock(&udc
->lock
);
2108 ep0_prime_status(udc
, USB_DIR_IN
);
2117 /* Data phase from gadget, status phase from udc */
2118 if (setup
->bRequestType
& USB_DIR_IN
) {
2119 udc
->ep0_state
= DATA_STATE_XMIT
;
2120 udc
->ep0_dir
= USB_DIR_IN
;
2122 udc
->ep0_state
= DATA_STATE_RECV
;
2123 udc
->ep0_dir
= USB_DIR_OUT
;
2125 spin_unlock(&udc
->lock
);
2126 if (udc
->driver
->setup(&udc
->gadget
,
2127 &udc
->local_setup_buff
) < 0)
2129 spin_lock(&udc
->lock
);
2131 /* No data phase, IN status from gadget */
2132 udc
->ep0_dir
= USB_DIR_IN
;
2133 spin_unlock(&udc
->lock
);
2134 if (udc
->driver
->setup(&udc
->gadget
,
2135 &udc
->local_setup_buff
) < 0)
2137 spin_lock(&udc
->lock
);
2138 udc
->ep0_state
= DATA_STATE_NEED_ZLP
;
2142 /*-------------------------------------------------------------------------
2143 USB Interrupt handlers
2144 -------------------------------------------------------------------------*/
2145 static void suspend_irq(struct qe_udc
*udc
)
2147 udc
->resume_state
= udc
->usb_state
;
2148 udc
->usb_state
= USB_STATE_SUSPENDED
;
2150 /* report suspend to the driver ,serial.c not support this*/
2151 if (udc
->driver
->suspend
)
2152 udc
->driver
->suspend(&udc
->gadget
);
2155 static void resume_irq(struct qe_udc
*udc
)
2157 udc
->usb_state
= udc
->resume_state
;
2158 udc
->resume_state
= 0;
2160 /* report resume to the driver , serial.c not support this*/
2161 if (udc
->driver
->resume
)
2162 udc
->driver
->resume(&udc
->gadget
);
2165 static void idle_irq(struct qe_udc
*udc
)
2169 usbs
= in_8(&udc
->usb_regs
->usb_usbs
);
2170 if (usbs
& USB_IDLE_STATUS_MASK
) {
2171 if ((udc
->usb_state
) != USB_STATE_SUSPENDED
)
2174 if (udc
->usb_state
== USB_STATE_SUSPENDED
)
2179 static int reset_irq(struct qe_udc
*udc
)
2183 if (udc
->usb_state
== USB_STATE_DEFAULT
)
2187 out_8(&udc
->usb_regs
->usb_usadr
, 0);
2189 for (i
= 0; i
< USB_MAX_ENDPOINTS
; i
++) {
2190 if (udc
->eps
[i
].init
)
2191 qe_ep_reset(udc
, i
);
2195 udc
->usb_state
= USB_STATE_DEFAULT
;
2196 udc
->ep0_state
= WAIT_FOR_SETUP
;
2197 udc
->ep0_dir
= USB_DIR_OUT
;
2202 static int bsy_irq(struct qe_udc
*udc
)
2207 static int txe_irq(struct qe_udc
*udc
)
2212 /* ep0 tx interrupt also in here */
2213 static int tx_irq(struct qe_udc
*udc
)
2216 struct qe_bd __iomem
*bd
;
2219 if ((udc
->usb_state
== USB_STATE_ADDRESS
)
2220 && (in_8(&udc
->usb_regs
->usb_usadr
) == 0))
2221 out_8(&udc
->usb_regs
->usb_usadr
, udc
->device_address
);
2223 for (i
= (USB_MAX_ENDPOINTS
-1); ((i
>= 0) && (res
== 0)); i
--) {
2225 if (ep
&& ep
->init
&& (ep
->dir
!= USB_DIR_OUT
)) {
2227 if (!(in_be32((u32 __iomem
*)bd
) & T_R
)
2228 && (in_be32(&bd
->buf
))) {
2229 /* confirm the transmitted bd */
2231 res
= qe_ep0_txconf(ep
);
2233 res
= qe_ep_txconf(ep
);
2241 /* setup packect's rx is handle in the function too */
2242 static void rx_irq(struct qe_udc
*udc
)
2245 struct qe_bd __iomem
*bd
;
2248 for (i
= 0; i
< USB_MAX_ENDPOINTS
; i
++) {
2250 if (ep
&& ep
->init
&& (ep
->dir
!= USB_DIR_IN
)) {
2252 if (!(in_be32((u32 __iomem
*)bd
) & R_E
)
2253 && (in_be32(&bd
->buf
))) {
2254 if (ep
->epnum
== 0) {
2257 /*non-setup package receive*/
2265 static irqreturn_t
qe_udc_irq(int irq
, void *_udc
)
2267 struct qe_udc
*udc
= (struct qe_udc
*)_udc
;
2269 irqreturn_t status
= IRQ_NONE
;
2270 unsigned long flags
;
2272 spin_lock_irqsave(&udc
->lock
, flags
);
2274 irq_src
= in_be16(&udc
->usb_regs
->usb_usber
) &
2275 in_be16(&udc
->usb_regs
->usb_usbmr
);
2276 /* Clear notification bits */
2277 out_be16(&udc
->usb_regs
->usb_usber
, irq_src
);
2279 if (irq_src
& USB_E_IDLE_MASK
) {
2281 irq_src
&= ~USB_E_IDLE_MASK
;
2282 status
= IRQ_HANDLED
;
2285 if (irq_src
& USB_E_TXB_MASK
) {
2287 irq_src
&= ~USB_E_TXB_MASK
;
2288 status
= IRQ_HANDLED
;
2291 if (irq_src
& USB_E_RXB_MASK
) {
2293 irq_src
&= ~USB_E_RXB_MASK
;
2294 status
= IRQ_HANDLED
;
2297 if (irq_src
& USB_E_RESET_MASK
) {
2299 irq_src
&= ~USB_E_RESET_MASK
;
2300 status
= IRQ_HANDLED
;
2303 if (irq_src
& USB_E_BSY_MASK
) {
2305 irq_src
&= ~USB_E_BSY_MASK
;
2306 status
= IRQ_HANDLED
;
2309 if (irq_src
& USB_E_TXE_MASK
) {
2311 irq_src
&= ~USB_E_TXE_MASK
;
2312 status
= IRQ_HANDLED
;
2315 spin_unlock_irqrestore(&udc
->lock
, flags
);
2320 /*-------------------------------------------------------------------------
2321 Gadget driver probe and unregister.
2322 --------------------------------------------------------------------------*/
2323 int usb_gadget_probe_driver(struct usb_gadget_driver
*driver
,
2324 int (*bind
)(struct usb_gadget
*))
2327 unsigned long flags
= 0;
2329 /* standard operations */
2330 if (!udc_controller
)
2333 if (!driver
|| (driver
->speed
!= USB_SPEED_FULL
2334 && driver
->speed
!= USB_SPEED_HIGH
)
2335 || !bind
|| !driver
->disconnect
|| !driver
->setup
)
2338 if (udc_controller
->driver
)
2341 /* lock is needed but whether should use this lock or another */
2342 spin_lock_irqsave(&udc_controller
->lock
, flags
);
2344 driver
->driver
.bus
= NULL
;
2345 /* hook up the driver */
2346 udc_controller
->driver
= driver
;
2347 udc_controller
->gadget
.dev
.driver
= &driver
->driver
;
2348 udc_controller
->gadget
.speed
= (enum usb_device_speed
)(driver
->speed
);
2349 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
2351 retval
= bind(&udc_controller
->gadget
);
2353 dev_err(udc_controller
->dev
, "bind to %s --> %d",
2354 driver
->driver
.name
, retval
);
2355 udc_controller
->gadget
.dev
.driver
= NULL
;
2356 udc_controller
->driver
= NULL
;
2360 /* Enable IRQ reg and Set usbcmd reg EN bit */
2363 out_be16(&udc_controller
->usb_regs
->usb_usber
, 0xffff);
2364 out_be16(&udc_controller
->usb_regs
->usb_usbmr
, USB_E_DEFAULT_DEVICE
);
2365 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
2366 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
2367 udc_controller
->ep0_dir
= USB_DIR_OUT
;
2368 dev_info(udc_controller
->dev
, "%s bind to driver %s \n",
2369 udc_controller
->gadget
.name
, driver
->driver
.name
);
2372 EXPORT_SYMBOL(usb_gadget_probe_driver
);
2374 int usb_gadget_unregister_driver(struct usb_gadget_driver
*driver
)
2376 struct qe_ep
*loop_ep
;
2377 unsigned long flags
;
2379 if (!udc_controller
)
2382 if (!driver
|| driver
!= udc_controller
->driver
)
2385 /* stop usb controller, disable intr */
2388 /* in fact, no needed */
2389 udc_controller
->usb_state
= USB_STATE_ATTACHED
;
2390 udc_controller
->ep0_state
= WAIT_FOR_SETUP
;
2391 udc_controller
->ep0_dir
= 0;
2393 /* stand operation */
2394 spin_lock_irqsave(&udc_controller
->lock
, flags
);
2395 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2396 nuke(&udc_controller
->eps
[0], -ESHUTDOWN
);
2397 list_for_each_entry(loop_ep
, &udc_controller
->gadget
.ep_list
,
2399 nuke(loop_ep
, -ESHUTDOWN
);
2400 spin_unlock_irqrestore(&udc_controller
->lock
, flags
);
2402 /* report disconnect; the controller is already quiesced */
2403 driver
->disconnect(&udc_controller
->gadget
);
2405 /* unbind gadget and unhook driver. */
2406 driver
->unbind(&udc_controller
->gadget
);
2407 udc_controller
->gadget
.dev
.driver
= NULL
;
2408 udc_controller
->driver
= NULL
;
2410 dev_info(udc_controller
->dev
, "unregistered gadget driver '%s'\r\n",
2411 driver
->driver
.name
);
2414 EXPORT_SYMBOL(usb_gadget_unregister_driver
);
2416 /* udc structure's alloc and setup, include ep-param alloc */
2417 static struct qe_udc __devinit
*qe_udc_config(struct platform_device
*ofdev
)
2420 struct device_node
*np
= ofdev
->dev
.of_node
;
2421 unsigned int tmp_addr
= 0;
2422 struct usb_device_para __iomem
*usbpram
;
2427 udc
= kzalloc(sizeof(*udc
), GFP_KERNEL
);
2429 dev_err(&ofdev
->dev
, "malloc udc failed\n");
2433 udc
->dev
= &ofdev
->dev
;
2435 /* get default address of usb parameter in MURAM from device tree */
2436 offset
= *of_get_address(np
, 1, &size
, NULL
);
2437 udc
->usb_param
= cpm_muram_addr(offset
);
2438 memset_io(udc
->usb_param
, 0, size
);
2440 usbpram
= udc
->usb_param
;
2441 out_be16(&usbpram
->frame_n
, 0);
2442 out_be32(&usbpram
->rstate
, 0);
2444 tmp_addr
= cpm_muram_alloc((USB_MAX_ENDPOINTS
*
2445 sizeof(struct usb_ep_para
)),
2446 USB_EP_PARA_ALIGNMENT
);
2447 if (IS_ERR_VALUE(tmp_addr
))
2450 for (i
= 0; i
< USB_MAX_ENDPOINTS
; i
++) {
2451 out_be16(&usbpram
->epptr
[i
], (u16
)tmp_addr
);
2452 udc
->ep_param
[i
] = cpm_muram_addr(tmp_addr
);
2456 memset_io(udc
->ep_param
[0], 0,
2457 USB_MAX_ENDPOINTS
* sizeof(struct usb_ep_para
));
2459 udc
->resume_state
= USB_STATE_NOTATTACHED
;
2460 udc
->usb_state
= USB_STATE_POWERED
;
2463 spin_lock_init(&udc
->lock
);
2471 /* USB Controller register init */
2472 static int __devinit
qe_udc_reg_init(struct qe_udc
*udc
)
2474 struct usb_ctlr __iomem
*qe_usbregs
;
2475 qe_usbregs
= udc
->usb_regs
;
2477 /* Spec says that we must enable the USB controller to change mode. */
2478 out_8(&qe_usbregs
->usb_usmod
, 0x01);
2479 /* Mode changed, now disable it, since muram isn't initialized yet. */
2480 out_8(&qe_usbregs
->usb_usmod
, 0x00);
2482 /* Initialize the rest. */
2483 out_be16(&qe_usbregs
->usb_usbmr
, 0);
2484 out_8(&qe_usbregs
->usb_uscom
, 0);
2485 out_be16(&qe_usbregs
->usb_usber
, USBER_ALL_CLEAR
);
2490 static int __devinit
qe_ep_config(struct qe_udc
*udc
, unsigned char pipe_num
)
2492 struct qe_ep
*ep
= &udc
->eps
[pipe_num
];
2495 strcpy(ep
->name
, ep_name
[pipe_num
]);
2496 ep
->ep
.name
= ep_name
[pipe_num
];
2498 ep
->ep
.ops
= &qe_ep_ops
;
2500 ep
->ep
.maxpacket
= (unsigned short) ~0;
2503 ep
->epnum
= (u8
)pipe_num
;
2510 ep
->state
= EP_STATE_IDLE
;
2513 /* the queue lists any req for this ep */
2514 INIT_LIST_HEAD(&ep
->queue
);
2516 /* gagdet.ep_list used for ep_autoconfig so no ep0*/
2518 list_add_tail(&ep
->ep
.ep_list
, &udc
->gadget
.ep_list
);
2520 ep
->gadget
= &udc
->gadget
;
2525 /*-----------------------------------------------------------------------
2526 * UDC device Driver operation functions *
2527 *----------------------------------------------------------------------*/
2528 static void qe_udc_release(struct device
*dev
)
2532 complete(udc_controller
->done
);
2533 cpm_muram_free(cpm_muram_offset(udc_controller
->ep_param
[0]));
2534 for (i
= 0; i
< USB_MAX_ENDPOINTS
; i
++)
2535 udc_controller
->ep_param
[i
] = NULL
;
2537 kfree(udc_controller
);
2538 udc_controller
= NULL
;
2541 /* Driver probe functions */
2542 static int __devinit
qe_udc_probe(struct platform_device
*ofdev
)
2544 struct device_node
*np
= ofdev
->dev
.of_node
;
2546 unsigned int ret
= 0;
2550 if (!ofdev
->dev
.of_match
)
2553 prop
= of_get_property(np
, "mode", NULL
);
2554 if (!prop
|| strcmp(prop
, "peripheral"))
2557 /* Initialize the udc structure including QH member and other member */
2558 udc_controller
= qe_udc_config(ofdev
);
2559 if (!udc_controller
) {
2560 dev_err(&ofdev
->dev
, "failed to initialize\n");
2564 udc_controller
->soc_type
= (unsigned long)ofdev
->dev
.of_match
->data
;
2565 udc_controller
->usb_regs
= of_iomap(np
, 0);
2566 if (!udc_controller
->usb_regs
) {
2571 /* initialize usb hw reg except for regs for EP,
2572 * leave usbintr reg untouched*/
2573 qe_udc_reg_init(udc_controller
);
2575 /* here comes the stand operations for probe
2576 * set the qe_udc->gadget.xxx */
2577 udc_controller
->gadget
.ops
= &qe_gadget_ops
;
2579 /* gadget.ep0 is a pointer */
2580 udc_controller
->gadget
.ep0
= &udc_controller
->eps
[0].ep
;
2582 INIT_LIST_HEAD(&udc_controller
->gadget
.ep_list
);
2584 /* modify in register gadget process */
2585 udc_controller
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2587 /* name: Identifies the controller hardware type. */
2588 udc_controller
->gadget
.name
= driver_name
;
2590 device_initialize(&udc_controller
->gadget
.dev
);
2592 dev_set_name(&udc_controller
->gadget
.dev
, "gadget");
2594 udc_controller
->gadget
.dev
.release
= qe_udc_release
;
2595 udc_controller
->gadget
.dev
.parent
= &ofdev
->dev
;
2597 /* initialize qe_ep struct */
2598 for (i
= 0; i
< USB_MAX_ENDPOINTS
; i
++) {
2599 /* because the ep type isn't decide here so
2600 * qe_ep_init() should be called in ep_enable() */
2602 /* setup the qe_ep struct and link ep.ep.list
2603 * into gadget.ep_list */
2604 qe_ep_config(udc_controller
, (unsigned char)i
);
2607 /* ep0 initialization in here */
2608 ret
= qe_ep_init(udc_controller
, 0, &qe_ep0_desc
);
2612 /* create a buf for ZLP send, need to remain zeroed */
2613 udc_controller
->nullbuf
= kzalloc(256, GFP_KERNEL
);
2614 if (udc_controller
->nullbuf
== NULL
) {
2615 dev_err(udc_controller
->dev
, "cannot alloc nullbuf\n");
2620 /* buffer for data of get_status request */
2621 udc_controller
->statusbuf
= kzalloc(2, GFP_KERNEL
);
2622 if (udc_controller
->statusbuf
== NULL
) {
2627 udc_controller
->nullp
= virt_to_phys((void *)udc_controller
->nullbuf
);
2628 if (udc_controller
->nullp
== DMA_ADDR_INVALID
) {
2629 udc_controller
->nullp
= dma_map_single(
2630 udc_controller
->gadget
.dev
.parent
,
2631 udc_controller
->nullbuf
,
2634 udc_controller
->nullmap
= 1;
2636 dma_sync_single_for_device(udc_controller
->gadget
.dev
.parent
,
2637 udc_controller
->nullp
, 256,
2641 tasklet_init(&udc_controller
->rx_tasklet
, ep_rx_tasklet
,
2642 (unsigned long)udc_controller
);
2643 /* request irq and disable DR */
2644 udc_controller
->usb_irq
= irq_of_parse_and_map(np
, 0);
2645 if (!udc_controller
->usb_irq
) {
2650 ret
= request_irq(udc_controller
->usb_irq
, qe_udc_irq
, 0,
2651 driver_name
, udc_controller
);
2653 dev_err(udc_controller
->dev
, "cannot request irq %d err %d \n",
2654 udc_controller
->usb_irq
, ret
);
2658 ret
= device_add(&udc_controller
->gadget
.dev
);
2662 dev_info(udc_controller
->dev
,
2663 "%s USB controller initialized as device\n",
2664 (udc_controller
->soc_type
== PORT_QE
) ? "QE" : "CPM");
2668 free_irq(udc_controller
->usb_irq
, udc_controller
);
2670 irq_dispose_mapping(udc_controller
->usb_irq
);
2672 if (udc_controller
->nullmap
) {
2673 dma_unmap_single(udc_controller
->gadget
.dev
.parent
,
2674 udc_controller
->nullp
, 256,
2676 udc_controller
->nullp
= DMA_ADDR_INVALID
;
2678 dma_sync_single_for_cpu(udc_controller
->gadget
.dev
.parent
,
2679 udc_controller
->nullp
, 256,
2682 kfree(udc_controller
->statusbuf
);
2684 kfree(udc_controller
->nullbuf
);
2686 ep
= &udc_controller
->eps
[0];
2687 cpm_muram_free(cpm_muram_offset(ep
->rxbase
));
2689 kfree(ep
->rxbuffer
);
2692 iounmap(udc_controller
->usb_regs
);
2694 kfree(udc_controller
);
2695 udc_controller
= NULL
;
2700 static int qe_udc_suspend(struct platform_device
*dev
, pm_message_t state
)
2705 static int qe_udc_resume(struct platform_device
*dev
)
2711 static int __devexit
qe_udc_remove(struct platform_device
*ofdev
)
2716 DECLARE_COMPLETION(done
);
2718 if (!udc_controller
)
2721 udc_controller
->done
= &done
;
2722 tasklet_disable(&udc_controller
->rx_tasklet
);
2724 if (udc_controller
->nullmap
) {
2725 dma_unmap_single(udc_controller
->gadget
.dev
.parent
,
2726 udc_controller
->nullp
, 256,
2728 udc_controller
->nullp
= DMA_ADDR_INVALID
;
2730 dma_sync_single_for_cpu(udc_controller
->gadget
.dev
.parent
,
2731 udc_controller
->nullp
, 256,
2734 kfree(udc_controller
->statusbuf
);
2735 kfree(udc_controller
->nullbuf
);
2737 ep
= &udc_controller
->eps
[0];
2738 cpm_muram_free(cpm_muram_offset(ep
->rxbase
));
2739 size
= (ep
->ep
.maxpacket
+ USB_CRC_SIZE
+ 2) * (USB_BDRING_LEN
+ 1);
2743 dma_unmap_single(udc_controller
->gadget
.dev
.parent
,
2746 ep
->rxbuf_d
= DMA_ADDR_INVALID
;
2748 dma_sync_single_for_cpu(udc_controller
->gadget
.dev
.parent
,
2753 kfree(ep
->rxbuffer
);
2756 free_irq(udc_controller
->usb_irq
, udc_controller
);
2757 irq_dispose_mapping(udc_controller
->usb_irq
);
2759 tasklet_kill(&udc_controller
->rx_tasklet
);
2761 iounmap(udc_controller
->usb_regs
);
2763 device_unregister(&udc_controller
->gadget
.dev
);
2764 /* wait for release() of gadget.dev to free udc */
2765 wait_for_completion(&done
);
2770 /*-------------------------------------------------------------------------*/
2771 static const struct of_device_id qe_udc_match
[] __devinitconst
= {
2773 .compatible
= "fsl,mpc8323-qe-usb",
2774 .data
= (void *)PORT_QE
,
2777 .compatible
= "fsl,mpc8360-qe-usb",
2778 .data
= (void *)PORT_QE
,
2781 .compatible
= "fsl,mpc8272-cpm-usb",
2782 .data
= (void *)PORT_CPM
,
2787 MODULE_DEVICE_TABLE(of
, qe_udc_match
);
2789 static struct platform_driver udc_driver
= {
2791 .name
= (char *)driver_name
,
2792 .owner
= THIS_MODULE
,
2793 .of_match_table
= qe_udc_match
,
2795 .probe
= qe_udc_probe
,
2796 .remove
= __devexit_p(qe_udc_remove
),
2798 .suspend
= qe_udc_suspend
,
2799 .resume
= qe_udc_resume
,
2803 static int __init
qe_udc_init(void)
2805 printk(KERN_INFO
"%s: %s, %s\n", driver_name
, driver_desc
,
2807 return platform_driver_register(&udc_driver
);
2810 static void __exit
qe_udc_exit(void)
2812 platform_driver_unregister(&udc_driver
);
2815 module_init(qe_udc_init
);
2816 module_exit(qe_udc_exit
);
2818 MODULE_DESCRIPTION(DRIVER_DESC
);
2819 MODULE_AUTHOR(DRIVER_AUTHOR
);
2820 MODULE_LICENSE("GPL");