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