2 * Fusb300 UDC (USB gadget)
4 * Copyright (C) 2010 Faraday Technology Corp.
6 * Author : Yuan-hsin Chen <yhchen@faraday-tech.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <linux/dma-mapping.h>
23 #include <linux/err.h>
24 #include <linux/interrupt.h>
26 #include <linux/platform_device.h>
27 #include <linux/usb/ch9.h>
28 #include <linux/usb/gadget.h>
30 #include "fusb300_udc.h"
32 MODULE_DESCRIPTION("FUSB300 USB gadget driver");
33 MODULE_LICENSE("GPL");
34 MODULE_AUTHOR("Yuan Hsin Chen <yhchen@faraday-tech.com>");
35 MODULE_ALIAS("platform:fusb300_udc");
37 #define DRIVER_VERSION "20 October 2010"
39 static const char udc_name
[] = "fusb300_udc";
40 static const char * const fusb300_ep_name
[] = {
41 "ep0", "ep1", "ep2", "ep3", "ep4", "ep5", "ep6", "ep7", "ep8", "ep9",
42 "ep10", "ep11", "ep12", "ep13", "ep14", "ep15"
45 static void done(struct fusb300_ep
*ep
, struct fusb300_request
*req
,
48 static void fusb300_enable_bit(struct fusb300
*fusb300
, u32 offset
,
51 u32 reg
= ioread32(fusb300
->reg
+ offset
);
54 iowrite32(reg
, fusb300
->reg
+ offset
);
57 static void fusb300_disable_bit(struct fusb300
*fusb300
, u32 offset
,
60 u32 reg
= ioread32(fusb300
->reg
+ offset
);
63 iowrite32(reg
, fusb300
->reg
+ offset
);
67 static void fusb300_ep_setting(struct fusb300_ep
*ep
,
68 struct fusb300_ep_info info
)
70 ep
->epnum
= info
.epnum
;
74 static int fusb300_ep_release(struct fusb300_ep
*ep
)
84 static void fusb300_set_fifo_entry(struct fusb300
*fusb300
,
87 u32 val
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET1(ep
));
89 val
&= ~FUSB300_EPSET1_FIFOENTRY_MSK
;
90 val
|= FUSB300_EPSET1_FIFOENTRY(FUSB300_FIFO_ENTRY_NUM
);
91 iowrite32(val
, fusb300
->reg
+ FUSB300_OFFSET_EPSET1(ep
));
94 static void fusb300_set_start_entry(struct fusb300
*fusb300
,
97 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET1(ep
));
98 u32 start_entry
= fusb300
->fifo_entry_num
* FUSB300_FIFO_ENTRY_NUM
;
100 reg
&= ~FUSB300_EPSET1_START_ENTRY_MSK
;
101 reg
|= FUSB300_EPSET1_START_ENTRY(start_entry
);
102 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET1(ep
));
103 if (fusb300
->fifo_entry_num
== FUSB300_MAX_FIFO_ENTRY
) {
104 fusb300
->fifo_entry_num
= 0;
105 fusb300
->addrofs
= 0;
106 pr_err("fifo entry is over the maximum number!\n");
108 fusb300
->fifo_entry_num
++;
111 /* set fusb300_set_start_entry first before fusb300_set_epaddrofs */
112 static void fusb300_set_epaddrofs(struct fusb300
*fusb300
,
113 struct fusb300_ep_info info
)
115 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET2(info
.epnum
));
117 reg
&= ~FUSB300_EPSET2_ADDROFS_MSK
;
118 reg
|= FUSB300_EPSET2_ADDROFS(fusb300
->addrofs
);
119 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET2(info
.epnum
));
120 fusb300
->addrofs
+= (info
.maxpacket
+ 7) / 8 * FUSB300_FIFO_ENTRY_NUM
;
123 static void ep_fifo_setting(struct fusb300
*fusb300
,
124 struct fusb300_ep_info info
)
126 fusb300_set_fifo_entry(fusb300
, info
.epnum
);
127 fusb300_set_start_entry(fusb300
, info
.epnum
);
128 fusb300_set_epaddrofs(fusb300
, info
);
131 static void fusb300_set_eptype(struct fusb300
*fusb300
,
132 struct fusb300_ep_info info
)
134 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
136 reg
&= ~FUSB300_EPSET1_TYPE_MSK
;
137 reg
|= FUSB300_EPSET1_TYPE(info
.type
);
138 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
141 static void fusb300_set_epdir(struct fusb300
*fusb300
,
142 struct fusb300_ep_info info
)
148 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
149 reg
&= ~FUSB300_EPSET1_DIR_MSK
;
150 reg
|= FUSB300_EPSET1_DIRIN
;
151 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
154 static void fusb300_set_ep_active(struct fusb300
*fusb300
,
157 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET1(ep
));
159 reg
|= FUSB300_EPSET1_ACTEN
;
160 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET1(ep
));
163 static void fusb300_set_epmps(struct fusb300
*fusb300
,
164 struct fusb300_ep_info info
)
166 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET2(info
.epnum
));
168 reg
&= ~FUSB300_EPSET2_MPS_MSK
;
169 reg
|= FUSB300_EPSET2_MPS(info
.maxpacket
);
170 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET2(info
.epnum
));
173 static void fusb300_set_interval(struct fusb300
*fusb300
,
174 struct fusb300_ep_info info
)
176 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
178 reg
&= ~FUSB300_EPSET1_INTERVAL(0x7);
179 reg
|= FUSB300_EPSET1_INTERVAL(info
.interval
);
180 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
183 static void fusb300_set_bwnum(struct fusb300
*fusb300
,
184 struct fusb300_ep_info info
)
186 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
188 reg
&= ~FUSB300_EPSET1_BWNUM(0x3);
189 reg
|= FUSB300_EPSET1_BWNUM(info
.bw_num
);
190 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET1(info
.epnum
));
193 static void set_ep_reg(struct fusb300
*fusb300
,
194 struct fusb300_ep_info info
)
196 fusb300_set_eptype(fusb300
, info
);
197 fusb300_set_epdir(fusb300
, info
);
198 fusb300_set_epmps(fusb300
, info
);
201 fusb300_set_interval(fusb300
, info
);
204 fusb300_set_bwnum(fusb300
, info
);
206 fusb300_set_ep_active(fusb300
, info
.epnum
);
209 static int config_ep(struct fusb300_ep
*ep
,
210 const struct usb_endpoint_descriptor
*desc
)
212 struct fusb300
*fusb300
= ep
->fusb300
;
213 struct fusb300_ep_info info
;
221 info
.type
= desc
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
;
222 info
.dir_in
= (desc
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
) ? 1 : 0;
223 info
.maxpacket
= le16_to_cpu(desc
->wMaxPacketSize
);
224 info
.epnum
= desc
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
;
226 if ((info
.type
== USB_ENDPOINT_XFER_INT
) ||
227 (info
.type
== USB_ENDPOINT_XFER_ISOC
)) {
228 info
.interval
= desc
->bInterval
;
229 if (info
.type
== USB_ENDPOINT_XFER_ISOC
)
230 info
.bw_num
= ((desc
->wMaxPacketSize
& 0x1800) >> 11);
233 ep_fifo_setting(fusb300
, info
);
235 set_ep_reg(fusb300
, info
);
237 fusb300_ep_setting(ep
, info
);
239 fusb300
->ep
[info
.epnum
] = ep
;
244 static int fusb300_enable(struct usb_ep
*_ep
,
245 const struct usb_endpoint_descriptor
*desc
)
247 struct fusb300_ep
*ep
;
249 ep
= container_of(_ep
, struct fusb300_ep
, ep
);
251 if (ep
->fusb300
->reenum
) {
252 ep
->fusb300
->fifo_entry_num
= 0;
253 ep
->fusb300
->addrofs
= 0;
254 ep
->fusb300
->reenum
= 0;
257 return config_ep(ep
, desc
);
260 static int fusb300_disable(struct usb_ep
*_ep
)
262 struct fusb300_ep
*ep
;
263 struct fusb300_request
*req
;
266 ep
= container_of(_ep
, struct fusb300_ep
, ep
);
270 while (!list_empty(&ep
->queue
)) {
271 req
= list_entry(ep
->queue
.next
, struct fusb300_request
, queue
);
272 spin_lock_irqsave(&ep
->fusb300
->lock
, flags
);
273 done(ep
, req
, -ECONNRESET
);
274 spin_unlock_irqrestore(&ep
->fusb300
->lock
, flags
);
277 return fusb300_ep_release(ep
);
280 static struct usb_request
*fusb300_alloc_request(struct usb_ep
*_ep
,
283 struct fusb300_request
*req
;
285 req
= kzalloc(sizeof(struct fusb300_request
), gfp_flags
);
288 INIT_LIST_HEAD(&req
->queue
);
293 static void fusb300_free_request(struct usb_ep
*_ep
, struct usb_request
*_req
)
295 struct fusb300_request
*req
;
297 req
= container_of(_req
, struct fusb300_request
, req
);
301 static int enable_fifo_int(struct fusb300_ep
*ep
)
303 struct fusb300
*fusb300
= ep
->fusb300
;
306 fusb300_enable_bit(fusb300
, FUSB300_OFFSET_IGER0
,
307 FUSB300_IGER0_EEPn_FIFO_INT(ep
->epnum
));
309 pr_err("can't enable_fifo_int ep0\n");
316 static int disable_fifo_int(struct fusb300_ep
*ep
)
318 struct fusb300
*fusb300
= ep
->fusb300
;
321 fusb300_disable_bit(fusb300
, FUSB300_OFFSET_IGER0
,
322 FUSB300_IGER0_EEPn_FIFO_INT(ep
->epnum
));
324 pr_err("can't disable_fifo_int ep0\n");
331 static void fusb300_set_cxlen(struct fusb300
*fusb300
, u32 length
)
335 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_CSR
);
336 reg
&= ~FUSB300_CSR_LEN_MSK
;
337 reg
|= FUSB300_CSR_LEN(length
);
338 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_CSR
);
341 /* write data to cx fifo */
342 static void fusb300_wrcxf(struct fusb300_ep
*ep
,
343 struct fusb300_request
*req
)
348 struct fusb300
*fusb300
= ep
->fusb300
;
349 u32 length
= req
->req
.length
- req
->req
.actual
;
351 tmp
= req
->req
.buf
+ req
->req
.actual
;
353 if (length
> SS_CTL_MAX_PACKET_SIZE
) {
354 fusb300_set_cxlen(fusb300
, SS_CTL_MAX_PACKET_SIZE
);
355 for (i
= (SS_CTL_MAX_PACKET_SIZE
>> 2); i
> 0; i
--) {
356 data
= *tmp
| *(tmp
+ 1) << 8 | *(tmp
+ 2) << 16 |
358 iowrite32(data
, fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
361 req
->req
.actual
+= SS_CTL_MAX_PACKET_SIZE
;
362 } else { /* length is less than max packet size */
363 fusb300_set_cxlen(fusb300
, length
);
364 for (i
= length
>> 2; i
> 0; i
--) {
365 data
= *tmp
| *(tmp
+ 1) << 8 | *(tmp
+ 2) << 16 |
367 printk(KERN_DEBUG
" 0x%x\n", data
);
368 iowrite32(data
, fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
371 switch (length
% 4) {
374 printk(KERN_DEBUG
" 0x%x\n", data
);
375 iowrite32(data
, fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
378 data
= *tmp
| *(tmp
+ 1) << 8;
379 printk(KERN_DEBUG
" 0x%x\n", data
);
380 iowrite32(data
, fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
383 data
= *tmp
| *(tmp
+ 1) << 8 | *(tmp
+ 2) << 16;
384 printk(KERN_DEBUG
" 0x%x\n", data
);
385 iowrite32(data
, fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
390 req
->req
.actual
+= length
;
394 static void fusb300_set_epnstall(struct fusb300
*fusb300
, u8 ep
)
396 fusb300_enable_bit(fusb300
, FUSB300_OFFSET_EPSET0(ep
),
400 static void fusb300_clear_epnstall(struct fusb300
*fusb300
, u8 ep
)
402 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET0(ep
));
404 if (reg
& FUSB300_EPSET0_STL
) {
405 printk(KERN_DEBUG
"EP%d stall... Clear!!\n", ep
);
406 reg
&= ~FUSB300_EPSET0_STL
;
407 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPSET0(ep
));
411 static void ep0_queue(struct fusb300_ep
*ep
, struct fusb300_request
*req
)
413 if (ep
->fusb300
->ep0_dir
) { /* if IN */
414 if (req
->req
.length
) {
415 fusb300_wrcxf(ep
, req
);
417 printk(KERN_DEBUG
"%s : req->req.length = 0x%x\n",
418 __func__
, req
->req
.length
);
419 if ((req
->req
.length
== req
->req
.actual
) ||
420 (req
->req
.actual
< ep
->ep
.maxpacket
))
423 if (!req
->req
.length
)
426 fusb300_enable_bit(ep
->fusb300
, FUSB300_OFFSET_IGER1
,
427 FUSB300_IGER1_CX_OUT_INT
);
431 static int fusb300_queue(struct usb_ep
*_ep
, struct usb_request
*_req
,
434 struct fusb300_ep
*ep
;
435 struct fusb300_request
*req
;
439 ep
= container_of(_ep
, struct fusb300_ep
, ep
);
440 req
= container_of(_req
, struct fusb300_request
, req
);
442 if (ep
->fusb300
->gadget
.speed
== USB_SPEED_UNKNOWN
)
445 spin_lock_irqsave(&ep
->fusb300
->lock
, flags
);
447 if (list_empty(&ep
->queue
))
450 list_add_tail(&req
->queue
, &ep
->queue
);
453 req
->req
.status
= -EINPROGRESS
;
455 if (ep
->desc
== NULL
) /* ep0 */
457 else if (request
&& !ep
->stall
)
460 spin_unlock_irqrestore(&ep
->fusb300
->lock
, flags
);
465 static int fusb300_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
467 struct fusb300_ep
*ep
;
468 struct fusb300_request
*req
;
471 ep
= container_of(_ep
, struct fusb300_ep
, ep
);
472 req
= container_of(_req
, struct fusb300_request
, req
);
474 spin_lock_irqsave(&ep
->fusb300
->lock
, flags
);
475 if (!list_empty(&ep
->queue
))
476 done(ep
, req
, -ECONNRESET
);
477 spin_unlock_irqrestore(&ep
->fusb300
->lock
, flags
);
482 static int fusb300_set_halt_and_wedge(struct usb_ep
*_ep
, int value
, int wedge
)
484 struct fusb300_ep
*ep
;
485 struct fusb300
*fusb300
;
489 ep
= container_of(_ep
, struct fusb300_ep
, ep
);
491 fusb300
= ep
->fusb300
;
493 spin_lock_irqsave(&ep
->fusb300
->lock
, flags
);
495 if (!list_empty(&ep
->queue
)) {
501 fusb300_set_epnstall(fusb300
, ep
->epnum
);
506 fusb300_clear_epnstall(fusb300
, ep
->epnum
);
512 spin_unlock_irqrestore(&ep
->fusb300
->lock
, flags
);
516 static int fusb300_set_halt(struct usb_ep
*_ep
, int value
)
518 return fusb300_set_halt_and_wedge(_ep
, value
, 0);
521 static int fusb300_set_wedge(struct usb_ep
*_ep
)
523 return fusb300_set_halt_and_wedge(_ep
, 1, 1);
526 static void fusb300_fifo_flush(struct usb_ep
*_ep
)
530 static struct usb_ep_ops fusb300_ep_ops
= {
531 .enable
= fusb300_enable
,
532 .disable
= fusb300_disable
,
534 .alloc_request
= fusb300_alloc_request
,
535 .free_request
= fusb300_free_request
,
537 .queue
= fusb300_queue
,
538 .dequeue
= fusb300_dequeue
,
540 .set_halt
= fusb300_set_halt
,
541 .fifo_flush
= fusb300_fifo_flush
,
542 .set_wedge
= fusb300_set_wedge
,
545 /*****************************************************************************/
546 static void fusb300_clear_int(struct fusb300
*fusb300
, u32 offset
,
549 iowrite32(value
, fusb300
->reg
+ offset
);
552 static void fusb300_reset(void)
556 static void fusb300_set_cxstall(struct fusb300
*fusb300
)
558 fusb300_enable_bit(fusb300
, FUSB300_OFFSET_CSR
,
562 static void fusb300_set_cxdone(struct fusb300
*fusb300
)
564 fusb300_enable_bit(fusb300
, FUSB300_OFFSET_CSR
,
568 /* read data from cx fifo */
569 void fusb300_rdcxf(struct fusb300
*fusb300
,
570 u8
*buffer
, u32 length
)
578 for (i
= (length
>> 2); i
> 0; i
--) {
579 data
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
580 printk(KERN_DEBUG
" 0x%x\n", data
);
582 *(tmp
+ 1) = (data
>> 8) & 0xFF;
583 *(tmp
+ 2) = (data
>> 16) & 0xFF;
584 *(tmp
+ 3) = (data
>> 24) & 0xFF;
588 switch (length
% 4) {
590 data
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
591 printk(KERN_DEBUG
" 0x%x\n", data
);
595 data
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
596 printk(KERN_DEBUG
" 0x%x\n", data
);
598 *(tmp
+ 1) = (data
>> 8) & 0xFF;
601 data
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_CXPORT
);
602 printk(KERN_DEBUG
" 0x%x\n", data
);
604 *(tmp
+ 1) = (data
>> 8) & 0xFF;
605 *(tmp
+ 2) = (data
>> 16) & 0xFF;
613 static void fusb300_dbg_fifo(struct fusb300_ep
*ep
,
614 u8 entry
, u16 length
)
620 reg
= ioread32(ep
->fusb300
->reg
+ FUSB300_OFFSET_GTM
);
621 reg
&= ~(FUSB300_GTM_TST_EP_ENTRY(0xF) |
622 FUSB300_GTM_TST_EP_NUM(0xF) | FUSB300_GTM_TST_FIFO_DEG
);
623 reg
|= (FUSB300_GTM_TST_EP_ENTRY(entry
) |
624 FUSB300_GTM_TST_EP_NUM(ep
->epnum
) | FUSB300_GTM_TST_FIFO_DEG
);
625 iowrite32(reg
, ep
->fusb300
->reg
+ FUSB300_OFFSET_GTM
);
627 for (i
= 0; i
< (length
>> 2); i
++) {
630 reg
= ioread32(ep
->fusb300
->reg
+
631 FUSB300_OFFSET_BUFDBG_START
+ i
* 4);
632 printk(KERN_DEBUG
" 0x%-8x", reg
);
635 printk(KERN_DEBUG
"\n");
639 reg
= ioread32(ep
->fusb300
->reg
+
640 FUSB300_OFFSET_BUFDBG_START
+ i
* 4);
641 printk(KERN_DEBUG
" 0x%x\n", reg
);
645 printk(KERN_DEBUG
"\n");
647 fusb300_disable_bit(ep
->fusb300
, FUSB300_OFFSET_GTM
,
648 FUSB300_GTM_TST_FIFO_DEG
);
651 static void fusb300_cmp_dbg_fifo(struct fusb300_ep
*ep
,
652 u8 entry
, u16 length
, u8
*golden
)
661 printk(KERN_DEBUG
"fusb300_cmp_dbg_fifo (entry %d) : start\n", entry
);
663 reg
= ioread32(ep
->fusb300
->reg
+ FUSB300_OFFSET_GTM
);
664 reg
&= ~(FUSB300_GTM_TST_EP_ENTRY(0xF) |
665 FUSB300_GTM_TST_EP_NUM(0xF) | FUSB300_GTM_TST_FIFO_DEG
);
666 reg
|= (FUSB300_GTM_TST_EP_ENTRY(entry
) |
667 FUSB300_GTM_TST_EP_NUM(ep
->epnum
) | FUSB300_GTM_TST_FIFO_DEG
);
668 iowrite32(reg
, ep
->fusb300
->reg
+ FUSB300_OFFSET_GTM
);
670 for (i
= 0; i
< (length
>> 2); i
++) {
673 golden_value
= *tmp
| *(tmp
+ 1) << 8 |
674 *(tmp
+ 2) << 16 | *(tmp
+ 3) << 24;
676 reg
= ioread32(ep
->fusb300
->reg
+
677 FUSB300_OFFSET_BUFDBG_START
+ i
*4);
679 if (reg
!= golden_value
) {
680 printk(KERN_DEBUG
"0x%x : ", (u32
)(ep
->fusb300
->reg
+
681 FUSB300_OFFSET_BUFDBG_START
+ i
*4));
682 printk(KERN_DEBUG
" golden = 0x%x, reg = 0x%x\n",
688 switch (length
% 4) {
692 golden_value
= *tmp
| *(tmp
+ 1) << 8;
694 golden_value
= *tmp
| *(tmp
+ 1) << 8 | *(tmp
+ 2) << 16;
698 reg
= ioread32(ep
->fusb300
->reg
+ FUSB300_OFFSET_BUFDBG_START
+ i
*4);
699 if (reg
!= golden_value
) {
700 printk(KERN_DEBUG
"0x%x:", (u32
)(ep
->fusb300
->reg
+
701 FUSB300_OFFSET_BUFDBG_START
+ i
*4));
702 printk(KERN_DEBUG
" golden = 0x%x, reg = 0x%x\n",
707 printk(KERN_DEBUG
"fusb300_cmp_dbg_fifo : end\n");
708 fusb300_disable_bit(ep
->fusb300
, FUSB300_OFFSET_GTM
,
709 FUSB300_GTM_TST_FIFO_DEG
);
713 static void fusb300_rdfifo(struct fusb300_ep
*ep
,
714 struct fusb300_request
*req
,
720 struct fusb300
*fusb300
= ep
->fusb300
;
722 tmp
= req
->req
.buf
+ req
->req
.actual
;
723 req
->req
.actual
+= length
;
725 if (req
->req
.actual
> req
->req
.length
)
726 printk(KERN_DEBUG
"req->req.actual > req->req.length\n");
728 for (i
= (length
>> 2); i
> 0; i
--) {
729 data
= ioread32(fusb300
->reg
+
730 FUSB300_OFFSET_EPPORT(ep
->epnum
));
732 *(tmp
+ 1) = (data
>> 8) & 0xFF;
733 *(tmp
+ 2) = (data
>> 16) & 0xFF;
734 *(tmp
+ 3) = (data
>> 24) & 0xFF;
738 switch (length
% 4) {
740 data
= ioread32(fusb300
->reg
+
741 FUSB300_OFFSET_EPPORT(ep
->epnum
));
745 data
= ioread32(fusb300
->reg
+
746 FUSB300_OFFSET_EPPORT(ep
->epnum
));
748 *(tmp
+ 1) = (data
>> 8) & 0xFF;
751 data
= ioread32(fusb300
->reg
+
752 FUSB300_OFFSET_EPPORT(ep
->epnum
));
754 *(tmp
+ 1) = (data
>> 8) & 0xFF;
755 *(tmp
+ 2) = (data
>> 16) & 0xFF;
762 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_IGR1
);
763 reg
&= FUSB300_IGR1_SYNF0_EMPTY_INT
;
765 printk(KERN_INFO
"sync fifo is not empty!\n");
770 /* write data to fifo */
771 static void fusb300_wrfifo(struct fusb300_ep
*ep
,
772 struct fusb300_request
*req
)
777 struct fusb300
*fusb300
= ep
->fusb300
;
780 req
->req
.actual
= req
->req
.length
;
782 for (i
= (req
->req
.length
>> 2); i
> 0; i
--) {
783 data
= *tmp
| *(tmp
+ 1) << 8 |
784 *(tmp
+ 2) << 16 | *(tmp
+ 3) << 24;
786 iowrite32(data
, fusb300
->reg
+
787 FUSB300_OFFSET_EPPORT(ep
->epnum
));
791 switch (req
->req
.length
% 4) {
794 iowrite32(data
, fusb300
->reg
+
795 FUSB300_OFFSET_EPPORT(ep
->epnum
));
798 data
= *tmp
| *(tmp
+ 1) << 8;
799 iowrite32(data
, fusb300
->reg
+
800 FUSB300_OFFSET_EPPORT(ep
->epnum
));
803 data
= *tmp
| *(tmp
+ 1) << 8 | *(tmp
+ 2) << 16;
804 iowrite32(data
, fusb300
->reg
+
805 FUSB300_OFFSET_EPPORT(ep
->epnum
));
812 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_IGR1
);
813 reg
&= FUSB300_IGR1_SYNF0_EMPTY_INT
;
815 printk(KERN_INFO
"sync fifo is not empty!\n");
820 static u8
fusb300_get_epnstall(struct fusb300
*fusb300
, u8 ep
)
823 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPSET0(ep
));
825 value
= reg
& FUSB300_EPSET0_STL
;
830 static u8
fusb300_get_cxstall(struct fusb300
*fusb300
)
833 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_CSR
);
835 value
= (reg
& FUSB300_CSR_STL
) >> 1;
840 static void request_error(struct fusb300
*fusb300
)
842 fusb300_set_cxstall(fusb300
);
843 printk(KERN_DEBUG
"request error!!\n");
846 static void get_status(struct fusb300
*fusb300
, struct usb_ctrlrequest
*ctrl
)
847 __releases(fusb300
->lock
)
848 __acquires(fusb300
->lock
)
852 u16 w_index
= ctrl
->wIndex
;
854 switch (ctrl
->bRequestType
& USB_RECIP_MASK
) {
855 case USB_RECIP_DEVICE
:
856 status
= 1 << USB_DEVICE_SELF_POWERED
;
858 case USB_RECIP_INTERFACE
:
861 case USB_RECIP_ENDPOINT
:
862 ep
= w_index
& USB_ENDPOINT_NUMBER_MASK
;
864 if (fusb300_get_epnstall(fusb300
, ep
))
865 status
= 1 << USB_ENDPOINT_HALT
;
867 if (fusb300_get_cxstall(fusb300
))
873 request_error(fusb300
);
877 fusb300
->ep0_data
= cpu_to_le16(status
);
878 fusb300
->ep0_req
->buf
= &fusb300
->ep0_data
;
879 fusb300
->ep0_req
->length
= 2;
881 spin_unlock(&fusb300
->lock
);
882 fusb300_queue(fusb300
->gadget
.ep0
, fusb300
->ep0_req
, GFP_KERNEL
);
883 spin_lock(&fusb300
->lock
);
886 static void set_feature(struct fusb300
*fusb300
, struct usb_ctrlrequest
*ctrl
)
890 switch (ctrl
->bRequestType
& USB_RECIP_MASK
) {
891 case USB_RECIP_DEVICE
:
892 fusb300_set_cxdone(fusb300
);
894 case USB_RECIP_INTERFACE
:
895 fusb300_set_cxdone(fusb300
);
897 case USB_RECIP_ENDPOINT
: {
898 u16 w_index
= le16_to_cpu(ctrl
->wIndex
);
900 ep
= w_index
& USB_ENDPOINT_NUMBER_MASK
;
902 fusb300_set_epnstall(fusb300
, ep
);
904 fusb300_set_cxstall(fusb300
);
905 fusb300_set_cxdone(fusb300
);
909 request_error(fusb300
);
914 static void fusb300_clear_seqnum(struct fusb300
*fusb300
, u8 ep
)
916 fusb300_enable_bit(fusb300
, FUSB300_OFFSET_EPSET0(ep
),
917 FUSB300_EPSET0_CLRSEQNUM
);
920 static void clear_feature(struct fusb300
*fusb300
, struct usb_ctrlrequest
*ctrl
)
922 struct fusb300_ep
*ep
=
923 fusb300
->ep
[ctrl
->wIndex
& USB_ENDPOINT_NUMBER_MASK
];
925 switch (ctrl
->bRequestType
& USB_RECIP_MASK
) {
926 case USB_RECIP_DEVICE
:
927 fusb300_set_cxdone(fusb300
);
929 case USB_RECIP_INTERFACE
:
930 fusb300_set_cxdone(fusb300
);
932 case USB_RECIP_ENDPOINT
:
933 if (ctrl
->wIndex
& USB_ENDPOINT_NUMBER_MASK
) {
935 fusb300_set_cxdone(fusb300
);
940 fusb300_clear_seqnum(fusb300
, ep
->epnum
);
941 fusb300_clear_epnstall(fusb300
, ep
->epnum
);
942 if (!list_empty(&ep
->queue
))
946 fusb300_set_cxdone(fusb300
);
949 request_error(fusb300
);
954 static void fusb300_set_dev_addr(struct fusb300
*fusb300
, u16 addr
)
956 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_DAR
);
958 reg
&= ~FUSB300_DAR_DRVADDR_MSK
;
959 reg
|= FUSB300_DAR_DRVADDR(addr
);
961 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_DAR
);
964 static void set_address(struct fusb300
*fusb300
, struct usb_ctrlrequest
*ctrl
)
966 if (ctrl
->wValue
>= 0x0100)
967 request_error(fusb300
);
969 fusb300_set_dev_addr(fusb300
, ctrl
->wValue
);
970 fusb300_set_cxdone(fusb300
);
974 #define UVC_COPY_DESCRIPTORS(mem, src) \
976 const struct usb_descriptor_header * const *__src; \
977 for (__src = src; *__src; ++__src) { \
978 memcpy(mem, *__src, (*__src)->bLength); \
979 mem += (*__src)->bLength; \
983 static void fusb300_ep0_complete(struct usb_ep
*ep
,
984 struct usb_request
*req
)
988 static int setup_packet(struct fusb300
*fusb300
, struct usb_ctrlrequest
*ctrl
)
994 fusb300_rdcxf(fusb300
, p
, 8);
995 fusb300
->ep0_dir
= ctrl
->bRequestType
& USB_DIR_IN
;
996 fusb300
->ep0_length
= ctrl
->wLength
;
999 if ((ctrl
->bRequestType
& USB_TYPE_MASK
) == USB_TYPE_STANDARD
) {
1000 switch (ctrl
->bRequest
) {
1001 case USB_REQ_GET_STATUS
:
1002 get_status(fusb300
, ctrl
);
1004 case USB_REQ_CLEAR_FEATURE
:
1005 clear_feature(fusb300
, ctrl
);
1007 case USB_REQ_SET_FEATURE
:
1008 set_feature(fusb300
, ctrl
);
1010 case USB_REQ_SET_ADDRESS
:
1011 set_address(fusb300
, ctrl
);
1013 case USB_REQ_SET_CONFIGURATION
:
1014 fusb300_enable_bit(fusb300
, FUSB300_OFFSET_DAR
,
1015 FUSB300_DAR_SETCONFG
);
1016 /* clear sequence number */
1017 for (i
= 1; i
<= FUSB300_MAX_NUM_EP
; i
++)
1018 fusb300_clear_seqnum(fusb300
, i
);
1019 fusb300
->reenum
= 1;
1032 static void fusb300_set_ep_bycnt(struct fusb300_ep
*ep
, u32 bycnt
)
1034 struct fusb300
*fusb300
= ep
->fusb300
;
1035 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPFFR(ep
->epnum
));
1037 reg
&= ~FUSB300_FFR_BYCNT
;
1038 reg
|= bycnt
& FUSB300_FFR_BYCNT
;
1040 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_EPFFR(ep
->epnum
));
1043 static void done(struct fusb300_ep
*ep
, struct fusb300_request
*req
,
1046 list_del_init(&req
->queue
);
1048 /* don't modify queue heads during completion callback */
1049 if (ep
->fusb300
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1050 req
->req
.status
= -ESHUTDOWN
;
1052 req
->req
.status
= status
;
1054 spin_unlock(&ep
->fusb300
->lock
);
1055 req
->req
.complete(&ep
->ep
, &req
->req
);
1056 spin_lock(&ep
->fusb300
->lock
);
1059 disable_fifo_int(ep
);
1060 if (!list_empty(&ep
->queue
))
1061 enable_fifo_int(ep
);
1063 fusb300_set_cxdone(ep
->fusb300
);
1066 void fusb300_fill_idma_prdtbl(struct fusb300_ep
*ep
,
1067 struct fusb300_request
*req
)
1074 reg
= ioread32(ep
->fusb300
->reg
+
1075 FUSB300_OFFSET_EPPRD_W0(ep
->epnum
));
1076 reg
&= FUSB300_EPPRD0_H
;
1079 iowrite32((u32
) req
->req
.buf
, ep
->fusb300
->reg
+
1080 FUSB300_OFFSET_EPPRD_W1(ep
->epnum
));
1082 value
= FUSB300_EPPRD0_BTC(req
->req
.length
) | FUSB300_EPPRD0_H
|
1083 FUSB300_EPPRD0_F
| FUSB300_EPPRD0_L
| FUSB300_EPPRD0_I
;
1084 iowrite32(value
, ep
->fusb300
->reg
+ FUSB300_OFFSET_EPPRD_W0(ep
->epnum
));
1086 iowrite32(0x0, ep
->fusb300
->reg
+ FUSB300_OFFSET_EPPRD_W2(ep
->epnum
));
1088 fusb300_enable_bit(ep
->fusb300
, FUSB300_OFFSET_EPPRDRDY
,
1089 FUSB300_EPPRDR_EP_PRD_RDY(ep
->epnum
));
1092 static void fusb300_wait_idma_finished(struct fusb300_ep
*ep
)
1097 reg
= ioread32(ep
->fusb300
->reg
+ FUSB300_OFFSET_IGR1
);
1098 if ((reg
& FUSB300_IGR1_VBUS_CHG_INT
) ||
1099 (reg
& FUSB300_IGR1_WARM_RST_INT
) ||
1100 (reg
& FUSB300_IGR1_HOT_RST_INT
) ||
1101 (reg
& FUSB300_IGR1_USBRST_INT
)
1104 reg
= ioread32(ep
->fusb300
->reg
+ FUSB300_OFFSET_IGR0
);
1105 reg
&= FUSB300_IGR0_EPn_PRD_INT(ep
->epnum
);
1108 fusb300_clear_int(ep
->fusb300
, FUSB300_OFFSET_IGR0
,
1109 FUSB300_IGR0_EPn_PRD_INT(ep
->epnum
));
1111 fusb300_clear_int(ep
->fusb300
, FUSB300_OFFSET_IGER0
,
1112 FUSB300_IGER0_EEPn_PRD_INT(ep
->epnum
));
1115 static void fusb300_set_idma(struct fusb300_ep
*ep
,
1116 struct fusb300_request
*req
)
1121 d
= dma_map_single(NULL
, req
->req
.buf
, req
->req
.length
, DMA_TO_DEVICE
);
1123 if (dma_mapping_error(NULL
, d
)) {
1124 kfree(req
->req
.buf
);
1125 printk(KERN_DEBUG
"dma_mapping_error\n");
1128 dma_sync_single_for_device(NULL
, d
, req
->req
.length
, DMA_TO_DEVICE
);
1130 fusb300_enable_bit(ep
->fusb300
, FUSB300_OFFSET_IGER0
,
1131 FUSB300_IGER0_EEPn_PRD_INT(ep
->epnum
));
1134 req
->req
.buf
= (u8
*)d
;
1136 fusb300_fill_idma_prdtbl(ep
, req
);
1137 /* check idma is done */
1138 fusb300_wait_idma_finished(ep
);
1143 dma_unmap_single(NULL
, d
, req
->req
.length
, DMA_TO_DEVICE
);
1146 static void in_ep_fifo_handler(struct fusb300_ep
*ep
)
1148 struct fusb300_request
*req
= list_entry(ep
->queue
.next
,
1149 struct fusb300_request
, queue
);
1151 if (req
->req
.length
) {
1153 fusb300_set_ep_bycnt(ep
, req
->req
.length
);
1154 fusb300_wrfifo(ep
, req
);
1156 fusb300_set_idma(ep
, req
);
1162 static void out_ep_fifo_handler(struct fusb300_ep
*ep
)
1164 struct fusb300
*fusb300
= ep
->fusb300
;
1165 struct fusb300_request
*req
= list_entry(ep
->queue
.next
,
1166 struct fusb300_request
, queue
);
1167 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_EPFFR(ep
->epnum
));
1168 u32 length
= reg
& FUSB300_FFR_BYCNT
;
1170 fusb300_rdfifo(ep
, req
, length
);
1172 /* finish out transfer */
1173 if ((req
->req
.length
== req
->req
.actual
) || (length
< ep
->ep
.maxpacket
))
1177 static void check_device_mode(struct fusb300
*fusb300
)
1179 u32 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_GCR
);
1181 switch (reg
& FUSB300_GCR_DEVEN_MSK
) {
1182 case FUSB300_GCR_DEVEN_SS
:
1183 fusb300
->gadget
.speed
= USB_SPEED_SUPER
;
1185 case FUSB300_GCR_DEVEN_HS
:
1186 fusb300
->gadget
.speed
= USB_SPEED_HIGH
;
1188 case FUSB300_GCR_DEVEN_FS
:
1189 fusb300
->gadget
.speed
= USB_SPEED_FULL
;
1192 fusb300
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1195 printk(KERN_INFO
"dev_mode = %d\n", (reg
& FUSB300_GCR_DEVEN_MSK
));
1199 static void fusb300_ep0out(struct fusb300
*fusb300
)
1201 struct fusb300_ep
*ep
= fusb300
->ep
[0];
1204 if (!list_empty(&ep
->queue
)) {
1205 struct fusb300_request
*req
;
1207 req
= list_first_entry(&ep
->queue
,
1208 struct fusb300_request
, queue
);
1209 if (req
->req
.length
)
1210 fusb300_rdcxf(ep
->fusb300
, req
->req
.buf
,
1213 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_IGER1
);
1214 reg
&= ~FUSB300_IGER1_CX_OUT_INT
;
1215 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_IGER1
);
1217 pr_err("%s : empty queue\n", __func__
);
1220 static void fusb300_ep0in(struct fusb300
*fusb300
)
1222 struct fusb300_request
*req
;
1223 struct fusb300_ep
*ep
= fusb300
->ep
[0];
1225 if ((!list_empty(&ep
->queue
)) && (fusb300
->ep0_dir
)) {
1226 req
= list_entry(ep
->queue
.next
,
1227 struct fusb300_request
, queue
);
1228 if (req
->req
.length
)
1229 fusb300_wrcxf(ep
, req
);
1230 if ((req
->req
.length
- req
->req
.actual
) < ep
->ep
.maxpacket
)
1233 fusb300_set_cxdone(fusb300
);
1236 static void fusb300_grp2_handler(void)
1240 static void fusb300_grp3_handler(void)
1244 static void fusb300_grp4_handler(void)
1248 static void fusb300_grp5_handler(void)
1252 static irqreturn_t
fusb300_irq(int irq
, void *_fusb300
)
1254 struct fusb300
*fusb300
= _fusb300
;
1255 u32 int_grp1
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_IGR1
);
1256 u32 int_grp1_en
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_IGER1
);
1257 u32 int_grp0
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_IGR0
);
1258 u32 int_grp0_en
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_IGER0
);
1259 struct usb_ctrlrequest ctrl
;
1264 spin_lock(&fusb300
->lock
);
1266 int_grp1
&= int_grp1_en
;
1267 int_grp0
&= int_grp0_en
;
1269 if (int_grp1
& FUSB300_IGR1_WARM_RST_INT
) {
1270 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1271 FUSB300_IGR1_WARM_RST_INT
);
1272 printk(KERN_INFO
"fusb300_warmreset\n");
1276 if (int_grp1
& FUSB300_IGR1_HOT_RST_INT
) {
1277 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1278 FUSB300_IGR1_HOT_RST_INT
);
1279 printk(KERN_INFO
"fusb300_hotreset\n");
1283 if (int_grp1
& FUSB300_IGR1_USBRST_INT
) {
1284 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1285 FUSB300_IGR1_USBRST_INT
);
1288 /* COMABT_INT has a highest priority */
1290 if (int_grp1
& FUSB300_IGR1_CX_COMABT_INT
) {
1291 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1292 FUSB300_IGR1_CX_COMABT_INT
);
1293 printk(KERN_INFO
"fusb300_ep0abt\n");
1296 if (int_grp1
& FUSB300_IGR1_VBUS_CHG_INT
) {
1297 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1298 FUSB300_IGR1_VBUS_CHG_INT
);
1299 printk(KERN_INFO
"fusb300_vbus_change\n");
1302 if (int_grp1
& FUSB300_IGR1_U3_EXIT_FAIL_INT
) {
1303 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1304 FUSB300_IGR1_U3_EXIT_FAIL_INT
);
1307 if (int_grp1
& FUSB300_IGR1_U2_EXIT_FAIL_INT
) {
1308 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1309 FUSB300_IGR1_U2_EXIT_FAIL_INT
);
1312 if (int_grp1
& FUSB300_IGR1_U1_EXIT_FAIL_INT
) {
1313 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1314 FUSB300_IGR1_U1_EXIT_FAIL_INT
);
1317 if (int_grp1
& FUSB300_IGR1_U2_ENTRY_FAIL_INT
) {
1318 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1319 FUSB300_IGR1_U2_ENTRY_FAIL_INT
);
1322 if (int_grp1
& FUSB300_IGR1_U1_ENTRY_FAIL_INT
) {
1323 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1324 FUSB300_IGR1_U1_ENTRY_FAIL_INT
);
1327 if (int_grp1
& FUSB300_IGR1_U3_EXIT_INT
) {
1328 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1329 FUSB300_IGR1_U3_EXIT_INT
);
1330 printk(KERN_INFO
"FUSB300_IGR1_U3_EXIT_INT\n");
1333 if (int_grp1
& FUSB300_IGR1_U2_EXIT_INT
) {
1334 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1335 FUSB300_IGR1_U2_EXIT_INT
);
1336 printk(KERN_INFO
"FUSB300_IGR1_U2_EXIT_INT\n");
1339 if (int_grp1
& FUSB300_IGR1_U1_EXIT_INT
) {
1340 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1341 FUSB300_IGR1_U1_EXIT_INT
);
1342 printk(KERN_INFO
"FUSB300_IGR1_U1_EXIT_INT\n");
1345 if (int_grp1
& FUSB300_IGR1_U3_ENTRY_INT
) {
1346 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1347 FUSB300_IGR1_U3_ENTRY_INT
);
1348 printk(KERN_INFO
"FUSB300_IGR1_U3_ENTRY_INT\n");
1349 fusb300_enable_bit(fusb300
, FUSB300_OFFSET_SSCR1
,
1350 FUSB300_SSCR1_GO_U3_DONE
);
1353 if (int_grp1
& FUSB300_IGR1_U2_ENTRY_INT
) {
1354 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1355 FUSB300_IGR1_U2_ENTRY_INT
);
1356 printk(KERN_INFO
"FUSB300_IGR1_U2_ENTRY_INT\n");
1359 if (int_grp1
& FUSB300_IGR1_U1_ENTRY_INT
) {
1360 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1361 FUSB300_IGR1_U1_ENTRY_INT
);
1362 printk(KERN_INFO
"FUSB300_IGR1_U1_ENTRY_INT\n");
1365 if (int_grp1
& FUSB300_IGR1_RESM_INT
) {
1366 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1367 FUSB300_IGR1_RESM_INT
);
1368 printk(KERN_INFO
"fusb300_resume\n");
1371 if (int_grp1
& FUSB300_IGR1_SUSP_INT
) {
1372 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1373 FUSB300_IGR1_SUSP_INT
);
1374 printk(KERN_INFO
"fusb300_suspend\n");
1377 if (int_grp1
& FUSB300_IGR1_HS_LPM_INT
) {
1378 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1379 FUSB300_IGR1_HS_LPM_INT
);
1380 printk(KERN_INFO
"fusb300_HS_LPM_INT\n");
1383 if (int_grp1
& FUSB300_IGR1_DEV_MODE_CHG_INT
) {
1384 fusb300_clear_int(fusb300
, FUSB300_OFFSET_IGR1
,
1385 FUSB300_IGR1_DEV_MODE_CHG_INT
);
1386 check_device_mode(fusb300
);
1389 if (int_grp1
& FUSB300_IGR1_CX_COMFAIL_INT
) {
1390 fusb300_set_cxstall(fusb300
);
1391 printk(KERN_INFO
"fusb300_ep0fail\n");
1394 if (int_grp1
& FUSB300_IGR1_CX_SETUP_INT
) {
1395 printk(KERN_INFO
"fusb300_ep0setup\n");
1396 if (setup_packet(fusb300
, &ctrl
)) {
1397 spin_unlock(&fusb300
->lock
);
1398 if (fusb300
->driver
->setup(&fusb300
->gadget
, &ctrl
) < 0)
1399 fusb300_set_cxstall(fusb300
);
1400 spin_lock(&fusb300
->lock
);
1404 if (int_grp1
& FUSB300_IGR1_CX_CMDEND_INT
)
1405 printk(KERN_INFO
"fusb300_cmdend\n");
1408 if (int_grp1
& FUSB300_IGR1_CX_OUT_INT
) {
1409 printk(KERN_INFO
"fusb300_cxout\n");
1410 fusb300_ep0out(fusb300
);
1413 if (int_grp1
& FUSB300_IGR1_CX_IN_INT
) {
1414 printk(KERN_INFO
"fusb300_cxin\n");
1415 fusb300_ep0in(fusb300
);
1418 if (int_grp1
& FUSB300_IGR1_INTGRP5
)
1419 fusb300_grp5_handler();
1421 if (int_grp1
& FUSB300_IGR1_INTGRP4
)
1422 fusb300_grp4_handler();
1424 if (int_grp1
& FUSB300_IGR1_INTGRP3
)
1425 fusb300_grp3_handler();
1427 if (int_grp1
& FUSB300_IGR1_INTGRP2
)
1428 fusb300_grp2_handler();
1431 for (i
= 1; i
< FUSB300_MAX_NUM_EP
; i
++) {
1432 if (int_grp0
& FUSB300_IGR0_EPn_FIFO_INT(i
)) {
1433 reg
= ioread32(fusb300
->reg
+
1434 FUSB300_OFFSET_EPSET1(i
));
1435 in
= (reg
& FUSB300_EPSET1_DIRIN
) ? 1 : 0;
1437 in_ep_fifo_handler(fusb300
->ep
[i
]);
1439 out_ep_fifo_handler(fusb300
->ep
[i
]);
1444 spin_unlock(&fusb300
->lock
);
1449 static void fusb300_set_u2_timeout(struct fusb300
*fusb300
,
1454 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_TT
);
1456 reg
|= FUSB300_SSCR2_U2TIMEOUT(time
);
1458 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_TT
);
1461 static void fusb300_set_u1_timeout(struct fusb300
*fusb300
,
1466 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_TT
);
1467 reg
&= ~(0xff << 8);
1468 reg
|= FUSB300_SSCR2_U1TIMEOUT(time
);
1470 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_TT
);
1473 static void init_controller(struct fusb300
*fusb300
)
1480 mask
= val
= FUSB300_AHBBCR_S0_SPLIT_ON
| FUSB300_AHBBCR_S1_SPLIT_ON
;
1481 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_AHBCR
);
1484 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_AHBCR
);
1486 /* enable high-speed LPM */
1487 mask
= val
= FUSB300_HSCR_HS_LPM_PERMIT
;
1488 reg
= ioread32(fusb300
->reg
+ FUSB300_OFFSET_HSCR
);
1491 iowrite32(reg
, fusb300
->reg
+ FUSB300_OFFSET_HSCR
);
1493 /*set u1 u2 timmer*/
1494 fusb300_set_u2_timeout(fusb300
, 0xff);
1495 fusb300_set_u1_timeout(fusb300
, 0xff);
1497 /* enable all grp1 interrupt */
1498 iowrite32(0xcfffff9f, fusb300
->reg
+ FUSB300_OFFSET_IGER1
);
1500 /*------------------------------------------------------------------------*/
1501 static struct fusb300
*the_controller
;
1503 int usb_gadget_probe_driver(struct usb_gadget_driver
*driver
,
1504 int (*bind
)(struct usb_gadget
*))
1506 struct fusb300
*fusb300
= the_controller
;
1510 || driver
->speed
< USB_SPEED_FULL
1518 if (fusb300
->driver
)
1521 /* hook up the driver */
1522 driver
->driver
.bus
= NULL
;
1523 fusb300
->driver
= driver
;
1524 fusb300
->gadget
.dev
.driver
= &driver
->driver
;
1526 retval
= device_add(&fusb300
->gadget
.dev
);
1528 pr_err("device_add error (%d)\n", retval
);
1532 retval
= bind(&fusb300
->gadget
);
1534 pr_err("bind to driver error (%d)\n", retval
);
1535 device_del(&fusb300
->gadget
.dev
);
1542 fusb300
->driver
= NULL
;
1543 fusb300
->gadget
.dev
.driver
= NULL
;
1547 EXPORT_SYMBOL(usb_gadget_probe_driver
);
1549 int usb_gadget_unregister_driver(struct usb_gadget_driver
*driver
)
1551 struct fusb300
*fusb300
= the_controller
;
1553 if (driver
!= fusb300
->driver
|| !driver
->unbind
)
1556 driver
->unbind(&fusb300
->gadget
);
1557 fusb300
->gadget
.dev
.driver
= NULL
;
1559 init_controller(fusb300
);
1560 device_del(&fusb300
->gadget
.dev
);
1561 fusb300
->driver
= NULL
;
1565 EXPORT_SYMBOL(usb_gadget_unregister_driver
);
1566 /*--------------------------------------------------------------------------*/
1568 static int fusb300_udc_pullup(struct usb_gadget
*_gadget
, int is_active
)
1573 static struct usb_gadget_ops fusb300_gadget_ops
= {
1574 .pullup
= fusb300_udc_pullup
,
1577 static int __exit
fusb300_remove(struct platform_device
*pdev
)
1579 struct fusb300
*fusb300
= dev_get_drvdata(&pdev
->dev
);
1581 iounmap(fusb300
->reg
);
1582 free_irq(platform_get_irq(pdev
, 0), fusb300
);
1584 fusb300_free_request(&fusb300
->ep
[0]->ep
, fusb300
->ep0_req
);
1590 static int __init
fusb300_probe(struct platform_device
*pdev
)
1592 struct resource
*res
, *ires
, *ires1
;
1593 void __iomem
*reg
= NULL
;
1594 struct fusb300
*fusb300
= NULL
;
1595 struct fusb300_ep
*_ep
[FUSB300_MAX_NUM_EP
];
1599 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1602 pr_err("platform_get_resource error.\n");
1606 ires
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
1610 "platform_get_resource IORESOURCE_IRQ error.\n");
1614 ires1
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 1);
1618 "platform_get_resource IORESOURCE_IRQ 1 error.\n");
1622 reg
= ioremap(res
->start
, resource_size(res
));
1625 pr_err("ioremap error.\n");
1629 /* initialize udc */
1630 fusb300
= kzalloc(sizeof(struct fusb300
), GFP_KERNEL
);
1631 if (fusb300
== NULL
) {
1632 pr_err("kzalloc error\n");
1636 for (i
= 0; i
< FUSB300_MAX_NUM_EP
; i
++) {
1637 _ep
[i
] = kzalloc(sizeof(struct fusb300_ep
), GFP_KERNEL
);
1638 if (_ep
[i
] == NULL
) {
1639 pr_err("_ep kzalloc error\n");
1642 fusb300
->ep
[i
] = _ep
[i
];
1645 spin_lock_init(&fusb300
->lock
);
1647 dev_set_drvdata(&pdev
->dev
, fusb300
);
1649 fusb300
->gadget
.ops
= &fusb300_gadget_ops
;
1651 device_initialize(&fusb300
->gadget
.dev
);
1653 dev_set_name(&fusb300
->gadget
.dev
, "gadget");
1655 fusb300
->gadget
.is_dualspeed
= 1;
1656 fusb300
->gadget
.dev
.parent
= &pdev
->dev
;
1657 fusb300
->gadget
.dev
.dma_mask
= pdev
->dev
.dma_mask
;
1658 fusb300
->gadget
.dev
.release
= pdev
->dev
.release
;
1659 fusb300
->gadget
.name
= udc_name
;
1662 ret
= request_irq(ires
->start
, fusb300_irq
, IRQF_DISABLED
| IRQF_SHARED
,
1665 pr_err("request_irq error (%d)\n", ret
);
1669 ret
= request_irq(ires1
->start
, fusb300_irq
,
1670 IRQF_DISABLED
| IRQF_SHARED
, udc_name
, fusb300
);
1672 pr_err("request_irq1 error (%d)\n", ret
);
1676 INIT_LIST_HEAD(&fusb300
->gadget
.ep_list
);
1678 for (i
= 0; i
< FUSB300_MAX_NUM_EP
; i
++) {
1679 struct fusb300_ep
*ep
= fusb300
->ep
[i
];
1682 INIT_LIST_HEAD(&fusb300
->ep
[i
]->ep
.ep_list
);
1683 list_add_tail(&fusb300
->ep
[i
]->ep
.ep_list
,
1684 &fusb300
->gadget
.ep_list
);
1686 ep
->fusb300
= fusb300
;
1687 INIT_LIST_HEAD(&ep
->queue
);
1688 ep
->ep
.name
= fusb300_ep_name
[i
];
1689 ep
->ep
.ops
= &fusb300_ep_ops
;
1690 ep
->ep
.maxpacket
= HS_BULK_MAX_PACKET_SIZE
;
1692 fusb300
->ep
[0]->ep
.maxpacket
= HS_CTL_MAX_PACKET_SIZE
;
1693 fusb300
->ep
[0]->epnum
= 0;
1694 fusb300
->gadget
.ep0
= &fusb300
->ep
[0]->ep
;
1695 INIT_LIST_HEAD(&fusb300
->gadget
.ep0
->ep_list
);
1697 the_controller
= fusb300
;
1699 fusb300
->ep0_req
= fusb300_alloc_request(&fusb300
->ep
[0]->ep
,
1701 if (fusb300
->ep0_req
== NULL
)
1704 init_controller(fusb300
);
1705 dev_info(&pdev
->dev
, "version %s\n", DRIVER_VERSION
);
1710 free_irq(ires
->start
, fusb300
);
1714 if (fusb300
->ep0_req
)
1715 fusb300_free_request(&fusb300
->ep
[0]->ep
,
1725 static struct platform_driver fusb300_driver
= {
1726 .remove
= __exit_p(fusb300_remove
),
1728 .name
= (char *) udc_name
,
1729 .owner
= THIS_MODULE
,
1733 static int __init
fusb300_udc_init(void)
1735 return platform_driver_probe(&fusb300_driver
, fusb300_probe
);
1738 module_init(fusb300_udc_init
);
1740 static void __exit
fusb300_udc_cleanup(void)
1742 platform_driver_unregister(&fusb300_driver
);
1744 module_exit(fusb300_udc_cleanup
);