lin_gadget: use common linux/compat.h
[platform/kernel/u-boot.git] / drivers / usb / gadget / s3c_udc_otg.c
1 /*
2  * drivers/usb/gadget/s3c_udc_otg.c
3  * Samsung S3C on-chip full/high speed USB OTG 2.0 device controllers
4  *
5  * Copyright (C) 2008 for Samsung Electronics
6  *
7  * BSP Support for Samsung's UDC driver
8  * available at:
9  * git://git.kernel.org/pub/scm/linux/kernel/git/kki_ap/linux-2.6-samsung.git
10  *
11  * State machine bugfixes:
12  * Marek Szyprowski <m.szyprowski@samsung.com>
13  *
14  * Ported to u-boot:
15  * Marek Szyprowski <m.szyprowski@samsung.com>
16  * Lukasz Majewski <l.majewski@samsumg.com>
17  *
18  * This program is free software; you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation; either version 2 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
31  *
32  */
33
34 #include <common.h>
35 #include <asm/errno.h>
36 #include <linux/list.h>
37 #include <malloc.h>
38
39 #include <linux/usb/ch9.h>
40 #include <linux/usb/gadget.h>
41
42 #include <asm/byteorder.h>
43 #include <asm/unaligned.h>
44 #include <asm/io.h>
45
46 #include <asm/mach-types.h>
47 #include <asm/arch/gpio.h>
48
49 #include "regs-otg.h"
50 #include <usb/lin_gadget_compat.h>
51
52 /***********************************************************/
53
54 #define OTG_DMA_MODE            1
55
56 #undef DEBUG_S3C_UDC_SETUP
57 #undef DEBUG_S3C_UDC_EP0
58 #undef DEBUG_S3C_UDC_ISR
59 #undef DEBUG_S3C_UDC_OUT_EP
60 #undef DEBUG_S3C_UDC_IN_EP
61 #undef DEBUG_S3C_UDC
62
63 /* #define DEBUG_S3C_UDC_SETUP */
64 /* #define DEBUG_S3C_UDC_EP0 */
65 /* #define DEBUG_S3C_UDC_ISR */
66 /* #define DEBUG_S3C_UDC_OUT_EP */
67 /* #define DEBUG_S3C_UDC_IN_EP */
68 /* #define DEBUG_S3C_UDC */
69
70 #include <usb/s3c_udc.h>
71
72 #define EP0_CON         0
73 #define EP_MASK         0xF
74
75 static char *state_names[] = {
76         "WAIT_FOR_SETUP",
77         "DATA_STATE_XMIT",
78         "DATA_STATE_NEED_ZLP",
79         "WAIT_FOR_OUT_STATUS",
80         "DATA_STATE_RECV",
81         "WAIT_FOR_COMPLETE",
82         "WAIT_FOR_OUT_COMPLETE",
83         "WAIT_FOR_IN_COMPLETE",
84         "WAIT_FOR_NULL_COMPLETE",
85 };
86
87 #define DRIVER_DESC "S3C HS USB OTG Device Driver, (c) Samsung Electronics"
88 #define DRIVER_VERSION "15 March 2009"
89
90 struct s3c_udc  *the_controller;
91
92 static const char driver_name[] = "s3c-udc";
93 static const char driver_desc[] = DRIVER_DESC;
94 static const char ep0name[] = "ep0-control";
95
96 /* Max packet size*/
97 static unsigned int ep0_fifo_size = 64;
98 static unsigned int ep_fifo_size =  512;
99 static unsigned int ep_fifo_size2 = 1024;
100 static int reset_available = 1;
101
102 static struct usb_ctrlrequest *usb_ctrl;
103 static dma_addr_t usb_ctrl_dma_addr;
104
105 /*
106   Local declarations.
107 */
108 static int s3c_ep_enable(struct usb_ep *ep,
109                          const struct usb_endpoint_descriptor *);
110 static int s3c_ep_disable(struct usb_ep *ep);
111 static struct usb_request *s3c_alloc_request(struct usb_ep *ep,
112                                              gfp_t gfp_flags);
113 static void s3c_free_request(struct usb_ep *ep, struct usb_request *);
114
115 static int s3c_queue(struct usb_ep *ep, struct usb_request *, gfp_t gfp_flags);
116 static int s3c_dequeue(struct usb_ep *ep, struct usb_request *);
117 static int s3c_fifo_status(struct usb_ep *ep);
118 static void s3c_fifo_flush(struct usb_ep *ep);
119 static void s3c_ep0_read(struct s3c_udc *dev);
120 static void s3c_ep0_kick(struct s3c_udc *dev, struct s3c_ep *ep);
121 static void s3c_handle_ep0(struct s3c_udc *dev);
122 static int s3c_ep0_write(struct s3c_udc *dev);
123 static int write_fifo_ep0(struct s3c_ep *ep, struct s3c_request *req);
124 static void done(struct s3c_ep *ep, struct s3c_request *req, int status);
125 static void stop_activity(struct s3c_udc *dev,
126                           struct usb_gadget_driver *driver);
127 static int udc_enable(struct s3c_udc *dev);
128 static void udc_set_address(struct s3c_udc *dev, unsigned char address);
129 static void reconfig_usbd(void);
130 static void set_max_pktsize(struct s3c_udc *dev, enum usb_device_speed speed);
131 static void nuke(struct s3c_ep *ep, int status);
132 static int s3c_udc_set_halt(struct usb_ep *_ep, int value);
133 static void s3c_udc_set_nak(struct s3c_ep *ep);
134
135 static struct usb_ep_ops s3c_ep_ops = {
136         .enable = s3c_ep_enable,
137         .disable = s3c_ep_disable,
138
139         .alloc_request = s3c_alloc_request,
140         .free_request = s3c_free_request,
141
142         .queue = s3c_queue,
143         .dequeue = s3c_dequeue,
144
145         .set_halt = s3c_udc_set_halt,
146         .fifo_status = s3c_fifo_status,
147         .fifo_flush = s3c_fifo_flush,
148 };
149
150 #define create_proc_files() do {} while (0)
151 #define remove_proc_files() do {} while (0)
152
153 /***********************************************************/
154
155 void __iomem            *regs_otg;
156 struct s3c_usbotg_reg *reg;
157 struct s3c_usbotg_phy *phy;
158 static unsigned int usb_phy_ctrl;
159
160 void otg_phy_init(struct s3c_udc *dev)
161 {
162         dev->pdata->phy_control(1);
163
164         /*USB PHY0 Enable */
165         printf("USB PHY0 Enable\n");
166
167         /* Enable PHY */
168         writel(readl(usb_phy_ctrl) | USB_PHY_CTRL_EN0, usb_phy_ctrl);
169
170         if (dev->pdata->usb_flags == PHY0_SLEEP) /* C210 Universal */
171                 writel((readl(&phy->phypwr)
172                         &~(PHY_0_SLEEP | OTG_DISABLE_0 | ANALOG_PWRDOWN)
173                         &~FORCE_SUSPEND_0), &phy->phypwr);
174         else /* C110 GONI */
175                 writel((readl(&phy->phypwr) &~(OTG_DISABLE_0 | ANALOG_PWRDOWN)
176                         &~FORCE_SUSPEND_0), &phy->phypwr);
177
178         writel((readl(&phy->phyclk) &~(ID_PULLUP0 | COMMON_ON_N0)) |
179                CLK_SEL_24MHZ, &phy->phyclk); /* PLL 24Mhz */
180
181         writel((readl(&phy->rstcon) &~(LINK_SW_RST | PHYLNK_SW_RST))
182                | PHY_SW_RST0, &phy->rstcon);
183         udelay(10);
184         writel(readl(&phy->rstcon)
185                &~(PHY_SW_RST0 | LINK_SW_RST | PHYLNK_SW_RST), &phy->rstcon);
186         udelay(10);
187 }
188
189 void otg_phy_off(struct s3c_udc *dev)
190 {
191         /* reset controller just in case */
192         writel(PHY_SW_RST0, &phy->rstcon);
193         udelay(20);
194         writel(readl(&phy->phypwr) &~PHY_SW_RST0, &phy->rstcon);
195         udelay(20);
196
197         writel(readl(&phy->phypwr) | OTG_DISABLE_0 | ANALOG_PWRDOWN
198                | FORCE_SUSPEND_0, &phy->phypwr);
199
200         writel(readl(usb_phy_ctrl) &~USB_PHY_CTRL_EN0, usb_phy_ctrl);
201
202         writel((readl(&phy->phyclk) & ~(ID_PULLUP0 | COMMON_ON_N0)),
203               &phy->phyclk);
204
205         udelay(10000);
206
207         dev->pdata->phy_control(0);
208 }
209
210 /***********************************************************/
211
212 #include "s3c_udc_otg_xfer_dma.c"
213
214 /*
215  *      udc_disable - disable USB device controller
216  */
217 static void udc_disable(struct s3c_udc *dev)
218 {
219         DEBUG_SETUP("%s: %p\n", __func__, dev);
220
221         udc_set_address(dev, 0);
222
223         dev->ep0state = WAIT_FOR_SETUP;
224         dev->gadget.speed = USB_SPEED_UNKNOWN;
225         dev->usb_address = 0;
226
227         otg_phy_off(dev);
228 }
229
230 /*
231  *      udc_reinit - initialize software state
232  */
233 static void udc_reinit(struct s3c_udc *dev)
234 {
235         unsigned int i;
236
237         DEBUG_SETUP("%s: %p\n", __func__, dev);
238
239         /* device/ep0 records init */
240         INIT_LIST_HEAD(&dev->gadget.ep_list);
241         INIT_LIST_HEAD(&dev->gadget.ep0->ep_list);
242         dev->ep0state = WAIT_FOR_SETUP;
243
244         /* basic endpoint records init */
245         for (i = 0; i < S3C_MAX_ENDPOINTS; i++) {
246                 struct s3c_ep *ep = &dev->ep[i];
247
248                 if (i != 0)
249                         list_add_tail(&ep->ep.ep_list, &dev->gadget.ep_list);
250
251                 ep->desc = 0;
252                 ep->stopped = 0;
253                 INIT_LIST_HEAD(&ep->queue);
254                 ep->pio_irqs = 0;
255         }
256
257         /* the rest was statically initialized, and is read-only */
258 }
259
260 #define BYTES2MAXP(x)   (x / 8)
261 #define MAXP2BYTES(x)   (x * 8)
262
263 /* until it's enabled, this UDC should be completely invisible
264  * to any USB host.
265  */
266 static int udc_enable(struct s3c_udc *dev)
267 {
268         DEBUG_SETUP("%s: %p\n", __func__, dev);
269
270         otg_phy_init(dev);
271         reconfig_usbd();
272
273         DEBUG_SETUP("S3C USB 2.0 OTG Controller Core Initialized : 0x%x\n",
274                     readl(&reg->gintmsk));
275
276         dev->gadget.speed = USB_SPEED_UNKNOWN;
277
278         return 0;
279 }
280
281 /*
282   Register entry point for the peripheral controller driver.
283 */
284 int usb_gadget_register_driver(struct usb_gadget_driver *driver)
285 {
286         struct s3c_udc *dev = the_controller;
287         int retval = 0;
288         unsigned long flags;
289
290         DEBUG_SETUP("%s: %s\n", __func__, "no name");
291
292         if (!driver
293             || (driver->speed != USB_SPEED_FULL
294                 && driver->speed != USB_SPEED_HIGH)
295             || !driver->bind || !driver->disconnect || !driver->setup)
296                 return -EINVAL;
297         if (!dev)
298                 return -ENODEV;
299         if (dev->driver)
300                 return -EBUSY;
301
302         spin_lock_irqsave(&dev->lock, flags);
303         /* first hook up the driver ... */
304         dev->driver = driver;
305         spin_unlock_irqrestore(&dev->lock, flags);
306
307         if (retval) { /* TODO */
308                 printf("target device_add failed, error %d\n", retval);
309                 return retval;
310         }
311
312         retval = driver->bind(&dev->gadget);
313         if (retval) {
314                 DEBUG_SETUP("%s: bind to driver --> error %d\n",
315                             dev->gadget.name, retval);
316                 dev->driver = 0;
317                 return retval;
318         }
319
320         enable_irq(IRQ_OTG);
321
322         DEBUG_SETUP("Registered gadget driver %s\n", dev->gadget.name);
323         udc_enable(dev);
324
325         return 0;
326 }
327
328 /*
329  * Unregister entry point for the peripheral controller driver.
330  */
331 int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
332 {
333         struct s3c_udc *dev = the_controller;
334         unsigned long flags;
335
336         if (!dev)
337                 return -ENODEV;
338         if (!driver || driver != dev->driver)
339                 return -EINVAL;
340
341         spin_lock_irqsave(&dev->lock, flags);
342         dev->driver = 0;
343         stop_activity(dev, driver);
344         spin_unlock_irqrestore(&dev->lock, flags);
345
346         driver->unbind(&dev->gadget);
347
348         disable_irq(IRQ_OTG);
349
350         udc_disable(dev);
351         return 0;
352 }
353
354 /*
355  *      done - retire a request; caller blocked irqs
356  */
357 static void done(struct s3c_ep *ep, struct s3c_request *req, int status)
358 {
359         unsigned int stopped = ep->stopped;
360
361         debug("%s: %s %p, req = %p, stopped = %d\n",
362               __func__, ep->ep.name, ep, &req->req, stopped);
363
364         list_del_init(&req->queue);
365
366         if (likely(req->req.status == -EINPROGRESS))
367                 req->req.status = status;
368         else
369                 status = req->req.status;
370
371         if (status && status != -ESHUTDOWN) {
372                 debug("complete %s req %p stat %d len %u/%u\n",
373                       ep->ep.name, &req->req, status,
374                       req->req.actual, req->req.length);
375         }
376
377         /* don't modify queue heads during completion callback */
378         ep->stopped = 1;
379
380 #ifdef DEBUG_S3C_UDC
381         printf("calling complete callback\n");
382         {
383                 int i, len = req->req.length;
384
385                 printf("pkt[%d] = ", req->req.length);
386                 if (len > 64)
387                         len = 64;
388                 for (i = 0; i < len; i++) {
389                         printf("%02x", ((u8 *)req->req.buf)[i]);
390                         if ((i & 7) == 7)
391                                 printf(" ");
392                 }
393                 printf("\n");
394         }
395 #endif
396         spin_unlock(&ep->dev->lock);
397         req->req.complete(&ep->ep, &req->req);
398         spin_lock(&ep->dev->lock);
399
400         debug("callback completed\n");
401
402         ep->stopped = stopped;
403 }
404
405 /*
406  *      nuke - dequeue ALL requests
407  */
408 static void nuke(struct s3c_ep *ep, int status)
409 {
410         struct s3c_request *req;
411
412         debug("%s: %s %p\n", __func__, ep->ep.name, ep);
413
414         /* called with irqs blocked */
415         while (!list_empty(&ep->queue)) {
416                 req = list_entry(ep->queue.next, struct s3c_request, queue);
417                 done(ep, req, status);
418         }
419 }
420
421 static void stop_activity(struct s3c_udc *dev,
422                           struct usb_gadget_driver *driver)
423 {
424         int i;
425
426         /* don't disconnect drivers more than once */
427         if (dev->gadget.speed == USB_SPEED_UNKNOWN)
428                 driver = 0;
429         dev->gadget.speed = USB_SPEED_UNKNOWN;
430
431         /* prevent new request submissions, kill any outstanding requests  */
432         for (i = 0; i < S3C_MAX_ENDPOINTS; i++) {
433                 struct s3c_ep *ep = &dev->ep[i];
434                 ep->stopped = 1;
435                 nuke(ep, -ESHUTDOWN);
436         }
437
438         /* report disconnect; the driver is already quiesced */
439         if (driver) {
440                 spin_unlock(&dev->lock);
441                 driver->disconnect(&dev->gadget);
442                 spin_lock(&dev->lock);
443         }
444
445         /* re-init driver-visible data structures */
446         udc_reinit(dev);
447 }
448
449 static void reconfig_usbd(void)
450 {
451         /* 2. Soft-reset OTG Core and then unreset again. */
452         int i;
453         unsigned int uTemp = writel(CORE_SOFT_RESET, &reg->grstctl);
454
455         debug("Reseting OTG controller\n");
456
457         writel(0<<15            /* PHY Low Power Clock sel*/
458                 |1<<14          /* Non-Periodic TxFIFO Rewind Enable*/
459                 |0x5<<10        /* Turnaround time*/
460                 |0<<9 | 0<<8    /* [0:HNP disable,1:HNP enable][ 0:SRP disable*/
461                                 /* 1:SRP enable] H1= 1,1*/
462                 |0<<7           /* Ulpi DDR sel*/
463                 |0<<6           /* 0: high speed utmi+, 1: full speed serial*/
464                 |0<<4           /* 0: utmi+, 1:ulpi*/
465                 |1<<3           /* phy i/f  0:8bit, 1:16bit*/
466                 |0x7<<0,        /* HS/FS Timeout**/
467                 &reg->gusbcfg);
468
469         /* 3. Put the OTG device core in the disconnected state.*/
470         uTemp = readl(&reg->dctl);
471         uTemp |= SOFT_DISCONNECT;
472         writel(uTemp, &reg->dctl);
473
474         udelay(20);
475
476         /* 4. Make the OTG device core exit from the disconnected state.*/
477         uTemp = readl(&reg->dctl);
478         uTemp = uTemp & ~SOFT_DISCONNECT;
479         writel(uTemp, &reg->dctl);
480
481         /* 5. Configure OTG Core to initial settings of device mode.*/
482         /* [][1: full speed(30Mhz) 0:high speed]*/
483         writel(EP_MISS_CNT(1) | DEV_SPEED_HIGH_SPEED_20, &reg->dcfg);
484
485         mdelay(1);
486
487         /* 6. Unmask the core interrupts*/
488         writel(GINTMSK_INIT, &reg->gintmsk);
489
490         /* 7. Set NAK bit of EP0, EP1, EP2*/
491         writel(DEPCTL_EPDIS|DEPCTL_SNAK, &reg->out_endp[EP0_CON].doepctl);
492         writel(DEPCTL_EPDIS|DEPCTL_SNAK, &reg->in_endp[EP0_CON].diepctl);
493
494         for (i = 1; i < S3C_MAX_ENDPOINTS; i++) {
495                 writel(DEPCTL_EPDIS|DEPCTL_SNAK, &reg->out_endp[i].doepctl);
496                 writel(DEPCTL_EPDIS|DEPCTL_SNAK, &reg->in_endp[i].diepctl);
497         }
498
499         /* 8. Unmask EPO interrupts*/
500         writel(((1 << EP0_CON) << DAINT_OUT_BIT)
501                | (1 << EP0_CON), &reg->daintmsk);
502
503         /* 9. Unmask device OUT EP common interrupts*/
504         writel(DOEPMSK_INIT, &reg->doepmsk);
505
506         /* 10. Unmask device IN EP common interrupts*/
507         writel(DIEPMSK_INIT, &reg->diepmsk);
508
509         /* 11. Set Rx FIFO Size (in 32-bit words) */
510         writel(RX_FIFO_SIZE >> 2, &reg->grxfsiz);
511
512         /* 12. Set Non Periodic Tx FIFO Size */
513         writel((NPTX_FIFO_SIZE >> 2) << 16 | ((RX_FIFO_SIZE >> 2)) << 0,
514                &reg->gnptxfsiz);
515
516         for (i = 1; i < S3C_MAX_HW_ENDPOINTS; i++)
517                 writel((PTX_FIFO_SIZE >> 2) << 16 |
518                        ((RX_FIFO_SIZE + NPTX_FIFO_SIZE +
519                          PTX_FIFO_SIZE*(i-1)) >> 2) << 0,
520                        &reg->dieptxf[i-1]);
521
522         /* Flush the RX FIFO */
523         writel(RX_FIFO_FLUSH, &reg->grstctl);
524         while (readl(&reg->grstctl) & RX_FIFO_FLUSH)
525                 debug("%s: waiting for S3C_UDC_OTG_GRSTCTL\n", __func__);
526
527         /* Flush all the Tx FIFO's */
528         writel(TX_FIFO_FLUSH_ALL, &reg->grstctl);
529         writel(TX_FIFO_FLUSH_ALL | TX_FIFO_FLUSH, &reg->grstctl);
530         while (readl(&reg->grstctl) & TX_FIFO_FLUSH)
531                 debug("%s: waiting for S3C_UDC_OTG_GRSTCTL\n", __func__);
532
533         /* 13. Clear NAK bit of EP0, EP1, EP2*/
534         /* For Slave mode*/
535         /* EP0: Control OUT */
536         writel(DEPCTL_EPDIS | DEPCTL_CNAK,
537                &reg->out_endp[EP0_CON].doepctl);
538
539         /* 14. Initialize OTG Link Core.*/
540         writel(GAHBCFG_INIT, &reg->gahbcfg);
541 }
542
543 static void set_max_pktsize(struct s3c_udc *dev, enum usb_device_speed speed)
544 {
545         unsigned int ep_ctrl;
546         int i;
547
548         if (speed == USB_SPEED_HIGH) {
549                 ep0_fifo_size = 64;
550                 ep_fifo_size = 512;
551                 ep_fifo_size2 = 1024;
552                 dev->gadget.speed = USB_SPEED_HIGH;
553         } else {
554                 ep0_fifo_size = 64;
555                 ep_fifo_size = 64;
556                 ep_fifo_size2 = 64;
557                 dev->gadget.speed = USB_SPEED_FULL;
558         }
559
560         dev->ep[0].ep.maxpacket = ep0_fifo_size;
561         for (i = 1; i < S3C_MAX_ENDPOINTS; i++)
562                 dev->ep[i].ep.maxpacket = ep_fifo_size;
563
564         /* EP0 - Control IN (64 bytes)*/
565         ep_ctrl = readl(&reg->in_endp[EP0_CON].diepctl);
566         writel(ep_ctrl|(0<<0), &reg->in_endp[EP0_CON].diepctl);
567
568         /* EP0 - Control OUT (64 bytes)*/
569         ep_ctrl = readl(&reg->out_endp[EP0_CON].doepctl);
570         writel(ep_ctrl|(0<<0), &reg->out_endp[EP0_CON].doepctl);
571 }
572
573 static int s3c_ep_enable(struct usb_ep *_ep,
574                          const struct usb_endpoint_descriptor *desc)
575 {
576         struct s3c_ep *ep;
577         struct s3c_udc *dev;
578         unsigned long flags;
579
580         debug("%s: %p\n", __func__, _ep);
581
582         ep = container_of(_ep, struct s3c_ep, ep);
583         if (!_ep || !desc || ep->desc || _ep->name == ep0name
584             || desc->bDescriptorType != USB_DT_ENDPOINT
585             || ep->bEndpointAddress != desc->bEndpointAddress
586             || ep_maxpacket(ep) <
587             le16_to_cpu(get_unaligned(&desc->wMaxPacketSize))) {
588
589                 debug("%s: bad ep or descriptor\n", __func__);
590                 return -EINVAL;
591         }
592
593         /* xfer types must match, except that interrupt ~= bulk */
594         if (ep->bmAttributes != desc->bmAttributes
595             && ep->bmAttributes != USB_ENDPOINT_XFER_BULK
596             && desc->bmAttributes != USB_ENDPOINT_XFER_INT) {
597
598                 debug("%s: %s type mismatch\n", __func__, _ep->name);
599                 return -EINVAL;
600         }
601
602         /* hardware _could_ do smaller, but driver doesn't */
603         if ((desc->bmAttributes == USB_ENDPOINT_XFER_BULK
604              && le16_to_cpu(get_unaligned(&desc->wMaxPacketSize)) !=
605              ep_maxpacket(ep)) || !get_unaligned(&desc->wMaxPacketSize)) {
606
607                 debug("%s: bad %s maxpacket\n", __func__, _ep->name);
608                 return -ERANGE;
609         }
610
611         dev = ep->dev;
612         if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
613
614                 debug("%s: bogus device state\n", __func__);
615                 return -ESHUTDOWN;
616         }
617
618         ep->stopped = 0;
619         ep->desc = desc;
620         ep->pio_irqs = 0;
621         ep->ep.maxpacket = le16_to_cpu(get_unaligned(&desc->wMaxPacketSize));
622
623         /* Reset halt state */
624         s3c_udc_set_nak(ep);
625         s3c_udc_set_halt(_ep, 0);
626
627         spin_lock_irqsave(&ep->dev->lock, flags);
628         s3c_udc_ep_activate(ep);
629         spin_unlock_irqrestore(&ep->dev->lock, flags);
630
631         debug("%s: enabled %s, stopped = %d, maxpacket = %d\n",
632               __func__, _ep->name, ep->stopped, ep->ep.maxpacket);
633         return 0;
634 }
635
636 /*
637  * Disable EP
638  */
639 static int s3c_ep_disable(struct usb_ep *_ep)
640 {
641         struct s3c_ep *ep;
642         unsigned long flags;
643
644         debug("%s: %p\n", __func__, _ep);
645
646         ep = container_of(_ep, struct s3c_ep, ep);
647         if (!_ep || !ep->desc) {
648                 debug("%s: %s not enabled\n", __func__,
649                       _ep ? ep->ep.name : NULL);
650                 return -EINVAL;
651         }
652
653         spin_lock_irqsave(&ep->dev->lock, flags);
654
655         /* Nuke all pending requests */
656         nuke(ep, -ESHUTDOWN);
657
658         ep->desc = 0;
659         ep->stopped = 1;
660
661         spin_unlock_irqrestore(&ep->dev->lock, flags);
662
663         debug("%s: disabled %s\n", __func__, _ep->name);
664         return 0;
665 }
666
667 static struct usb_request *s3c_alloc_request(struct usb_ep *ep,
668                                              gfp_t gfp_flags)
669 {
670         struct s3c_request *req;
671
672         debug("%s: %s %p\n", __func__, ep->name, ep);
673
674         req = memalign(CONFIG_SYS_CACHELINE_SIZE, sizeof(*req));
675         if (!req)
676                 return 0;
677
678         memset(req, 0, sizeof *req);
679         INIT_LIST_HEAD(&req->queue);
680
681         return &req->req;
682 }
683
684 static void s3c_free_request(struct usb_ep *ep, struct usb_request *_req)
685 {
686         struct s3c_request *req;
687
688         debug("%s: %p\n", __func__, ep);
689
690         req = container_of(_req, struct s3c_request, req);
691         WARN_ON(!list_empty(&req->queue));
692         kfree(req);
693 }
694
695 /* dequeue JUST ONE request */
696 static int s3c_dequeue(struct usb_ep *_ep, struct usb_request *_req)
697 {
698         struct s3c_ep *ep;
699         struct s3c_request *req;
700         unsigned long flags;
701
702         debug("%s: %p\n", __func__, _ep);
703
704         ep = container_of(_ep, struct s3c_ep, ep);
705         if (!_ep || ep->ep.name == ep0name)
706                 return -EINVAL;
707
708         spin_lock_irqsave(&ep->dev->lock, flags);
709
710         /* make sure it's actually queued on this endpoint */
711         list_for_each_entry(req, &ep->queue, queue) {
712                 if (&req->req == _req)
713                         break;
714         }
715         if (&req->req != _req) {
716                 spin_unlock_irqrestore(&ep->dev->lock, flags);
717                 return -EINVAL;
718         }
719
720         done(ep, req, -ECONNRESET);
721
722         spin_unlock_irqrestore(&ep->dev->lock, flags);
723         return 0;
724 }
725
726 /*
727  * Return bytes in EP FIFO
728  */
729 static int s3c_fifo_status(struct usb_ep *_ep)
730 {
731         int count = 0;
732         struct s3c_ep *ep;
733
734         ep = container_of(_ep, struct s3c_ep, ep);
735         if (!_ep) {
736                 debug("%s: bad ep\n", __func__);
737                 return -ENODEV;
738         }
739
740         debug("%s: %d\n", __func__, ep_index(ep));
741
742         /* LPD can't report unclaimed bytes from IN fifos */
743         if (ep_is_in(ep))
744                 return -EOPNOTSUPP;
745
746         return count;
747 }
748
749 /*
750  * Flush EP FIFO
751  */
752 static void s3c_fifo_flush(struct usb_ep *_ep)
753 {
754         struct s3c_ep *ep;
755
756         ep = container_of(_ep, struct s3c_ep, ep);
757         if (unlikely(!_ep || (!ep->desc && ep->ep.name != ep0name))) {
758                 debug("%s: bad ep\n", __func__);
759                 return;
760         }
761
762         debug("%s: %d\n", __func__, ep_index(ep));
763 }
764
765 static const struct usb_gadget_ops s3c_udc_ops = {
766         /* current versions must always be self-powered */
767 };
768
769 static struct s3c_udc memory = {
770         .usb_address = 0,
771         .gadget = {
772                 .ops = &s3c_udc_ops,
773                 .ep0 = &memory.ep[0].ep,
774                 .name = driver_name,
775         },
776
777         /* control endpoint */
778         .ep[0] = {
779                 .ep = {
780                         .name = ep0name,
781                         .ops = &s3c_ep_ops,
782                         .maxpacket = EP0_FIFO_SIZE,
783                 },
784                 .dev = &memory,
785
786                 .bEndpointAddress = 0,
787                 .bmAttributes = 0,
788
789                 .ep_type = ep_control,
790         },
791
792         /* first group of endpoints */
793         .ep[1] = {
794                 .ep = {
795                         .name = "ep1in-bulk",
796                         .ops = &s3c_ep_ops,
797                         .maxpacket = EP_FIFO_SIZE,
798                 },
799                 .dev = &memory,
800
801                 .bEndpointAddress = USB_DIR_IN | 1,
802                 .bmAttributes = USB_ENDPOINT_XFER_BULK,
803
804                 .ep_type = ep_bulk_out,
805                 .fifo_num = 1,
806         },
807
808         .ep[2] = {
809                 .ep = {
810                         .name = "ep2out-bulk",
811                         .ops = &s3c_ep_ops,
812                         .maxpacket = EP_FIFO_SIZE,
813                 },
814                 .dev = &memory,
815
816                 .bEndpointAddress = USB_DIR_OUT | 2,
817                 .bmAttributes = USB_ENDPOINT_XFER_BULK,
818
819                 .ep_type = ep_bulk_in,
820                 .fifo_num = 2,
821         },
822
823         .ep[3] = {
824                 .ep = {
825                         .name = "ep3in-int",
826                         .ops = &s3c_ep_ops,
827                         .maxpacket = EP_FIFO_SIZE,
828                 },
829                 .dev = &memory,
830
831                 .bEndpointAddress = USB_DIR_IN | 3,
832                 .bmAttributes = USB_ENDPOINT_XFER_INT,
833
834                 .ep_type = ep_interrupt,
835                 .fifo_num = 3,
836         },
837 };
838
839 /*
840  *      probe - binds to the platform device
841  */
842
843 int s3c_udc_probe(struct s3c_plat_otg_data *pdata)
844 {
845         struct s3c_udc *dev = &memory;
846         int retval = 0, i;
847
848         debug("%s: %p\n", __func__, pdata);
849
850         dev->pdata = pdata;
851
852         phy = (struct s3c_usbotg_phy *)pdata->regs_phy;
853         reg = (struct s3c_usbotg_reg *)pdata->regs_otg;
854         usb_phy_ctrl = pdata->usb_phy_ctrl;
855
856         /* regs_otg = (void *)pdata->regs_otg; */
857
858         dev->gadget.is_dualspeed = 1;   /* Hack only*/
859         dev->gadget.is_otg = 0;
860         dev->gadget.is_a_peripheral = 0;
861         dev->gadget.b_hnp_enable = 0;
862         dev->gadget.a_hnp_support = 0;
863         dev->gadget.a_alt_hnp_support = 0;
864
865         the_controller = dev;
866
867         for (i = 0; i < S3C_MAX_ENDPOINTS+1; i++) {
868                 dev->dma_buf[i] = memalign(CONFIG_SYS_CACHELINE_SIZE,
869                                            DMA_BUFFER_SIZE);
870                 dev->dma_addr[i] = (dma_addr_t) dev->dma_buf[i];
871                 invalidate_dcache_range((unsigned long) dev->dma_buf[i],
872                                         (unsigned long) (dev->dma_buf[i]
873                                                          + DMA_BUFFER_SIZE));
874         }
875         usb_ctrl = dev->dma_buf[0];
876         usb_ctrl_dma_addr = dev->dma_addr[0];
877
878         udc_reinit(dev);
879
880         return retval;
881 }
882
883 int usb_gadget_handle_interrupts()
884 {
885         u32 intr_status = readl(&reg->gintsts);
886         u32 gintmsk = readl(&reg->gintmsk);
887
888         if (intr_status & gintmsk)
889                 return s3c_udc_irq(1, (void *)the_controller);
890         return 0;
891 }