Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[cascardo/linux.git] / drivers / staging / emxx_udc / emxx_udc.c
1 /*
2  *  drivers/usb/gadget/emxx_udc.c
3  *     EMXX FCD (Function Controller Driver) for USB.
4  *
5  *  Copyright (C) 2010 Renesas Electronics Corporation
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2
9  *  as published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software Foundation,
18  *  Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
19  */
20
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/platform_device.h>
24 #include <linux/delay.h>
25 #include <linux/ioport.h>
26 #include <linux/slab.h>
27 #include <linux/errno.h>
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/interrupt.h>
31 #include <linux/proc_fs.h>
32 #include <linux/clk.h>
33 #include <linux/ctype.h>
34 #include <linux/string.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/workqueue.h>
37 #include <linux/device.h>
38
39 #include <linux/usb/ch9.h>
40 #include <linux/usb/gadget.h>
41
42 #include <linux/irq.h>
43 #include <linux/gpio.h>
44
45 #include "emxx_udc.h"
46
47 #define DRIVER_DESC     "EMXX UDC driver"
48 #define DMA_ADDR_INVALID        (~(dma_addr_t)0)
49
50 static const char       driver_name[] = "emxx_udc";
51 static const char       driver_desc[] = DRIVER_DESC;
52
53 /*===========================================================================*/
54 /* Prototype */
55 static void _nbu2ss_ep_dma_abort(struct nbu2ss_udc *, struct nbu2ss_ep *);
56 static void _nbu2ss_ep0_enable(struct nbu2ss_udc *);
57 /*static void _nbu2ss_ep0_disable(struct nbu2ss_udc *);*/
58 static void _nbu2ss_ep_done(struct nbu2ss_ep *, struct nbu2ss_req *, int);
59 static void _nbu2ss_set_test_mode(struct nbu2ss_udc *, u32 mode);
60 static void _nbu2ss_endpoint_toggle_reset(struct nbu2ss_udc *udc, u8 ep_adrs);
61
62 static int _nbu2ss_pullup(struct nbu2ss_udc *, int);
63 static void _nbu2ss_fifo_flush(struct nbu2ss_udc *, struct nbu2ss_ep *);
64
65 /*===========================================================================*/
66 /* Macro */
67 #define _nbu2ss_zero_len_pkt(udc, epnum)        \
68         _nbu2ss_ep_in_end(udc, epnum, 0, 0)
69
70
71 /*===========================================================================*/
72 /* Global */
73 struct nbu2ss_udc udc_controller;
74
75
76 /*-------------------------------------------------------------------------*/
77 /* Read */
78 static inline u32 _nbu2ss_readl(void *address)
79 {
80         return __raw_readl(address);
81 }
82
83 /*-------------------------------------------------------------------------*/
84 /* Write */
85 static inline void _nbu2ss_writel(void *address, u32 udata)
86 {
87         __raw_writel(udata, address);
88 }
89
90 /*-------------------------------------------------------------------------*/
91 /* Set Bit */
92 static inline void _nbu2ss_bitset(void *address, u32 udata)
93 {
94         u32     reg_dt = __raw_readl(address) | (udata);
95
96         __raw_writel(reg_dt, address);
97 }
98
99 /*-------------------------------------------------------------------------*/
100 /* Clear Bit */
101 static inline void _nbu2ss_bitclr(void *address, u32 udata)
102 {
103         u32     reg_dt = __raw_readl(address) & ~(udata);
104
105         __raw_writel(reg_dt, address);
106 }
107
108 #ifdef UDC_DEBUG_DUMP
109 /*-------------------------------------------------------------------------*/
110 static void _nbu2ss_dump_register(struct nbu2ss_udc *udc)
111 {
112         int             i;
113         u32 reg_data;
114
115         pr_info("=== %s()\n", __func__);
116
117         if (udc == NULL) {
118                 pr_err("%s udc == NULL\n", __func__);
119                 return;
120         }
121
122         spin_unlock(&udc->lock);
123
124         dev_dbg(&udc->dev, "\n-USB REG-\n");
125         for (i = 0x0 ; i < USB_BASE_SIZE ; i += 16) {
126                 reg_data =   _nbu2ss_readl(
127                         (u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i));
128                 dev_dbg(&udc->dev, "USB%04x =%08x", i, (int)reg_data);
129
130                 reg_data =  _nbu2ss_readl(
131                         (u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i + 4));
132                 dev_dbg(&udc->dev, " %08x", (int)reg_data);
133
134                 reg_data =  _nbu2ss_readl(
135                         (u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i + 8));
136                 dev_dbg(&udc->dev, " %08x", (int)reg_data);
137
138                 reg_data =  _nbu2ss_readl(
139                         (u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i + 12));
140                 dev_dbg(&udc->dev, " %08x\n", (int)reg_data);
141
142         }
143
144         spin_lock(&udc->lock);
145 }
146 #endif /* UDC_DEBUG_DUMP */
147
148 /*-------------------------------------------------------------------------*/
149 /* Endpoint 0 Callback (Complete) */
150 static void _nbu2ss_ep0_complete(struct usb_ep *_ep, struct usb_request *_req)
151 {
152         u8              recipient;
153         u16             selector;
154         u32             test_mode;
155         struct usb_ctrlrequest  *p_ctrl;
156         struct nbu2ss_udc *udc;
157
158         if ((_ep == NULL) || (_req == NULL))
159                 return;
160
161         udc = (struct nbu2ss_udc *)_req->context;
162         p_ctrl = &udc->ctrl;
163         if ((p_ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
164
165                 if (p_ctrl->bRequest == USB_REQ_SET_FEATURE) {
166                         /*-------------------------------------------------*/
167                         /* SET_FEATURE */
168                         recipient = (u8)(p_ctrl->bRequestType & USB_RECIP_MASK);
169                         selector  = p_ctrl->wValue;
170                         if ((recipient == USB_RECIP_DEVICE) &&
171                                 (selector == USB_DEVICE_TEST_MODE)) {
172                                 test_mode = (u32)(p_ctrl->wIndex >> 8);
173                                 _nbu2ss_set_test_mode(udc, test_mode);
174                         }
175                 }
176         }
177 }
178
179 /*-------------------------------------------------------------------------*/
180 /* Initialization usb_request */
181 static void _nbu2ss_create_ep0_packet(
182         struct nbu2ss_udc *udc,
183         void *p_buf,
184         unsigned length
185 )
186 {
187         udc->ep0_req.req.buf            = p_buf;
188         udc->ep0_req.req.length         = length;
189         udc->ep0_req.req.dma            = 0;
190         udc->ep0_req.req.zero           = TRUE;
191         udc->ep0_req.req.complete       = _nbu2ss_ep0_complete;
192         udc->ep0_req.req.status         = -EINPROGRESS;
193         udc->ep0_req.req.context        = udc;
194         udc->ep0_req.req.actual         = 0;
195 }
196
197 /*-------------------------------------------------------------------------*/
198 /* Acquisition of the first address of RAM(FIFO) */
199 static u32 _nbu2ss_get_begin_ram_address(struct nbu2ss_udc *udc)
200 {
201         u32             num, buf_type;
202         u32             data, last_ram_adr, use_ram_size;
203
204         struct ep_regs *p_ep_regs;
205
206         last_ram_adr = (D_RAM_SIZE_CTRL / sizeof(u32)) * 2;
207         use_ram_size = 0;
208
209         for (num = 0; num < NUM_ENDPOINTS - 1; num++) {
210                 p_ep_regs = &udc->p_regs->EP_REGS[num];
211                 data = _nbu2ss_readl(&p_ep_regs->EP_PCKT_ADRS);
212                 buf_type = _nbu2ss_readl(&p_ep_regs->EP_CONTROL) & EPn_BUF_TYPE;
213                 if (buf_type == 0) {
214                         /* Single Buffer */
215                         use_ram_size += (data & EPn_MPKT) / sizeof(u32);
216                 } else {
217                         /* Double Buffer */
218                         use_ram_size += ((data & EPn_MPKT) / sizeof(u32)) * 2;
219                 }
220
221                 if ((data >> 16) > last_ram_adr)
222                         last_ram_adr = data>>16;
223         }
224
225         return last_ram_adr + use_ram_size;
226 }
227
228 /*-------------------------------------------------------------------------*/
229 /* Construction of Endpoint */
230 static int _nbu2ss_ep_init(struct nbu2ss_udc *udc, struct nbu2ss_ep *ep)
231 {
232         u32             num;
233         u32             data;
234         u32             begin_adrs;
235
236         if (ep->epnum == 0)
237                 return  -EINVAL;
238
239         num = ep->epnum - 1;
240
241         /*-------------------------------------------------------------*/
242         /* RAM Transfer Address */
243         begin_adrs = _nbu2ss_get_begin_ram_address(udc);
244         data = (begin_adrs << 16) | ep->ep.maxpacket;
245         _nbu2ss_writel(&udc->p_regs->EP_REGS[num].EP_PCKT_ADRS, data);
246
247         /*-------------------------------------------------------------*/
248         /* Interrupt Enable */
249         data = 1 << (ep->epnum + 8);
250         _nbu2ss_bitset(&udc->p_regs->USB_INT_ENA, data);
251
252         /*-------------------------------------------------------------*/
253         /* Endpoint Type(Mode) */
254         /*   Bulk, Interrupt, ISO */
255         switch (ep->ep_type) {
256         case USB_ENDPOINT_XFER_BULK:
257                 data = EPn_BULK;
258                 break;
259
260         case USB_ENDPOINT_XFER_INT:
261                 data = EPn_BUF_SINGLE | EPn_INTERRUPT;
262                 break;
263
264         case USB_ENDPOINT_XFER_ISOC:
265                 data = EPn_ISO;
266                 break;
267
268         default:
269                 data = 0;
270                 break;
271         }
272
273         _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
274         _nbu2ss_endpoint_toggle_reset(udc, (ep->epnum|ep->direct));
275
276         if (ep->direct == USB_DIR_OUT) {
277                 /*---------------------------------------------------------*/
278                 /* OUT */
279                 data = EPn_EN | EPn_BCLR | EPn_DIR0;
280                 _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
281
282                 data = (EPn_ONAK | EPn_OSTL_EN | EPn_OSTL);
283                 _nbu2ss_bitclr(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
284
285                 data = (EPn_OUT_EN | EPn_OUT_END_EN);
286                 _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_INT_ENA, data);
287         } else {
288                 /*---------------------------------------------------------*/
289                 /* IN */
290                 data = (EPn_EN | EPn_BCLR | EPn_AUTO);
291                 _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
292
293                 data = (EPn_ISTL);
294                 _nbu2ss_bitclr(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
295
296                 data = (EPn_IN_EN | EPn_IN_END_EN);
297                 _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_INT_ENA, data);
298         }
299
300         return 0;
301 }
302
303 /*-------------------------------------------------------------------------*/
304 /* Release of Endpoint */
305 static int _nbu2ss_epn_exit(struct nbu2ss_udc *udc, struct nbu2ss_ep *ep)
306 {
307         u32             num;
308         u32             data;
309
310         if ((ep->epnum == 0) || (udc->vbus_active == 0))
311                 return  -EINVAL;
312
313         num = ep->epnum - 1;
314
315         /*-------------------------------------------------------------*/
316         /* RAM Transfer Address */
317         _nbu2ss_writel(&udc->p_regs->EP_REGS[num].EP_PCKT_ADRS, 0);
318
319         /*-------------------------------------------------------------*/
320         /* Interrupt Disable */
321         data = 1 << (ep->epnum + 8);
322         _nbu2ss_bitclr(&udc->p_regs->USB_INT_ENA, data);
323
324         if (ep->direct == USB_DIR_OUT) {
325                 /*---------------------------------------------------------*/
326                 /* OUT */
327                 data = EPn_ONAK | EPn_BCLR;
328                 _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
329
330                 data = EPn_EN | EPn_DIR0;
331                 _nbu2ss_bitclr(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
332
333                 data = EPn_OUT_EN | EPn_OUT_END_EN;
334                 _nbu2ss_bitclr(&udc->p_regs->EP_REGS[num].EP_INT_ENA, data);
335         } else {
336                 /*---------------------------------------------------------*/
337                 /* IN */
338                 data = EPn_BCLR;
339                 _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
340
341                 data = EPn_EN | EPn_AUTO;
342                 _nbu2ss_bitclr(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
343
344                 data = EPn_IN_EN | EPn_IN_END_EN;
345                 _nbu2ss_bitclr(&udc->p_regs->EP_REGS[num].EP_INT_ENA, data);
346         }
347
348         return 0;
349 }
350
351 /*-------------------------------------------------------------------------*/
352 /* DMA setting (without Endpoint 0) */
353 static void _nbu2ss_ep_dma_init(struct nbu2ss_udc *udc, struct nbu2ss_ep *ep)
354 {
355         u32             num;
356         u32             data;
357
358         data = _nbu2ss_readl(&udc->p_regs->USBSSCONF);
359         if (((ep->epnum == 0) || (data & (1 << ep->epnum)) == 0))
360                 return;         /* Not Support DMA */
361
362         num = ep->epnum - 1;
363
364         if (ep->direct == USB_DIR_OUT) {
365                 /*---------------------------------------------------------*/
366                 /* OUT */
367                 data = ep->ep.maxpacket;
368                 _nbu2ss_writel(&udc->p_regs->EP_DCR[num].EP_DCR2, data);
369
370                 /*---------------------------------------------------------*/
371                 /* Transfer Direct */
372                 data = DCR1_EPn_DIR0;
373                 _nbu2ss_bitset(&udc->p_regs->EP_DCR[num].EP_DCR1, data);
374
375                 /*---------------------------------------------------------*/
376                 /* DMA Mode etc. */
377                 data = EPn_STOP_MODE | EPn_STOP_SET  | EPn_DMAMODE0;
378                 _nbu2ss_writel(&udc->p_regs->EP_REGS[num].EP_DMA_CTRL, data);
379         } else {
380                 /*---------------------------------------------------------*/
381                 /* IN */
382                 _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_CONTROL, EPn_AUTO);
383
384                 /*---------------------------------------------------------*/
385                 /* DMA Mode etc. */
386                 data = EPn_BURST_SET | EPn_DMAMODE0;
387                 _nbu2ss_writel(&udc->p_regs->EP_REGS[num].EP_DMA_CTRL, data);
388         }
389 }
390
391 /*-------------------------------------------------------------------------*/
392 /* DMA setting release */
393 static void _nbu2ss_ep_dma_exit(struct nbu2ss_udc *udc, struct nbu2ss_ep *ep)
394 {
395         u32             num;
396         u32             data;
397         struct fc_regs  *preg = udc->p_regs;
398
399         if (udc->vbus_active == 0)
400                 return;         /* VBUS OFF */
401
402         data = _nbu2ss_readl(&preg->USBSSCONF);
403         if ((ep->epnum == 0) || ((data & (1 << ep->epnum)) == 0))
404                 return;         /* Not Support DMA */
405
406         num = ep->epnum - 1;
407
408         _nbu2ss_ep_dma_abort(udc, ep);
409
410         if (ep->direct == USB_DIR_OUT) {
411                 /*---------------------------------------------------------*/
412                 /* OUT */
413                 _nbu2ss_writel(&preg->EP_DCR[num].EP_DCR2, 0);
414                 _nbu2ss_bitclr(&preg->EP_DCR[num].EP_DCR1, DCR1_EPn_DIR0);
415                 _nbu2ss_writel(&preg->EP_REGS[num].EP_DMA_CTRL, 0);
416         } else {
417                 /*---------------------------------------------------------*/
418                 /* IN */
419                 _nbu2ss_bitclr(&preg->EP_REGS[num].EP_CONTROL, EPn_AUTO);
420                 _nbu2ss_writel(&preg->EP_REGS[num].EP_DMA_CTRL, 0);
421         }
422 }
423
424 /*-------------------------------------------------------------------------*/
425 /* Abort DMA */
426 static void _nbu2ss_ep_dma_abort(struct nbu2ss_udc *udc, struct nbu2ss_ep *ep)
427 {
428         struct fc_regs  *preg = udc->p_regs;
429
430         _nbu2ss_bitclr(&preg->EP_DCR[ep->epnum-1].EP_DCR1, DCR1_EPn_REQEN);
431         mdelay(DMA_DISABLE_TIME);       /* DCR1_EPn_REQEN Clear */
432         _nbu2ss_bitclr(&preg->EP_REGS[ep->epnum-1].EP_DMA_CTRL, EPn_DMA_EN);
433 }
434
435 /*-------------------------------------------------------------------------*/
436 /* Start IN Transfer */
437 static void _nbu2ss_ep_in_end(
438         struct nbu2ss_udc *udc,
439         u32 epnum,
440         u32 data32,
441         u32 length
442 )
443 {
444         u32             data;
445         u32             num;
446         struct fc_regs  *preg = udc->p_regs;
447
448         if (length >= sizeof(u32))
449                 return;
450
451         if (epnum == 0) {
452                 _nbu2ss_bitclr(&preg->EP0_CONTROL, EP0_AUTO);
453
454                 /* Writing of 1-4 bytes */
455                 if (length)
456                         _nbu2ss_writel(&preg->EP0_WRITE, data32);
457
458                 data = ((length << 5) & EP0_DW) | EP0_DEND;
459                 _nbu2ss_writel(&preg->EP0_CONTROL, data);
460
461                 _nbu2ss_bitset(&preg->EP0_CONTROL, EP0_AUTO);
462         } else {
463                 num = epnum - 1;
464
465                 _nbu2ss_bitclr(&preg->EP_REGS[num].EP_CONTROL, EPn_AUTO);
466
467                 /* Writing of 1-4 bytes */
468                 if (length)
469                         _nbu2ss_writel(&preg->EP_REGS[num].EP_WRITE, data32);
470
471                 data = (((((u32)length) << 5) & EPn_DW) | EPn_DEND);
472                 _nbu2ss_bitset(&preg->EP_REGS[num].EP_CONTROL, data);
473
474                 _nbu2ss_bitset(&preg->EP_REGS[num].EP_CONTROL, EPn_AUTO);
475         }
476 }
477
478 #ifdef USE_DMA
479 /*-------------------------------------------------------------------------*/
480 static void _nbu2ss_dma_map_single(
481         struct nbu2ss_udc *udc,
482         struct nbu2ss_ep *ep,
483         struct nbu2ss_req *req,
484         u8              direct
485 )
486 {
487         if (req->req.dma == DMA_ADDR_INVALID) {
488                 if (req->unaligned)
489                         req->req.dma = ep->phys_buf;
490                 else {
491                         req->req.dma = dma_map_single(
492                                 udc->gadget.dev.parent,
493                                 req->req.buf,
494                                 req->req.length,
495                                 (direct == USB_DIR_IN)
496                                 ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
497                 }
498                 req->mapped = 1;
499         } else {
500                 if (!req->unaligned)
501                         dma_sync_single_for_device(
502                                 udc->gadget.dev.parent,
503                                 req->req.dma,
504                                 req->req.length,
505                                 (direct == USB_DIR_IN)
506                                 ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
507
508                 req->mapped = 0;
509         }
510 }
511
512 /*-------------------------------------------------------------------------*/
513 static void _nbu2ss_dma_unmap_single(
514         struct nbu2ss_udc *udc,
515         struct nbu2ss_ep *ep,
516         struct nbu2ss_req *req,
517         u8              direct
518 )
519 {
520         u8              data[4];
521         u8              *p;
522         u32             count = 0;
523
524         if (direct == USB_DIR_OUT) {
525                 count = req->req.actual % 4;
526                 if (count) {
527                         p = req->req.buf;
528                         p += (req->req.actual - count);
529                         memcpy(data, p, count);
530                 }
531         }
532
533         if (req->mapped) {
534                 if (req->unaligned) {
535                         if (direct == USB_DIR_OUT)
536                                 memcpy(req->req.buf, ep->virt_buf,
537                                         req->req.actual & 0xfffffffc);
538                 } else
539                         dma_unmap_single(udc->gadget.dev.parent,
540                                 req->req.dma, req->req.length,
541                                 (direct == USB_DIR_IN)
542                                 ? DMA_TO_DEVICE
543                                 : DMA_FROM_DEVICE);
544                 req->req.dma = DMA_ADDR_INVALID;
545                 req->mapped = 0;
546         } else {
547                 if (!req->unaligned)
548                         dma_sync_single_for_cpu(udc->gadget.dev.parent,
549                                 req->req.dma, req->req.length,
550                                 (direct == USB_DIR_IN)
551                                 ? DMA_TO_DEVICE
552                                 : DMA_FROM_DEVICE);
553         }
554
555         if (count) {
556                 p = req->req.buf;
557                 p += (req->req.actual - count);
558                 memcpy(p, data, count);
559         }
560 }
561 #endif
562
563 /*-------------------------------------------------------------------------*/
564 /* Endpoint 0 OUT Transfer (PIO) */
565 static int EP0_out_PIO(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
566 {
567         u32             i;
568         int             nret   = 0;
569         u32             iWordLength = 0;
570         union usb_reg_access *pBuf32 = (union usb_reg_access *)pBuf;
571
572         /*------------------------------------------------------------*/
573         /* Read Length */
574         iWordLength = length / sizeof(u32);
575
576         /*------------------------------------------------------------*/
577         /* PIO Read */
578         if (iWordLength) {
579                 for (i = 0; i < iWordLength; i++) {
580                         pBuf32->dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
581                         pBuf32++;
582                 }
583                 nret = iWordLength * sizeof(u32);
584         }
585
586         return nret;
587 }
588
589 /*-------------------------------------------------------------------------*/
590 /* Endpoint 0 OUT Transfer (PIO, OverBytes) */
591 static int EP0_out_OverBytes(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
592 {
593         u32             i;
594         u32             iReadSize = 0;
595         union usb_reg_access  Temp32;
596         union usb_reg_access  *pBuf32 = (union usb_reg_access *)pBuf;
597
598         if ((0 < length) && (length < sizeof(u32))) {
599                 Temp32.dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
600                 for (i = 0 ; i < length ; i++)
601                         pBuf32->byte.DATA[i] = Temp32.byte.DATA[i];
602                 iReadSize += length;
603         }
604
605         return iReadSize;
606 }
607
608 /*-------------------------------------------------------------------------*/
609 /* Endpoint 0 IN Transfer (PIO) */
610 static int EP0_in_PIO(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
611 {
612         u32             i;
613         u32             iMaxLength   = EP0_PACKETSIZE;
614         u32             iWordLength  = 0;
615         u32             iWriteLength = 0;
616         union usb_reg_access  *pBuf32 = (union usb_reg_access *)pBuf;
617
618         /*------------------------------------------------------------*/
619         /* Transfer Length */
620         if (iMaxLength < length)
621                 iWordLength = iMaxLength / sizeof(u32);
622         else
623                 iWordLength = length / sizeof(u32);
624
625         /*------------------------------------------------------------*/
626         /* PIO */
627         for (i = 0; i < iWordLength; i++) {
628                 _nbu2ss_writel(&udc->p_regs->EP0_WRITE, pBuf32->dw);
629                 pBuf32++;
630                 iWriteLength += sizeof(u32);
631         }
632
633         return iWriteLength;
634 }
635
636 /*-------------------------------------------------------------------------*/
637 /* Endpoint 0 IN Transfer (PIO, OverBytes) */
638 static int EP0_in_OverBytes(struct nbu2ss_udc *udc, u8 *pBuf, u32 iRemainSize)
639 {
640         u32             i;
641         union usb_reg_access  Temp32;
642         union usb_reg_access  *pBuf32 = (union usb_reg_access *)pBuf;
643
644         if ((0 < iRemainSize) && (iRemainSize < sizeof(u32))) {
645                 for (i = 0 ; i < iRemainSize ; i++)
646                         Temp32.byte.DATA[i] = pBuf32->byte.DATA[i];
647                 _nbu2ss_ep_in_end(udc, 0, Temp32.dw, iRemainSize);
648
649                 return iRemainSize;
650         }
651
652         return 0;
653 }
654
655 /*-------------------------------------------------------------------------*/
656 /* Transfer NULL Packet (Epndoint 0) */
657 static int EP0_send_NULL(struct nbu2ss_udc *udc, bool pid_flag)
658 {
659         u32             data;
660
661         data = _nbu2ss_readl(&udc->p_regs->EP0_CONTROL);
662         data &= ~(u32)EP0_INAK;
663
664         if (pid_flag)
665                 data |= (EP0_INAK_EN | EP0_PIDCLR | EP0_DEND);
666         else
667                 data |= (EP0_INAK_EN | EP0_DEND);
668
669         _nbu2ss_writel(&udc->p_regs->EP0_CONTROL, data);
670
671         return 0;
672 }
673
674 /*-------------------------------------------------------------------------*/
675 /* Receive NULL Packet (Endpoint 0) */
676 static int EP0_receive_NULL(struct nbu2ss_udc *udc, bool pid_flag)
677 {
678         u32             data;
679
680         data = _nbu2ss_readl(&udc->p_regs->EP0_CONTROL);
681         data &= ~(u32)EP0_ONAK;
682
683         if (pid_flag)
684                 data |= EP0_PIDCLR;
685
686         _nbu2ss_writel(&udc->p_regs->EP0_CONTROL, data);
687
688         return 0;
689 }
690
691 /*-------------------------------------------------------------------------*/
692 static int _nbu2ss_ep0_in_transfer(
693         struct nbu2ss_udc *udc,
694         struct nbu2ss_ep *ep,
695         struct nbu2ss_req *req
696 )
697 {
698         u8              *pBuffer;                       /* IN Data Buffer */
699         u32             data;
700         u32             iRemainSize = 0;
701         int             result = 0;
702
703         /*-------------------------------------------------------------*/
704         /* End confirmation */
705         if (req->req.actual == req->req.length) {
706                 if ((req->req.actual % EP0_PACKETSIZE) == 0) {
707                         if (req->zero) {
708                                 req->zero = false;
709                                 EP0_send_NULL(udc, FALSE);
710                                 return 1;
711                         }
712                 }
713
714                 return 0;               /* Transfer End */
715         }
716
717         /*-------------------------------------------------------------*/
718         /* NAK release */
719         data = _nbu2ss_readl(&udc->p_regs->EP0_CONTROL);
720         data |= EP0_INAK_EN;
721         data &= ~(u32)EP0_INAK;
722         _nbu2ss_writel(&udc->p_regs->EP0_CONTROL, data);
723
724         iRemainSize = req->req.length - req->req.actual;
725         pBuffer = (u8 *)req->req.buf;
726         pBuffer += req->req.actual;
727
728         /*-------------------------------------------------------------*/
729         /* Data transfer */
730         result = EP0_in_PIO(udc, pBuffer, iRemainSize);
731
732         req->div_len = result;
733         iRemainSize -= result;
734
735         if (iRemainSize == 0) {
736                 EP0_send_NULL(udc, FALSE);
737                 return result;
738         }
739
740         if ((iRemainSize < sizeof(u32)) && (result != EP0_PACKETSIZE)) {
741                 pBuffer += result;
742                 result += EP0_in_OverBytes(udc, pBuffer, iRemainSize);
743                 req->div_len = result;
744         }
745
746         return result;
747 }
748
749 /*-------------------------------------------------------------------------*/
750 static int _nbu2ss_ep0_out_transfer(
751         struct nbu2ss_udc *udc,
752         struct nbu2ss_ep *ep,
753         struct nbu2ss_req *req
754 )
755 {
756         u8              *pBuffer;
757         u32             iRemainSize;
758         u32             iRecvLength;
759         int             result = 0;
760         int             fRcvZero;
761
762         /*-------------------------------------------------------------*/
763         /* Receive data confirmation */
764         iRecvLength = _nbu2ss_readl(&udc->p_regs->EP0_LENGTH) & EP0_LDATA;
765         if (iRecvLength != 0) {
766
767                 fRcvZero = 0;
768
769                 iRemainSize = req->req.length - req->req.actual;
770                 pBuffer = (u8 *)req->req.buf;
771                 pBuffer += req->req.actual;
772
773                 result = EP0_out_PIO(udc, pBuffer
774                                         , min(iRemainSize, iRecvLength));
775                 if (result < 0)
776                         return result;
777
778                 req->req.actual += result;
779                 iRecvLength -= result;
780
781                 if ((0 < iRecvLength) && (iRecvLength < sizeof(u32))) {
782                         pBuffer += result;
783                         iRemainSize -= result;
784
785                         result = EP0_out_OverBytes(udc, pBuffer
786                                         , min(iRemainSize, iRecvLength));
787                         req->req.actual += result;
788                 }
789         } else {
790                 fRcvZero = 1;
791         }
792
793         /*-------------------------------------------------------------*/
794         /* End confirmation */
795         if (req->req.actual == req->req.length) {
796                 if ((req->req.actual % EP0_PACKETSIZE) == 0) {
797                         if (req->zero) {
798                                 req->zero = false;
799                                 EP0_receive_NULL(udc, FALSE);
800                                 return 1;
801                         }
802                 }
803
804                 return 0;               /* Transfer End */
805         }
806
807         if ((req->req.actual % EP0_PACKETSIZE) != 0)
808                 return 0;               /* Short Packet Transfer End */
809
810         if (req->req.actual > req->req.length) {
811                 dev_err(udc->dev, " *** Overrun Error\n");
812                 return -EOVERFLOW;
813         }
814
815         if (fRcvZero != 0) {
816                 iRemainSize = _nbu2ss_readl(&udc->p_regs->EP0_CONTROL);
817                 if (iRemainSize & EP0_ONAK) {
818                         /*---------------------------------------------------*/
819                         /* NACK release */
820                         _nbu2ss_bitclr(&udc->p_regs->EP0_CONTROL, EP0_ONAK);
821                 }
822                 result = 1;
823         }
824
825         return result;
826 }
827
828 /*-------------------------------------------------------------------------*/
829 static int _nbu2ss_out_dma(
830         struct nbu2ss_udc *udc,
831         struct nbu2ss_req *req,
832         u32             num,
833         u32             length
834 )
835 {
836         u8              *pBuffer;
837         u32             mpkt;
838         u32             lmpkt;
839         u32             dmacnt;
840         u32             burst = 1;
841         u32             data;
842         int             result = -EINVAL;
843         struct fc_regs  *preg = udc->p_regs;
844
845         if (req->dma_flag)
846                 return 1;               /* DMA is forwarded */
847
848         req->dma_flag = TRUE;
849         pBuffer = (u8 *)req->req.dma;
850         pBuffer += req->req.actual;
851
852         /* DMA Address */
853         _nbu2ss_writel(&preg->EP_DCR[num].EP_TADR, (u32)pBuffer);
854
855         /* Number of transfer packets */
856         mpkt = _nbu2ss_readl(&preg->EP_REGS[num].EP_PCKT_ADRS) & EPn_MPKT;
857         dmacnt = (length / mpkt);
858         lmpkt = (length % mpkt) & ~(u32)0x03;
859
860         if (DMA_MAX_COUNT < dmacnt) {
861                 dmacnt = DMA_MAX_COUNT;
862                 lmpkt = 0;
863         } else if (0 != lmpkt) {
864                 if (0 == dmacnt)
865                         burst = 0;      /* Burst OFF */
866                 dmacnt++;
867         }
868
869         data = mpkt | (lmpkt << 16);
870         _nbu2ss_writel(&preg->EP_DCR[num].EP_DCR2, data);
871
872         data = ((dmacnt & 0xff) << 16) | DCR1_EPn_DIR0 | DCR1_EPn_REQEN;
873         _nbu2ss_writel(&preg->EP_DCR[num].EP_DCR1, data);
874
875         if (0 == burst) {
876                 _nbu2ss_writel(&preg->EP_REGS[num].EP_LEN_DCNT, 0);
877                 _nbu2ss_bitclr(&preg->EP_REGS[num].EP_DMA_CTRL, EPn_BURST_SET);
878         } else {
879                 _nbu2ss_writel(&preg->EP_REGS[num].EP_LEN_DCNT
880                                 , (dmacnt << 16));
881                 _nbu2ss_bitset(&preg->EP_REGS[num].EP_DMA_CTRL, EPn_BURST_SET);
882         }
883         _nbu2ss_bitset(&preg->EP_REGS[num].EP_DMA_CTRL, EPn_DMA_EN);
884
885         result = length & ~(u32)0x03;
886         req->div_len = result;
887
888         return result;
889 }
890
891 /*-------------------------------------------------------------------------*/
892 static int _nbu2ss_epn_out_pio(
893         struct nbu2ss_udc *udc,
894         struct nbu2ss_ep *ep,
895         struct nbu2ss_req *req,
896         u32             length
897 )
898 {
899         u8              *pBuffer;
900         u32             i;
901         u32             data;
902         u32             iWordLength;
903         union usb_reg_access    Temp32;
904         union usb_reg_access    *pBuf32;
905         int             result = 0;
906         struct fc_regs  *preg = udc->p_regs;
907
908         if (req->dma_flag)
909                 return 1;               /* DMA is forwarded */
910
911         if (length == 0)
912                 return 0;
913
914         pBuffer = (u8 *)req->req.buf;
915         pBuf32 = (union usb_reg_access *)(pBuffer + req->req.actual);
916
917         iWordLength = length / sizeof(u32);
918         if (iWordLength > 0) {
919                 /*---------------------------------------------------------*/
920                 /* Copy of every four bytes */
921                 for (i = 0; i < iWordLength; i++) {
922                         pBuf32->dw =
923                         _nbu2ss_readl(&preg->EP_REGS[ep->epnum-1].EP_READ);
924                         pBuf32++;
925                 }
926                 result = iWordLength * sizeof(u32);
927         }
928
929         data = length - result;
930         if (data > 0) {
931                 /*---------------------------------------------------------*/
932                 /* Copy of fraction byte */
933                 Temp32.dw = _nbu2ss_readl(&preg->EP_REGS[ep->epnum-1].EP_READ);
934                 for (i = 0 ; i < data ; i++)
935                         pBuf32->byte.DATA[i] = Temp32.byte.DATA[i];
936                 result += data;
937         }
938
939         req->req.actual += result;
940
941         if ((req->req.actual == req->req.length)
942                         || ((req->req.actual % ep->ep.maxpacket) != 0)) {
943
944                 result = 0;
945         }
946
947         return result;
948 }
949
950 /*-------------------------------------------------------------------------*/
951 static int _nbu2ss_epn_out_data(
952         struct nbu2ss_udc *udc,
953         struct nbu2ss_ep *ep,
954         struct nbu2ss_req *req,
955         u32             data_size
956 )
957 {
958         u32             num;
959         u32             iBufSize;
960         int             nret = 1;
961
962         if (ep->epnum == 0)
963                 return -EINVAL;
964
965         num = ep->epnum - 1;
966
967         iBufSize = min((req->req.length - req->req.actual), data_size);
968
969         if ((ep->ep_type != USB_ENDPOINT_XFER_INT)
970                 && (req->req.dma != 0)
971                 && (iBufSize  >= sizeof(u32))) {
972                 nret = _nbu2ss_out_dma(udc, req, num, iBufSize);
973         } else {
974                 iBufSize = min_t(u32, iBufSize, ep->ep.maxpacket);
975                 nret = _nbu2ss_epn_out_pio(udc, ep, req, iBufSize);
976         }
977
978         return nret;
979 }
980
981 /*-------------------------------------------------------------------------*/
982 static int _nbu2ss_epn_out_transfer(
983         struct nbu2ss_udc *udc,
984         struct nbu2ss_ep *ep,
985         struct nbu2ss_req *req
986 )
987 {
988         u32             num;
989         u32             iRecvLength;
990         int             result = 1;
991         struct fc_regs  *preg = udc->p_regs;
992
993         if (ep->epnum == 0)
994                 return -EINVAL;
995
996         num = ep->epnum - 1;
997
998         /*-------------------------------------------------------------*/
999         /* Receive Length */
1000         iRecvLength
1001                 = _nbu2ss_readl(&preg->EP_REGS[num].EP_LEN_DCNT) & EPn_LDATA;
1002
1003         if (iRecvLength != 0) {
1004                 result = _nbu2ss_epn_out_data(udc, ep, req, iRecvLength);
1005                 if (iRecvLength < ep->ep.maxpacket) {
1006                         if (iRecvLength == result) {
1007                                 req->req.actual += result;
1008                                 result = 0;
1009                         }
1010                 }
1011         } else {
1012                 if ((req->req.actual == req->req.length)
1013                         || ((req->req.actual % ep->ep.maxpacket) != 0)) {
1014
1015                         result = 0;
1016                 }
1017         }
1018
1019         if (result == 0) {
1020                 if ((req->req.actual % ep->ep.maxpacket) == 0) {
1021                         if (req->zero) {
1022                                 req->zero = false;
1023                                 return 1;
1024                         }
1025                 }
1026         }
1027
1028         if (req->req.actual > req->req.length) {
1029                 dev_err(udc->dev, " Overrun Error\n");
1030                 dev_err(udc->dev, " actual = %d, length = %d\n",
1031                         req->req.actual, req->req.length);
1032                 result = -EOVERFLOW;
1033         }
1034
1035         return result;
1036 }
1037
1038 /*-------------------------------------------------------------------------*/
1039 static int _nbu2ss_in_dma(
1040         struct nbu2ss_udc *udc,
1041         struct nbu2ss_ep *ep,
1042         struct nbu2ss_req *req,
1043         u32             num,
1044         u32             length
1045 )
1046 {
1047         u8              *pBuffer;
1048         u32             mpkt;           /* MaxPacketSize */
1049         u32             lmpkt;          /* Last Packet Data Size */
1050         u32             dmacnt;         /* IN Data Size */
1051         u32             iWriteLength;
1052         u32             data;
1053         int             result = -EINVAL;
1054         struct fc_regs  *preg = udc->p_regs;
1055
1056         if (req->dma_flag)
1057                 return 1;               /* DMA is forwarded */
1058
1059 #ifdef USE_DMA
1060         if (req->req.actual == 0)
1061                 _nbu2ss_dma_map_single(udc, ep, req, USB_DIR_IN);
1062 #endif
1063         req->dma_flag = TRUE;
1064
1065         /* MAX Packet Size */
1066         mpkt = _nbu2ss_readl(&preg->EP_REGS[num].EP_PCKT_ADRS) & EPn_MPKT;
1067
1068         if ((DMA_MAX_COUNT * mpkt) < length)
1069                 iWriteLength = DMA_MAX_COUNT * mpkt;
1070         else
1071                 iWriteLength = length;
1072
1073         /*------------------------------------------------------------*/
1074         /* Number of transmission packets */
1075         if (mpkt < iWriteLength) {
1076                 dmacnt = iWriteLength / mpkt;
1077                 lmpkt  = (iWriteLength % mpkt) & ~(u32)0x3;
1078                 if (lmpkt != 0)
1079                         dmacnt++;
1080                 else
1081                         lmpkt = mpkt & ~(u32)0x3;
1082
1083         } else {
1084                 dmacnt = 1;
1085                 lmpkt  = iWriteLength & ~(u32)0x3;
1086         }
1087
1088         /* Packet setting */
1089         data = mpkt | (lmpkt << 16);
1090         _nbu2ss_writel(&preg->EP_DCR[num].EP_DCR2, data);
1091
1092         /* Address setting */
1093         pBuffer = (u8 *)req->req.dma;
1094         pBuffer += req->req.actual;
1095         _nbu2ss_writel(&preg->EP_DCR[num].EP_TADR, (u32)pBuffer);
1096
1097         /* Packet and DMA setting */
1098         data = ((dmacnt & 0xff) << 16) | DCR1_EPn_REQEN;
1099         _nbu2ss_writel(&preg->EP_DCR[num].EP_DCR1, data);
1100
1101         /* Packet setting of EPC */
1102         data = dmacnt << 16;
1103         _nbu2ss_writel(&preg->EP_REGS[num].EP_LEN_DCNT, data);
1104
1105         /*DMA setting of EPC */
1106         _nbu2ss_bitset(&preg->EP_REGS[num].EP_DMA_CTRL, EPn_DMA_EN);
1107
1108         result = iWriteLength & ~(u32)0x3;
1109         req->div_len = result;
1110
1111         return result;
1112 }
1113
1114 /*-------------------------------------------------------------------------*/
1115 static int _nbu2ss_epn_in_pio(
1116         struct nbu2ss_udc *udc,
1117         struct nbu2ss_ep *ep,
1118         struct nbu2ss_req *req,
1119         u32             length
1120 )
1121 {
1122         u8              *pBuffer;
1123         u32             i;
1124         u32             data;
1125         u32             iWordLength;
1126         union usb_reg_access    Temp32;
1127         union usb_reg_access    *pBuf32 = NULL;
1128         int             result = 0;
1129         struct fc_regs  *preg = udc->p_regs;
1130
1131         if (req->dma_flag)
1132                 return 1;               /* DMA is forwarded */
1133
1134         if (length > 0) {
1135                 pBuffer = (u8 *)req->req.buf;
1136                 pBuf32 = (union usb_reg_access *)(pBuffer + req->req.actual);
1137
1138                 iWordLength = length / sizeof(u32);
1139                 if (iWordLength > 0) {
1140                         for (i = 0; i < iWordLength; i++) {
1141                                 _nbu2ss_writel(
1142                                         &preg->EP_REGS[ep->epnum-1].EP_WRITE
1143                                         , pBuf32->dw
1144                                 );
1145
1146                                 pBuf32++;
1147                         }
1148                         result = iWordLength * sizeof(u32);
1149                 }
1150         }
1151
1152         if (result != ep->ep.maxpacket) {
1153                 data = length - result;
1154                 Temp32.dw = 0;
1155                 for (i = 0 ; i < data ; i++)
1156                         Temp32.byte.DATA[i] = pBuf32->byte.DATA[i];
1157
1158                 _nbu2ss_ep_in_end(udc, ep->epnum, Temp32.dw, data);
1159                 result += data;
1160         }
1161
1162         req->div_len = result;
1163
1164         return result;
1165 }
1166
1167 /*-------------------------------------------------------------------------*/
1168 static int _nbu2ss_epn_in_data(
1169         struct nbu2ss_udc *udc,
1170         struct nbu2ss_ep *ep,
1171         struct nbu2ss_req *req,
1172         u32             data_size
1173 )
1174 {
1175         u32             num;
1176         int             nret = 1;
1177
1178         if (ep->epnum == 0)
1179                 return -EINVAL;
1180
1181         num = ep->epnum - 1;
1182
1183         if ((ep->ep_type != USB_ENDPOINT_XFER_INT)
1184                 && (req->req.dma != 0)
1185                 && (data_size >= sizeof(u32))) {
1186                 nret = _nbu2ss_in_dma(udc, ep, req, num, data_size);
1187         } else {
1188                 data_size = min_t(u32, data_size, ep->ep.maxpacket);
1189                 nret = _nbu2ss_epn_in_pio(udc, ep, req, data_size);
1190         }
1191
1192         return nret;
1193 }
1194
1195 /*-------------------------------------------------------------------------*/
1196 static int _nbu2ss_epn_in_transfer(
1197         struct nbu2ss_udc *udc,
1198         struct nbu2ss_ep *ep,
1199         struct nbu2ss_req *req
1200 )
1201 {
1202         u32             num;
1203         u32             iBufSize;
1204         int             result = 0;
1205         u32             status;
1206
1207         if (ep->epnum == 0)
1208                 return -EINVAL;
1209
1210         num = ep->epnum - 1;
1211
1212         status = _nbu2ss_readl(&udc->p_regs->EP_REGS[num].EP_STATUS);
1213
1214         /*-------------------------------------------------------------*/
1215         /* State confirmation of FIFO */
1216         if (req->req.actual == 0) {
1217                 if ((status & EPn_IN_EMPTY) == 0)
1218                         return 1;       /* Not Empty */
1219
1220         } else {
1221                 if ((status & EPn_IN_FULL) != 0)
1222                         return 1;       /* Not Empty */
1223         }
1224
1225         /*-------------------------------------------------------------*/
1226         /* Start transfer */
1227         iBufSize = req->req.length - req->req.actual;
1228         if (iBufSize > 0)
1229                 result = _nbu2ss_epn_in_data(udc, ep, req, iBufSize);
1230         else if (req->req.length == 0)
1231                 _nbu2ss_zero_len_pkt(udc, ep->epnum);
1232
1233         return result;
1234 }
1235
1236 /*-------------------------------------------------------------------------*/
1237 static int _nbu2ss_start_transfer(
1238         struct nbu2ss_udc *udc,
1239         struct nbu2ss_ep *ep,
1240         struct nbu2ss_req *req,
1241         bool    bflag)
1242 {
1243         int             nret = -EINVAL;
1244
1245         req->dma_flag = FALSE;
1246         req->div_len = 0;
1247
1248         if (req->req.length == 0)
1249                 req->zero = false;
1250         else {
1251                 if ((req->req.length % ep->ep.maxpacket) == 0)
1252                         req->zero = req->req.zero;
1253                 else
1254                         req->zero = false;
1255         }
1256
1257         if (ep->epnum == 0) {
1258                 /* EP0 */
1259                 switch (udc->ep0state) {
1260                 case EP0_IN_DATA_PHASE:
1261                         nret = _nbu2ss_ep0_in_transfer(udc, ep, req);
1262                         break;
1263
1264                 case EP0_OUT_DATA_PHASE:
1265                         nret = _nbu2ss_ep0_out_transfer(udc, ep, req);
1266                         break;
1267
1268                 case EP0_IN_STATUS_PHASE:
1269                         nret = EP0_send_NULL(udc, TRUE);
1270                         break;
1271
1272                 default:
1273                         break;
1274                 }
1275
1276         } else {
1277                 /* EPn */
1278                 if (ep->direct == USB_DIR_OUT) {
1279                         /* OUT */
1280                         if (bflag == FALSE)
1281                                 nret = _nbu2ss_epn_out_transfer(udc, ep, req);
1282                 } else {
1283                         /* IN */
1284                         nret = _nbu2ss_epn_in_transfer(udc, ep, req);
1285                 }
1286         }
1287
1288         return nret;
1289 }
1290
1291 /*-------------------------------------------------------------------------*/
1292 static void _nbu2ss_restert_transfer(struct nbu2ss_ep *ep)
1293 {
1294         u32             length;
1295         bool    bflag = FALSE;
1296         struct nbu2ss_req *req;
1297
1298         if (list_empty(&ep->queue))
1299                 req = NULL;
1300         else
1301                 req = list_entry(ep->queue.next, struct nbu2ss_req, queue);
1302
1303         if (req == NULL)
1304                 return;
1305
1306         if (ep->epnum > 0) {
1307                 length = _nbu2ss_readl(
1308                         &ep->udc->p_regs->EP_REGS[ep->epnum-1].EP_LEN_DCNT);
1309
1310                 length &= EPn_LDATA;
1311                 if (length < ep->ep.maxpacket)
1312                         bflag = TRUE;
1313         }
1314
1315         _nbu2ss_start_transfer(ep->udc, ep, req, bflag);
1316 }
1317
1318 /*-------------------------------------------------------------------------*/
1319 /*      Endpoint Toggle Reset */
1320 static void _nbu2ss_endpoint_toggle_reset(
1321         struct nbu2ss_udc *udc,
1322         u8 ep_adrs)
1323 {
1324         u8              num;
1325         u32             data;
1326
1327         if ((ep_adrs == 0) || (ep_adrs == 0x80))
1328                 return;
1329
1330         num = (ep_adrs & 0x7F) - 1;
1331
1332         if (ep_adrs & USB_DIR_IN)
1333                 data = EPn_IPIDCLR;
1334         else
1335                 data = EPn_BCLR | EPn_OPIDCLR;
1336
1337         _nbu2ss_bitset(&udc->p_regs->EP_REGS[num].EP_CONTROL, data);
1338 }
1339
1340 /*-------------------------------------------------------------------------*/
1341 /*      Endpoint STALL set */
1342 static void _nbu2ss_set_endpoint_stall(
1343         struct nbu2ss_udc *udc,
1344         u8 ep_adrs,
1345         bool bstall)
1346 {
1347         u8              num, epnum;
1348         u32             data;
1349         struct nbu2ss_ep *ep;
1350         struct fc_regs  *preg = udc->p_regs;
1351
1352         if ((ep_adrs == 0) || (ep_adrs == 0x80)) {
1353                 if (bstall) {
1354                         /* Set STALL */
1355                         _nbu2ss_bitset(&preg->EP0_CONTROL, EP0_STL);
1356                 } else {
1357                         /* Clear STALL */
1358                         _nbu2ss_bitclr(&preg->EP0_CONTROL, EP0_STL);
1359                 }
1360         } else {
1361                 epnum = ep_adrs & USB_ENDPOINT_NUMBER_MASK;
1362                 num = epnum - 1;
1363                 ep = &udc->ep[epnum];
1364
1365                 if (bstall) {
1366                         /* Set STALL */
1367                         ep->halted = TRUE;
1368
1369                         if (ep_adrs & USB_DIR_IN)
1370                                 data = EPn_BCLR | EPn_ISTL;
1371                         else
1372                                 data = EPn_OSTL_EN | EPn_OSTL;
1373
1374                         _nbu2ss_bitset(&preg->EP_REGS[num].EP_CONTROL, data);
1375                 } else {
1376                         /* Clear STALL */
1377                         ep->stalled = FALSE;
1378                         if (ep_adrs & USB_DIR_IN) {
1379                                 _nbu2ss_bitclr(&preg->EP_REGS[num].EP_CONTROL
1380                                                 , EPn_ISTL);
1381                         } else {
1382                                 data =
1383                                 _nbu2ss_readl(&preg->EP_REGS[num].EP_CONTROL);
1384
1385                                 data &= ~EPn_OSTL;
1386                                 data |= EPn_OSTL_EN;
1387
1388                                 _nbu2ss_writel(&preg->EP_REGS[num].EP_CONTROL
1389                                                 , data);
1390                         }
1391
1392                         ep->stalled = FALSE;
1393                         if (ep->halted) {
1394                                 ep->halted = FALSE;
1395                                 _nbu2ss_restert_transfer(ep);
1396                         }
1397                 }
1398         }
1399 }
1400
1401
1402 /*-------------------------------------------------------------------------*/
1403 /* Device Descriptor */
1404 static struct usb_device_descriptor device_desc = {
1405         .bLength              = sizeof(device_desc),
1406         .bDescriptorType      = USB_DT_DEVICE,
1407         .bcdUSB               = cpu_to_le16(0x0200),
1408         .bDeviceClass         = USB_CLASS_VENDOR_SPEC,
1409         .bDeviceSubClass      = 0x00,
1410         .bDeviceProtocol      = 0x00,
1411         .bMaxPacketSize0      = 64,
1412         .idVendor             = cpu_to_le16(0x0409),
1413         .idProduct            = cpu_to_le16(0xfff0),
1414         .bcdDevice            = 0xffff,
1415         .iManufacturer        = 0x00,
1416         .iProduct             = 0x00,
1417         .iSerialNumber        = 0x00,
1418         .bNumConfigurations   = 0x01,
1419 };
1420
1421 /*-------------------------------------------------------------------------*/
1422 static void _nbu2ss_set_test_mode(struct nbu2ss_udc *udc, u32 mode)
1423 {
1424         u32             data;
1425
1426         if (mode > MAX_TEST_MODE_NUM)
1427                 return;
1428
1429         dev_info(udc->dev, "SET FEATURE : test mode = %d\n", mode);
1430
1431         data = _nbu2ss_readl(&udc->p_regs->USB_CONTROL);
1432         data &= ~TEST_FORCE_ENABLE;
1433         data |= mode << TEST_MODE_SHIFT;
1434
1435         _nbu2ss_writel(&udc->p_regs->USB_CONTROL, data);
1436         _nbu2ss_bitset(&udc->p_regs->TEST_CONTROL, CS_TESTMODEEN);
1437 }
1438
1439 /*-------------------------------------------------------------------------*/
1440 static int _nbu2ss_set_feature_device(
1441         struct nbu2ss_udc *udc,
1442         u16 selector,
1443         u16 wIndex
1444 )
1445 {
1446         int     result = -EOPNOTSUPP;
1447
1448         switch (selector) {
1449         case USB_DEVICE_REMOTE_WAKEUP:
1450                 if (0x0000 == wIndex) {
1451                         udc->remote_wakeup = U2F_ENABLE;
1452                         result = 0;
1453                 }
1454                 break;
1455
1456         case USB_DEVICE_TEST_MODE:
1457                 wIndex >>= 8;
1458                 if (wIndex <= MAX_TEST_MODE_NUM)
1459                         result = 0;
1460                 break;
1461
1462         default:
1463                 break;
1464         }
1465
1466         return result;
1467 }
1468
1469 /*-------------------------------------------------------------------------*/
1470 static int _nbu2ss_get_ep_stall(struct nbu2ss_udc *udc, u8 ep_adrs)
1471 {
1472         u8              epnum;
1473         u32             data = 0, bit_data;
1474         struct fc_regs  *preg = udc->p_regs;
1475
1476         epnum = ep_adrs & ~USB_ENDPOINT_DIR_MASK;
1477         if (epnum == 0) {
1478                 data = _nbu2ss_readl(&preg->EP0_CONTROL);
1479                 bit_data = EP0_STL;
1480
1481         } else {
1482                 data = _nbu2ss_readl(&preg->EP_REGS[epnum-1].EP_CONTROL);
1483                 if ((data & EPn_EN) == 0)
1484                         return -1;
1485
1486                 if (ep_adrs & USB_ENDPOINT_DIR_MASK)
1487                         bit_data = EPn_ISTL;
1488                 else
1489                         bit_data = EPn_OSTL;
1490         }
1491
1492         if ((data & bit_data) == 0)
1493                 return 0;
1494         return 1;
1495 }
1496
1497 /*-------------------------------------------------------------------------*/
1498 static inline int _nbu2ss_req_feature(struct nbu2ss_udc *udc, bool bset)
1499 {
1500         u8      recipient = (u8)(udc->ctrl.bRequestType & USB_RECIP_MASK);
1501         u8      direction = (u8)(udc->ctrl.bRequestType & USB_DIR_IN);
1502         u16     selector  = udc->ctrl.wValue;
1503         u16     wIndex    = udc->ctrl.wIndex;
1504         u8      ep_adrs;
1505         int     result = -EOPNOTSUPP;
1506
1507         if ((0x0000 != udc->ctrl.wLength) ||
1508                         (USB_DIR_OUT != direction)) {
1509                 return -EINVAL;
1510         }
1511
1512         switch (recipient) {
1513         case USB_RECIP_DEVICE:
1514                 if (bset)
1515                         result =
1516                         _nbu2ss_set_feature_device(udc, selector, wIndex);
1517                 break;
1518
1519         case USB_RECIP_ENDPOINT:
1520                 if (0x0000 == (wIndex & 0xFF70)) {
1521                         if (USB_ENDPOINT_HALT == selector) {
1522                                 ep_adrs = wIndex & 0xFF;
1523                                 if (bset == FALSE) {
1524                                         _nbu2ss_endpoint_toggle_reset(
1525                                                 udc, ep_adrs);
1526                                 }
1527
1528                                 _nbu2ss_set_endpoint_stall(
1529                                         udc, ep_adrs, bset);
1530
1531                                 result = 0;
1532                         }
1533                 }
1534                 break;
1535
1536         default:
1537                 break;
1538         }
1539
1540         if (result >= 0)
1541                 _nbu2ss_create_ep0_packet(udc, udc->ep0_buf, 0);
1542
1543         return result;
1544 }
1545
1546 /*-------------------------------------------------------------------------*/
1547 static inline enum usb_device_speed _nbu2ss_get_speed(struct nbu2ss_udc *udc)
1548 {
1549         u32             data;
1550         enum usb_device_speed speed = USB_SPEED_FULL;
1551
1552         data = _nbu2ss_readl(&udc->p_regs->USB_STATUS);
1553         if (data & HIGH_SPEED)
1554                 speed = USB_SPEED_HIGH;
1555
1556         return speed;
1557 }
1558
1559 /*-------------------------------------------------------------------------*/
1560 static void _nbu2ss_epn_set_stall(
1561         struct nbu2ss_udc *udc,
1562         struct nbu2ss_ep *ep
1563 )
1564 {
1565         u8      ep_adrs;
1566         u32     regdata;
1567         int     limit_cnt = 0;
1568
1569         struct fc_regs  *preg = udc->p_regs;
1570
1571         if (ep->direct == USB_DIR_IN) {
1572                 for (limit_cnt = 0
1573                         ; limit_cnt < IN_DATA_EMPTY_COUNT
1574                         ; limit_cnt++) {
1575
1576                         regdata = _nbu2ss_readl(
1577                                 &preg->EP_REGS[ep->epnum-1].EP_STATUS);
1578
1579                         if ((regdata & EPn_IN_DATA) == 0)
1580                                 break;
1581
1582                         mdelay(1);
1583                 }
1584         }
1585
1586         ep_adrs = ep->epnum | ep->direct;
1587         _nbu2ss_set_endpoint_stall(udc, ep_adrs, 1);
1588 }
1589
1590 /*-------------------------------------------------------------------------*/
1591 static int std_req_get_status(struct nbu2ss_udc *udc)
1592 {
1593         u32     length;
1594         u16     status_data = 0;
1595         u8      recipient = (u8)(udc->ctrl.bRequestType & USB_RECIP_MASK);
1596         u8      direction = (u8)(udc->ctrl.bRequestType & USB_DIR_IN);
1597         u8      ep_adrs;
1598         int     result = -EINVAL;
1599
1600         if ((0x0000 != udc->ctrl.wValue)
1601                 || (USB_DIR_IN != direction)) {
1602
1603                 return result;
1604         }
1605
1606         length = min_t(u16, udc->ctrl.wLength, sizeof(status_data));
1607
1608         switch (recipient) {
1609         case USB_RECIP_DEVICE:
1610                 if (udc->ctrl.wIndex == 0x0000) {
1611                         if (udc->gadget.is_selfpowered)
1612                                 status_data |= (1 << USB_DEVICE_SELF_POWERED);
1613
1614                         if (udc->remote_wakeup)
1615                                 status_data |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1616
1617                         result = 0;
1618                 }
1619                 break;
1620
1621         case USB_RECIP_ENDPOINT:
1622                 if (0x0000 == (udc->ctrl.wIndex & 0xFF70)) {
1623                         ep_adrs = (u8)(udc->ctrl.wIndex & 0xFF);
1624                         result = _nbu2ss_get_ep_stall(udc, ep_adrs);
1625
1626                         if (result > 0)
1627                                 status_data |= (1 << USB_ENDPOINT_HALT);
1628                 }
1629                 break;
1630
1631         default:
1632                 break;
1633         }
1634
1635         if (result >= 0) {
1636                 memcpy(udc->ep0_buf, &status_data, length);
1637                 _nbu2ss_create_ep0_packet(udc, udc->ep0_buf, length);
1638                 _nbu2ss_ep0_in_transfer(udc, &udc->ep[0], &udc->ep0_req);
1639
1640         } else {
1641                 dev_err(udc->dev, " Error GET_STATUS\n");
1642         }
1643
1644         return result;
1645 }
1646
1647 /*-------------------------------------------------------------------------*/
1648 static int std_req_clear_feature(struct nbu2ss_udc *udc)
1649 {
1650         return _nbu2ss_req_feature(udc, FALSE);
1651 }
1652
1653 /*-------------------------------------------------------------------------*/
1654 static int std_req_set_feature(struct nbu2ss_udc *udc)
1655 {
1656         return _nbu2ss_req_feature(udc, TRUE);
1657 }
1658
1659 /*-------------------------------------------------------------------------*/
1660 static int std_req_set_address(struct nbu2ss_udc *udc)
1661 {
1662         int             result = 0;
1663         u32             wValue = udc->ctrl.wValue;
1664
1665         if ((0x00 != udc->ctrl.bRequestType)    ||
1666                 (0x0000 != udc->ctrl.wIndex)    ||
1667                 (0x0000 != udc->ctrl.wLength)) {
1668                 return -EINVAL;
1669         }
1670
1671         if (wValue != (wValue & 0x007F))
1672                 return -EINVAL;
1673
1674         wValue <<= USB_ADRS_SHIFT;
1675
1676         _nbu2ss_writel(&udc->p_regs->USB_ADDRESS, wValue);
1677         _nbu2ss_create_ep0_packet(udc, udc->ep0_buf, 0);
1678
1679         return result;
1680 }
1681
1682 /*-------------------------------------------------------------------------*/
1683 static int std_req_set_configuration(struct nbu2ss_udc *udc)
1684 {
1685         u32 ConfigValue = (u32)(udc->ctrl.wValue & 0x00ff);
1686
1687         if ((0x0000 != udc->ctrl.wIndex)        ||
1688                 (0x0000 != udc->ctrl.wLength)   ||
1689                 (0x00 != udc->ctrl.bRequestType)) {
1690                 return -EINVAL;
1691         }
1692
1693         udc->curr_config = ConfigValue;
1694
1695         if (ConfigValue > 0) {
1696                 _nbu2ss_bitset(&udc->p_regs->USB_CONTROL, CONF);
1697                 udc->devstate = USB_STATE_CONFIGURED;
1698
1699         } else {
1700                 _nbu2ss_bitclr(&udc->p_regs->USB_CONTROL, CONF);
1701                 udc->devstate = USB_STATE_ADDRESS;
1702         }
1703
1704         return 0;
1705 }
1706
1707 /*-------------------------------------------------------------------------*/
1708 static inline void _nbu2ss_read_request_data(struct nbu2ss_udc *udc, u32 *pdata)
1709 {
1710         if ((udc == NULL) && (pdata == NULL))
1711                 return;
1712
1713         *pdata = _nbu2ss_readl(&udc->p_regs->SETUP_DATA0);
1714         pdata++;
1715         *pdata = _nbu2ss_readl(&udc->p_regs->SETUP_DATA1);
1716 }
1717
1718 /*-------------------------------------------------------------------------*/
1719 static inline int _nbu2ss_decode_request(struct nbu2ss_udc *udc)
1720 {
1721         bool                    bcall_back = TRUE;
1722         int                     nret = -EINVAL;
1723         struct usb_ctrlrequest  *p_ctrl;
1724
1725         p_ctrl = &udc->ctrl;
1726         _nbu2ss_read_request_data(udc, (u32 *)p_ctrl);
1727
1728         /* ep0 state control */
1729         if (p_ctrl->wLength == 0) {
1730                 udc->ep0state = EP0_IN_STATUS_PHASE;
1731
1732         } else {
1733                 if (p_ctrl->bRequestType & USB_DIR_IN)
1734                         udc->ep0state = EP0_IN_DATA_PHASE;
1735                 else
1736                         udc->ep0state = EP0_OUT_DATA_PHASE;
1737         }
1738
1739         if ((p_ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
1740                 switch (p_ctrl->bRequest) {
1741                 case USB_REQ_GET_STATUS:
1742                         nret = std_req_get_status(udc);
1743                         bcall_back = FALSE;
1744                         break;
1745
1746                 case USB_REQ_CLEAR_FEATURE:
1747                         nret = std_req_clear_feature(udc);
1748                         bcall_back = FALSE;
1749                         break;
1750
1751                 case USB_REQ_SET_FEATURE:
1752                         nret = std_req_set_feature(udc);
1753                         bcall_back = FALSE;
1754                         break;
1755
1756                 case USB_REQ_SET_ADDRESS:
1757                         nret = std_req_set_address(udc);
1758                         bcall_back = FALSE;
1759                         break;
1760
1761                 case USB_REQ_SET_CONFIGURATION:
1762                         nret = std_req_set_configuration(udc);
1763                         break;
1764
1765                 default:
1766                         break;
1767                 }
1768         }
1769
1770         if (bcall_back == FALSE) {
1771                 if (udc->ep0state == EP0_IN_STATUS_PHASE) {
1772                         if (nret >= 0) {
1773                                 /*--------------------------------------*/
1774                                 /* Status Stage */
1775                                 nret = EP0_send_NULL(udc, TRUE);
1776                         }
1777                 }
1778
1779         } else {
1780                 spin_unlock(&udc->lock);
1781                 nret = udc->driver->setup(&udc->gadget, &udc->ctrl);
1782                 spin_lock(&udc->lock);
1783         }
1784
1785         if (nret < 0)
1786                 udc->ep0state = EP0_IDLE;
1787
1788         return nret;
1789 }
1790
1791 /*-------------------------------------------------------------------------*/
1792 static inline int _nbu2ss_ep0_in_data_stage(struct nbu2ss_udc *udc)
1793 {
1794         int                     nret;
1795         struct nbu2ss_req       *req;
1796         struct nbu2ss_ep        *ep = &udc->ep[0];
1797
1798         if (list_empty(&ep->queue))
1799                 req = NULL;
1800         else
1801                 req = list_entry(ep->queue.next, struct nbu2ss_req, queue);
1802
1803         if (req == NULL)
1804                 req = &udc->ep0_req;
1805
1806         req->req.actual += req->div_len;
1807         req->div_len = 0;
1808
1809         nret = _nbu2ss_ep0_in_transfer(udc, ep, req);
1810         if (nret == 0) {
1811                 udc->ep0state = EP0_OUT_STATUS_PAHSE;
1812                 EP0_receive_NULL(udc, TRUE);
1813         }
1814
1815         return 0;
1816 }
1817
1818 /*-------------------------------------------------------------------------*/
1819 static inline int _nbu2ss_ep0_out_data_stage(struct nbu2ss_udc *udc)
1820 {
1821         int                     nret;
1822         struct nbu2ss_req       *req;
1823         struct nbu2ss_ep        *ep = &udc->ep[0];
1824
1825         if (list_empty(&ep->queue))
1826                 req = NULL;
1827         else
1828                 req = list_entry(ep->queue.next, struct nbu2ss_req, queue);
1829
1830         if (req == NULL)
1831                 req = &udc->ep0_req;
1832
1833         nret = _nbu2ss_ep0_out_transfer(udc, ep, req);
1834         if (nret == 0) {
1835                 udc->ep0state = EP0_IN_STATUS_PHASE;
1836                 EP0_send_NULL(udc, TRUE);
1837
1838         } else if (nret < 0) {
1839                 _nbu2ss_bitset(&udc->p_regs->EP0_CONTROL, EP0_BCLR);
1840                 req->req.status = nret;
1841         }
1842
1843         return 0;
1844 }
1845
1846 /*-------------------------------------------------------------------------*/
1847 static inline int _nbu2ss_ep0_status_stage(struct nbu2ss_udc *udc)
1848 {
1849         struct nbu2ss_req       *req;
1850         struct nbu2ss_ep        *ep = &udc->ep[0];
1851
1852         if (list_empty(&ep->queue))
1853                 req = NULL;
1854         else
1855                 req = list_entry(ep->queue.next, struct nbu2ss_req, queue);
1856
1857         if (req == NULL) {
1858                 req = &udc->ep0_req;
1859                 if (req->req.complete)
1860                         req->req.complete(&ep->ep, &req->req);
1861
1862         } else {
1863                 if (req->req.complete)
1864                         _nbu2ss_ep_done(ep, req, 0);
1865         }
1866
1867         udc->ep0state = EP0_IDLE;
1868
1869         return 0;
1870 }
1871
1872 /*-------------------------------------------------------------------------*/
1873 static inline void _nbu2ss_ep0_int(struct nbu2ss_udc *udc)
1874 {
1875         int             i;
1876         u32             status;
1877         u32             intr;
1878         int             nret = -1;
1879
1880         status = _nbu2ss_readl(&udc->p_regs->EP0_STATUS);
1881         intr = status & EP0_STATUS_RW_BIT;
1882         _nbu2ss_writel(&udc->p_regs->EP0_STATUS, ~(u32)intr);
1883
1884         status &= (SETUP_INT | EP0_IN_INT | EP0_OUT_INT
1885                         | STG_END_INT | EP0_OUT_NULL_INT);
1886
1887         if (status == 0) {
1888                 dev_info(udc->dev, "%s Not Decode Interrupt\n", __func__);
1889                 dev_info(udc->dev, "EP0_STATUS = 0x%08x\n", intr);
1890                 return;
1891         }
1892
1893         if (udc->gadget.speed == USB_SPEED_UNKNOWN)
1894                 udc->gadget.speed = _nbu2ss_get_speed(udc);
1895
1896         for (i = 0; i < EP0_END_XFER; i++) {
1897                 switch (udc->ep0state) {
1898                 case EP0_IDLE:
1899                         if (status & SETUP_INT) {
1900                                 status = 0;
1901                                 nret = _nbu2ss_decode_request(udc);
1902                         }
1903                         break;
1904
1905                 case EP0_IN_DATA_PHASE:
1906                         if (status & EP0_IN_INT) {
1907                                 status &= ~EP0_IN_INT;
1908                                 nret = _nbu2ss_ep0_in_data_stage(udc);
1909                         }
1910                         break;
1911
1912                 case EP0_OUT_DATA_PHASE:
1913                         if (status & EP0_OUT_INT) {
1914                                 status &= ~EP0_OUT_INT;
1915                                 nret = _nbu2ss_ep0_out_data_stage(udc);
1916                         }
1917                         break;
1918
1919                 case EP0_IN_STATUS_PHASE:
1920                         if ((status & STG_END_INT) || (status & SETUP_INT)) {
1921                                 status &= ~(STG_END_INT | EP0_IN_INT);
1922                                 nret = _nbu2ss_ep0_status_stage(udc);
1923                         }
1924                         break;
1925
1926                 case EP0_OUT_STATUS_PAHSE:
1927                         if ((status & STG_END_INT)
1928                         || (status & SETUP_INT)
1929                         || (status & EP0_OUT_NULL_INT)) {
1930                                 status &= ~(STG_END_INT
1931                                                 | EP0_OUT_INT
1932                                                 | EP0_OUT_NULL_INT);
1933
1934                                 nret = _nbu2ss_ep0_status_stage(udc);
1935                         }
1936
1937                         break;
1938
1939                 default:
1940                         status = 0;
1941                         break;
1942                 }
1943
1944                 if (status == 0)
1945                         break;
1946         }
1947
1948         if (nret < 0) {
1949                 /* Send Stall */
1950                 _nbu2ss_set_endpoint_stall(udc, 0, TRUE);
1951         }
1952 }
1953
1954 /*-------------------------------------------------------------------------*/
1955 static void _nbu2ss_ep_done(
1956         struct nbu2ss_ep *ep,
1957         struct nbu2ss_req *req,
1958         int status)
1959 {
1960         struct nbu2ss_udc *udc = ep->udc;
1961
1962         list_del_init(&req->queue);
1963
1964         if (status == -ECONNRESET)
1965                 _nbu2ss_fifo_flush(udc, ep);
1966
1967         if (likely(req->req.status == -EINPROGRESS))
1968                 req->req.status = status;
1969
1970         if (ep->stalled)
1971                 _nbu2ss_epn_set_stall(udc, ep);
1972         else {
1973                 if (!list_empty(&ep->queue))
1974                         _nbu2ss_restert_transfer(ep);
1975         }
1976
1977 #ifdef USE_DMA
1978         if ((ep->direct == USB_DIR_OUT) && (ep->epnum > 0) &&
1979                         (req->req.dma != 0))
1980                 _nbu2ss_dma_unmap_single(udc, ep, req, USB_DIR_OUT);
1981 #endif
1982
1983         spin_unlock(&udc->lock);
1984         req->req.complete(&ep->ep, &req->req);
1985         spin_lock(&udc->lock);
1986 }
1987
1988 /*-------------------------------------------------------------------------*/
1989 static inline void _nbu2ss_epn_in_int(
1990         struct nbu2ss_udc *udc,
1991         struct nbu2ss_ep *ep,
1992         struct nbu2ss_req *req)
1993 {
1994         int     result = 0;
1995         u32     status;
1996
1997         struct fc_regs  *preg = udc->p_regs;
1998
1999         if (req->dma_flag)
2000                 return;         /* DMA is forwarded */
2001
2002         req->req.actual += req->div_len;
2003         req->div_len = 0;
2004
2005         if (req->req.actual != req->req.length) {
2006                 /*---------------------------------------------------------*/
2007                 /* remainder of data */
2008                 result = _nbu2ss_epn_in_transfer(udc, ep, req);
2009
2010         } else {
2011                 if (req->zero && ((req->req.actual % ep->ep.maxpacket) == 0)) {
2012
2013                         status =
2014                         _nbu2ss_readl(&preg->EP_REGS[ep->epnum-1].EP_STATUS);
2015
2016                         if ((status & EPn_IN_FULL) == 0) {
2017                                 /*-----------------------------------------*/
2018                                 /* 0 Length Packet */
2019                                 req->zero = false;
2020                                 _nbu2ss_zero_len_pkt(udc, ep->epnum);
2021                         }
2022                         return;
2023                 }
2024         }
2025
2026         if (result <= 0) {
2027                 /*---------------------------------------------------------*/
2028                 /* Complete */
2029                 _nbu2ss_ep_done(ep, req, result);
2030         }
2031 }
2032
2033 /*-------------------------------------------------------------------------*/
2034 static inline void _nbu2ss_epn_out_int(
2035         struct nbu2ss_udc *udc,
2036         struct nbu2ss_ep *ep,
2037         struct nbu2ss_req *req)
2038 {
2039         int     result;
2040
2041         result = _nbu2ss_epn_out_transfer(udc, ep, req);
2042         if (result <= 0)
2043                 _nbu2ss_ep_done(ep, req, result);
2044 }
2045
2046 /*-------------------------------------------------------------------------*/
2047 static inline void _nbu2ss_epn_in_dma_int(
2048         struct nbu2ss_udc *udc,
2049         struct nbu2ss_ep *ep,
2050         struct nbu2ss_req *req)
2051 {
2052         u32             mpkt;
2053         u32             size;
2054         struct usb_request *preq;
2055
2056         preq = &req->req;
2057
2058         if (req->dma_flag == FALSE)
2059                 return;
2060
2061         preq->actual += req->div_len;
2062         req->div_len = 0;
2063         req->dma_flag = FALSE;
2064
2065 #ifdef USE_DMA
2066         _nbu2ss_dma_unmap_single(udc, ep, req, USB_DIR_IN);
2067 #endif
2068
2069         if (preq->actual != preq->length) {
2070                 _nbu2ss_epn_in_transfer(udc, ep, req);
2071         } else {
2072                 mpkt = ep->ep.maxpacket;
2073                 size = preq->actual % mpkt;
2074                 if (size > 0) {
2075                         if (((preq->actual & 0x03) == 0) && (size < mpkt))
2076                                 _nbu2ss_ep_in_end(udc, ep->epnum, 0, 0);
2077                 } else {
2078                         _nbu2ss_epn_in_int(udc, ep, req);
2079                 }
2080         }
2081 }
2082
2083 /*-------------------------------------------------------------------------*/
2084 static inline void _nbu2ss_epn_out_dma_int(
2085         struct nbu2ss_udc *udc,
2086         struct nbu2ss_ep *ep,
2087         struct nbu2ss_req *req)
2088 {
2089         int             i;
2090         u32             num;
2091         u32             dmacnt, ep_dmacnt;
2092         u32             mpkt;
2093         struct fc_regs  *preg = udc->p_regs;
2094
2095         num = ep->epnum - 1;
2096
2097         if (req->req.actual == req->req.length) {
2098                 if ((req->req.length % ep->ep.maxpacket) && !req->zero) {
2099                         req->div_len = 0;
2100                         req->dma_flag = FALSE;
2101                         _nbu2ss_ep_done(ep, req, 0);
2102                         return;
2103                 }
2104         }
2105
2106         ep_dmacnt = _nbu2ss_readl(&preg->EP_REGS[num].EP_LEN_DCNT)
2107                  & EPn_DMACNT;
2108         ep_dmacnt >>= 16;
2109
2110         for (i = 0; i < EPC_PLL_LOCK_COUNT; i++) {
2111                 dmacnt = _nbu2ss_readl(&preg->EP_DCR[num].EP_DCR1)
2112                          & DCR1_EPn_DMACNT;
2113                 dmacnt >>= 16;
2114                 if (ep_dmacnt == dmacnt)
2115                         break;
2116         }
2117
2118         _nbu2ss_bitclr(&preg->EP_DCR[num].EP_DCR1, DCR1_EPn_REQEN);
2119
2120         if (dmacnt != 0) {
2121                 mpkt = ep->ep.maxpacket;
2122                 if ((req->div_len % mpkt) == 0)
2123                         req->div_len -= mpkt * dmacnt;
2124         }
2125
2126         if ((req->req.actual % ep->ep.maxpacket) > 0) {
2127                 if (req->req.actual == req->div_len) {
2128                         req->div_len = 0;
2129                         req->dma_flag = FALSE;
2130                         _nbu2ss_ep_done(ep, req, 0);
2131                         return;
2132                 }
2133         }
2134
2135         req->req.actual += req->div_len;
2136         req->div_len = 0;
2137         req->dma_flag = FALSE;
2138
2139         _nbu2ss_epn_out_int(udc, ep, req);
2140 }
2141
2142 /*-------------------------------------------------------------------------*/
2143 static inline void _nbu2ss_epn_int(struct nbu2ss_udc *udc, u32 epnum)
2144 {
2145         u32     num;
2146         u32     status;
2147
2148         struct nbu2ss_req       *req;
2149         struct nbu2ss_ep        *ep = &udc->ep[epnum];
2150
2151         num = epnum - 1;
2152
2153         /* Interrupt Status */
2154         status = _nbu2ss_readl(&udc->p_regs->EP_REGS[num].EP_STATUS);
2155
2156         /* Interrupt Clear */
2157         _nbu2ss_writel(&udc->p_regs->EP_REGS[num].EP_STATUS, ~(u32)status);
2158
2159         if (list_empty(&ep->queue))
2160                 req = NULL;
2161         else
2162                 req = list_entry(ep->queue.next, struct nbu2ss_req, queue);
2163
2164         if (req == NULL) {
2165                 /* pr_warn("=== %s(%d) req == NULL\n", __func__, epnum); */
2166                 return;
2167         }
2168
2169         if (status & EPn_OUT_END_INT) {
2170                 status &= ~EPn_OUT_INT;
2171                 _nbu2ss_epn_out_dma_int(udc, ep, req);
2172         }
2173
2174         if (status & EPn_OUT_INT)
2175                 _nbu2ss_epn_out_int(udc, ep, req);
2176
2177         if (status & EPn_IN_END_INT) {
2178                 status &= ~EPn_IN_INT;
2179                 _nbu2ss_epn_in_dma_int(udc, ep, req);
2180         }
2181
2182         if (status & EPn_IN_INT)
2183                 _nbu2ss_epn_in_int(udc, ep, req);
2184 }
2185
2186 /*-------------------------------------------------------------------------*/
2187 static inline void _nbu2ss_ep_int(struct nbu2ss_udc *udc, u32 epnum)
2188 {
2189         if (epnum == 0)
2190                 _nbu2ss_ep0_int(udc);
2191         else
2192                 _nbu2ss_epn_int(udc, epnum);
2193 }
2194
2195 /*-------------------------------------------------------------------------*/
2196 static void _nbu2ss_ep0_enable(struct nbu2ss_udc *udc)
2197 {
2198         _nbu2ss_bitset(&udc->p_regs->EP0_CONTROL, (EP0_AUTO | EP0_BCLR));
2199         _nbu2ss_writel(&udc->p_regs->EP0_INT_ENA, EP0_INT_EN_BIT);
2200 }
2201
2202
2203 /*-------------------------------------------------------------------------*/
2204 static int _nbu2ss_nuke(struct nbu2ss_udc *udc,
2205                         struct nbu2ss_ep *ep,
2206                         int status)
2207 {
2208         struct nbu2ss_req *req;
2209
2210         /* Endpoint Disable */
2211         _nbu2ss_epn_exit(udc, ep);
2212
2213         /* DMA Disable */
2214         _nbu2ss_ep_dma_exit(udc, ep);
2215
2216         if (list_empty(&ep->queue))
2217                 return 0;
2218
2219         /* called with irqs blocked */
2220         list_for_each_entry(req, &ep->queue, queue) {
2221                 _nbu2ss_ep_done(ep, req, status);
2222         }
2223
2224         return 0;
2225 }
2226
2227 /*-------------------------------------------------------------------------*/
2228 static void _nbu2ss_quiesce(struct nbu2ss_udc *udc)
2229 {
2230         struct nbu2ss_ep        *ep;
2231
2232         udc->gadget.speed = USB_SPEED_UNKNOWN;
2233
2234         _nbu2ss_nuke(udc, &udc->ep[0], -ESHUTDOWN);
2235
2236         /* Endpoint n */
2237         list_for_each_entry(ep, &udc->gadget.ep_list, ep.ep_list) {
2238                 _nbu2ss_nuke(udc, ep, -ESHUTDOWN);
2239         }
2240 }
2241
2242 /*-------------------------------------------------------------------------*/
2243 static int _nbu2ss_pullup(struct nbu2ss_udc *udc, int is_on)
2244 {
2245         u32     reg_dt;
2246
2247         if (udc->vbus_active == 0)
2248                 return -ESHUTDOWN;
2249
2250         if (is_on) {
2251                 /* D+ Pullup */
2252                 if (udc->driver) {
2253                         reg_dt = (_nbu2ss_readl(&udc->p_regs->USB_CONTROL)
2254                                 | PUE2) & ~(u32)CONNECTB;
2255
2256                         _nbu2ss_writel(&udc->p_regs->USB_CONTROL, reg_dt);
2257                 }
2258
2259         } else {
2260                 /* D+ Pulldown */
2261                 reg_dt = (_nbu2ss_readl(&udc->p_regs->USB_CONTROL) | CONNECTB)
2262                         & ~(u32)PUE2;
2263
2264                 _nbu2ss_writel(&udc->p_regs->USB_CONTROL, reg_dt);
2265                 udc->gadget.speed = USB_SPEED_UNKNOWN;
2266         }
2267
2268         return 0;
2269 }
2270
2271 /*-------------------------------------------------------------------------*/
2272 static void _nbu2ss_fifo_flush(struct nbu2ss_udc *udc, struct nbu2ss_ep *ep)
2273 {
2274         struct fc_regs  *p = udc->p_regs;
2275
2276         if (udc->vbus_active == 0)
2277                 return;
2278
2279         if (ep->epnum == 0) {
2280                 /* EP0 */
2281                 _nbu2ss_bitset(&p->EP0_CONTROL, EP0_BCLR);
2282
2283         } else {
2284                 /* EPn */
2285                 _nbu2ss_ep_dma_abort(udc, ep);
2286                 _nbu2ss_bitset(&p->EP_REGS[ep->epnum - 1].EP_CONTROL, EPn_BCLR);
2287         }
2288 }
2289
2290 /*-------------------------------------------------------------------------*/
2291 static int _nbu2ss_enable_controller(struct nbu2ss_udc *udc)
2292 {
2293         int     waitcnt = 0;
2294
2295         if (udc->udc_enabled)
2296                 return 0;
2297
2298         /*
2299                 Reset
2300         */
2301         _nbu2ss_bitset(&udc->p_regs->EPCTR, (DIRPD | EPC_RST));
2302         udelay(EPC_RST_DISABLE_TIME);   /* 1us wait */
2303
2304         _nbu2ss_bitclr(&udc->p_regs->EPCTR, DIRPD);
2305         mdelay(EPC_DIRPD_DISABLE_TIME); /* 1ms wait */
2306
2307         _nbu2ss_bitclr(&udc->p_regs->EPCTR, EPC_RST);
2308
2309         _nbu2ss_writel(&udc->p_regs->AHBSCTR, WAIT_MODE);
2310
2311                 _nbu2ss_writel(&udc->p_regs->AHBMCTR,
2312                         HBUSREQ_MODE | HTRANS_MODE | WBURST_TYPE);
2313
2314         while (!(_nbu2ss_readl(&udc->p_regs->EPCTR) & PLL_LOCK)) {
2315                 waitcnt++;
2316                 udelay(1);      /* 1us wait */
2317                 if (waitcnt == EPC_PLL_LOCK_COUNT) {
2318                         dev_err(udc->dev, "*** Reset Cancel failed\n");
2319                         return -EINVAL;
2320                 }
2321         }
2322
2323                 _nbu2ss_bitset(&udc->p_regs->UTMI_CHARACTER_1, USB_SQUSET);
2324
2325         _nbu2ss_bitset(&udc->p_regs->USB_CONTROL, (INT_SEL | SOF_RCV));
2326
2327         /* EP0 */
2328         _nbu2ss_ep0_enable(udc);
2329
2330         /* USB Interrupt Enable */
2331         _nbu2ss_bitset(&udc->p_regs->USB_INT_ENA, USB_INT_EN_BIT);
2332
2333         udc->udc_enabled = TRUE;
2334
2335         return 0;
2336 }
2337
2338
2339 /*-------------------------------------------------------------------------*/
2340 static void _nbu2ss_reset_controller(struct nbu2ss_udc *udc)
2341 {
2342         _nbu2ss_bitset(&udc->p_regs->EPCTR, EPC_RST);
2343         _nbu2ss_bitclr(&udc->p_regs->EPCTR, EPC_RST);
2344 }
2345
2346 /*-------------------------------------------------------------------------*/
2347 static void _nbu2ss_disable_controller(struct nbu2ss_udc *udc)
2348 {
2349         if (udc->udc_enabled) {
2350                 udc->udc_enabled = FALSE;
2351                 _nbu2ss_reset_controller(udc);
2352                 _nbu2ss_bitset(&udc->p_regs->EPCTR, (DIRPD | EPC_RST));
2353         }
2354 }
2355
2356 /*-------------------------------------------------------------------------*/
2357 static inline void _nbu2ss_check_vbus(struct nbu2ss_udc *udc)
2358 {
2359         int     nret;
2360         u32     reg_dt;
2361
2362         /* chattering */
2363         mdelay(VBUS_CHATTERING_MDELAY);         /* wait (ms) */
2364
2365         /* VBUS ON Check*/
2366         reg_dt = gpio_get_value(VBUS_VALUE);
2367         if (reg_dt == 0) {
2368
2369                 udc->linux_suspended = 0;
2370
2371                 _nbu2ss_reset_controller(udc);
2372                 dev_info(udc->dev, " ----- VBUS OFF\n");
2373
2374                 if (udc->vbus_active == 1) {
2375                         /* VBUS OFF */
2376                         udc->vbus_active = 0;
2377                         if (udc->usb_suspended) {
2378                                 udc->usb_suspended = 0;
2379                                 /* _nbu2ss_reset_controller(udc); */
2380                         }
2381                         udc->devstate = USB_STATE_NOTATTACHED;
2382
2383                         _nbu2ss_quiesce(udc);
2384                         if (udc->driver) {
2385                                 spin_unlock(&udc->lock);
2386                                 udc->driver->disconnect(&udc->gadget);
2387                                 spin_lock(&udc->lock);
2388                         }
2389
2390                         _nbu2ss_disable_controller(udc);
2391                 }
2392         } else {
2393                 mdelay(5);              /* wait (5ms) */
2394                 reg_dt = gpio_get_value(VBUS_VALUE);
2395                 if (reg_dt == 0)
2396                         return;
2397
2398                 dev_info(udc->dev, " ----- VBUS ON\n");
2399
2400                 if (udc->linux_suspended)
2401                         return;
2402
2403                 if (udc->vbus_active == 0) {
2404                         /* VBUS ON */
2405                         udc->vbus_active = 1;
2406                         udc->devstate = USB_STATE_POWERED;
2407
2408                         nret = _nbu2ss_enable_controller(udc);
2409                         if (nret < 0) {
2410                                 _nbu2ss_disable_controller(udc);
2411                                 udc->vbus_active = 0;
2412                                 return;
2413                         }
2414
2415                         _nbu2ss_pullup(udc, 1);
2416
2417 #ifdef UDC_DEBUG_DUMP
2418                         _nbu2ss_dump_register(udc);
2419 #endif /* UDC_DEBUG_DUMP */
2420
2421                 } else {
2422                         if (udc->devstate == USB_STATE_POWERED)
2423                                 _nbu2ss_pullup(udc, 1);
2424                 }
2425         }
2426 }
2427
2428 /*-------------------------------------------------------------------------*/
2429 static inline void _nbu2ss_int_bus_reset(struct nbu2ss_udc *udc)
2430 {
2431         udc->devstate           = USB_STATE_DEFAULT;
2432         udc->remote_wakeup      = 0;
2433
2434         _nbu2ss_quiesce(udc);
2435
2436         udc->ep0state = EP0_IDLE;
2437 }
2438
2439 /*-------------------------------------------------------------------------*/
2440 static inline void _nbu2ss_int_usb_resume(struct nbu2ss_udc *udc)
2441 {
2442         if (udc->usb_suspended == 1) {
2443                 udc->usb_suspended = 0;
2444                 if (udc->driver && udc->driver->resume) {
2445                         spin_unlock(&udc->lock);
2446                         udc->driver->resume(&udc->gadget);
2447                         spin_lock(&udc->lock);
2448                 }
2449         }
2450 }
2451
2452 /*-------------------------------------------------------------------------*/
2453 static inline void _nbu2ss_int_usb_suspend(struct nbu2ss_udc *udc)
2454 {
2455         u32     reg_dt;
2456
2457         if (udc->usb_suspended == 0) {
2458                 reg_dt = gpio_get_value(VBUS_VALUE);
2459
2460                 if (reg_dt == 0)
2461                         return;
2462
2463                 udc->usb_suspended = 1;
2464                 if (udc->driver && udc->driver->suspend) {
2465                         spin_unlock(&udc->lock);
2466                         udc->driver->suspend(&udc->gadget);
2467                         spin_lock(&udc->lock);
2468                 }
2469
2470                 _nbu2ss_bitset(&udc->p_regs->USB_CONTROL, SUSPEND);
2471         }
2472 }
2473
2474 /*-------------------------------------------------------------------------*/
2475 /* VBUS (GPIO153) Interrupt */
2476 static irqreturn_t _nbu2ss_vbus_irq(int irq, void *_udc)
2477 {
2478         struct nbu2ss_udc       *udc = (struct nbu2ss_udc *)_udc;
2479
2480         spin_lock(&udc->lock);
2481         _nbu2ss_check_vbus(udc);
2482         spin_unlock(&udc->lock);
2483
2484         return IRQ_HANDLED;
2485 }
2486
2487 /*-------------------------------------------------------------------------*/
2488 /* Interrupt (udc) */
2489 static irqreturn_t _nbu2ss_udc_irq(int irq, void *_udc)
2490 {
2491         u8      suspend_flag = 0;
2492         u32     status;
2493         u32     epnum, int_bit;
2494
2495         struct nbu2ss_udc       *udc = (struct nbu2ss_udc *)_udc;
2496         struct fc_regs  *preg = udc->p_regs;
2497
2498         if (gpio_get_value(VBUS_VALUE) == 0) {
2499                 _nbu2ss_writel(&preg->USB_INT_STA, ~USB_INT_STA_RW);
2500                 _nbu2ss_writel(&preg->USB_INT_ENA, 0);
2501                 return IRQ_HANDLED;
2502         }
2503
2504         spin_lock(&udc->lock);
2505
2506         for (;;) {
2507                 if (gpio_get_value(VBUS_VALUE) == 0) {
2508                         _nbu2ss_writel(&preg->USB_INT_STA, ~USB_INT_STA_RW);
2509                         _nbu2ss_writel(&preg->USB_INT_ENA, 0);
2510                         status = 0;
2511                 } else
2512                         status = _nbu2ss_readl(&preg->USB_INT_STA);
2513
2514                 if (status == 0)
2515                         break;
2516
2517                 _nbu2ss_writel(&preg->USB_INT_STA, ~(status & USB_INT_STA_RW));
2518
2519                 if (status & USB_RST_INT) {
2520                         /* USB Reset */
2521                         _nbu2ss_int_bus_reset(udc);
2522                 }
2523
2524                 if (status & RSUM_INT) {
2525                         /* Resume */
2526                         _nbu2ss_int_usb_resume(udc);
2527                 }
2528
2529                 if (status & SPND_INT) {
2530                         /* Suspend */
2531                         suspend_flag = 1;
2532                 }
2533
2534                 if (status & EPn_INT) {
2535                         /* EP INT */
2536                         int_bit = status >> 8;
2537
2538                         for (epnum = 0; epnum < NUM_ENDPOINTS; epnum++) {
2539
2540                                 if (0x01 & int_bit)
2541                                         _nbu2ss_ep_int(udc, epnum);
2542
2543                                 int_bit >>= 1;
2544
2545                                 if (int_bit == 0)
2546                                         break;
2547                         }
2548                 }
2549         }
2550
2551         if (suspend_flag)
2552                 _nbu2ss_int_usb_suspend(udc);
2553
2554         spin_unlock(&udc->lock);
2555
2556         return IRQ_HANDLED;
2557 }
2558
2559 /*-------------------------------------------------------------------------*/
2560 /* usb_ep_ops */
2561 static int nbu2ss_ep_enable(
2562         struct usb_ep *_ep,
2563         const struct usb_endpoint_descriptor *desc)
2564 {
2565         u8              ep_type;
2566         unsigned long   flags;
2567
2568         struct nbu2ss_ep        *ep;
2569         struct nbu2ss_udc       *udc;
2570
2571         if ((_ep == NULL) || (desc == NULL)) {
2572                 pr_err(" *** %s, bad param\n", __func__);
2573                 return -EINVAL;
2574         }
2575
2576         ep = container_of(_ep, struct nbu2ss_ep, ep);
2577         if ((ep == NULL) || (ep->udc == NULL)) {
2578                 pr_err(" *** %s, ep == NULL !!\n", __func__);
2579                 return -EINVAL;
2580         }
2581
2582         ep_type = usb_endpoint_type(desc);
2583         if ((ep_type == USB_ENDPOINT_XFER_CONTROL)
2584                 || (ep_type == USB_ENDPOINT_XFER_ISOC)) {
2585
2586                 pr_err(" *** %s, bat bmAttributes\n", __func__);
2587                 return -EINVAL;
2588         }
2589
2590         udc = ep->udc;
2591         if (udc->vbus_active == 0)
2592                 return -ESHUTDOWN;
2593
2594         if ((udc->driver == NULL)
2595                 || (udc->gadget.speed == USB_SPEED_UNKNOWN)) {
2596
2597                 dev_err(ep->udc->dev, " *** %s, udc !!\n", __func__);
2598                 return -ESHUTDOWN;
2599         }
2600
2601         spin_lock_irqsave(&udc->lock, flags);
2602
2603         ep->desc = desc;
2604         ep->epnum = usb_endpoint_num(desc);
2605         ep->direct = desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK;
2606         ep->ep_type = ep_type;
2607         ep->wedged = 0;
2608         ep->halted = FALSE;
2609         ep->stalled = FALSE;
2610
2611         ep->ep.maxpacket = le16_to_cpu(desc->wMaxPacketSize);
2612
2613         /* DMA setting */
2614         _nbu2ss_ep_dma_init(udc, ep);
2615
2616         /* Endpoint setting */
2617         _nbu2ss_ep_init(udc, ep);
2618
2619         spin_unlock_irqrestore(&udc->lock, flags);
2620
2621         return 0;
2622 }
2623
2624 /*-------------------------------------------------------------------------*/
2625 static int nbu2ss_ep_disable(struct usb_ep *_ep)
2626 {
2627         struct nbu2ss_ep        *ep;
2628         struct nbu2ss_udc       *udc;
2629         unsigned long           flags;
2630
2631         if (_ep == NULL) {
2632                 pr_err(" *** %s, bad param\n", __func__);
2633                 return -EINVAL;
2634         }
2635
2636         ep = container_of(_ep, struct nbu2ss_ep, ep);
2637         if ((ep == NULL) || (ep->udc == NULL)) {
2638                 pr_err("udc: *** %s, ep == NULL !!\n", __func__);
2639                 return -EINVAL;
2640         }
2641
2642         udc = ep->udc;
2643         if (udc->vbus_active == 0)
2644                 return -ESHUTDOWN;
2645
2646         spin_lock_irqsave(&udc->lock, flags);
2647         _nbu2ss_nuke(udc, ep, -EINPROGRESS);            /* dequeue request */
2648         spin_unlock_irqrestore(&udc->lock, flags);
2649
2650         return 0;
2651 }
2652
2653 /*-------------------------------------------------------------------------*/
2654 static struct usb_request *nbu2ss_ep_alloc_request(
2655         struct usb_ep *ep,
2656         gfp_t gfp_flags)
2657 {
2658         struct nbu2ss_req *req;
2659
2660         req = kzalloc(sizeof(*req), gfp_flags);
2661         if (!req)
2662                 return 0;
2663
2664 #ifdef USE_DMA
2665         req->req.dma = DMA_ADDR_INVALID;
2666 #endif
2667         INIT_LIST_HEAD(&req->queue);
2668
2669         return &req->req;
2670 }
2671
2672 /*-------------------------------------------------------------------------*/
2673 static void nbu2ss_ep_free_request(
2674         struct usb_ep *_ep,
2675         struct usb_request *_req)
2676 {
2677         struct nbu2ss_req *req;
2678
2679         if (_req != NULL) {
2680                 req = container_of(_req, struct nbu2ss_req, req);
2681
2682                 kfree(req);
2683         }
2684 }
2685
2686 /*-------------------------------------------------------------------------*/
2687 static int nbu2ss_ep_queue(
2688         struct usb_ep *_ep,
2689         struct usb_request *_req,
2690         gfp_t gfp_flags)
2691 {
2692         struct nbu2ss_req       *req;
2693         struct nbu2ss_ep        *ep;
2694         struct nbu2ss_udc       *udc;
2695         unsigned long           flags;
2696         bool                    bflag;
2697         int                     result = -EINVAL;
2698
2699         /* catch various bogus parameters */
2700         if ((_ep == NULL) || (_req == NULL)) {
2701                 if (_ep == NULL)
2702                         pr_err("udc: %s --- _ep == NULL\n", __func__);
2703
2704                 if (_req == NULL)
2705                         pr_err("udc: %s --- _req == NULL\n", __func__);
2706
2707                 return -EINVAL;
2708         }
2709
2710         req = container_of(_req, struct nbu2ss_req, req);
2711         if (unlikely
2712             (!_req->complete || !_req->buf
2713              || !list_empty(&req->queue))) {
2714
2715                 if (!_req->complete)
2716                         pr_err("udc: %s --- !_req->complete\n", __func__);
2717
2718                 if (!_req->buf)
2719                         pr_err("udc:%s --- !_req->buf\n", __func__);
2720
2721                 if (!list_empty(&req->queue))
2722                         pr_err("%s --- !list_empty(&req->queue)\n", __func__);
2723
2724                 return -EINVAL;
2725         }
2726
2727         ep = container_of(_ep, struct nbu2ss_ep, ep);
2728         udc = ep->udc;
2729
2730         if (udc->vbus_active == 0) {
2731                 dev_info(udc->dev, "Can't ep_queue (VBUS OFF)\n");
2732                 return -ESHUTDOWN;
2733         }
2734
2735         if (unlikely(!udc->driver)) {
2736                 dev_err(udc->dev, "%s, bogus device state %p\n", __func__,
2737                                 udc->driver);
2738                 return -ESHUTDOWN;
2739         }
2740
2741         spin_lock_irqsave(&udc->lock, flags);
2742
2743 #ifdef USE_DMA
2744         if ((u32)req->req.buf & 0x3)
2745                 req->unaligned = TRUE;
2746         else
2747                 req->unaligned = FALSE;
2748
2749         if (req->unaligned) {
2750                 if (ep->virt_buf == NULL)
2751                         ep->virt_buf = (u8 *)dma_alloc_coherent(
2752                                 NULL, PAGE_SIZE,
2753                                 &ep->phys_buf, GFP_ATOMIC | GFP_DMA);
2754                 if (ep->epnum > 0)  {
2755                         if (ep->direct == USB_DIR_IN)
2756                                 memcpy(ep->virt_buf, req->req.buf,
2757                                         req->req.length);
2758                 }
2759         }
2760
2761         if ((ep->epnum > 0) && (ep->direct == USB_DIR_OUT) &&
2762                         (req->req.dma != 0))
2763                 _nbu2ss_dma_map_single(udc, ep, req, USB_DIR_OUT);
2764 #endif
2765
2766         _req->status = -EINPROGRESS;
2767         _req->actual = 0;
2768
2769         bflag = list_empty(&ep->queue);
2770         list_add_tail(&req->queue, &ep->queue);
2771
2772         if ((bflag != FALSE) && (ep->stalled == FALSE)) {
2773
2774                 result = _nbu2ss_start_transfer(udc, ep, req, FALSE);
2775                 if (result < 0) {
2776                         dev_err(udc->dev, " *** %s, result = %d\n", __func__,
2777                                         result);
2778                         list_del(&req->queue);
2779                 } else if ((ep->epnum > 0) && (ep->direct == USB_DIR_OUT)) {
2780 #ifdef USE_DMA
2781                         if (req->req.length < 4 &&
2782                                 req->req.length == req->req.actual)
2783 #else
2784                         if (req->req.length == req->req.actual)
2785 #endif
2786                                 _nbu2ss_ep_done(ep, req, result);
2787                 }
2788         }
2789
2790         spin_unlock_irqrestore(&udc->lock, flags);
2791
2792         return 0;
2793 }
2794
2795 /*-------------------------------------------------------------------------*/
2796 static int nbu2ss_ep_dequeue(
2797         struct usb_ep *_ep,
2798         struct usb_request *_req)
2799 {
2800         struct nbu2ss_req       *req;
2801         struct nbu2ss_ep        *ep;
2802         struct nbu2ss_udc       *udc;
2803         unsigned long flags;
2804
2805         /* catch various bogus parameters */
2806         if ((_ep == NULL) || (_req == NULL)) {
2807                 /* pr_err("%s, bad param(1)\n", __func__); */
2808                 return -EINVAL;
2809         }
2810
2811         ep = container_of(_ep, struct nbu2ss_ep, ep);
2812         if (!ep) {
2813                 pr_err("%s, ep == NULL !!\n", __func__);
2814                 return -EINVAL;
2815         }
2816
2817         udc = ep->udc;
2818         if (udc == NULL)
2819                 return -EINVAL;
2820
2821         spin_lock_irqsave(&udc->lock, flags);
2822
2823         /* make sure it's actually queued on this endpoint */
2824         list_for_each_entry(req, &ep->queue, queue) {
2825                 if (&req->req == _req)
2826                         break;
2827         }
2828         if (&req->req != _req) {
2829                 spin_unlock_irqrestore(&udc->lock, flags);
2830                 pr_debug("%s no queue(EINVAL)\n", __func__);
2831                 return -EINVAL;
2832         }
2833
2834         _nbu2ss_ep_done(ep, req, -ECONNRESET);
2835
2836         spin_unlock_irqrestore(&udc->lock, flags);
2837
2838         return 0;
2839 }
2840
2841 /*-------------------------------------------------------------------------*/
2842 static int nbu2ss_ep_set_halt(struct usb_ep *_ep, int value)
2843 {
2844         u8              ep_adrs;
2845         unsigned long   flags;
2846
2847         struct nbu2ss_ep        *ep;
2848         struct nbu2ss_udc       *udc;
2849
2850         if (!_ep) {
2851                 pr_err("%s, bad param\n", __func__);
2852                 return -EINVAL;
2853         }
2854
2855         ep = container_of(_ep, struct nbu2ss_ep, ep);
2856         if (!ep) {
2857                 pr_err("%s, bad ep\n", __func__);
2858                 return -EINVAL;
2859         }
2860
2861         udc = ep->udc;
2862         if (!udc) {
2863                 dev_err(ep->udc->dev, " *** %s, bad udc\n", __func__);
2864                 return -EINVAL;
2865         }
2866
2867         spin_lock_irqsave(&udc->lock, flags);
2868
2869         ep_adrs = ep->epnum | ep->direct;
2870         if (value == 0) {
2871                 _nbu2ss_set_endpoint_stall(udc, ep_adrs, value);
2872                 ep->stalled = FALSE;
2873         } else {
2874                 if (list_empty(&ep->queue))
2875                         _nbu2ss_epn_set_stall(udc, ep);
2876                 else
2877                         ep->stalled = TRUE;
2878         }
2879
2880         if (value == 0)
2881                 ep->wedged = 0;
2882
2883         spin_unlock_irqrestore(&udc->lock, flags);
2884
2885         return 0;
2886 }
2887
2888 static int nbu2ss_ep_set_wedge(struct usb_ep *_ep)
2889 {
2890         return nbu2ss_ep_set_halt(_ep, 1);
2891 }
2892
2893 /*-------------------------------------------------------------------------*/
2894 static int nbu2ss_ep_fifo_status(struct usb_ep *_ep)
2895 {
2896         u32             data;
2897         struct nbu2ss_ep        *ep;
2898         struct nbu2ss_udc       *udc;
2899         unsigned long           flags;
2900         struct fc_regs          *preg;
2901
2902         if (!_ep) {
2903                 pr_err("%s, bad param\n", __func__);
2904                 return -EINVAL;
2905         }
2906
2907         ep = container_of(_ep, struct nbu2ss_ep, ep);
2908         if (!ep) {
2909                 pr_err("%s, bad ep\n", __func__);
2910                 return -EINVAL;
2911         }
2912
2913         udc = ep->udc;
2914         if (!udc) {
2915                 dev_err(ep->udc->dev, "%s, bad udc\n", __func__);
2916                 return -EINVAL;
2917         }
2918
2919         preg = udc->p_regs;
2920
2921         data = gpio_get_value(VBUS_VALUE);
2922         if (data == 0)
2923                 return -EINVAL;
2924
2925         spin_lock_irqsave(&udc->lock, flags);
2926
2927         if (ep->epnum == 0) {
2928                 data = _nbu2ss_readl(&preg->EP0_LENGTH) & EP0_LDATA;
2929
2930         } else {
2931                 data = _nbu2ss_readl(&preg->EP_REGS[ep->epnum-1].EP_LEN_DCNT)
2932                         & EPn_LDATA;
2933         }
2934
2935         spin_unlock_irqrestore(&udc->lock, flags);
2936
2937         return 0;
2938 }
2939
2940 /*-------------------------------------------------------------------------*/
2941 static void  nbu2ss_ep_fifo_flush(struct usb_ep *_ep)
2942 {
2943         u32                     data;
2944         struct nbu2ss_ep        *ep;
2945         struct nbu2ss_udc       *udc;
2946         unsigned long           flags;
2947
2948         if (!_ep) {
2949                 pr_err("udc: %s, bad param\n", __func__);
2950                 return;
2951         }
2952
2953         ep = container_of(_ep, struct nbu2ss_ep, ep);
2954         if (!ep) {
2955                 pr_err("udc: %s, bad ep\n", __func__);
2956                 return;
2957         }
2958
2959         udc = ep->udc;
2960         if (!udc) {
2961                 dev_err(ep->udc->dev, "%s, bad udc\n", __func__);
2962                 return;
2963         }
2964
2965         data = gpio_get_value(VBUS_VALUE);
2966         if (data == 0)
2967                 return;
2968
2969         spin_lock_irqsave(&udc->lock, flags);
2970         _nbu2ss_fifo_flush(udc, ep);
2971         spin_unlock_irqrestore(&udc->lock, flags);
2972 }
2973
2974 /*-------------------------------------------------------------------------*/
2975 static struct usb_ep_ops nbu2ss_ep_ops = {
2976         .enable         = nbu2ss_ep_enable,
2977         .disable        = nbu2ss_ep_disable,
2978
2979         .alloc_request  = nbu2ss_ep_alloc_request,
2980         .free_request   = nbu2ss_ep_free_request,
2981
2982         .queue          = nbu2ss_ep_queue,
2983         .dequeue        = nbu2ss_ep_dequeue,
2984
2985         .set_halt       = nbu2ss_ep_set_halt,
2986         .set_wedge      = nbu2ss_ep_set_wedge,
2987
2988         .fifo_status    = nbu2ss_ep_fifo_status,
2989         .fifo_flush     = nbu2ss_ep_fifo_flush,
2990 };
2991
2992
2993 /*-------------------------------------------------------------------------*/
2994 /* usb_gadget_ops */
2995
2996 /*-------------------------------------------------------------------------*/
2997 static int nbu2ss_gad_get_frame(struct usb_gadget *pgadget)
2998 {
2999         u32                     data;
3000         struct nbu2ss_udc       *udc;
3001
3002         if (pgadget == NULL) {
3003                 pr_err("udc: %s, bad param\n", __func__);
3004                 return -EINVAL;
3005         }
3006
3007         udc = container_of(pgadget, struct nbu2ss_udc, gadget);
3008         if (udc == NULL) {
3009                 dev_err(&pgadget->dev, "%s, udc == NULL\n", __func__);
3010                 return -EINVAL;
3011         }
3012
3013         data = gpio_get_value(VBUS_VALUE);
3014         if (data == 0)
3015                 return -EINVAL;
3016
3017         data = _nbu2ss_readl(&udc->p_regs->USB_ADDRESS) & FRAME;
3018
3019         return data;
3020 }
3021
3022 /*-------------------------------------------------------------------------*/
3023 static int nbu2ss_gad_wakeup(struct usb_gadget *pgadget)
3024 {
3025         int     i;
3026         u32     data;
3027
3028         struct nbu2ss_udc       *udc;
3029
3030         if (pgadget == NULL) {
3031                 pr_err("%s, bad param\n", __func__);
3032                 return -EINVAL;
3033         }
3034
3035         udc = container_of(pgadget, struct nbu2ss_udc, gadget);
3036         if (udc == NULL) {
3037                 dev_err(&pgadget->dev, "%s, udc == NULL\n", __func__);
3038                 return -EINVAL;
3039         }
3040
3041         data = gpio_get_value(VBUS_VALUE);
3042         if (data == 0) {
3043                 dev_warn(&pgadget->dev, "VBUS LEVEL = %d\n", data);
3044                 return -EINVAL;
3045         }
3046
3047         _nbu2ss_bitset(&udc->p_regs->EPCTR, PLL_RESUME);
3048
3049         for (i = 0; i < EPC_PLL_LOCK_COUNT; i++) {
3050                 data = _nbu2ss_readl(&udc->p_regs->EPCTR);
3051
3052                 if (data & PLL_LOCK)
3053                         break;
3054         }
3055
3056         _nbu2ss_bitclr(&udc->p_regs->EPCTR, PLL_RESUME);
3057
3058         return 0;
3059 }
3060
3061 /*-------------------------------------------------------------------------*/
3062 static int nbu2ss_gad_set_selfpowered(struct usb_gadget *pgadget,
3063                                         int is_selfpowered)
3064 {
3065         struct nbu2ss_udc       *udc;
3066         unsigned long           flags;
3067
3068         if (pgadget == NULL) {
3069                 pr_err("%s, bad param\n", __func__);
3070                 return -EINVAL;
3071         }
3072
3073         udc = container_of(pgadget, struct nbu2ss_udc, gadget);
3074
3075         spin_lock_irqsave(&udc->lock, flags);
3076         pgadget->is_selfpowered = (is_selfpowered != 0);
3077         spin_unlock_irqrestore(&udc->lock, flags);
3078
3079         return 0;
3080 }
3081
3082 /*-------------------------------------------------------------------------*/
3083 static int nbu2ss_gad_vbus_session(struct usb_gadget *pgadget, int is_active)
3084 {
3085         return 0;
3086 }
3087
3088 /*-------------------------------------------------------------------------*/
3089 static int nbu2ss_gad_vbus_draw(struct usb_gadget *pgadget, unsigned mA)
3090 {
3091         struct nbu2ss_udc       *udc;
3092         unsigned long           flags;
3093
3094         if (pgadget == NULL) {
3095                 pr_err("%s, bad param\n", __func__);
3096                 return -EINVAL;
3097         }
3098
3099         udc = container_of(pgadget, struct nbu2ss_udc, gadget);
3100
3101         spin_lock_irqsave(&udc->lock, flags);
3102         udc->mA = mA;
3103         spin_unlock_irqrestore(&udc->lock, flags);
3104
3105         return 0;
3106 }
3107
3108 /*-------------------------------------------------------------------------*/
3109 static int nbu2ss_gad_pullup(struct usb_gadget *pgadget, int is_on)
3110 {
3111         struct nbu2ss_udc       *udc;
3112         unsigned long           flags;
3113
3114         if (pgadget == NULL) {
3115                 pr_err("%s, bad param\n", __func__);
3116                 return -EINVAL;
3117         }
3118
3119         udc = container_of(pgadget, struct nbu2ss_udc, gadget);
3120
3121         if (udc->driver == NULL) {
3122                 pr_warn("%s, Not Regist Driver\n", __func__);
3123                 return -EINVAL;
3124         }
3125
3126         if (udc->vbus_active == 0)
3127                 return -ESHUTDOWN;
3128
3129         spin_lock_irqsave(&udc->lock, flags);
3130         _nbu2ss_pullup(udc, is_on);
3131         spin_unlock_irqrestore(&udc->lock, flags);
3132
3133         return 0;
3134 }
3135
3136 /*-------------------------------------------------------------------------*/
3137 static int nbu2ss_gad_ioctl(
3138         struct usb_gadget *pgadget,
3139         unsigned code,
3140         unsigned long param)
3141 {
3142         return 0;
3143 }
3144
3145
3146 static const struct usb_gadget_ops nbu2ss_gadget_ops = {
3147         .get_frame              = nbu2ss_gad_get_frame,
3148         .wakeup                 = nbu2ss_gad_wakeup,
3149         .set_selfpowered        = nbu2ss_gad_set_selfpowered,
3150         .vbus_session           = nbu2ss_gad_vbus_session,
3151         .vbus_draw              = nbu2ss_gad_vbus_draw,
3152         .pullup                 = nbu2ss_gad_pullup,
3153         .ioctl                  = nbu2ss_gad_ioctl,
3154 };
3155
3156 static const struct {
3157         const char *name;
3158         const struct usb_ep_caps caps;
3159 } ep_info[NUM_ENDPOINTS] = {
3160 #define EP_INFO(_name, _caps) \
3161         { \
3162                 .name = _name, \
3163                 .caps = _caps, \
3164         }
3165
3166         EP_INFO("ep0",
3167                 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL, USB_EP_CAPS_DIR_ALL)),
3168         EP_INFO("ep1-bulk",
3169                 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_ALL)),
3170         EP_INFO("ep2-bulk",
3171                 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_ALL)),
3172         EP_INFO("ep3in-int",
3173                 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
3174         EP_INFO("ep4-iso",
3175                 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_ALL)),
3176         EP_INFO("ep5-iso",
3177                 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_ALL)),
3178         EP_INFO("ep6-bulk",
3179                 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_ALL)),
3180         EP_INFO("ep7-bulk",
3181                 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_ALL)),
3182         EP_INFO("ep8in-int",
3183                 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
3184         EP_INFO("ep9-iso",
3185                 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_ALL)),
3186         EP_INFO("epa-iso",
3187                 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_ALL)),
3188         EP_INFO("epb-bulk",
3189                 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_ALL)),
3190         EP_INFO("epc-bulk",
3191                 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_ALL)),
3192         EP_INFO("epdin-int",
3193                 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
3194
3195 #undef EP_INFO
3196 };
3197
3198 /*-------------------------------------------------------------------------*/
3199 static void __init nbu2ss_drv_ep_init(struct nbu2ss_udc *udc)
3200 {
3201         int     i;
3202
3203         INIT_LIST_HEAD(&udc->gadget.ep_list);
3204         udc->gadget.ep0 = &udc->ep[0].ep;
3205
3206         for (i = 0; i < NUM_ENDPOINTS; i++) {
3207                 struct nbu2ss_ep *ep = &udc->ep[i];
3208
3209                 ep->udc = udc;
3210                 ep->desc = NULL;
3211
3212                 ep->ep.driver_data = NULL;
3213                 ep->ep.name = ep_info[i].name;
3214                 ep->ep.caps = ep_info[i].caps;
3215                 ep->ep.ops = &nbu2ss_ep_ops;
3216
3217                 usb_ep_set_maxpacket_limit(&ep->ep,
3218                                 i == 0 ? EP0_PACKETSIZE : EP_PACKETSIZE);
3219
3220                 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
3221                 INIT_LIST_HEAD(&ep->queue);
3222         }
3223
3224         list_del_init(&udc->ep[0].ep.ep_list);
3225 }
3226
3227 /*-------------------------------------------------------------------------*/
3228 /* platform_driver */
3229 static int __init nbu2ss_drv_contest_init(
3230         struct platform_device *pdev,
3231         struct nbu2ss_udc *udc)
3232 {
3233         spin_lock_init(&udc->lock);
3234         udc->dev = &pdev->dev;
3235
3236         udc->gadget.is_selfpowered = 1;
3237         udc->devstate = USB_STATE_NOTATTACHED;
3238         udc->pdev = pdev;
3239         udc->mA = 0;
3240
3241         udc->pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
3242
3243         /* init Endpoint */
3244         nbu2ss_drv_ep_init(udc);
3245
3246         /* init Gadget */
3247         udc->gadget.ops = &nbu2ss_gadget_ops;
3248         udc->gadget.ep0 = &udc->ep[0].ep;
3249         udc->gadget.speed = USB_SPEED_UNKNOWN;
3250         udc->gadget.name = driver_name;
3251         /* udc->gadget.is_dualspeed = 1; */
3252
3253         device_initialize(&udc->gadget.dev);
3254
3255         dev_set_name(&udc->gadget.dev, "gadget");
3256         udc->gadget.dev.parent = &pdev->dev;
3257         udc->gadget.dev.dma_mask = pdev->dev.dma_mask;
3258
3259         return 0;
3260 }
3261
3262 /*
3263  *      probe - binds to the platform device
3264  */
3265 static int nbu2ss_drv_probe(struct platform_device *pdev)
3266 {
3267         int     status = -ENODEV;
3268         struct nbu2ss_udc       *udc;
3269         struct resource *r;
3270         int irq;
3271         void __iomem *mmio_base;
3272
3273         udc = &udc_controller;
3274         memset(udc, 0, sizeof(struct nbu2ss_udc));
3275
3276         platform_set_drvdata(pdev, udc);
3277
3278         /* require I/O memory and IRQ to be provided as resources */
3279         r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3280         mmio_base = devm_ioremap_resource(&pdev->dev, r);
3281         if (IS_ERR(mmio_base))
3282                 return PTR_ERR(mmio_base);
3283
3284         irq = platform_get_irq(pdev, 0);
3285         if (irq < 0) {
3286                 dev_err(&pdev->dev, "failed to get IRQ\n");
3287                 return irq;
3288         }
3289         status = devm_request_irq(&pdev->dev, irq, _nbu2ss_udc_irq,
3290                                   0, driver_name, udc);
3291
3292         /* IO Memory */
3293         udc->p_regs = (struct fc_regs *)mmio_base;
3294
3295         /* USB Function Controller Interrupt */
3296         if (status != 0) {
3297                 dev_err(udc->dev, "request_irq(USB_UDC_IRQ_1) failed\n");
3298                 goto cleanup1;
3299         }
3300
3301         /* Driver Initialization */
3302         status = nbu2ss_drv_contest_init(pdev, udc);
3303         if (status < 0) {
3304                 /* Error */
3305                 goto cleanup1;
3306         }
3307
3308         /* VBUS Interrupt */
3309         irq_set_irq_type(INT_VBUS, IRQ_TYPE_EDGE_BOTH);
3310         status = request_irq(INT_VBUS,
3311                                 _nbu2ss_vbus_irq,
3312                                 IRQF_SHARED,
3313                                 driver_name,
3314                                 udc);
3315
3316         if (status != 0) {
3317                 dev_err(udc->dev, "request_irq(INT_VBUS) failed\n");
3318                 goto cleanup1;
3319         }
3320
3321         return status;
3322
3323 cleanup1:
3324         return status;
3325 }
3326
3327 /*-------------------------------------------------------------------------*/
3328 static void nbu2ss_drv_shutdown(struct platform_device *pdev)
3329 {
3330         struct nbu2ss_udc       *udc;
3331
3332         udc = platform_get_drvdata(pdev);
3333         if (udc == NULL)
3334                 return;
3335
3336         _nbu2ss_disable_controller(udc);
3337 }
3338
3339 /*-------------------------------------------------------------------------*/
3340 static int __exit nbu2ss_drv_remove(struct platform_device *pdev)
3341 {
3342         struct nbu2ss_udc       *udc;
3343         struct nbu2ss_ep        *ep;
3344         int     i;
3345
3346         udc = &udc_controller;
3347
3348         for (i = 0; i < NUM_ENDPOINTS; i++) {
3349                 ep = &udc->ep[i];
3350                 if (ep->virt_buf)
3351                         dma_free_coherent(NULL, PAGE_SIZE,
3352                                 (void *)ep->virt_buf, ep->phys_buf);
3353         }
3354
3355         /* Interrupt Handler - Release */
3356         free_irq(INT_VBUS, udc);
3357
3358         return 0;
3359 }
3360
3361 /*-------------------------------------------------------------------------*/
3362 static int nbu2ss_drv_suspend(struct platform_device *pdev, pm_message_t state)
3363 {
3364         struct nbu2ss_udc       *udc;
3365
3366         udc = platform_get_drvdata(pdev);
3367         if (udc == NULL)
3368                 return 0;
3369
3370         if (udc->vbus_active) {
3371                 udc->vbus_active = 0;
3372                 udc->devstate = USB_STATE_NOTATTACHED;
3373                 udc->linux_suspended = 1;
3374
3375                 if (udc->usb_suspended) {
3376                         udc->usb_suspended = 0;
3377                         _nbu2ss_reset_controller(udc);
3378                 }
3379
3380                 _nbu2ss_quiesce(udc);
3381         }
3382         _nbu2ss_disable_controller(udc);
3383
3384         return 0;
3385 }
3386
3387 /*-------------------------------------------------------------------------*/
3388 static int nbu2ss_drv_resume(struct platform_device *pdev)
3389 {
3390         u32     data;
3391         struct nbu2ss_udc       *udc;
3392
3393         udc = platform_get_drvdata(pdev);
3394         if (udc == NULL)
3395                 return 0;
3396
3397         data = gpio_get_value(VBUS_VALUE);
3398         if (data) {
3399                 udc->vbus_active = 1;
3400                 udc->devstate = USB_STATE_POWERED;
3401                 _nbu2ss_enable_controller(udc);
3402                 _nbu2ss_pullup(udc, 1);
3403         }
3404
3405         udc->linux_suspended = 0;
3406
3407         return 0;
3408 }
3409
3410
3411 static struct platform_driver udc_driver = {
3412         .probe          = nbu2ss_drv_probe,
3413         .shutdown       = nbu2ss_drv_shutdown,
3414         .remove         = __exit_p(nbu2ss_drv_remove),
3415         .suspend        = nbu2ss_drv_suspend,
3416         .resume         = nbu2ss_drv_resume,
3417         .driver         = {
3418                 .name   = driver_name,
3419         },
3420 };
3421
3422 module_platform_driver(udc_driver);
3423
3424 MODULE_DESCRIPTION(DRIVER_DESC);
3425 MODULE_AUTHOR("Renesas Electronics Corporation");
3426 MODULE_LICENSE("GPL");
3427
3428