56fad76baa533b6a0739eb5e0e23b07637dce539
[firefly-linux-kernel-4.4.55.git] / drivers / usb / gadget / s3c-hsotg.c
1 /**
2  * linux/drivers/usb/gadget/s3c-hsotg.c
3  *
4  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5  *              http://www.samsung.com
6  *
7  * Copyright 2008 Openmoko, Inc.
8  * Copyright 2008 Simtec Electronics
9  *      Ben Dooks <ben@simtec.co.uk>
10  *      http://armlinux.simtec.co.uk/
11  *
12  * S3C USB2.0 High-speed / OtG driver
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License version 2 as
16  * published by the Free Software Foundation.
17  */
18
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/spinlock.h>
22 #include <linux/interrupt.h>
23 #include <linux/platform_device.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/debugfs.h>
26 #include <linux/seq_file.h>
27 #include <linux/delay.h>
28 #include <linux/io.h>
29 #include <linux/slab.h>
30 #include <linux/clk.h>
31 #include <linux/regulator/consumer.h>
32 #include <linux/of_platform.h>
33
34 #include <linux/usb/ch9.h>
35 #include <linux/usb/gadget.h>
36 #include <linux/usb/phy.h>
37 #include <linux/platform_data/s3c-hsotg.h>
38
39 #include <mach/map.h>
40
41 #include "s3c-hsotg.h"
42
43 static const char * const s3c_hsotg_supply_names[] = {
44         "vusb_d",               /* digital USB supply, 1.2V */
45         "vusb_a",               /* analog USB supply, 1.1V */
46 };
47
48 /*
49  * EP0_MPS_LIMIT
50  *
51  * Unfortunately there seems to be a limit of the amount of data that can
52  * be transferred by IN transactions on EP0. This is either 127 bytes or 3
53  * packets (which practically means 1 packet and 63 bytes of data) when the
54  * MPS is set to 64.
55  *
56  * This means if we are wanting to move >127 bytes of data, we need to
57  * split the transactions up, but just doing one packet at a time does
58  * not work (this may be an implicit DATA0 PID on first packet of the
59  * transaction) and doing 2 packets is outside the controller's limits.
60  *
61  * If we try to lower the MPS size for EP0, then no transfers work properly
62  * for EP0, and the system will fail basic enumeration. As no cause for this
63  * has currently been found, we cannot support any large IN transfers for
64  * EP0.
65  */
66 #define EP0_MPS_LIMIT   64
67
68 struct s3c_hsotg;
69 struct s3c_hsotg_req;
70
71 /**
72  * struct s3c_hsotg_ep - driver endpoint definition.
73  * @ep: The gadget layer representation of the endpoint.
74  * @name: The driver generated name for the endpoint.
75  * @queue: Queue of requests for this endpoint.
76  * @parent: Reference back to the parent device structure.
77  * @req: The current request that the endpoint is processing. This is
78  *       used to indicate an request has been loaded onto the endpoint
79  *       and has yet to be completed (maybe due to data move, or simply
80  *       awaiting an ack from the core all the data has been completed).
81  * @debugfs: File entry for debugfs file for this endpoint.
82  * @lock: State lock to protect contents of endpoint.
83  * @dir_in: Set to true if this endpoint is of the IN direction, which
84  *          means that it is sending data to the Host.
85  * @index: The index for the endpoint registers.
86  * @mc: Multi Count - number of transactions per microframe
87  * @interval - Interval for periodic endpoints
88  * @name: The name array passed to the USB core.
89  * @halted: Set if the endpoint has been halted.
90  * @periodic: Set if this is a periodic ep, such as Interrupt
91  * @isochronous: Set if this is a isochronous ep
92  * @sent_zlp: Set if we've sent a zero-length packet.
93  * @total_data: The total number of data bytes done.
94  * @fifo_size: The size of the FIFO (for periodic IN endpoints)
95  * @fifo_load: The amount of data loaded into the FIFO (periodic IN)
96  * @last_load: The offset of data for the last start of request.
97  * @size_loaded: The last loaded size for DxEPTSIZE for periodic IN
98  *
99  * This is the driver's state for each registered enpoint, allowing it
100  * to keep track of transactions that need doing. Each endpoint has a
101  * lock to protect the state, to try and avoid using an overall lock
102  * for the host controller as much as possible.
103  *
104  * For periodic IN endpoints, we have fifo_size and fifo_load to try
105  * and keep track of the amount of data in the periodic FIFO for each
106  * of these as we don't have a status register that tells us how much
107  * is in each of them. (note, this may actually be useless information
108  * as in shared-fifo mode periodic in acts like a single-frame packet
109  * buffer than a fifo)
110  */
111 struct s3c_hsotg_ep {
112         struct usb_ep           ep;
113         struct list_head        queue;
114         struct s3c_hsotg        *parent;
115         struct s3c_hsotg_req    *req;
116         struct dentry           *debugfs;
117
118
119         unsigned long           total_data;
120         unsigned int            size_loaded;
121         unsigned int            last_load;
122         unsigned int            fifo_load;
123         unsigned short          fifo_size;
124
125         unsigned char           dir_in;
126         unsigned char           index;
127         unsigned char           mc;
128         unsigned char           interval;
129
130         unsigned int            halted:1;
131         unsigned int            periodic:1;
132         unsigned int            isochronous:1;
133         unsigned int            sent_zlp:1;
134
135         char                    name[10];
136 };
137
138 /**
139  * struct s3c_hsotg - driver state.
140  * @dev: The parent device supplied to the probe function
141  * @driver: USB gadget driver
142  * @phy: The otg phy transceiver structure for phy control.
143  * @plat: The platform specific configuration data. This can be removed once
144  * all SoCs support usb transceiver.
145  * @regs: The memory area mapped for accessing registers.
146  * @irq: The IRQ number we are using
147  * @supplies: Definition of USB power supplies
148  * @dedicated_fifos: Set if the hardware has dedicated IN-EP fifos.
149  * @num_of_eps: Number of available EPs (excluding EP0)
150  * @debug_root: root directrory for debugfs.
151  * @debug_file: main status file for debugfs.
152  * @debug_fifo: FIFO status file for debugfs.
153  * @ep0_reply: Request used for ep0 reply.
154  * @ep0_buff: Buffer for EP0 reply data, if needed.
155  * @ctrl_buff: Buffer for EP0 control requests.
156  * @ctrl_req: Request for EP0 control packets.
157  * @setup: NAK management for EP0 SETUP
158  * @last_rst: Time of last reset
159  * @eps: The endpoints being supplied to the gadget framework
160  */
161 struct s3c_hsotg {
162         struct device            *dev;
163         struct usb_gadget_driver *driver;
164         struct usb_phy          *phy;
165         struct s3c_hsotg_plat    *plat;
166
167         spinlock_t              lock;
168
169         void __iomem            *regs;
170         int                     irq;
171         struct clk              *clk;
172
173         struct regulator_bulk_data supplies[ARRAY_SIZE(s3c_hsotg_supply_names)];
174
175         unsigned int            dedicated_fifos:1;
176         unsigned char           num_of_eps;
177
178         struct dentry           *debug_root;
179         struct dentry           *debug_file;
180         struct dentry           *debug_fifo;
181
182         struct usb_request      *ep0_reply;
183         struct usb_request      *ctrl_req;
184         u8                      ep0_buff[8];
185         u8                      ctrl_buff[8];
186
187         struct usb_gadget       gadget;
188         unsigned int            setup;
189         unsigned long           last_rst;
190         struct s3c_hsotg_ep     *eps;
191 };
192
193 /**
194  * struct s3c_hsotg_req - data transfer request
195  * @req: The USB gadget request
196  * @queue: The list of requests for the endpoint this is queued for.
197  * @in_progress: Has already had size/packets written to core
198  * @mapped: DMA buffer for this request has been mapped via dma_map_single().
199  */
200 struct s3c_hsotg_req {
201         struct usb_request      req;
202         struct list_head        queue;
203         unsigned char           in_progress;
204         unsigned char           mapped;
205 };
206
207 /* conversion functions */
208 static inline struct s3c_hsotg_req *our_req(struct usb_request *req)
209 {
210         return container_of(req, struct s3c_hsotg_req, req);
211 }
212
213 static inline struct s3c_hsotg_ep *our_ep(struct usb_ep *ep)
214 {
215         return container_of(ep, struct s3c_hsotg_ep, ep);
216 }
217
218 static inline struct s3c_hsotg *to_hsotg(struct usb_gadget *gadget)
219 {
220         return container_of(gadget, struct s3c_hsotg, gadget);
221 }
222
223 static inline void __orr32(void __iomem *ptr, u32 val)
224 {
225         writel(readl(ptr) | val, ptr);
226 }
227
228 static inline void __bic32(void __iomem *ptr, u32 val)
229 {
230         writel(readl(ptr) & ~val, ptr);
231 }
232
233 /* forward decleration of functions */
234 static void s3c_hsotg_dump(struct s3c_hsotg *hsotg);
235
236 /**
237  * using_dma - return the DMA status of the driver.
238  * @hsotg: The driver state.
239  *
240  * Return true if we're using DMA.
241  *
242  * Currently, we have the DMA support code worked into everywhere
243  * that needs it, but the AMBA DMA implementation in the hardware can
244  * only DMA from 32bit aligned addresses. This means that gadgets such
245  * as the CDC Ethernet cannot work as they often pass packets which are
246  * not 32bit aligned.
247  *
248  * Unfortunately the choice to use DMA or not is global to the controller
249  * and seems to be only settable when the controller is being put through
250  * a core reset. This means we either need to fix the gadgets to take
251  * account of DMA alignment, or add bounce buffers (yuerk).
252  *
253  * Until this issue is sorted out, we always return 'false'.
254  */
255 static inline bool using_dma(struct s3c_hsotg *hsotg)
256 {
257         return false;   /* support is not complete */
258 }
259
260 /**
261  * s3c_hsotg_en_gsint - enable one or more of the general interrupt
262  * @hsotg: The device state
263  * @ints: A bitmask of the interrupts to enable
264  */
265 static void s3c_hsotg_en_gsint(struct s3c_hsotg *hsotg, u32 ints)
266 {
267         u32 gsintmsk = readl(hsotg->regs + GINTMSK);
268         u32 new_gsintmsk;
269
270         new_gsintmsk = gsintmsk | ints;
271
272         if (new_gsintmsk != gsintmsk) {
273                 dev_dbg(hsotg->dev, "gsintmsk now 0x%08x\n", new_gsintmsk);
274                 writel(new_gsintmsk, hsotg->regs + GINTMSK);
275         }
276 }
277
278 /**
279  * s3c_hsotg_disable_gsint - disable one or more of the general interrupt
280  * @hsotg: The device state
281  * @ints: A bitmask of the interrupts to enable
282  */
283 static void s3c_hsotg_disable_gsint(struct s3c_hsotg *hsotg, u32 ints)
284 {
285         u32 gsintmsk = readl(hsotg->regs + GINTMSK);
286         u32 new_gsintmsk;
287
288         new_gsintmsk = gsintmsk & ~ints;
289
290         if (new_gsintmsk != gsintmsk)
291                 writel(new_gsintmsk, hsotg->regs + GINTMSK);
292 }
293
294 /**
295  * s3c_hsotg_ctrl_epint - enable/disable an endpoint irq
296  * @hsotg: The device state
297  * @ep: The endpoint index
298  * @dir_in: True if direction is in.
299  * @en: The enable value, true to enable
300  *
301  * Set or clear the mask for an individual endpoint's interrupt
302  * request.
303  */
304 static void s3c_hsotg_ctrl_epint(struct s3c_hsotg *hsotg,
305                                  unsigned int ep, unsigned int dir_in,
306                                  unsigned int en)
307 {
308         unsigned long flags;
309         u32 bit = 1 << ep;
310         u32 daint;
311
312         if (!dir_in)
313                 bit <<= 16;
314
315         local_irq_save(flags);
316         daint = readl(hsotg->regs + DAINTMSK);
317         if (en)
318                 daint |= bit;
319         else
320                 daint &= ~bit;
321         writel(daint, hsotg->regs + DAINTMSK);
322         local_irq_restore(flags);
323 }
324
325 /**
326  * s3c_hsotg_init_fifo - initialise non-periodic FIFOs
327  * @hsotg: The device instance.
328  */
329 static void s3c_hsotg_init_fifo(struct s3c_hsotg *hsotg)
330 {
331         unsigned int ep;
332         unsigned int addr;
333         unsigned int size;
334         int timeout;
335         u32 val;
336
337         /* set FIFO sizes to 2048/1024 */
338
339         writel(2048, hsotg->regs + GRXFSIZ);
340         writel(GNPTXFSIZ_NPTxFStAddr(2048) |
341                GNPTXFSIZ_NPTxFDep(1024),
342                hsotg->regs + GNPTXFSIZ);
343
344         /*
345          * arange all the rest of the TX FIFOs, as some versions of this
346          * block have overlapping default addresses. This also ensures
347          * that if the settings have been changed, then they are set to
348          * known values.
349          */
350
351         /* start at the end of the GNPTXFSIZ, rounded up */
352         addr = 2048 + 1024;
353         size = 768;
354
355         /*
356          * currently we allocate TX FIFOs for all possible endpoints,
357          * and assume that they are all the same size.
358          */
359
360         for (ep = 1; ep <= 15; ep++) {
361                 val = addr;
362                 val |= size << DPTXFSIZn_DPTxFSize_SHIFT;
363                 addr += size;
364
365                 writel(val, hsotg->regs + DPTXFSIZn(ep));
366         }
367
368         /*
369          * according to p428 of the design guide, we need to ensure that
370          * all fifos are flushed before continuing
371          */
372
373         writel(GRSTCTL_TxFNum(0x10) | GRSTCTL_TxFFlsh |
374                GRSTCTL_RxFFlsh, hsotg->regs + GRSTCTL);
375
376         /* wait until the fifos are both flushed */
377         timeout = 100;
378         while (1) {
379                 val = readl(hsotg->regs + GRSTCTL);
380
381                 if ((val & (GRSTCTL_TxFFlsh | GRSTCTL_RxFFlsh)) == 0)
382                         break;
383
384                 if (--timeout == 0) {
385                         dev_err(hsotg->dev,
386                                 "%s: timeout flushing fifos (GRSTCTL=%08x)\n",
387                                 __func__, val);
388                 }
389
390                 udelay(1);
391         }
392
393         dev_dbg(hsotg->dev, "FIFOs reset, timeout at %d\n", timeout);
394 }
395
396 /**
397  * @ep: USB endpoint to allocate request for.
398  * @flags: Allocation flags
399  *
400  * Allocate a new USB request structure appropriate for the specified endpoint
401  */
402 static struct usb_request *s3c_hsotg_ep_alloc_request(struct usb_ep *ep,
403                                                       gfp_t flags)
404 {
405         struct s3c_hsotg_req *req;
406
407         req = kzalloc(sizeof(struct s3c_hsotg_req), flags);
408         if (!req)
409                 return NULL;
410
411         INIT_LIST_HEAD(&req->queue);
412
413         return &req->req;
414 }
415
416 /**
417  * is_ep_periodic - return true if the endpoint is in periodic mode.
418  * @hs_ep: The endpoint to query.
419  *
420  * Returns true if the endpoint is in periodic mode, meaning it is being
421  * used for an Interrupt or ISO transfer.
422  */
423 static inline int is_ep_periodic(struct s3c_hsotg_ep *hs_ep)
424 {
425         return hs_ep->periodic;
426 }
427
428 /**
429  * s3c_hsotg_unmap_dma - unmap the DMA memory being used for the request
430  * @hsotg: The device state.
431  * @hs_ep: The endpoint for the request
432  * @hs_req: The request being processed.
433  *
434  * This is the reverse of s3c_hsotg_map_dma(), called for the completion
435  * of a request to ensure the buffer is ready for access by the caller.
436  */
437 static void s3c_hsotg_unmap_dma(struct s3c_hsotg *hsotg,
438                                 struct s3c_hsotg_ep *hs_ep,
439                                 struct s3c_hsotg_req *hs_req)
440 {
441         struct usb_request *req = &hs_req->req;
442
443         /* ignore this if we're not moving any data */
444         if (hs_req->req.length == 0)
445                 return;
446
447         usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in);
448 }
449
450 /**
451  * s3c_hsotg_write_fifo - write packet Data to the TxFIFO
452  * @hsotg: The controller state.
453  * @hs_ep: The endpoint we're going to write for.
454  * @hs_req: The request to write data for.
455  *
456  * This is called when the TxFIFO has some space in it to hold a new
457  * transmission and we have something to give it. The actual setup of
458  * the data size is done elsewhere, so all we have to do is to actually
459  * write the data.
460  *
461  * The return value is zero if there is more space (or nothing was done)
462  * otherwise -ENOSPC is returned if the FIFO space was used up.
463  *
464  * This routine is only needed for PIO
465  */
466 static int s3c_hsotg_write_fifo(struct s3c_hsotg *hsotg,
467                                 struct s3c_hsotg_ep *hs_ep,
468                                 struct s3c_hsotg_req *hs_req)
469 {
470         bool periodic = is_ep_periodic(hs_ep);
471         u32 gnptxsts = readl(hsotg->regs + GNPTXSTS);
472         int buf_pos = hs_req->req.actual;
473         int to_write = hs_ep->size_loaded;
474         void *data;
475         int can_write;
476         int pkt_round;
477         int max_transfer;
478
479         to_write -= (buf_pos - hs_ep->last_load);
480
481         /* if there's nothing to write, get out early */
482         if (to_write == 0)
483                 return 0;
484
485         if (periodic && !hsotg->dedicated_fifos) {
486                 u32 epsize = readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
487                 int size_left;
488                 int size_done;
489
490                 /*
491                  * work out how much data was loaded so we can calculate
492                  * how much data is left in the fifo.
493                  */
494
495                 size_left = DxEPTSIZ_XferSize_GET(epsize);
496
497                 /*
498                  * if shared fifo, we cannot write anything until the
499                  * previous data has been completely sent.
500                  */
501                 if (hs_ep->fifo_load != 0) {
502                         s3c_hsotg_en_gsint(hsotg, GINTSTS_PTxFEmp);
503                         return -ENOSPC;
504                 }
505
506                 dev_dbg(hsotg->dev, "%s: left=%d, load=%d, fifo=%d, size %d\n",
507                         __func__, size_left,
508                         hs_ep->size_loaded, hs_ep->fifo_load, hs_ep->fifo_size);
509
510                 /* how much of the data has moved */
511                 size_done = hs_ep->size_loaded - size_left;
512
513                 /* how much data is left in the fifo */
514                 can_write = hs_ep->fifo_load - size_done;
515                 dev_dbg(hsotg->dev, "%s: => can_write1=%d\n",
516                         __func__, can_write);
517
518                 can_write = hs_ep->fifo_size - can_write;
519                 dev_dbg(hsotg->dev, "%s: => can_write2=%d\n",
520                         __func__, can_write);
521
522                 if (can_write <= 0) {
523                         s3c_hsotg_en_gsint(hsotg, GINTSTS_PTxFEmp);
524                         return -ENOSPC;
525                 }
526         } else if (hsotg->dedicated_fifos && hs_ep->index != 0) {
527                 can_write = readl(hsotg->regs + DTXFSTS(hs_ep->index));
528
529                 can_write &= 0xffff;
530                 can_write *= 4;
531         } else {
532                 if (GNPTXSTS_NPTxQSpcAvail_GET(gnptxsts) == 0) {
533                         dev_dbg(hsotg->dev,
534                                 "%s: no queue slots available (0x%08x)\n",
535                                 __func__, gnptxsts);
536
537                         s3c_hsotg_en_gsint(hsotg, GINTSTS_NPTxFEmp);
538                         return -ENOSPC;
539                 }
540
541                 can_write = GNPTXSTS_NPTxFSpcAvail_GET(gnptxsts);
542                 can_write *= 4; /* fifo size is in 32bit quantities. */
543         }
544
545         max_transfer = hs_ep->ep.maxpacket * hs_ep->mc;
546
547         dev_dbg(hsotg->dev, "%s: GNPTXSTS=%08x, can=%d, to=%d, max_transfer %d\n",
548                  __func__, gnptxsts, can_write, to_write, max_transfer);
549
550         /*
551          * limit to 512 bytes of data, it seems at least on the non-periodic
552          * FIFO, requests of >512 cause the endpoint to get stuck with a
553          * fragment of the end of the transfer in it.
554          */
555         if (can_write > 512 && !periodic)
556                 can_write = 512;
557
558         /*
559          * limit the write to one max-packet size worth of data, but allow
560          * the transfer to return that it did not run out of fifo space
561          * doing it.
562          */
563         if (to_write > max_transfer) {
564                 to_write = max_transfer;
565
566                 /* it's needed only when we do not use dedicated fifos */
567                 if (!hsotg->dedicated_fifos)
568                         s3c_hsotg_en_gsint(hsotg,
569                                            periodic ? GINTSTS_PTxFEmp :
570                                            GINTSTS_NPTxFEmp);
571         }
572
573         /* see if we can write data */
574
575         if (to_write > can_write) {
576                 to_write = can_write;
577                 pkt_round = to_write % max_transfer;
578
579                 /*
580                  * Round the write down to an
581                  * exact number of packets.
582                  *
583                  * Note, we do not currently check to see if we can ever
584                  * write a full packet or not to the FIFO.
585                  */
586
587                 if (pkt_round)
588                         to_write -= pkt_round;
589
590                 /*
591                  * enable correct FIFO interrupt to alert us when there
592                  * is more room left.
593                  */
594
595                 /* it's needed only when we do not use dedicated fifos */
596                 if (!hsotg->dedicated_fifos)
597                         s3c_hsotg_en_gsint(hsotg,
598                                            periodic ? GINTSTS_PTxFEmp :
599                                            GINTSTS_NPTxFEmp);
600         }
601
602         dev_dbg(hsotg->dev, "write %d/%d, can_write %d, done %d\n",
603                  to_write, hs_req->req.length, can_write, buf_pos);
604
605         if (to_write <= 0)
606                 return -ENOSPC;
607
608         hs_req->req.actual = buf_pos + to_write;
609         hs_ep->total_data += to_write;
610
611         if (periodic)
612                 hs_ep->fifo_load += to_write;
613
614         to_write = DIV_ROUND_UP(to_write, 4);
615         data = hs_req->req.buf + buf_pos;
616
617         writesl(hsotg->regs + EPFIFO(hs_ep->index), data, to_write);
618
619         return (to_write >= can_write) ? -ENOSPC : 0;
620 }
621
622 /**
623  * get_ep_limit - get the maximum data legnth for this endpoint
624  * @hs_ep: The endpoint
625  *
626  * Return the maximum data that can be queued in one go on a given endpoint
627  * so that transfers that are too long can be split.
628  */
629 static unsigned get_ep_limit(struct s3c_hsotg_ep *hs_ep)
630 {
631         int index = hs_ep->index;
632         unsigned maxsize;
633         unsigned maxpkt;
634
635         if (index != 0) {
636                 maxsize = DxEPTSIZ_XferSize_LIMIT + 1;
637                 maxpkt = DxEPTSIZ_PktCnt_LIMIT + 1;
638         } else {
639                 maxsize = 64+64;
640                 if (hs_ep->dir_in)
641                         maxpkt = DIEPTSIZ0_PktCnt_LIMIT + 1;
642                 else
643                         maxpkt = 2;
644         }
645
646         /* we made the constant loading easier above by using +1 */
647         maxpkt--;
648         maxsize--;
649
650         /*
651          * constrain by packet count if maxpkts*pktsize is greater
652          * than the length register size.
653          */
654
655         if ((maxpkt * hs_ep->ep.maxpacket) < maxsize)
656                 maxsize = maxpkt * hs_ep->ep.maxpacket;
657
658         return maxsize;
659 }
660
661 /**
662  * s3c_hsotg_start_req - start a USB request from an endpoint's queue
663  * @hsotg: The controller state.
664  * @hs_ep: The endpoint to process a request for
665  * @hs_req: The request to start.
666  * @continuing: True if we are doing more for the current request.
667  *
668  * Start the given request running by setting the endpoint registers
669  * appropriately, and writing any data to the FIFOs.
670  */
671 static void s3c_hsotg_start_req(struct s3c_hsotg *hsotg,
672                                 struct s3c_hsotg_ep *hs_ep,
673                                 struct s3c_hsotg_req *hs_req,
674                                 bool continuing)
675 {
676         struct usb_request *ureq = &hs_req->req;
677         int index = hs_ep->index;
678         int dir_in = hs_ep->dir_in;
679         u32 epctrl_reg;
680         u32 epsize_reg;
681         u32 epsize;
682         u32 ctrl;
683         unsigned length;
684         unsigned packets;
685         unsigned maxreq;
686
687         if (index != 0) {
688                 if (hs_ep->req && !continuing) {
689                         dev_err(hsotg->dev, "%s: active request\n", __func__);
690                         WARN_ON(1);
691                         return;
692                 } else if (hs_ep->req != hs_req && continuing) {
693                         dev_err(hsotg->dev,
694                                 "%s: continue different req\n", __func__);
695                         WARN_ON(1);
696                         return;
697                 }
698         }
699
700         epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
701         epsize_reg = dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
702
703         dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x, ep %d, dir %s\n",
704                 __func__, readl(hsotg->regs + epctrl_reg), index,
705                 hs_ep->dir_in ? "in" : "out");
706
707         /* If endpoint is stalled, we will restart request later */
708         ctrl = readl(hsotg->regs + epctrl_reg);
709
710         if (ctrl & DxEPCTL_Stall) {
711                 dev_warn(hsotg->dev, "%s: ep%d is stalled\n", __func__, index);
712                 return;
713         }
714
715         length = ureq->length - ureq->actual;
716         dev_dbg(hsotg->dev, "ureq->length:%d ureq->actual:%d\n",
717                 ureq->length, ureq->actual);
718         if (0)
719                 dev_dbg(hsotg->dev,
720                         "REQ buf %p len %d dma 0x%08x noi=%d zp=%d snok=%d\n",
721                         ureq->buf, length, ureq->dma,
722                         ureq->no_interrupt, ureq->zero, ureq->short_not_ok);
723
724         maxreq = get_ep_limit(hs_ep);
725         if (length > maxreq) {
726                 int round = maxreq % hs_ep->ep.maxpacket;
727
728                 dev_dbg(hsotg->dev, "%s: length %d, max-req %d, r %d\n",
729                         __func__, length, maxreq, round);
730
731                 /* round down to multiple of packets */
732                 if (round)
733                         maxreq -= round;
734
735                 length = maxreq;
736         }
737
738         if (length)
739                 packets = DIV_ROUND_UP(length, hs_ep->ep.maxpacket);
740         else
741                 packets = 1;    /* send one packet if length is zero. */
742
743         if (hs_ep->isochronous && length > (hs_ep->mc * hs_ep->ep.maxpacket)) {
744                 dev_err(hsotg->dev, "req length > maxpacket*mc\n");
745                 return;
746         }
747
748         if (dir_in && index != 0)
749                 if (hs_ep->isochronous)
750                         epsize = DxEPTSIZ_MC(packets);
751                 else
752                         epsize = DxEPTSIZ_MC(1);
753         else
754                 epsize = 0;
755
756         if (index != 0 && ureq->zero) {
757                 /*
758                  * test for the packets being exactly right for the
759                  * transfer
760                  */
761
762                 if (length == (packets * hs_ep->ep.maxpacket))
763                         packets++;
764         }
765
766         epsize |= DxEPTSIZ_PktCnt(packets);
767         epsize |= DxEPTSIZ_XferSize(length);
768
769         dev_dbg(hsotg->dev, "%s: %d@%d/%d, 0x%08x => 0x%08x\n",
770                 __func__, packets, length, ureq->length, epsize, epsize_reg);
771
772         /* store the request as the current one we're doing */
773         hs_ep->req = hs_req;
774
775         /* write size / packets */
776         writel(epsize, hsotg->regs + epsize_reg);
777
778         if (using_dma(hsotg) && !continuing) {
779                 unsigned int dma_reg;
780
781                 /*
782                  * write DMA address to control register, buffer already
783                  * synced by s3c_hsotg_ep_queue().
784                  */
785
786                 dma_reg = dir_in ? DIEPDMA(index) : DOEPDMA(index);
787                 writel(ureq->dma, hsotg->regs + dma_reg);
788
789                 dev_dbg(hsotg->dev, "%s: 0x%08x => 0x%08x\n",
790                         __func__, ureq->dma, dma_reg);
791         }
792
793         ctrl |= DxEPCTL_EPEna;  /* ensure ep enabled */
794         ctrl |= DxEPCTL_USBActEp;
795
796         dev_dbg(hsotg->dev, "setup req:%d\n", hsotg->setup);
797
798         /* For Setup request do not clear NAK */
799         if (hsotg->setup && index == 0)
800                 hsotg->setup = 0;
801         else
802                 ctrl |= DxEPCTL_CNAK;   /* clear NAK set by core */
803
804
805         dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
806         writel(ctrl, hsotg->regs + epctrl_reg);
807
808         /*
809          * set these, it seems that DMA support increments past the end
810          * of the packet buffer so we need to calculate the length from
811          * this information.
812          */
813         hs_ep->size_loaded = length;
814         hs_ep->last_load = ureq->actual;
815
816         if (dir_in && !using_dma(hsotg)) {
817                 /* set these anyway, we may need them for non-periodic in */
818                 hs_ep->fifo_load = 0;
819
820                 s3c_hsotg_write_fifo(hsotg, hs_ep, hs_req);
821         }
822
823         /*
824          * clear the INTknTXFEmpMsk when we start request, more as a aide
825          * to debugging to see what is going on.
826          */
827         if (dir_in)
828                 writel(DIEPMSK_INTknTXFEmpMsk,
829                        hsotg->regs + DIEPINT(index));
830
831         /*
832          * Note, trying to clear the NAK here causes problems with transmit
833          * on the S3C6400 ending up with the TXFIFO becoming full.
834          */
835
836         /* check ep is enabled */
837         if (!(readl(hsotg->regs + epctrl_reg) & DxEPCTL_EPEna))
838                 dev_warn(hsotg->dev,
839                          "ep%d: failed to become enabled (DxEPCTL=0x%08x)?\n",
840                          index, readl(hsotg->regs + epctrl_reg));
841
842         dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n",
843                 __func__, readl(hsotg->regs + epctrl_reg));
844
845         /* enable ep interrupts */
846         s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 1);
847 }
848
849 /**
850  * s3c_hsotg_map_dma - map the DMA memory being used for the request
851  * @hsotg: The device state.
852  * @hs_ep: The endpoint the request is on.
853  * @req: The request being processed.
854  *
855  * We've been asked to queue a request, so ensure that the memory buffer
856  * is correctly setup for DMA. If we've been passed an extant DMA address
857  * then ensure the buffer has been synced to memory. If our buffer has no
858  * DMA memory, then we map the memory and mark our request to allow us to
859  * cleanup on completion.
860  */
861 static int s3c_hsotg_map_dma(struct s3c_hsotg *hsotg,
862                              struct s3c_hsotg_ep *hs_ep,
863                              struct usb_request *req)
864 {
865         struct s3c_hsotg_req *hs_req = our_req(req);
866         int ret;
867
868         /* if the length is zero, ignore the DMA data */
869         if (hs_req->req.length == 0)
870                 return 0;
871
872         ret = usb_gadget_map_request(&hsotg->gadget, req, hs_ep->dir_in);
873         if (ret)
874                 goto dma_error;
875
876         return 0;
877
878 dma_error:
879         dev_err(hsotg->dev, "%s: failed to map buffer %p, %d bytes\n",
880                 __func__, req->buf, req->length);
881
882         return -EIO;
883 }
884
885 static int s3c_hsotg_ep_queue(struct usb_ep *ep, struct usb_request *req,
886                               gfp_t gfp_flags)
887 {
888         struct s3c_hsotg_req *hs_req = our_req(req);
889         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
890         struct s3c_hsotg *hs = hs_ep->parent;
891         bool first;
892
893         dev_dbg(hs->dev, "%s: req %p: %d@%p, noi=%d, zero=%d, snok=%d\n",
894                 ep->name, req, req->length, req->buf, req->no_interrupt,
895                 req->zero, req->short_not_ok);
896
897         /* initialise status of the request */
898         INIT_LIST_HEAD(&hs_req->queue);
899         req->actual = 0;
900         req->status = -EINPROGRESS;
901
902         /* if we're using DMA, sync the buffers as necessary */
903         if (using_dma(hs)) {
904                 int ret = s3c_hsotg_map_dma(hs, hs_ep, req);
905                 if (ret)
906                         return ret;
907         }
908
909         first = list_empty(&hs_ep->queue);
910         list_add_tail(&hs_req->queue, &hs_ep->queue);
911
912         if (first)
913                 s3c_hsotg_start_req(hs, hs_ep, hs_req, false);
914
915         return 0;
916 }
917
918 static int s3c_hsotg_ep_queue_lock(struct usb_ep *ep, struct usb_request *req,
919                               gfp_t gfp_flags)
920 {
921         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
922         struct s3c_hsotg *hs = hs_ep->parent;
923         unsigned long flags = 0;
924         int ret = 0;
925
926         spin_lock_irqsave(&hs->lock, flags);
927         ret = s3c_hsotg_ep_queue(ep, req, gfp_flags);
928         spin_unlock_irqrestore(&hs->lock, flags);
929
930         return ret;
931 }
932
933 static void s3c_hsotg_ep_free_request(struct usb_ep *ep,
934                                       struct usb_request *req)
935 {
936         struct s3c_hsotg_req *hs_req = our_req(req);
937
938         kfree(hs_req);
939 }
940
941 /**
942  * s3c_hsotg_complete_oursetup - setup completion callback
943  * @ep: The endpoint the request was on.
944  * @req: The request completed.
945  *
946  * Called on completion of any requests the driver itself
947  * submitted that need cleaning up.
948  */
949 static void s3c_hsotg_complete_oursetup(struct usb_ep *ep,
950                                         struct usb_request *req)
951 {
952         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
953         struct s3c_hsotg *hsotg = hs_ep->parent;
954
955         dev_dbg(hsotg->dev, "%s: ep %p, req %p\n", __func__, ep, req);
956
957         s3c_hsotg_ep_free_request(ep, req);
958 }
959
960 /**
961  * ep_from_windex - convert control wIndex value to endpoint
962  * @hsotg: The driver state.
963  * @windex: The control request wIndex field (in host order).
964  *
965  * Convert the given wIndex into a pointer to an driver endpoint
966  * structure, or return NULL if it is not a valid endpoint.
967  */
968 static struct s3c_hsotg_ep *ep_from_windex(struct s3c_hsotg *hsotg,
969                                            u32 windex)
970 {
971         struct s3c_hsotg_ep *ep = &hsotg->eps[windex & 0x7F];
972         int dir = (windex & USB_DIR_IN) ? 1 : 0;
973         int idx = windex & 0x7F;
974
975         if (windex >= 0x100)
976                 return NULL;
977
978         if (idx > hsotg->num_of_eps)
979                 return NULL;
980
981         if (idx && ep->dir_in != dir)
982                 return NULL;
983
984         return ep;
985 }
986
987 /**
988  * s3c_hsotg_send_reply - send reply to control request
989  * @hsotg: The device state
990  * @ep: Endpoint 0
991  * @buff: Buffer for request
992  * @length: Length of reply.
993  *
994  * Create a request and queue it on the given endpoint. This is useful as
995  * an internal method of sending replies to certain control requests, etc.
996  */
997 static int s3c_hsotg_send_reply(struct s3c_hsotg *hsotg,
998                                 struct s3c_hsotg_ep *ep,
999                                 void *buff,
1000                                 int length)
1001 {
1002         struct usb_request *req;
1003         int ret;
1004
1005         dev_dbg(hsotg->dev, "%s: buff %p, len %d\n", __func__, buff, length);
1006
1007         req = s3c_hsotg_ep_alloc_request(&ep->ep, GFP_ATOMIC);
1008         hsotg->ep0_reply = req;
1009         if (!req) {
1010                 dev_warn(hsotg->dev, "%s: cannot alloc req\n", __func__);
1011                 return -ENOMEM;
1012         }
1013
1014         req->buf = hsotg->ep0_buff;
1015         req->length = length;
1016         req->zero = 1; /* always do zero-length final transfer */
1017         req->complete = s3c_hsotg_complete_oursetup;
1018
1019         if (length)
1020                 memcpy(req->buf, buff, length);
1021         else
1022                 ep->sent_zlp = 1;
1023
1024         ret = s3c_hsotg_ep_queue(&ep->ep, req, GFP_ATOMIC);
1025         if (ret) {
1026                 dev_warn(hsotg->dev, "%s: cannot queue req\n", __func__);
1027                 return ret;
1028         }
1029
1030         return 0;
1031 }
1032
1033 /**
1034  * s3c_hsotg_process_req_status - process request GET_STATUS
1035  * @hsotg: The device state
1036  * @ctrl: USB control request
1037  */
1038 static int s3c_hsotg_process_req_status(struct s3c_hsotg *hsotg,
1039                                         struct usb_ctrlrequest *ctrl)
1040 {
1041         struct s3c_hsotg_ep *ep0 = &hsotg->eps[0];
1042         struct s3c_hsotg_ep *ep;
1043         __le16 reply;
1044         int ret;
1045
1046         dev_dbg(hsotg->dev, "%s: USB_REQ_GET_STATUS\n", __func__);
1047
1048         if (!ep0->dir_in) {
1049                 dev_warn(hsotg->dev, "%s: direction out?\n", __func__);
1050                 return -EINVAL;
1051         }
1052
1053         switch (ctrl->bRequestType & USB_RECIP_MASK) {
1054         case USB_RECIP_DEVICE:
1055                 reply = cpu_to_le16(0); /* bit 0 => self powered,
1056                                          * bit 1 => remote wakeup */
1057                 break;
1058
1059         case USB_RECIP_INTERFACE:
1060                 /* currently, the data result should be zero */
1061                 reply = cpu_to_le16(0);
1062                 break;
1063
1064         case USB_RECIP_ENDPOINT:
1065                 ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex));
1066                 if (!ep)
1067                         return -ENOENT;
1068
1069                 reply = cpu_to_le16(ep->halted ? 1 : 0);
1070                 break;
1071
1072         default:
1073                 return 0;
1074         }
1075
1076         if (le16_to_cpu(ctrl->wLength) != 2)
1077                 return -EINVAL;
1078
1079         ret = s3c_hsotg_send_reply(hsotg, ep0, &reply, 2);
1080         if (ret) {
1081                 dev_err(hsotg->dev, "%s: failed to send reply\n", __func__);
1082                 return ret;
1083         }
1084
1085         return 1;
1086 }
1087
1088 static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value);
1089
1090 /**
1091  * get_ep_head - return the first request on the endpoint
1092  * @hs_ep: The controller endpoint to get
1093  *
1094  * Get the first request on the endpoint.
1095  */
1096 static struct s3c_hsotg_req *get_ep_head(struct s3c_hsotg_ep *hs_ep)
1097 {
1098         if (list_empty(&hs_ep->queue))
1099                 return NULL;
1100
1101         return list_first_entry(&hs_ep->queue, struct s3c_hsotg_req, queue);
1102 }
1103
1104 /**
1105  * s3c_hsotg_process_req_featire - process request {SET,CLEAR}_FEATURE
1106  * @hsotg: The device state
1107  * @ctrl: USB control request
1108  */
1109 static int s3c_hsotg_process_req_feature(struct s3c_hsotg *hsotg,
1110                                          struct usb_ctrlrequest *ctrl)
1111 {
1112         struct s3c_hsotg_ep *ep0 = &hsotg->eps[0];
1113         struct s3c_hsotg_req *hs_req;
1114         bool restart;
1115         bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE);
1116         struct s3c_hsotg_ep *ep;
1117         int ret;
1118         bool halted;
1119
1120         dev_dbg(hsotg->dev, "%s: %s_FEATURE\n",
1121                 __func__, set ? "SET" : "CLEAR");
1122
1123         if (ctrl->bRequestType == USB_RECIP_ENDPOINT) {
1124                 ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex));
1125                 if (!ep) {
1126                         dev_dbg(hsotg->dev, "%s: no endpoint for 0x%04x\n",
1127                                 __func__, le16_to_cpu(ctrl->wIndex));
1128                         return -ENOENT;
1129                 }
1130
1131                 switch (le16_to_cpu(ctrl->wValue)) {
1132                 case USB_ENDPOINT_HALT:
1133                         halted = ep->halted;
1134
1135                         s3c_hsotg_ep_sethalt(&ep->ep, set);
1136
1137                         ret = s3c_hsotg_send_reply(hsotg, ep0, NULL, 0);
1138                         if (ret) {
1139                                 dev_err(hsotg->dev,
1140                                         "%s: failed to send reply\n", __func__);
1141                                 return ret;
1142                         }
1143
1144                         /*
1145                          * we have to complete all requests for ep if it was
1146                          * halted, and the halt was cleared by CLEAR_FEATURE
1147                          */
1148
1149                         if (!set && halted) {
1150                                 /*
1151                                  * If we have request in progress,
1152                                  * then complete it
1153                                  */
1154                                 if (ep->req) {
1155                                         hs_req = ep->req;
1156                                         ep->req = NULL;
1157                                         list_del_init(&hs_req->queue);
1158                                         hs_req->req.complete(&ep->ep,
1159                                                              &hs_req->req);
1160                                 }
1161
1162                                 /* If we have pending request, then start it */
1163                                 restart = !list_empty(&ep->queue);
1164                                 if (restart) {
1165                                         hs_req = get_ep_head(ep);
1166                                         s3c_hsotg_start_req(hsotg, ep,
1167                                                             hs_req, false);
1168                                 }
1169                         }
1170
1171                         break;
1172
1173                 default:
1174                         return -ENOENT;
1175                 }
1176         } else
1177                 return -ENOENT;  /* currently only deal with endpoint */
1178
1179         return 1;
1180 }
1181
1182 static void s3c_hsotg_enqueue_setup(struct s3c_hsotg *hsotg);
1183
1184 /**
1185  * s3c_hsotg_process_control - process a control request
1186  * @hsotg: The device state
1187  * @ctrl: The control request received
1188  *
1189  * The controller has received the SETUP phase of a control request, and
1190  * needs to work out what to do next (and whether to pass it on to the
1191  * gadget driver).
1192  */
1193 static void s3c_hsotg_process_control(struct s3c_hsotg *hsotg,
1194                                       struct usb_ctrlrequest *ctrl)
1195 {
1196         struct s3c_hsotg_ep *ep0 = &hsotg->eps[0];
1197         int ret = 0;
1198         u32 dcfg;
1199
1200         ep0->sent_zlp = 0;
1201
1202         dev_dbg(hsotg->dev, "ctrl Req=%02x, Type=%02x, V=%04x, L=%04x\n",
1203                  ctrl->bRequest, ctrl->bRequestType,
1204                  ctrl->wValue, ctrl->wLength);
1205
1206         /*
1207          * record the direction of the request, for later use when enquing
1208          * packets onto EP0.
1209          */
1210
1211         ep0->dir_in = (ctrl->bRequestType & USB_DIR_IN) ? 1 : 0;
1212         dev_dbg(hsotg->dev, "ctrl: dir_in=%d\n", ep0->dir_in);
1213
1214         /*
1215          * if we've no data with this request, then the last part of the
1216          * transaction is going to implicitly be IN.
1217          */
1218         if (ctrl->wLength == 0)
1219                 ep0->dir_in = 1;
1220
1221         if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
1222                 switch (ctrl->bRequest) {
1223                 case USB_REQ_SET_ADDRESS:
1224                         dcfg = readl(hsotg->regs + DCFG);
1225                         dcfg &= ~DCFG_DevAddr_MASK;
1226                         dcfg |= ctrl->wValue << DCFG_DevAddr_SHIFT;
1227                         writel(dcfg, hsotg->regs + DCFG);
1228
1229                         dev_info(hsotg->dev, "new address %d\n", ctrl->wValue);
1230
1231                         ret = s3c_hsotg_send_reply(hsotg, ep0, NULL, 0);
1232                         return;
1233
1234                 case USB_REQ_GET_STATUS:
1235                         ret = s3c_hsotg_process_req_status(hsotg, ctrl);
1236                         break;
1237
1238                 case USB_REQ_CLEAR_FEATURE:
1239                 case USB_REQ_SET_FEATURE:
1240                         ret = s3c_hsotg_process_req_feature(hsotg, ctrl);
1241                         break;
1242                 }
1243         }
1244
1245         /* as a fallback, try delivering it to the driver to deal with */
1246
1247         if (ret == 0 && hsotg->driver) {
1248                 spin_unlock(&hsotg->lock);
1249                 ret = hsotg->driver->setup(&hsotg->gadget, ctrl);
1250                 spin_lock(&hsotg->lock);
1251                 if (ret < 0)
1252                         dev_dbg(hsotg->dev, "driver->setup() ret %d\n", ret);
1253         }
1254
1255         /*
1256          * the request is either unhandlable, or is not formatted correctly
1257          * so respond with a STALL for the status stage to indicate failure.
1258          */
1259
1260         if (ret < 0) {
1261                 u32 reg;
1262                 u32 ctrl;
1263
1264                 dev_dbg(hsotg->dev, "ep0 stall (dir=%d)\n", ep0->dir_in);
1265                 reg = (ep0->dir_in) ? DIEPCTL0 : DOEPCTL0;
1266
1267                 /*
1268                  * DxEPCTL_Stall will be cleared by EP once it has
1269                  * taken effect, so no need to clear later.
1270                  */
1271
1272                 ctrl = readl(hsotg->regs + reg);
1273                 ctrl |= DxEPCTL_Stall;
1274                 ctrl |= DxEPCTL_CNAK;
1275                 writel(ctrl, hsotg->regs + reg);
1276
1277                 dev_dbg(hsotg->dev,
1278                         "written DxEPCTL=0x%08x to %08x (DxEPCTL=0x%08x)\n",
1279                         ctrl, reg, readl(hsotg->regs + reg));
1280
1281                 /*
1282                  * don't believe we need to anything more to get the EP
1283                  * to reply with a STALL packet
1284                  */
1285
1286                  /*
1287                   * complete won't be called, so we enqueue
1288                   * setup request here
1289                   */
1290                  s3c_hsotg_enqueue_setup(hsotg);
1291         }
1292 }
1293
1294 /**
1295  * s3c_hsotg_complete_setup - completion of a setup transfer
1296  * @ep: The endpoint the request was on.
1297  * @req: The request completed.
1298  *
1299  * Called on completion of any requests the driver itself submitted for
1300  * EP0 setup packets
1301  */
1302 static void s3c_hsotg_complete_setup(struct usb_ep *ep,
1303                                      struct usb_request *req)
1304 {
1305         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
1306         struct s3c_hsotg *hsotg = hs_ep->parent;
1307
1308         if (req->status < 0) {
1309                 dev_dbg(hsotg->dev, "%s: failed %d\n", __func__, req->status);
1310                 return;
1311         }
1312
1313         spin_lock(&hsotg->lock);
1314         if (req->actual == 0)
1315                 s3c_hsotg_enqueue_setup(hsotg);
1316         else
1317                 s3c_hsotg_process_control(hsotg, req->buf);
1318         spin_unlock(&hsotg->lock);
1319 }
1320
1321 /**
1322  * s3c_hsotg_enqueue_setup - start a request for EP0 packets
1323  * @hsotg: The device state.
1324  *
1325  * Enqueue a request on EP0 if necessary to received any SETUP packets
1326  * received from the host.
1327  */
1328 static void s3c_hsotg_enqueue_setup(struct s3c_hsotg *hsotg)
1329 {
1330         struct usb_request *req = hsotg->ctrl_req;
1331         struct s3c_hsotg_req *hs_req = our_req(req);
1332         int ret;
1333
1334         dev_dbg(hsotg->dev, "%s: queueing setup request\n", __func__);
1335
1336         req->zero = 0;
1337         req->length = 8;
1338         req->buf = hsotg->ctrl_buff;
1339         req->complete = s3c_hsotg_complete_setup;
1340
1341         if (!list_empty(&hs_req->queue)) {
1342                 dev_dbg(hsotg->dev, "%s already queued???\n", __func__);
1343                 return;
1344         }
1345
1346         hsotg->eps[0].dir_in = 0;
1347
1348         ret = s3c_hsotg_ep_queue(&hsotg->eps[0].ep, req, GFP_ATOMIC);
1349         if (ret < 0) {
1350                 dev_err(hsotg->dev, "%s: failed queue (%d)\n", __func__, ret);
1351                 /*
1352                  * Don't think there's much we can do other than watch the
1353                  * driver fail.
1354                  */
1355         }
1356 }
1357
1358 /**
1359  * s3c_hsotg_complete_request - complete a request given to us
1360  * @hsotg: The device state.
1361  * @hs_ep: The endpoint the request was on.
1362  * @hs_req: The request to complete.
1363  * @result: The result code (0 => Ok, otherwise errno)
1364  *
1365  * The given request has finished, so call the necessary completion
1366  * if it has one and then look to see if we can start a new request
1367  * on the endpoint.
1368  *
1369  * Note, expects the ep to already be locked as appropriate.
1370  */
1371 static void s3c_hsotg_complete_request(struct s3c_hsotg *hsotg,
1372                                        struct s3c_hsotg_ep *hs_ep,
1373                                        struct s3c_hsotg_req *hs_req,
1374                                        int result)
1375 {
1376         bool restart;
1377
1378         if (!hs_req) {
1379                 dev_dbg(hsotg->dev, "%s: nothing to complete?\n", __func__);
1380                 return;
1381         }
1382
1383         dev_dbg(hsotg->dev, "complete: ep %p %s, req %p, %d => %p\n",
1384                 hs_ep, hs_ep->ep.name, hs_req, result, hs_req->req.complete);
1385
1386         /*
1387          * only replace the status if we've not already set an error
1388          * from a previous transaction
1389          */
1390
1391         if (hs_req->req.status == -EINPROGRESS)
1392                 hs_req->req.status = result;
1393
1394         hs_ep->req = NULL;
1395         list_del_init(&hs_req->queue);
1396
1397         if (using_dma(hsotg))
1398                 s3c_hsotg_unmap_dma(hsotg, hs_ep, hs_req);
1399
1400         /*
1401          * call the complete request with the locks off, just in case the
1402          * request tries to queue more work for this endpoint.
1403          */
1404
1405         if (hs_req->req.complete) {
1406                 spin_unlock(&hsotg->lock);
1407                 hs_req->req.complete(&hs_ep->ep, &hs_req->req);
1408                 spin_lock(&hsotg->lock);
1409         }
1410
1411         /*
1412          * Look to see if there is anything else to do. Note, the completion
1413          * of the previous request may have caused a new request to be started
1414          * so be careful when doing this.
1415          */
1416
1417         if (!hs_ep->req && result >= 0) {
1418                 restart = !list_empty(&hs_ep->queue);
1419                 if (restart) {
1420                         hs_req = get_ep_head(hs_ep);
1421                         s3c_hsotg_start_req(hsotg, hs_ep, hs_req, false);
1422                 }
1423         }
1424 }
1425
1426 /**
1427  * s3c_hsotg_rx_data - receive data from the FIFO for an endpoint
1428  * @hsotg: The device state.
1429  * @ep_idx: The endpoint index for the data
1430  * @size: The size of data in the fifo, in bytes
1431  *
1432  * The FIFO status shows there is data to read from the FIFO for a given
1433  * endpoint, so sort out whether we need to read the data into a request
1434  * that has been made for that endpoint.
1435  */
1436 static void s3c_hsotg_rx_data(struct s3c_hsotg *hsotg, int ep_idx, int size)
1437 {
1438         struct s3c_hsotg_ep *hs_ep = &hsotg->eps[ep_idx];
1439         struct s3c_hsotg_req *hs_req = hs_ep->req;
1440         void __iomem *fifo = hsotg->regs + EPFIFO(ep_idx);
1441         int to_read;
1442         int max_req;
1443         int read_ptr;
1444
1445
1446         if (!hs_req) {
1447                 u32 epctl = readl(hsotg->regs + DOEPCTL(ep_idx));
1448                 int ptr;
1449
1450                 dev_warn(hsotg->dev,
1451                          "%s: FIFO %d bytes on ep%d but no req (DxEPCTl=0x%08x)\n",
1452                          __func__, size, ep_idx, epctl);
1453
1454                 /* dump the data from the FIFO, we've nothing we can do */
1455                 for (ptr = 0; ptr < size; ptr += 4)
1456                         (void)readl(fifo);
1457
1458                 return;
1459         }
1460
1461         to_read = size;
1462         read_ptr = hs_req->req.actual;
1463         max_req = hs_req->req.length - read_ptr;
1464
1465         dev_dbg(hsotg->dev, "%s: read %d/%d, done %d/%d\n",
1466                 __func__, to_read, max_req, read_ptr, hs_req->req.length);
1467
1468         if (to_read > max_req) {
1469                 /*
1470                  * more data appeared than we where willing
1471                  * to deal with in this request.
1472                  */
1473
1474                 /* currently we don't deal this */
1475                 WARN_ON_ONCE(1);
1476         }
1477
1478         hs_ep->total_data += to_read;
1479         hs_req->req.actual += to_read;
1480         to_read = DIV_ROUND_UP(to_read, 4);
1481
1482         /*
1483          * note, we might over-write the buffer end by 3 bytes depending on
1484          * alignment of the data.
1485          */
1486         readsl(fifo, hs_req->req.buf + read_ptr, to_read);
1487 }
1488
1489 /**
1490  * s3c_hsotg_send_zlp - send zero-length packet on control endpoint
1491  * @hsotg: The device instance
1492  * @req: The request currently on this endpoint
1493  *
1494  * Generate a zero-length IN packet request for terminating a SETUP
1495  * transaction.
1496  *
1497  * Note, since we don't write any data to the TxFIFO, then it is
1498  * currently believed that we do not need to wait for any space in
1499  * the TxFIFO.
1500  */
1501 static void s3c_hsotg_send_zlp(struct s3c_hsotg *hsotg,
1502                                struct s3c_hsotg_req *req)
1503 {
1504         u32 ctrl;
1505
1506         if (!req) {
1507                 dev_warn(hsotg->dev, "%s: no request?\n", __func__);
1508                 return;
1509         }
1510
1511         if (req->req.length == 0) {
1512                 hsotg->eps[0].sent_zlp = 1;
1513                 s3c_hsotg_enqueue_setup(hsotg);
1514                 return;
1515         }
1516
1517         hsotg->eps[0].dir_in = 1;
1518         hsotg->eps[0].sent_zlp = 1;
1519
1520         dev_dbg(hsotg->dev, "sending zero-length packet\n");
1521
1522         /* issue a zero-sized packet to terminate this */
1523         writel(DxEPTSIZ_MC(1) | DxEPTSIZ_PktCnt(1) |
1524                DxEPTSIZ_XferSize(0), hsotg->regs + DIEPTSIZ(0));
1525
1526         ctrl = readl(hsotg->regs + DIEPCTL0);
1527         ctrl |= DxEPCTL_CNAK;  /* clear NAK set by core */
1528         ctrl |= DxEPCTL_EPEna; /* ensure ep enabled */
1529         ctrl |= DxEPCTL_USBActEp;
1530         writel(ctrl, hsotg->regs + DIEPCTL0);
1531 }
1532
1533 /**
1534  * s3c_hsotg_handle_outdone - handle receiving OutDone/SetupDone from RXFIFO
1535  * @hsotg: The device instance
1536  * @epnum: The endpoint received from
1537  * @was_setup: Set if processing a SetupDone event.
1538  *
1539  * The RXFIFO has delivered an OutDone event, which means that the data
1540  * transfer for an OUT endpoint has been completed, either by a short
1541  * packet or by the finish of a transfer.
1542  */
1543 static void s3c_hsotg_handle_outdone(struct s3c_hsotg *hsotg,
1544                                      int epnum, bool was_setup)
1545 {
1546         u32 epsize = readl(hsotg->regs + DOEPTSIZ(epnum));
1547         struct s3c_hsotg_ep *hs_ep = &hsotg->eps[epnum];
1548         struct s3c_hsotg_req *hs_req = hs_ep->req;
1549         struct usb_request *req = &hs_req->req;
1550         unsigned size_left = DxEPTSIZ_XferSize_GET(epsize);
1551         int result = 0;
1552
1553         if (!hs_req) {
1554                 dev_dbg(hsotg->dev, "%s: no request active\n", __func__);
1555                 return;
1556         }
1557
1558         if (using_dma(hsotg)) {
1559                 unsigned size_done;
1560
1561                 /*
1562                  * Calculate the size of the transfer by checking how much
1563                  * is left in the endpoint size register and then working it
1564                  * out from the amount we loaded for the transfer.
1565                  *
1566                  * We need to do this as DMA pointers are always 32bit aligned
1567                  * so may overshoot/undershoot the transfer.
1568                  */
1569
1570                 size_done = hs_ep->size_loaded - size_left;
1571                 size_done += hs_ep->last_load;
1572
1573                 req->actual = size_done;
1574         }
1575
1576         /* if there is more request to do, schedule new transfer */
1577         if (req->actual < req->length && size_left == 0) {
1578                 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, true);
1579                 return;
1580         } else if (epnum == 0) {
1581                 /*
1582                  * After was_setup = 1 =>
1583                  * set CNAK for non Setup requests
1584                  */
1585                 hsotg->setup = was_setup ? 0 : 1;
1586         }
1587
1588         if (req->actual < req->length && req->short_not_ok) {
1589                 dev_dbg(hsotg->dev, "%s: got %d/%d (short not ok) => error\n",
1590                         __func__, req->actual, req->length);
1591
1592                 /*
1593                  * todo - what should we return here? there's no one else
1594                  * even bothering to check the status.
1595                  */
1596         }
1597
1598         if (epnum == 0) {
1599                 /*
1600                  * Condition req->complete != s3c_hsotg_complete_setup says:
1601                  * send ZLP when we have an asynchronous request from gadget
1602                  */
1603                 if (!was_setup && req->complete != s3c_hsotg_complete_setup)
1604                         s3c_hsotg_send_zlp(hsotg, hs_req);
1605         }
1606
1607         s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, result);
1608 }
1609
1610 /**
1611  * s3c_hsotg_read_frameno - read current frame number
1612  * @hsotg: The device instance
1613  *
1614  * Return the current frame number
1615  */
1616 static u32 s3c_hsotg_read_frameno(struct s3c_hsotg *hsotg)
1617 {
1618         u32 dsts;
1619
1620         dsts = readl(hsotg->regs + DSTS);
1621         dsts &= DSTS_SOFFN_MASK;
1622         dsts >>= DSTS_SOFFN_SHIFT;
1623
1624         return dsts;
1625 }
1626
1627 /**
1628  * s3c_hsotg_handle_rx - RX FIFO has data
1629  * @hsotg: The device instance
1630  *
1631  * The IRQ handler has detected that the RX FIFO has some data in it
1632  * that requires processing, so find out what is in there and do the
1633  * appropriate read.
1634  *
1635  * The RXFIFO is a true FIFO, the packets coming out are still in packet
1636  * chunks, so if you have x packets received on an endpoint you'll get x
1637  * FIFO events delivered, each with a packet's worth of data in it.
1638  *
1639  * When using DMA, we should not be processing events from the RXFIFO
1640  * as the actual data should be sent to the memory directly and we turn
1641  * on the completion interrupts to get notifications of transfer completion.
1642  */
1643 static void s3c_hsotg_handle_rx(struct s3c_hsotg *hsotg)
1644 {
1645         u32 grxstsr = readl(hsotg->regs + GRXSTSP);
1646         u32 epnum, status, size;
1647
1648         WARN_ON(using_dma(hsotg));
1649
1650         epnum = grxstsr & GRXSTS_EPNum_MASK;
1651         status = grxstsr & GRXSTS_PktSts_MASK;
1652
1653         size = grxstsr & GRXSTS_ByteCnt_MASK;
1654         size >>= GRXSTS_ByteCnt_SHIFT;
1655
1656         if (1)
1657                 dev_dbg(hsotg->dev, "%s: GRXSTSP=0x%08x (%d@%d)\n",
1658                         __func__, grxstsr, size, epnum);
1659
1660 #define __status(x) ((x) >> GRXSTS_PktSts_SHIFT)
1661
1662         switch (status >> GRXSTS_PktSts_SHIFT) {
1663         case __status(GRXSTS_PktSts_GlobalOutNAK):
1664                 dev_dbg(hsotg->dev, "GlobalOutNAK\n");
1665                 break;
1666
1667         case __status(GRXSTS_PktSts_OutDone):
1668                 dev_dbg(hsotg->dev, "OutDone (Frame=0x%08x)\n",
1669                         s3c_hsotg_read_frameno(hsotg));
1670
1671                 if (!using_dma(hsotg))
1672                         s3c_hsotg_handle_outdone(hsotg, epnum, false);
1673                 break;
1674
1675         case __status(GRXSTS_PktSts_SetupDone):
1676                 dev_dbg(hsotg->dev,
1677                         "SetupDone (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1678                         s3c_hsotg_read_frameno(hsotg),
1679                         readl(hsotg->regs + DOEPCTL(0)));
1680
1681                 s3c_hsotg_handle_outdone(hsotg, epnum, true);
1682                 break;
1683
1684         case __status(GRXSTS_PktSts_OutRX):
1685                 s3c_hsotg_rx_data(hsotg, epnum, size);
1686                 break;
1687
1688         case __status(GRXSTS_PktSts_SetupRX):
1689                 dev_dbg(hsotg->dev,
1690                         "SetupRX (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1691                         s3c_hsotg_read_frameno(hsotg),
1692                         readl(hsotg->regs + DOEPCTL(0)));
1693
1694                 s3c_hsotg_rx_data(hsotg, epnum, size);
1695                 break;
1696
1697         default:
1698                 dev_warn(hsotg->dev, "%s: unknown status %08x\n",
1699                          __func__, grxstsr);
1700
1701                 s3c_hsotg_dump(hsotg);
1702                 break;
1703         }
1704 }
1705
1706 /**
1707  * s3c_hsotg_ep0_mps - turn max packet size into register setting
1708  * @mps: The maximum packet size in bytes.
1709  */
1710 static u32 s3c_hsotg_ep0_mps(unsigned int mps)
1711 {
1712         switch (mps) {
1713         case 64:
1714                 return D0EPCTL_MPS_64;
1715         case 32:
1716                 return D0EPCTL_MPS_32;
1717         case 16:
1718                 return D0EPCTL_MPS_16;
1719         case 8:
1720                 return D0EPCTL_MPS_8;
1721         }
1722
1723         /* bad max packet size, warn and return invalid result */
1724         WARN_ON(1);
1725         return (u32)-1;
1726 }
1727
1728 /**
1729  * s3c_hsotg_set_ep_maxpacket - set endpoint's max-packet field
1730  * @hsotg: The driver state.
1731  * @ep: The index number of the endpoint
1732  * @mps: The maximum packet size in bytes
1733  *
1734  * Configure the maximum packet size for the given endpoint, updating
1735  * the hardware control registers to reflect this.
1736  */
1737 static void s3c_hsotg_set_ep_maxpacket(struct s3c_hsotg *hsotg,
1738                                        unsigned int ep, unsigned int mps)
1739 {
1740         struct s3c_hsotg_ep *hs_ep = &hsotg->eps[ep];
1741         void __iomem *regs = hsotg->regs;
1742         u32 mpsval;
1743         u32 mcval;
1744         u32 reg;
1745
1746         if (ep == 0) {
1747                 /* EP0 is a special case */
1748                 mpsval = s3c_hsotg_ep0_mps(mps);
1749                 if (mpsval > 3)
1750                         goto bad_mps;
1751                 hs_ep->ep.maxpacket = mps;
1752                 hs_ep->mc = 1;
1753         } else {
1754                 mpsval = mps & DxEPCTL_MPS_MASK;
1755                 if (mpsval > 1024)
1756                         goto bad_mps;
1757                 mcval = ((mps >> 11) & 0x3) + 1;
1758                 hs_ep->mc = mcval;
1759                 if (mcval > 3)
1760                         goto bad_mps;
1761                 hs_ep->ep.maxpacket = mpsval;
1762         }
1763
1764         /*
1765          * update both the in and out endpoint controldir_ registers, even
1766          * if one of the directions may not be in use.
1767          */
1768
1769         reg = readl(regs + DIEPCTL(ep));
1770         reg &= ~DxEPCTL_MPS_MASK;
1771         reg |= mpsval;
1772         writel(reg, regs + DIEPCTL(ep));
1773
1774         if (ep) {
1775                 reg = readl(regs + DOEPCTL(ep));
1776                 reg &= ~DxEPCTL_MPS_MASK;
1777                 reg |= mpsval;
1778                 writel(reg, regs + DOEPCTL(ep));
1779         }
1780
1781         return;
1782
1783 bad_mps:
1784         dev_err(hsotg->dev, "ep%d: bad mps of %d\n", ep, mps);
1785 }
1786
1787 /**
1788  * s3c_hsotg_txfifo_flush - flush Tx FIFO
1789  * @hsotg: The driver state
1790  * @idx: The index for the endpoint (0..15)
1791  */
1792 static void s3c_hsotg_txfifo_flush(struct s3c_hsotg *hsotg, unsigned int idx)
1793 {
1794         int timeout;
1795         int val;
1796
1797         writel(GRSTCTL_TxFNum(idx) | GRSTCTL_TxFFlsh,
1798                 hsotg->regs + GRSTCTL);
1799
1800         /* wait until the fifo is flushed */
1801         timeout = 100;
1802
1803         while (1) {
1804                 val = readl(hsotg->regs + GRSTCTL);
1805
1806                 if ((val & (GRSTCTL_TxFFlsh)) == 0)
1807                         break;
1808
1809                 if (--timeout == 0) {
1810                         dev_err(hsotg->dev,
1811                                 "%s: timeout flushing fifo (GRSTCTL=%08x)\n",
1812                                 __func__, val);
1813                 }
1814
1815                 udelay(1);
1816         }
1817 }
1818
1819 /**
1820  * s3c_hsotg_trytx - check to see if anything needs transmitting
1821  * @hsotg: The driver state
1822  * @hs_ep: The driver endpoint to check.
1823  *
1824  * Check to see if there is a request that has data to send, and if so
1825  * make an attempt to write data into the FIFO.
1826  */
1827 static int s3c_hsotg_trytx(struct s3c_hsotg *hsotg,
1828                            struct s3c_hsotg_ep *hs_ep)
1829 {
1830         struct s3c_hsotg_req *hs_req = hs_ep->req;
1831
1832         if (!hs_ep->dir_in || !hs_req) {
1833                 /**
1834                  * if request is not enqueued, we disable interrupts
1835                  * for endpoints, excepting ep0
1836                  */
1837                 if (hs_ep->index != 0)
1838                         s3c_hsotg_ctrl_epint(hsotg, hs_ep->index,
1839                                              hs_ep->dir_in, 0);
1840                 return 0;
1841         }
1842
1843         if (hs_req->req.actual < hs_req->req.length) {
1844                 dev_dbg(hsotg->dev, "trying to write more for ep%d\n",
1845                         hs_ep->index);
1846                 return s3c_hsotg_write_fifo(hsotg, hs_ep, hs_req);
1847         }
1848
1849         return 0;
1850 }
1851
1852 /**
1853  * s3c_hsotg_complete_in - complete IN transfer
1854  * @hsotg: The device state.
1855  * @hs_ep: The endpoint that has just completed.
1856  *
1857  * An IN transfer has been completed, update the transfer's state and then
1858  * call the relevant completion routines.
1859  */
1860 static void s3c_hsotg_complete_in(struct s3c_hsotg *hsotg,
1861                                   struct s3c_hsotg_ep *hs_ep)
1862 {
1863         struct s3c_hsotg_req *hs_req = hs_ep->req;
1864         u32 epsize = readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
1865         int size_left, size_done;
1866
1867         if (!hs_req) {
1868                 dev_dbg(hsotg->dev, "XferCompl but no req\n");
1869                 return;
1870         }
1871
1872         /* Finish ZLP handling for IN EP0 transactions */
1873         if (hsotg->eps[0].sent_zlp) {
1874                 dev_dbg(hsotg->dev, "zlp packet received\n");
1875                 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
1876                 return;
1877         }
1878
1879         /*
1880          * Calculate the size of the transfer by checking how much is left
1881          * in the endpoint size register and then working it out from
1882          * the amount we loaded for the transfer.
1883          *
1884          * We do this even for DMA, as the transfer may have incremented
1885          * past the end of the buffer (DMA transfers are always 32bit
1886          * aligned).
1887          */
1888
1889         size_left = DxEPTSIZ_XferSize_GET(epsize);
1890
1891         size_done = hs_ep->size_loaded - size_left;
1892         size_done += hs_ep->last_load;
1893
1894         if (hs_req->req.actual != size_done)
1895                 dev_dbg(hsotg->dev, "%s: adjusting size done %d => %d\n",
1896                         __func__, hs_req->req.actual, size_done);
1897
1898         hs_req->req.actual = size_done;
1899         dev_dbg(hsotg->dev, "req->length:%d req->actual:%d req->zero:%d\n",
1900                 hs_req->req.length, hs_req->req.actual, hs_req->req.zero);
1901
1902         /*
1903          * Check if dealing with Maximum Packet Size(MPS) IN transfer at EP0
1904          * When sent data is a multiple MPS size (e.g. 64B ,128B ,192B
1905          * ,256B ... ), after last MPS sized packet send IN ZLP packet to
1906          * inform the host that no more data is available.
1907          * The state of req.zero member is checked to be sure that the value to
1908          * send is smaller than wValue expected from host.
1909          * Check req.length to NOT send another ZLP when the current one is
1910          * under completion (the one for which this completion has been called).
1911          */
1912         if (hs_req->req.length && hs_ep->index == 0 && hs_req->req.zero &&
1913             hs_req->req.length == hs_req->req.actual &&
1914             !(hs_req->req.length % hs_ep->ep.maxpacket)) {
1915
1916                 dev_dbg(hsotg->dev, "ep0 zlp IN packet sent\n");
1917                 s3c_hsotg_send_zlp(hsotg, hs_req);
1918
1919                 return;
1920         }
1921
1922         if (!size_left && hs_req->req.actual < hs_req->req.length) {
1923                 dev_dbg(hsotg->dev, "%s trying more for req...\n", __func__);
1924                 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, true);
1925         } else
1926                 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
1927 }
1928
1929 /**
1930  * s3c_hsotg_epint - handle an in/out endpoint interrupt
1931  * @hsotg: The driver state
1932  * @idx: The index for the endpoint (0..15)
1933  * @dir_in: Set if this is an IN endpoint
1934  *
1935  * Process and clear any interrupt pending for an individual endpoint
1936  */
1937 static void s3c_hsotg_epint(struct s3c_hsotg *hsotg, unsigned int idx,
1938                             int dir_in)
1939 {
1940         struct s3c_hsotg_ep *hs_ep = &hsotg->eps[idx];
1941         u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
1942         u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
1943         u32 epsiz_reg = dir_in ? DIEPTSIZ(idx) : DOEPTSIZ(idx);
1944         u32 ints;
1945         u32 ctrl;
1946
1947         ints = readl(hsotg->regs + epint_reg);
1948         ctrl = readl(hsotg->regs + epctl_reg);
1949
1950         /* Clear endpoint interrupts */
1951         writel(ints, hsotg->regs + epint_reg);
1952
1953         dev_dbg(hsotg->dev, "%s: ep%d(%s) DxEPINT=0x%08x\n",
1954                 __func__, idx, dir_in ? "in" : "out", ints);
1955
1956         if (ints & DxEPINT_XferCompl) {
1957                 if (hs_ep->isochronous && hs_ep->interval == 1) {
1958                         if (ctrl & DxEPCTL_EOFrNum)
1959                                 ctrl |= DxEPCTL_SetEvenFr;
1960                         else
1961                                 ctrl |= DxEPCTL_SetOddFr;
1962                         writel(ctrl, hsotg->regs + epctl_reg);
1963                 }
1964
1965                 dev_dbg(hsotg->dev,
1966                         "%s: XferCompl: DxEPCTL=0x%08x, DxEPTSIZ=%08x\n",
1967                         __func__, readl(hsotg->regs + epctl_reg),
1968                         readl(hsotg->regs + epsiz_reg));
1969
1970                 /*
1971                  * we get OutDone from the FIFO, so we only need to look
1972                  * at completing IN requests here
1973                  */
1974                 if (dir_in) {
1975                         s3c_hsotg_complete_in(hsotg, hs_ep);
1976
1977                         if (idx == 0 && !hs_ep->req)
1978                                 s3c_hsotg_enqueue_setup(hsotg);
1979                 } else if (using_dma(hsotg)) {
1980                         /*
1981                          * We're using DMA, we need to fire an OutDone here
1982                          * as we ignore the RXFIFO.
1983                          */
1984
1985                         s3c_hsotg_handle_outdone(hsotg, idx, false);
1986                 }
1987         }
1988
1989         if (ints & DxEPINT_EPDisbld) {
1990                 dev_dbg(hsotg->dev, "%s: EPDisbld\n", __func__);
1991
1992                 if (dir_in) {
1993                         int epctl = readl(hsotg->regs + epctl_reg);
1994
1995                         s3c_hsotg_txfifo_flush(hsotg, idx);
1996
1997                         if ((epctl & DxEPCTL_Stall) &&
1998                                 (epctl & DxEPCTL_EPType_Bulk)) {
1999                                 int dctl = readl(hsotg->regs + DCTL);
2000
2001                                 dctl |= DCTL_CGNPInNAK;
2002                                 writel(dctl, hsotg->regs + DCTL);
2003                         }
2004                 }
2005         }
2006
2007         if (ints & DxEPINT_AHBErr)
2008                 dev_dbg(hsotg->dev, "%s: AHBErr\n", __func__);
2009
2010         if (ints & DxEPINT_Setup) {  /* Setup or Timeout */
2011                 dev_dbg(hsotg->dev, "%s: Setup/Timeout\n",  __func__);
2012
2013                 if (using_dma(hsotg) && idx == 0) {
2014                         /*
2015                          * this is the notification we've received a
2016                          * setup packet. In non-DMA mode we'd get this
2017                          * from the RXFIFO, instead we need to process
2018                          * the setup here.
2019                          */
2020
2021                         if (dir_in)
2022                                 WARN_ON_ONCE(1);
2023                         else
2024                                 s3c_hsotg_handle_outdone(hsotg, 0, true);
2025                 }
2026         }
2027
2028         if (ints & DxEPINT_Back2BackSetup)
2029                 dev_dbg(hsotg->dev, "%s: B2BSetup/INEPNakEff\n", __func__);
2030
2031         if (dir_in && !hs_ep->isochronous) {
2032                 /* not sure if this is important, but we'll clear it anyway */
2033                 if (ints & DIEPMSK_INTknTXFEmpMsk) {
2034                         dev_dbg(hsotg->dev, "%s: ep%d: INTknTXFEmpMsk\n",
2035                                 __func__, idx);
2036                 }
2037
2038                 /* this probably means something bad is happening */
2039                 if (ints & DIEPMSK_INTknEPMisMsk) {
2040                         dev_warn(hsotg->dev, "%s: ep%d: INTknEP\n",
2041                                  __func__, idx);
2042                 }
2043
2044                 /* FIFO has space or is empty (see GAHBCFG) */
2045                 if (hsotg->dedicated_fifos &&
2046                     ints & DIEPMSK_TxFIFOEmpty) {
2047                         dev_dbg(hsotg->dev, "%s: ep%d: TxFIFOEmpty\n",
2048                                 __func__, idx);
2049                         if (!using_dma(hsotg))
2050                                 s3c_hsotg_trytx(hsotg, hs_ep);
2051                 }
2052         }
2053 }
2054
2055 /**
2056  * s3c_hsotg_irq_enumdone - Handle EnumDone interrupt (enumeration done)
2057  * @hsotg: The device state.
2058  *
2059  * Handle updating the device settings after the enumeration phase has
2060  * been completed.
2061  */
2062 static void s3c_hsotg_irq_enumdone(struct s3c_hsotg *hsotg)
2063 {
2064         u32 dsts = readl(hsotg->regs + DSTS);
2065         int ep0_mps = 0, ep_mps;
2066
2067         /*
2068          * This should signal the finish of the enumeration phase
2069          * of the USB handshaking, so we should now know what rate
2070          * we connected at.
2071          */
2072
2073         dev_dbg(hsotg->dev, "EnumDone (DSTS=0x%08x)\n", dsts);
2074
2075         /*
2076          * note, since we're limited by the size of transfer on EP0, and
2077          * it seems IN transfers must be a even number of packets we do
2078          * not advertise a 64byte MPS on EP0.
2079          */
2080
2081         /* catch both EnumSpd_FS and EnumSpd_FS48 */
2082         switch (dsts & DSTS_EnumSpd_MASK) {
2083         case DSTS_EnumSpd_FS:
2084         case DSTS_EnumSpd_FS48:
2085                 hsotg->gadget.speed = USB_SPEED_FULL;
2086                 ep0_mps = EP0_MPS_LIMIT;
2087                 ep_mps = 64;
2088                 break;
2089
2090         case DSTS_EnumSpd_HS:
2091                 hsotg->gadget.speed = USB_SPEED_HIGH;
2092                 ep0_mps = EP0_MPS_LIMIT;
2093                 ep_mps = 512;
2094                 break;
2095
2096         case DSTS_EnumSpd_LS:
2097                 hsotg->gadget.speed = USB_SPEED_LOW;
2098                 /*
2099                  * note, we don't actually support LS in this driver at the
2100                  * moment, and the documentation seems to imply that it isn't
2101                  * supported by the PHYs on some of the devices.
2102                  */
2103                 break;
2104         }
2105         dev_info(hsotg->dev, "new device is %s\n",
2106                  usb_speed_string(hsotg->gadget.speed));
2107
2108         /*
2109          * we should now know the maximum packet size for an
2110          * endpoint, so set the endpoints to a default value.
2111          */
2112
2113         if (ep0_mps) {
2114                 int i;
2115                 s3c_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps);
2116                 for (i = 1; i < hsotg->num_of_eps; i++)
2117                         s3c_hsotg_set_ep_maxpacket(hsotg, i, ep_mps);
2118         }
2119
2120         /* ensure after enumeration our EP0 is active */
2121
2122         s3c_hsotg_enqueue_setup(hsotg);
2123
2124         dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
2125                 readl(hsotg->regs + DIEPCTL0),
2126                 readl(hsotg->regs + DOEPCTL0));
2127 }
2128
2129 /**
2130  * kill_all_requests - remove all requests from the endpoint's queue
2131  * @hsotg: The device state.
2132  * @ep: The endpoint the requests may be on.
2133  * @result: The result code to use.
2134  * @force: Force removal of any current requests
2135  *
2136  * Go through the requests on the given endpoint and mark them
2137  * completed with the given result code.
2138  */
2139 static void kill_all_requests(struct s3c_hsotg *hsotg,
2140                               struct s3c_hsotg_ep *ep,
2141                               int result, bool force)
2142 {
2143         struct s3c_hsotg_req *req, *treq;
2144
2145         list_for_each_entry_safe(req, treq, &ep->queue, queue) {
2146                 /*
2147                  * currently, we can't do much about an already
2148                  * running request on an in endpoint
2149                  */
2150
2151                 if (ep->req == req && ep->dir_in && !force)
2152                         continue;
2153
2154                 s3c_hsotg_complete_request(hsotg, ep, req,
2155                                            result);
2156         }
2157 }
2158
2159 #define call_gadget(_hs, _entry) \
2160 do { \
2161         if ((_hs)->gadget.speed != USB_SPEED_UNKNOWN && \
2162             (_hs)->driver && (_hs)->driver->_entry) { \
2163                 spin_unlock(&_hs->lock); \
2164                 (_hs)->driver->_entry(&(_hs)->gadget); \
2165                 spin_lock(&_hs->lock); \
2166         } \
2167 } while (0)
2168
2169 /**
2170  * s3c_hsotg_disconnect - disconnect service
2171  * @hsotg: The device state.
2172  *
2173  * The device has been disconnected. Remove all current
2174  * transactions and signal the gadget driver that this
2175  * has happened.
2176  */
2177 static void s3c_hsotg_disconnect(struct s3c_hsotg *hsotg)
2178 {
2179         unsigned ep;
2180
2181         for (ep = 0; ep < hsotg->num_of_eps; ep++)
2182                 kill_all_requests(hsotg, &hsotg->eps[ep], -ESHUTDOWN, true);
2183
2184         call_gadget(hsotg, disconnect);
2185 }
2186
2187 /**
2188  * s3c_hsotg_irq_fifoempty - TX FIFO empty interrupt handler
2189  * @hsotg: The device state:
2190  * @periodic: True if this is a periodic FIFO interrupt
2191  */
2192 static void s3c_hsotg_irq_fifoempty(struct s3c_hsotg *hsotg, bool periodic)
2193 {
2194         struct s3c_hsotg_ep *ep;
2195         int epno, ret;
2196
2197         /* look through for any more data to transmit */
2198
2199         for (epno = 0; epno < hsotg->num_of_eps; epno++) {
2200                 ep = &hsotg->eps[epno];
2201
2202                 if (!ep->dir_in)
2203                         continue;
2204
2205                 if ((periodic && !ep->periodic) ||
2206                     (!periodic && ep->periodic))
2207                         continue;
2208
2209                 ret = s3c_hsotg_trytx(hsotg, ep);
2210                 if (ret < 0)
2211                         break;
2212         }
2213 }
2214
2215 /* IRQ flags which will trigger a retry around the IRQ loop */
2216 #define IRQ_RETRY_MASK (GINTSTS_NPTxFEmp | \
2217                         GINTSTS_PTxFEmp |  \
2218                         GINTSTS_RxFLvl)
2219
2220 /**
2221  * s3c_hsotg_corereset - issue softreset to the core
2222  * @hsotg: The device state
2223  *
2224  * Issue a soft reset to the core, and await the core finishing it.
2225  */
2226 static int s3c_hsotg_corereset(struct s3c_hsotg *hsotg)
2227 {
2228         int timeout;
2229         u32 grstctl;
2230
2231         dev_dbg(hsotg->dev, "resetting core\n");
2232
2233         /* issue soft reset */
2234         writel(GRSTCTL_CSftRst, hsotg->regs + GRSTCTL);
2235
2236         timeout = 10000;
2237         do {
2238                 grstctl = readl(hsotg->regs + GRSTCTL);
2239         } while ((grstctl & GRSTCTL_CSftRst) && timeout-- > 0);
2240
2241         if (grstctl & GRSTCTL_CSftRst) {
2242                 dev_err(hsotg->dev, "Failed to get CSftRst asserted\n");
2243                 return -EINVAL;
2244         }
2245
2246         timeout = 10000;
2247
2248         while (1) {
2249                 u32 grstctl = readl(hsotg->regs + GRSTCTL);
2250
2251                 if (timeout-- < 0) {
2252                         dev_info(hsotg->dev,
2253                                  "%s: reset failed, GRSTCTL=%08x\n",
2254                                  __func__, grstctl);
2255                         return -ETIMEDOUT;
2256                 }
2257
2258                 if (!(grstctl & GRSTCTL_AHBIdle))
2259                         continue;
2260
2261                 break;          /* reset done */
2262         }
2263
2264         dev_dbg(hsotg->dev, "reset successful\n");
2265         return 0;
2266 }
2267
2268 /**
2269  * s3c_hsotg_core_init - issue softreset to the core
2270  * @hsotg: The device state
2271  *
2272  * Issue a soft reset to the core, and await the core finishing it.
2273  */
2274 static void s3c_hsotg_core_init(struct s3c_hsotg *hsotg)
2275 {
2276         s3c_hsotg_corereset(hsotg);
2277
2278         /*
2279          * we must now enable ep0 ready for host detection and then
2280          * set configuration.
2281          */
2282
2283         /* set the PLL on, remove the HNP/SRP and set the PHY */
2284         writel(GUSBCFG_PHYIf16 | GUSBCFG_TOutCal(7) |
2285                (0x5 << 10), hsotg->regs + GUSBCFG);
2286
2287         s3c_hsotg_init_fifo(hsotg);
2288
2289         __orr32(hsotg->regs + DCTL, DCTL_SftDiscon);
2290
2291         writel(1 << 18 | DCFG_DevSpd_HS,  hsotg->regs + DCFG);
2292
2293         /* Clear any pending OTG interrupts */
2294         writel(0xffffffff, hsotg->regs + GOTGINT);
2295
2296         /* Clear any pending interrupts */
2297         writel(0xffffffff, hsotg->regs + GINTSTS);
2298
2299         writel(GINTSTS_ErlySusp | GINTSTS_SessReqInt |
2300                GINTSTS_GOUTNakEff | GINTSTS_GINNakEff |
2301                GINTSTS_ConIDStsChng | GINTSTS_USBRst |
2302                GINTSTS_EnumDone | GINTSTS_OTGInt |
2303                GINTSTS_USBSusp | GINTSTS_WkUpInt,
2304                hsotg->regs + GINTMSK);
2305
2306         if (using_dma(hsotg))
2307                 writel(GAHBCFG_GlblIntrEn | GAHBCFG_DMAEn |
2308                        GAHBCFG_HBstLen_Incr4,
2309                        hsotg->regs + GAHBCFG);
2310         else
2311                 writel(((hsotg->dedicated_fifos) ? (GAHBCFG_NPTxFEmpLvl |
2312                                                     GAHBCFG_PTxFEmpLvl) : 0) |
2313                        GAHBCFG_GlblIntrEn,
2314                        hsotg->regs + GAHBCFG);
2315
2316         /*
2317          * If INTknTXFEmpMsk is enabled, it's important to disable ep interrupts
2318          * when we have no data to transfer. Otherwise we get being flooded by
2319          * interrupts.
2320          */
2321
2322         writel(((hsotg->dedicated_fifos) ? DIEPMSK_TxFIFOEmpty |
2323                DIEPMSK_INTknTXFEmpMsk : 0) |
2324                DIEPMSK_EPDisbldMsk | DIEPMSK_XferComplMsk |
2325                DIEPMSK_TimeOUTMsk | DIEPMSK_AHBErrMsk |
2326                DIEPMSK_INTknEPMisMsk,
2327                hsotg->regs + DIEPMSK);
2328
2329         /*
2330          * don't need XferCompl, we get that from RXFIFO in slave mode. In
2331          * DMA mode we may need this.
2332          */
2333         writel((using_dma(hsotg) ? (DIEPMSK_XferComplMsk |
2334                                     DIEPMSK_TimeOUTMsk) : 0) |
2335                DOEPMSK_EPDisbldMsk | DOEPMSK_AHBErrMsk |
2336                DOEPMSK_SetupMsk,
2337                hsotg->regs + DOEPMSK);
2338
2339         writel(0, hsotg->regs + DAINTMSK);
2340
2341         dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
2342                 readl(hsotg->regs + DIEPCTL0),
2343                 readl(hsotg->regs + DOEPCTL0));
2344
2345         /* enable in and out endpoint interrupts */
2346         s3c_hsotg_en_gsint(hsotg, GINTSTS_OEPInt | GINTSTS_IEPInt);
2347
2348         /*
2349          * Enable the RXFIFO when in slave mode, as this is how we collect
2350          * the data. In DMA mode, we get events from the FIFO but also
2351          * things we cannot process, so do not use it.
2352          */
2353         if (!using_dma(hsotg))
2354                 s3c_hsotg_en_gsint(hsotg, GINTSTS_RxFLvl);
2355
2356         /* Enable interrupts for EP0 in and out */
2357         s3c_hsotg_ctrl_epint(hsotg, 0, 0, 1);
2358         s3c_hsotg_ctrl_epint(hsotg, 0, 1, 1);
2359
2360         __orr32(hsotg->regs + DCTL, DCTL_PWROnPrgDone);
2361         udelay(10);  /* see openiboot */
2362         __bic32(hsotg->regs + DCTL, DCTL_PWROnPrgDone);
2363
2364         dev_dbg(hsotg->dev, "DCTL=0x%08x\n", readl(hsotg->regs + DCTL));
2365
2366         /*
2367          * DxEPCTL_USBActEp says RO in manual, but seems to be set by
2368          * writing to the EPCTL register..
2369          */
2370
2371         /* set to read 1 8byte packet */
2372         writel(DxEPTSIZ_MC(1) | DxEPTSIZ_PktCnt(1) |
2373                DxEPTSIZ_XferSize(8), hsotg->regs + DOEPTSIZ0);
2374
2375         writel(s3c_hsotg_ep0_mps(hsotg->eps[0].ep.maxpacket) |
2376                DxEPCTL_CNAK | DxEPCTL_EPEna |
2377                DxEPCTL_USBActEp,
2378                hsotg->regs + DOEPCTL0);
2379
2380         /* enable, but don't activate EP0in */
2381         writel(s3c_hsotg_ep0_mps(hsotg->eps[0].ep.maxpacket) |
2382                DxEPCTL_USBActEp, hsotg->regs + DIEPCTL0);
2383
2384         s3c_hsotg_enqueue_setup(hsotg);
2385
2386         dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
2387                 readl(hsotg->regs + DIEPCTL0),
2388                 readl(hsotg->regs + DOEPCTL0));
2389
2390         /* clear global NAKs */
2391         writel(DCTL_CGOUTNak | DCTL_CGNPInNAK,
2392                hsotg->regs + DCTL);
2393
2394         /* must be at-least 3ms to allow bus to see disconnect */
2395         mdelay(3);
2396
2397         /* remove the soft-disconnect and let's go */
2398         __bic32(hsotg->regs + DCTL, DCTL_SftDiscon);
2399 }
2400
2401 /**
2402  * s3c_hsotg_irq - handle device interrupt
2403  * @irq: The IRQ number triggered
2404  * @pw: The pw value when registered the handler.
2405  */
2406 static irqreturn_t s3c_hsotg_irq(int irq, void *pw)
2407 {
2408         struct s3c_hsotg *hsotg = pw;
2409         int retry_count = 8;
2410         u32 gintsts;
2411         u32 gintmsk;
2412
2413         spin_lock(&hsotg->lock);
2414 irq_retry:
2415         gintsts = readl(hsotg->regs + GINTSTS);
2416         gintmsk = readl(hsotg->regs + GINTMSK);
2417
2418         dev_dbg(hsotg->dev, "%s: %08x %08x (%08x) retry %d\n",
2419                 __func__, gintsts, gintsts & gintmsk, gintmsk, retry_count);
2420
2421         gintsts &= gintmsk;
2422
2423         if (gintsts & GINTSTS_OTGInt) {
2424                 u32 otgint = readl(hsotg->regs + GOTGINT);
2425
2426                 dev_info(hsotg->dev, "OTGInt: %08x\n", otgint);
2427
2428                 writel(otgint, hsotg->regs + GOTGINT);
2429         }
2430
2431         if (gintsts & GINTSTS_SessReqInt) {
2432                 dev_dbg(hsotg->dev, "%s: SessReqInt\n", __func__);
2433                 writel(GINTSTS_SessReqInt, hsotg->regs + GINTSTS);
2434         }
2435
2436         if (gintsts & GINTSTS_EnumDone) {
2437                 writel(GINTSTS_EnumDone, hsotg->regs + GINTSTS);
2438
2439                 s3c_hsotg_irq_enumdone(hsotg);
2440         }
2441
2442         if (gintsts & GINTSTS_ConIDStsChng) {
2443                 dev_dbg(hsotg->dev, "ConIDStsChg (DSTS=0x%08x, GOTCTL=%08x)\n",
2444                         readl(hsotg->regs + DSTS),
2445                         readl(hsotg->regs + GOTGCTL));
2446
2447                 writel(GINTSTS_ConIDStsChng, hsotg->regs + GINTSTS);
2448         }
2449
2450         if (gintsts & (GINTSTS_OEPInt | GINTSTS_IEPInt)) {
2451                 u32 daint = readl(hsotg->regs + DAINT);
2452                 u32 daintmsk = readl(hsotg->regs + DAINTMSK);
2453                 u32 daint_out, daint_in;
2454                 int ep;
2455
2456                 daint &= daintmsk;
2457                 daint_out = daint >> DAINT_OutEP_SHIFT;
2458                 daint_in = daint & ~(daint_out << DAINT_OutEP_SHIFT);
2459
2460                 dev_dbg(hsotg->dev, "%s: daint=%08x\n", __func__, daint);
2461
2462                 for (ep = 0; ep < 15 && daint_out; ep++, daint_out >>= 1) {
2463                         if (daint_out & 1)
2464                                 s3c_hsotg_epint(hsotg, ep, 0);
2465                 }
2466
2467                 for (ep = 0; ep < 15 && daint_in; ep++, daint_in >>= 1) {
2468                         if (daint_in & 1)
2469                                 s3c_hsotg_epint(hsotg, ep, 1);
2470                 }
2471         }
2472
2473         if (gintsts & GINTSTS_USBRst) {
2474
2475                 u32 usb_status = readl(hsotg->regs + GOTGCTL);
2476
2477                 dev_info(hsotg->dev, "%s: USBRst\n", __func__);
2478                 dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n",
2479                         readl(hsotg->regs + GNPTXSTS));
2480
2481                 writel(GINTSTS_USBRst, hsotg->regs + GINTSTS);
2482
2483                 if (usb_status & GOTGCTL_BSESVLD) {
2484                         if (time_after(jiffies, hsotg->last_rst +
2485                                        msecs_to_jiffies(200))) {
2486
2487                                 kill_all_requests(hsotg, &hsotg->eps[0],
2488                                                           -ECONNRESET, true);
2489
2490                                 s3c_hsotg_core_init(hsotg);
2491                                 hsotg->last_rst = jiffies;
2492                         }
2493                 }
2494         }
2495
2496         /* check both FIFOs */
2497
2498         if (gintsts & GINTSTS_NPTxFEmp) {
2499                 dev_dbg(hsotg->dev, "NPTxFEmp\n");
2500
2501                 /*
2502                  * Disable the interrupt to stop it happening again
2503                  * unless one of these endpoint routines decides that
2504                  * it needs re-enabling
2505                  */
2506
2507                 s3c_hsotg_disable_gsint(hsotg, GINTSTS_NPTxFEmp);
2508                 s3c_hsotg_irq_fifoempty(hsotg, false);
2509         }
2510
2511         if (gintsts & GINTSTS_PTxFEmp) {
2512                 dev_dbg(hsotg->dev, "PTxFEmp\n");
2513
2514                 /* See note in GINTSTS_NPTxFEmp */
2515
2516                 s3c_hsotg_disable_gsint(hsotg, GINTSTS_PTxFEmp);
2517                 s3c_hsotg_irq_fifoempty(hsotg, true);
2518         }
2519
2520         if (gintsts & GINTSTS_RxFLvl) {
2521                 /*
2522                  * note, since GINTSTS_RxFLvl doubles as FIFO-not-empty,
2523                  * we need to retry s3c_hsotg_handle_rx if this is still
2524                  * set.
2525                  */
2526
2527                 s3c_hsotg_handle_rx(hsotg);
2528         }
2529
2530         if (gintsts & GINTSTS_ModeMis) {
2531                 dev_warn(hsotg->dev, "warning, mode mismatch triggered\n");
2532                 writel(GINTSTS_ModeMis, hsotg->regs + GINTSTS);
2533         }
2534
2535         if (gintsts & GINTSTS_USBSusp) {
2536                 dev_info(hsotg->dev, "GINTSTS_USBSusp\n");
2537                 writel(GINTSTS_USBSusp, hsotg->regs + GINTSTS);
2538
2539                 call_gadget(hsotg, suspend);
2540                 s3c_hsotg_disconnect(hsotg);
2541         }
2542
2543         if (gintsts & GINTSTS_WkUpInt) {
2544                 dev_info(hsotg->dev, "GINTSTS_WkUpIn\n");
2545                 writel(GINTSTS_WkUpInt, hsotg->regs + GINTSTS);
2546
2547                 call_gadget(hsotg, resume);
2548         }
2549
2550         if (gintsts & GINTSTS_ErlySusp) {
2551                 dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n");
2552                 writel(GINTSTS_ErlySusp, hsotg->regs + GINTSTS);
2553         }
2554
2555         /*
2556          * these next two seem to crop-up occasionally causing the core
2557          * to shutdown the USB transfer, so try clearing them and logging
2558          * the occurrence.
2559          */
2560
2561         if (gintsts & GINTSTS_GOUTNakEff) {
2562                 dev_info(hsotg->dev, "GOUTNakEff triggered\n");
2563
2564                 writel(DCTL_CGOUTNak, hsotg->regs + DCTL);
2565
2566                 s3c_hsotg_dump(hsotg);
2567         }
2568
2569         if (gintsts & GINTSTS_GINNakEff) {
2570                 dev_info(hsotg->dev, "GINNakEff triggered\n");
2571
2572                 writel(DCTL_CGNPInNAK, hsotg->regs + DCTL);
2573
2574                 s3c_hsotg_dump(hsotg);
2575         }
2576
2577         /*
2578          * if we've had fifo events, we should try and go around the
2579          * loop again to see if there's any point in returning yet.
2580          */
2581
2582         if (gintsts & IRQ_RETRY_MASK && --retry_count > 0)
2583                         goto irq_retry;
2584
2585         spin_unlock(&hsotg->lock);
2586
2587         return IRQ_HANDLED;
2588 }
2589
2590 /**
2591  * s3c_hsotg_ep_enable - enable the given endpoint
2592  * @ep: The USB endpint to configure
2593  * @desc: The USB endpoint descriptor to configure with.
2594  *
2595  * This is called from the USB gadget code's usb_ep_enable().
2596  */
2597 static int s3c_hsotg_ep_enable(struct usb_ep *ep,
2598                                const struct usb_endpoint_descriptor *desc)
2599 {
2600         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2601         struct s3c_hsotg *hsotg = hs_ep->parent;
2602         unsigned long flags;
2603         int index = hs_ep->index;
2604         u32 epctrl_reg;
2605         u32 epctrl;
2606         u32 mps;
2607         int dir_in;
2608         int ret = 0;
2609
2610         dev_dbg(hsotg->dev,
2611                 "%s: ep %s: a 0x%02x, attr 0x%02x, mps 0x%04x, intr %d\n",
2612                 __func__, ep->name, desc->bEndpointAddress, desc->bmAttributes,
2613                 desc->wMaxPacketSize, desc->bInterval);
2614
2615         /* not to be called for EP0 */
2616         WARN_ON(index == 0);
2617
2618         dir_in = (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? 1 : 0;
2619         if (dir_in != hs_ep->dir_in) {
2620                 dev_err(hsotg->dev, "%s: direction mismatch!\n", __func__);
2621                 return -EINVAL;
2622         }
2623
2624         mps = usb_endpoint_maxp(desc);
2625
2626         /* note, we handle this here instead of s3c_hsotg_set_ep_maxpacket */
2627
2628         epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
2629         epctrl = readl(hsotg->regs + epctrl_reg);
2630
2631         dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x from 0x%08x\n",
2632                 __func__, epctrl, epctrl_reg);
2633
2634         spin_lock_irqsave(&hsotg->lock, flags);
2635
2636         epctrl &= ~(DxEPCTL_EPType_MASK | DxEPCTL_MPS_MASK);
2637         epctrl |= DxEPCTL_MPS(mps);
2638
2639         /*
2640          * mark the endpoint as active, otherwise the core may ignore
2641          * transactions entirely for this endpoint
2642          */
2643         epctrl |= DxEPCTL_USBActEp;
2644
2645         /*
2646          * set the NAK status on the endpoint, otherwise we might try and
2647          * do something with data that we've yet got a request to process
2648          * since the RXFIFO will take data for an endpoint even if the
2649          * size register hasn't been set.
2650          */
2651
2652         epctrl |= DxEPCTL_SNAK;
2653
2654         /* update the endpoint state */
2655         s3c_hsotg_set_ep_maxpacket(hsotg, hs_ep->index, mps);
2656
2657         /* default, set to non-periodic */
2658         hs_ep->isochronous = 0;
2659         hs_ep->periodic = 0;
2660         hs_ep->halted = 0;
2661         hs_ep->interval = desc->bInterval;
2662
2663         if (hs_ep->interval > 1 && hs_ep->mc > 1)
2664                 dev_err(hsotg->dev, "MC > 1 when interval is not 1\n");
2665
2666         switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
2667         case USB_ENDPOINT_XFER_ISOC:
2668                 epctrl |= DxEPCTL_EPType_Iso;
2669                 epctrl |= DxEPCTL_SetEvenFr;
2670                 hs_ep->isochronous = 1;
2671                 if (dir_in)
2672                         hs_ep->periodic = 1;
2673                 break;
2674
2675         case USB_ENDPOINT_XFER_BULK:
2676                 epctrl |= DxEPCTL_EPType_Bulk;
2677                 break;
2678
2679         case USB_ENDPOINT_XFER_INT:
2680                 if (dir_in) {
2681                         /*
2682                          * Allocate our TxFNum by simply using the index
2683                          * of the endpoint for the moment. We could do
2684                          * something better if the host indicates how
2685                          * many FIFOs we are expecting to use.
2686                          */
2687
2688                         hs_ep->periodic = 1;
2689                         epctrl |= DxEPCTL_TxFNum(index);
2690                 }
2691
2692                 epctrl |= DxEPCTL_EPType_Intterupt;
2693                 break;
2694
2695         case USB_ENDPOINT_XFER_CONTROL:
2696                 epctrl |= DxEPCTL_EPType_Control;
2697                 break;
2698         }
2699
2700         /*
2701          * if the hardware has dedicated fifos, we must give each IN EP
2702          * a unique tx-fifo even if it is non-periodic.
2703          */
2704         if (dir_in && hsotg->dedicated_fifos)
2705                 epctrl |= DxEPCTL_TxFNum(index);
2706
2707         /* for non control endpoints, set PID to D0 */
2708         if (index)
2709                 epctrl |= DxEPCTL_SetD0PID;
2710
2711         dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
2712                 __func__, epctrl);
2713
2714         writel(epctrl, hsotg->regs + epctrl_reg);
2715         dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
2716                 __func__, readl(hsotg->regs + epctrl_reg));
2717
2718         /* enable the endpoint interrupt */
2719         s3c_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
2720
2721         spin_unlock_irqrestore(&hsotg->lock, flags);
2722         return ret;
2723 }
2724
2725 /**
2726  * s3c_hsotg_ep_disable - disable given endpoint
2727  * @ep: The endpoint to disable.
2728  */
2729 static int s3c_hsotg_ep_disable(struct usb_ep *ep)
2730 {
2731         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2732         struct s3c_hsotg *hsotg = hs_ep->parent;
2733         int dir_in = hs_ep->dir_in;
2734         int index = hs_ep->index;
2735         unsigned long flags;
2736         u32 epctrl_reg;
2737         u32 ctrl;
2738
2739         dev_info(hsotg->dev, "%s(ep %p)\n", __func__, ep);
2740
2741         if (ep == &hsotg->eps[0].ep) {
2742                 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
2743                 return -EINVAL;
2744         }
2745
2746         epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
2747
2748         spin_lock_irqsave(&hsotg->lock, flags);
2749         /* terminate all requests with shutdown */
2750         kill_all_requests(hsotg, hs_ep, -ESHUTDOWN, false);
2751
2752
2753         ctrl = readl(hsotg->regs + epctrl_reg);
2754         ctrl &= ~DxEPCTL_EPEna;
2755         ctrl &= ~DxEPCTL_USBActEp;
2756         ctrl |= DxEPCTL_SNAK;
2757
2758         dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
2759         writel(ctrl, hsotg->regs + epctrl_reg);
2760
2761         /* disable endpoint interrupts */
2762         s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
2763
2764         spin_unlock_irqrestore(&hsotg->lock, flags);
2765         return 0;
2766 }
2767
2768 /**
2769  * on_list - check request is on the given endpoint
2770  * @ep: The endpoint to check.
2771  * @test: The request to test if it is on the endpoint.
2772  */
2773 static bool on_list(struct s3c_hsotg_ep *ep, struct s3c_hsotg_req *test)
2774 {
2775         struct s3c_hsotg_req *req, *treq;
2776
2777         list_for_each_entry_safe(req, treq, &ep->queue, queue) {
2778                 if (req == test)
2779                         return true;
2780         }
2781
2782         return false;
2783 }
2784
2785 /**
2786  * s3c_hsotg_ep_dequeue - dequeue given endpoint
2787  * @ep: The endpoint to dequeue.
2788  * @req: The request to be removed from a queue.
2789  */
2790 static int s3c_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
2791 {
2792         struct s3c_hsotg_req *hs_req = our_req(req);
2793         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2794         struct s3c_hsotg *hs = hs_ep->parent;
2795         unsigned long flags;
2796
2797         dev_info(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
2798
2799         spin_lock_irqsave(&hs->lock, flags);
2800
2801         if (!on_list(hs_ep, hs_req)) {
2802                 spin_unlock_irqrestore(&hs->lock, flags);
2803                 return -EINVAL;
2804         }
2805
2806         s3c_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
2807         spin_unlock_irqrestore(&hs->lock, flags);
2808
2809         return 0;
2810 }
2811
2812 /**
2813  * s3c_hsotg_ep_sethalt - set halt on a given endpoint
2814  * @ep: The endpoint to set halt.
2815  * @value: Set or unset the halt.
2816  */
2817 static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value)
2818 {
2819         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2820         struct s3c_hsotg *hs = hs_ep->parent;
2821         int index = hs_ep->index;
2822         u32 epreg;
2823         u32 epctl;
2824         u32 xfertype;
2825
2826         dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
2827
2828         /* write both IN and OUT control registers */
2829
2830         epreg = DIEPCTL(index);
2831         epctl = readl(hs->regs + epreg);
2832
2833         if (value) {
2834                 epctl |= DxEPCTL_Stall + DxEPCTL_SNAK;
2835                 if (epctl & DxEPCTL_EPEna)
2836                         epctl |= DxEPCTL_EPDis;
2837         } else {
2838                 epctl &= ~DxEPCTL_Stall;
2839                 xfertype = epctl & DxEPCTL_EPType_MASK;
2840                 if (xfertype == DxEPCTL_EPType_Bulk ||
2841                         xfertype == DxEPCTL_EPType_Intterupt)
2842                                 epctl |= DxEPCTL_SetD0PID;
2843         }
2844
2845         writel(epctl, hs->regs + epreg);
2846
2847         epreg = DOEPCTL(index);
2848         epctl = readl(hs->regs + epreg);
2849
2850         if (value)
2851                 epctl |= DxEPCTL_Stall;
2852         else {
2853                 epctl &= ~DxEPCTL_Stall;
2854                 xfertype = epctl & DxEPCTL_EPType_MASK;
2855                 if (xfertype == DxEPCTL_EPType_Bulk ||
2856                         xfertype == DxEPCTL_EPType_Intterupt)
2857                                 epctl |= DxEPCTL_SetD0PID;
2858         }
2859
2860         writel(epctl, hs->regs + epreg);
2861
2862         hs_ep->halted = value;
2863
2864         return 0;
2865 }
2866
2867 /**
2868  * s3c_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
2869  * @ep: The endpoint to set halt.
2870  * @value: Set or unset the halt.
2871  */
2872 static int s3c_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
2873 {
2874         struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2875         struct s3c_hsotg *hs = hs_ep->parent;
2876         unsigned long flags = 0;
2877         int ret = 0;
2878
2879         spin_lock_irqsave(&hs->lock, flags);
2880         ret = s3c_hsotg_ep_sethalt(ep, value);
2881         spin_unlock_irqrestore(&hs->lock, flags);
2882
2883         return ret;
2884 }
2885
2886 static struct usb_ep_ops s3c_hsotg_ep_ops = {
2887         .enable         = s3c_hsotg_ep_enable,
2888         .disable        = s3c_hsotg_ep_disable,
2889         .alloc_request  = s3c_hsotg_ep_alloc_request,
2890         .free_request   = s3c_hsotg_ep_free_request,
2891         .queue          = s3c_hsotg_ep_queue_lock,
2892         .dequeue        = s3c_hsotg_ep_dequeue,
2893         .set_halt       = s3c_hsotg_ep_sethalt_lock,
2894         /* note, don't believe we have any call for the fifo routines */
2895 };
2896
2897 /**
2898  * s3c_hsotg_phy_enable - enable platform phy dev
2899  * @hsotg: The driver state
2900  *
2901  * A wrapper for platform code responsible for controlling
2902  * low-level USB code
2903  */
2904 static void s3c_hsotg_phy_enable(struct s3c_hsotg *hsotg)
2905 {
2906         struct platform_device *pdev = to_platform_device(hsotg->dev);
2907
2908         dev_dbg(hsotg->dev, "pdev 0x%p\n", pdev);
2909
2910         if (hsotg->phy)
2911                 usb_phy_init(hsotg->phy);
2912         else if (hsotg->plat->phy_init)
2913                 hsotg->plat->phy_init(pdev, hsotg->plat->phy_type);
2914 }
2915
2916 /**
2917  * s3c_hsotg_phy_disable - disable platform phy dev
2918  * @hsotg: The driver state
2919  *
2920  * A wrapper for platform code responsible for controlling
2921  * low-level USB code
2922  */
2923 static void s3c_hsotg_phy_disable(struct s3c_hsotg *hsotg)
2924 {
2925         struct platform_device *pdev = to_platform_device(hsotg->dev);
2926
2927         if (hsotg->phy)
2928                 usb_phy_shutdown(hsotg->phy);
2929         else if (hsotg->plat->phy_exit)
2930                 hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type);
2931 }
2932
2933 /**
2934  * s3c_hsotg_init - initalize the usb core
2935  * @hsotg: The driver state
2936  */
2937 static void s3c_hsotg_init(struct s3c_hsotg *hsotg)
2938 {
2939         /* unmask subset of endpoint interrupts */
2940
2941         writel(DIEPMSK_TimeOUTMsk | DIEPMSK_AHBErrMsk |
2942                DIEPMSK_EPDisbldMsk | DIEPMSK_XferComplMsk,
2943                hsotg->regs + DIEPMSK);
2944
2945         writel(DOEPMSK_SetupMsk | DOEPMSK_AHBErrMsk |
2946                DOEPMSK_EPDisbldMsk | DOEPMSK_XferComplMsk,
2947                hsotg->regs + DOEPMSK);
2948
2949         writel(0, hsotg->regs + DAINTMSK);
2950
2951         /* Be in disconnected state until gadget is registered */
2952         __orr32(hsotg->regs + DCTL, DCTL_SftDiscon);
2953
2954         if (0) {
2955                 /* post global nak until we're ready */
2956                 writel(DCTL_SGNPInNAK | DCTL_SGOUTNak,
2957                        hsotg->regs + DCTL);
2958         }
2959
2960         /* setup fifos */
2961
2962         dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
2963                 readl(hsotg->regs + GRXFSIZ),
2964                 readl(hsotg->regs + GNPTXFSIZ));
2965
2966         s3c_hsotg_init_fifo(hsotg);
2967
2968         /* set the PLL on, remove the HNP/SRP and set the PHY */
2969         writel(GUSBCFG_PHYIf16 | GUSBCFG_TOutCal(7) | (0x5 << 10),
2970                hsotg->regs + GUSBCFG);
2971
2972         writel(using_dma(hsotg) ? GAHBCFG_DMAEn : 0x0,
2973                hsotg->regs + GAHBCFG);
2974 }
2975
2976 /**
2977  * s3c_hsotg_udc_start - prepare the udc for work
2978  * @gadget: The usb gadget state
2979  * @driver: The usb gadget driver
2980  *
2981  * Perform initialization to prepare udc device and driver
2982  * to work.
2983  */
2984 static int s3c_hsotg_udc_start(struct usb_gadget *gadget,
2985                            struct usb_gadget_driver *driver)
2986 {
2987         struct s3c_hsotg *hsotg = to_hsotg(gadget);
2988         int ret;
2989
2990         if (!hsotg) {
2991                 pr_err("%s: called with no device\n", __func__);
2992                 return -ENODEV;
2993         }
2994
2995         if (!driver) {
2996                 dev_err(hsotg->dev, "%s: no driver\n", __func__);
2997                 return -EINVAL;
2998         }
2999
3000         if (driver->max_speed < USB_SPEED_FULL)
3001                 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
3002
3003         if (!driver->setup) {
3004                 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
3005                 return -EINVAL;
3006         }
3007
3008         WARN_ON(hsotg->driver);
3009
3010         driver->driver.bus = NULL;
3011         hsotg->driver = driver;
3012         hsotg->gadget.dev.of_node = hsotg->dev->of_node;
3013         hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3014
3015         ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
3016                                     hsotg->supplies);
3017         if (ret) {
3018                 dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret);
3019                 goto err;
3020         }
3021
3022         hsotg->last_rst = jiffies;
3023         dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
3024         return 0;
3025
3026 err:
3027         hsotg->driver = NULL;
3028         return ret;
3029 }
3030
3031 /**
3032  * s3c_hsotg_udc_stop - stop the udc
3033  * @gadget: The usb gadget state
3034  * @driver: The usb gadget driver
3035  *
3036  * Stop udc hw block and stay tunned for future transmissions
3037  */
3038 static int s3c_hsotg_udc_stop(struct usb_gadget *gadget,
3039                           struct usb_gadget_driver *driver)
3040 {
3041         struct s3c_hsotg *hsotg = to_hsotg(gadget);
3042         unsigned long flags = 0;
3043         int ep;
3044
3045         if (!hsotg)
3046                 return -ENODEV;
3047
3048         /* all endpoints should be shutdown */
3049         for (ep = 0; ep < hsotg->num_of_eps; ep++)
3050                 s3c_hsotg_ep_disable(&hsotg->eps[ep].ep);
3051
3052         spin_lock_irqsave(&hsotg->lock, flags);
3053
3054         s3c_hsotg_phy_disable(hsotg);
3055
3056         if (!driver)
3057                 hsotg->driver = NULL;
3058
3059         hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3060
3061         spin_unlock_irqrestore(&hsotg->lock, flags);
3062
3063         regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
3064
3065         return 0;
3066 }
3067
3068 /**
3069  * s3c_hsotg_gadget_getframe - read the frame number
3070  * @gadget: The usb gadget state
3071  *
3072  * Read the {micro} frame number
3073  */
3074 static int s3c_hsotg_gadget_getframe(struct usb_gadget *gadget)
3075 {
3076         return s3c_hsotg_read_frameno(to_hsotg(gadget));
3077 }
3078
3079 /**
3080  * s3c_hsotg_pullup - connect/disconnect the USB PHY
3081  * @gadget: The usb gadget state
3082  * @is_on: Current state of the USB PHY
3083  *
3084  * Connect/Disconnect the USB PHY pullup
3085  */
3086 static int s3c_hsotg_pullup(struct usb_gadget *gadget, int is_on)
3087 {
3088         struct s3c_hsotg *hsotg = to_hsotg(gadget);
3089         unsigned long flags = 0;
3090
3091         dev_dbg(hsotg->dev, "%s: is_in: %d\n", __func__, is_on);
3092
3093         spin_lock_irqsave(&hsotg->lock, flags);
3094         if (is_on) {
3095                 s3c_hsotg_phy_enable(hsotg);
3096                 s3c_hsotg_core_init(hsotg);
3097         } else {
3098                 s3c_hsotg_disconnect(hsotg);
3099                 s3c_hsotg_phy_disable(hsotg);
3100         }
3101
3102         hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3103         spin_unlock_irqrestore(&hsotg->lock, flags);
3104
3105         return 0;
3106 }
3107
3108 static const struct usb_gadget_ops s3c_hsotg_gadget_ops = {
3109         .get_frame      = s3c_hsotg_gadget_getframe,
3110         .udc_start              = s3c_hsotg_udc_start,
3111         .udc_stop               = s3c_hsotg_udc_stop,
3112         .pullup                 = s3c_hsotg_pullup,
3113 };
3114
3115 /**
3116  * s3c_hsotg_initep - initialise a single endpoint
3117  * @hsotg: The device state.
3118  * @hs_ep: The endpoint to be initialised.
3119  * @epnum: The endpoint number
3120  *
3121  * Initialise the given endpoint (as part of the probe and device state
3122  * creation) to give to the gadget driver. Setup the endpoint name, any
3123  * direction information and other state that may be required.
3124  */
3125 static void s3c_hsotg_initep(struct s3c_hsotg *hsotg,
3126                                        struct s3c_hsotg_ep *hs_ep,
3127                                        int epnum)
3128 {
3129         u32 ptxfifo;
3130         char *dir;
3131
3132         if (epnum == 0)
3133                 dir = "";
3134         else if ((epnum % 2) == 0) {
3135                 dir = "out";
3136         } else {
3137                 dir = "in";
3138                 hs_ep->dir_in = 1;
3139         }
3140
3141         hs_ep->index = epnum;
3142
3143         snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
3144
3145         INIT_LIST_HEAD(&hs_ep->queue);
3146         INIT_LIST_HEAD(&hs_ep->ep.ep_list);
3147
3148         /* add to the list of endpoints known by the gadget driver */
3149         if (epnum)
3150                 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
3151
3152         hs_ep->parent = hsotg;
3153         hs_ep->ep.name = hs_ep->name;
3154         hs_ep->ep.maxpacket = epnum ? 1024 : EP0_MPS_LIMIT;
3155         hs_ep->ep.ops = &s3c_hsotg_ep_ops;
3156
3157         /*
3158          * Read the FIFO size for the Periodic TX FIFO, even if we're
3159          * an OUT endpoint, we may as well do this if in future the
3160          * code is changed to make each endpoint's direction changeable.
3161          */
3162
3163         ptxfifo = readl(hsotg->regs + DPTXFSIZn(epnum));
3164         hs_ep->fifo_size = DPTXFSIZn_DPTxFSize_GET(ptxfifo) * 4;
3165
3166         /*
3167          * if we're using dma, we need to set the next-endpoint pointer
3168          * to be something valid.
3169          */
3170
3171         if (using_dma(hsotg)) {
3172                 u32 next = DxEPCTL_NextEp((epnum + 1) % 15);
3173                 writel(next, hsotg->regs + DIEPCTL(epnum));
3174                 writel(next, hsotg->regs + DOEPCTL(epnum));
3175         }
3176 }
3177
3178 /**
3179  * s3c_hsotg_hw_cfg - read HW configuration registers
3180  * @param: The device state
3181  *
3182  * Read the USB core HW configuration registers
3183  */
3184 static void s3c_hsotg_hw_cfg(struct s3c_hsotg *hsotg)
3185 {
3186         u32 cfg2, cfg4;
3187         /* check hardware configuration */
3188
3189         cfg2 = readl(hsotg->regs + 0x48);
3190         hsotg->num_of_eps = (cfg2 >> 10) & 0xF;
3191
3192         dev_info(hsotg->dev, "EPs:%d\n", hsotg->num_of_eps);
3193
3194         cfg4 = readl(hsotg->regs + 0x50);
3195         hsotg->dedicated_fifos = (cfg4 >> 25) & 1;
3196
3197         dev_info(hsotg->dev, "%s fifos\n",
3198                  hsotg->dedicated_fifos ? "dedicated" : "shared");
3199 }
3200
3201 /**
3202  * s3c_hsotg_dump - dump state of the udc
3203  * @param: The device state
3204  */
3205 static void s3c_hsotg_dump(struct s3c_hsotg *hsotg)
3206 {
3207 #ifdef DEBUG
3208         struct device *dev = hsotg->dev;
3209         void __iomem *regs = hsotg->regs;
3210         u32 val;
3211         int idx;
3212
3213         dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
3214                  readl(regs + DCFG), readl(regs + DCTL),
3215                  readl(regs + DIEPMSK));
3216
3217         dev_info(dev, "GAHBCFG=0x%08x, 0x44=0x%08x\n",
3218                  readl(regs + GAHBCFG), readl(regs + 0x44));
3219
3220         dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
3221                  readl(regs + GRXFSIZ), readl(regs + GNPTXFSIZ));
3222
3223         /* show periodic fifo settings */
3224
3225         for (idx = 1; idx <= 15; idx++) {
3226                 val = readl(regs + DPTXFSIZn(idx));
3227                 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
3228                          val >> DPTXFSIZn_DPTxFSize_SHIFT,
3229                          val & DPTXFSIZn_DPTxFStAddr_MASK);
3230         }
3231
3232         for (idx = 0; idx < 15; idx++) {
3233                 dev_info(dev,
3234                          "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
3235                          readl(regs + DIEPCTL(idx)),
3236                          readl(regs + DIEPTSIZ(idx)),
3237                          readl(regs + DIEPDMA(idx)));
3238
3239                 val = readl(regs + DOEPCTL(idx));
3240                 dev_info(dev,
3241                          "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
3242                          idx, readl(regs + DOEPCTL(idx)),
3243                          readl(regs + DOEPTSIZ(idx)),
3244                          readl(regs + DOEPDMA(idx)));
3245
3246         }
3247
3248         dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
3249                  readl(regs + DVBUSDIS), readl(regs + DVBUSPULSE));
3250 #endif
3251 }
3252
3253 /**
3254  * state_show - debugfs: show overall driver and device state.
3255  * @seq: The seq file to write to.
3256  * @v: Unused parameter.
3257  *
3258  * This debugfs entry shows the overall state of the hardware and
3259  * some general information about each of the endpoints available
3260  * to the system.
3261  */
3262 static int state_show(struct seq_file *seq, void *v)
3263 {
3264         struct s3c_hsotg *hsotg = seq->private;
3265         void __iomem *regs = hsotg->regs;
3266         int idx;
3267
3268         seq_printf(seq, "DCFG=0x%08x, DCTL=0x%08x, DSTS=0x%08x\n",
3269                  readl(regs + DCFG),
3270                  readl(regs + DCTL),
3271                  readl(regs + DSTS));
3272
3273         seq_printf(seq, "DIEPMSK=0x%08x, DOEPMASK=0x%08x\n",
3274                    readl(regs + DIEPMSK), readl(regs + DOEPMSK));
3275
3276         seq_printf(seq, "GINTMSK=0x%08x, GINTSTS=0x%08x\n",
3277                    readl(regs + GINTMSK),
3278                    readl(regs + GINTSTS));
3279
3280         seq_printf(seq, "DAINTMSK=0x%08x, DAINT=0x%08x\n",
3281                    readl(regs + DAINTMSK),
3282                    readl(regs + DAINT));
3283
3284         seq_printf(seq, "GNPTXSTS=0x%08x, GRXSTSR=%08x\n",
3285                    readl(regs + GNPTXSTS),
3286                    readl(regs + GRXSTSR));
3287
3288         seq_puts(seq, "\nEndpoint status:\n");
3289
3290         for (idx = 0; idx < 15; idx++) {
3291                 u32 in, out;
3292
3293                 in = readl(regs + DIEPCTL(idx));
3294                 out = readl(regs + DOEPCTL(idx));
3295
3296                 seq_printf(seq, "ep%d: DIEPCTL=0x%08x, DOEPCTL=0x%08x",
3297                            idx, in, out);
3298
3299                 in = readl(regs + DIEPTSIZ(idx));
3300                 out = readl(regs + DOEPTSIZ(idx));
3301
3302                 seq_printf(seq, ", DIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x",
3303                            in, out);
3304
3305                 seq_puts(seq, "\n");
3306         }
3307
3308         return 0;
3309 }
3310
3311 static int state_open(struct inode *inode, struct file *file)
3312 {
3313         return single_open(file, state_show, inode->i_private);
3314 }
3315
3316 static const struct file_operations state_fops = {
3317         .owner          = THIS_MODULE,
3318         .open           = state_open,
3319         .read           = seq_read,
3320         .llseek         = seq_lseek,
3321         .release        = single_release,
3322 };
3323
3324 /**
3325  * fifo_show - debugfs: show the fifo information
3326  * @seq: The seq_file to write data to.
3327  * @v: Unused parameter.
3328  *
3329  * Show the FIFO information for the overall fifo and all the
3330  * periodic transmission FIFOs.
3331  */
3332 static int fifo_show(struct seq_file *seq, void *v)
3333 {
3334         struct s3c_hsotg *hsotg = seq->private;
3335         void __iomem *regs = hsotg->regs;
3336         u32 val;
3337         int idx;
3338
3339         seq_puts(seq, "Non-periodic FIFOs:\n");
3340         seq_printf(seq, "RXFIFO: Size %d\n", readl(regs + GRXFSIZ));
3341
3342         val = readl(regs + GNPTXFSIZ);
3343         seq_printf(seq, "NPTXFIFO: Size %d, Start 0x%08x\n",
3344                    val >> GNPTXFSIZ_NPTxFDep_SHIFT,
3345                    val & GNPTXFSIZ_NPTxFStAddr_MASK);
3346
3347         seq_puts(seq, "\nPeriodic TXFIFOs:\n");
3348
3349         for (idx = 1; idx <= 15; idx++) {
3350                 val = readl(regs + DPTXFSIZn(idx));
3351
3352                 seq_printf(seq, "\tDPTXFIFO%2d: Size %d, Start 0x%08x\n", idx,
3353                            val >> DPTXFSIZn_DPTxFSize_SHIFT,
3354                            val & DPTXFSIZn_DPTxFStAddr_MASK);
3355         }
3356
3357         return 0;
3358 }
3359
3360 static int fifo_open(struct inode *inode, struct file *file)
3361 {
3362         return single_open(file, fifo_show, inode->i_private);
3363 }
3364
3365 static const struct file_operations fifo_fops = {
3366         .owner          = THIS_MODULE,
3367         .open           = fifo_open,
3368         .read           = seq_read,
3369         .llseek         = seq_lseek,
3370         .release        = single_release,
3371 };
3372
3373
3374 static const char *decode_direction(int is_in)
3375 {
3376         return is_in ? "in" : "out";
3377 }
3378
3379 /**
3380  * ep_show - debugfs: show the state of an endpoint.
3381  * @seq: The seq_file to write data to.
3382  * @v: Unused parameter.
3383  *
3384  * This debugfs entry shows the state of the given endpoint (one is
3385  * registered for each available).
3386  */
3387 static int ep_show(struct seq_file *seq, void *v)
3388 {
3389         struct s3c_hsotg_ep *ep = seq->private;
3390         struct s3c_hsotg *hsotg = ep->parent;
3391         struct s3c_hsotg_req *req;
3392         void __iomem *regs = hsotg->regs;
3393         int index = ep->index;
3394         int show_limit = 15;
3395         unsigned long flags;
3396
3397         seq_printf(seq, "Endpoint index %d, named %s,  dir %s:\n",
3398                    ep->index, ep->ep.name, decode_direction(ep->dir_in));
3399
3400         /* first show the register state */
3401
3402         seq_printf(seq, "\tDIEPCTL=0x%08x, DOEPCTL=0x%08x\n",
3403                    readl(regs + DIEPCTL(index)),
3404                    readl(regs + DOEPCTL(index)));
3405
3406         seq_printf(seq, "\tDIEPDMA=0x%08x, DOEPDMA=0x%08x\n",
3407                    readl(regs + DIEPDMA(index)),
3408                    readl(regs + DOEPDMA(index)));
3409
3410         seq_printf(seq, "\tDIEPINT=0x%08x, DOEPINT=0x%08x\n",
3411                    readl(regs + DIEPINT(index)),
3412                    readl(regs + DOEPINT(index)));
3413
3414         seq_printf(seq, "\tDIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x\n",
3415                    readl(regs + DIEPTSIZ(index)),
3416                    readl(regs + DOEPTSIZ(index)));
3417
3418         seq_puts(seq, "\n");
3419         seq_printf(seq, "mps %d\n", ep->ep.maxpacket);
3420         seq_printf(seq, "total_data=%ld\n", ep->total_data);
3421
3422         seq_printf(seq, "request list (%p,%p):\n",
3423                    ep->queue.next, ep->queue.prev);
3424
3425         spin_lock_irqsave(&hsotg->lock, flags);
3426
3427         list_for_each_entry(req, &ep->queue, queue) {
3428                 if (--show_limit < 0) {
3429                         seq_puts(seq, "not showing more requests...\n");
3430                         break;
3431                 }
3432
3433                 seq_printf(seq, "%c req %p: %d bytes @%p, ",
3434                            req == ep->req ? '*' : ' ',
3435                            req, req->req.length, req->req.buf);
3436                 seq_printf(seq, "%d done, res %d\n",
3437                            req->req.actual, req->req.status);
3438         }
3439
3440         spin_unlock_irqrestore(&hsotg->lock, flags);
3441
3442         return 0;
3443 }
3444
3445 static int ep_open(struct inode *inode, struct file *file)
3446 {
3447         return single_open(file, ep_show, inode->i_private);
3448 }
3449
3450 static const struct file_operations ep_fops = {
3451         .owner          = THIS_MODULE,
3452         .open           = ep_open,
3453         .read           = seq_read,
3454         .llseek         = seq_lseek,
3455         .release        = single_release,
3456 };
3457
3458 /**
3459  * s3c_hsotg_create_debug - create debugfs directory and files
3460  * @hsotg: The driver state
3461  *
3462  * Create the debugfs files to allow the user to get information
3463  * about the state of the system. The directory name is created
3464  * with the same name as the device itself, in case we end up
3465  * with multiple blocks in future systems.
3466  */
3467 static void s3c_hsotg_create_debug(struct s3c_hsotg *hsotg)
3468 {
3469         struct dentry *root;
3470         unsigned epidx;
3471
3472         root = debugfs_create_dir(dev_name(hsotg->dev), NULL);
3473         hsotg->debug_root = root;
3474         if (IS_ERR(root)) {
3475                 dev_err(hsotg->dev, "cannot create debug root\n");
3476                 return;
3477         }
3478
3479         /* create general state file */
3480
3481         hsotg->debug_file = debugfs_create_file("state", 0444, root,
3482                                                 hsotg, &state_fops);
3483
3484         if (IS_ERR(hsotg->debug_file))
3485                 dev_err(hsotg->dev, "%s: failed to create state\n", __func__);
3486
3487         hsotg->debug_fifo = debugfs_create_file("fifo", 0444, root,
3488                                                 hsotg, &fifo_fops);
3489
3490         if (IS_ERR(hsotg->debug_fifo))
3491                 dev_err(hsotg->dev, "%s: failed to create fifo\n", __func__);
3492
3493         /* create one file for each endpoint */
3494
3495         for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
3496                 struct s3c_hsotg_ep *ep = &hsotg->eps[epidx];
3497
3498                 ep->debugfs = debugfs_create_file(ep->name, 0444,
3499                                                   root, ep, &ep_fops);
3500
3501                 if (IS_ERR(ep->debugfs))
3502                         dev_err(hsotg->dev, "failed to create %s debug file\n",
3503                                 ep->name);
3504         }
3505 }
3506
3507 /**
3508  * s3c_hsotg_delete_debug - cleanup debugfs entries
3509  * @hsotg: The driver state
3510  *
3511  * Cleanup (remove) the debugfs files for use on module exit.
3512  */
3513 static void s3c_hsotg_delete_debug(struct s3c_hsotg *hsotg)
3514 {
3515         unsigned epidx;
3516
3517         for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
3518                 struct s3c_hsotg_ep *ep = &hsotg->eps[epidx];
3519                 debugfs_remove(ep->debugfs);
3520         }
3521
3522         debugfs_remove(hsotg->debug_file);
3523         debugfs_remove(hsotg->debug_fifo);
3524         debugfs_remove(hsotg->debug_root);
3525 }
3526
3527 /**
3528  * s3c_hsotg_probe - probe function for hsotg driver
3529  * @pdev: The platform information for the driver
3530  */
3531
3532 static int s3c_hsotg_probe(struct platform_device *pdev)
3533 {
3534         struct s3c_hsotg_plat *plat = dev_get_platdata(&pdev->dev);
3535         struct usb_phy *phy;
3536         struct device *dev = &pdev->dev;
3537         struct s3c_hsotg_ep *eps;
3538         struct s3c_hsotg *hsotg;
3539         struct resource *res;
3540         int epnum;
3541         int ret;
3542         int i;
3543
3544         hsotg = devm_kzalloc(&pdev->dev, sizeof(struct s3c_hsotg), GFP_KERNEL);
3545         if (!hsotg) {
3546                 dev_err(dev, "cannot get memory\n");
3547                 return -ENOMEM;
3548         }
3549
3550         phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
3551         if (IS_ERR(phy)) {
3552                 /* Fallback for pdata */
3553                 plat = dev_get_platdata(&pdev->dev);
3554                 if (!plat) {
3555                         dev_err(&pdev->dev, "no platform data or transceiver defined\n");
3556                         return -EPROBE_DEFER;
3557                 } else {
3558                         hsotg->plat = plat;
3559                 }
3560         } else {
3561                 hsotg->phy = phy;
3562         }
3563
3564         hsotg->dev = dev;
3565
3566         hsotg->clk = devm_clk_get(&pdev->dev, "otg");
3567         if (IS_ERR(hsotg->clk)) {
3568                 dev_err(dev, "cannot get otg clock\n");
3569                 return PTR_ERR(hsotg->clk);
3570         }
3571
3572         platform_set_drvdata(pdev, hsotg);
3573
3574         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3575
3576         hsotg->regs = devm_ioremap_resource(&pdev->dev, res);
3577         if (IS_ERR(hsotg->regs)) {
3578                 ret = PTR_ERR(hsotg->regs);
3579                 goto err_clk;
3580         }
3581
3582         ret = platform_get_irq(pdev, 0);
3583         if (ret < 0) {
3584                 dev_err(dev, "cannot find IRQ\n");
3585                 goto err_clk;
3586         }
3587
3588         spin_lock_init(&hsotg->lock);
3589
3590         hsotg->irq = ret;
3591
3592         ret = devm_request_irq(&pdev->dev, hsotg->irq, s3c_hsotg_irq, 0,
3593                                 dev_name(dev), hsotg);
3594         if (ret < 0) {
3595                 dev_err(dev, "cannot claim IRQ\n");
3596                 goto err_clk;
3597         }
3598
3599         dev_info(dev, "regs %p, irq %d\n", hsotg->regs, hsotg->irq);
3600
3601         hsotg->gadget.max_speed = USB_SPEED_HIGH;
3602         hsotg->gadget.ops = &s3c_hsotg_gadget_ops;
3603         hsotg->gadget.name = dev_name(dev);
3604
3605         /* reset the system */
3606
3607         clk_prepare_enable(hsotg->clk);
3608
3609         /* regulators */
3610
3611         for (i = 0; i < ARRAY_SIZE(hsotg->supplies); i++)
3612                 hsotg->supplies[i].supply = s3c_hsotg_supply_names[i];
3613
3614         ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(hsotg->supplies),
3615                                  hsotg->supplies);
3616         if (ret) {
3617                 dev_err(dev, "failed to request supplies: %d\n", ret);
3618                 goto err_clk;
3619         }
3620
3621         ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
3622                                     hsotg->supplies);
3623
3624         if (ret) {
3625                 dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret);
3626                 goto err_supplies;
3627         }
3628
3629         /* usb phy enable */
3630         s3c_hsotg_phy_enable(hsotg);
3631
3632         s3c_hsotg_corereset(hsotg);
3633         s3c_hsotg_init(hsotg);
3634         s3c_hsotg_hw_cfg(hsotg);
3635
3636         /* hsotg->num_of_eps holds number of EPs other than ep0 */
3637
3638         if (hsotg->num_of_eps == 0) {
3639                 dev_err(dev, "wrong number of EPs (zero)\n");
3640                 ret = -EINVAL;
3641                 goto err_supplies;
3642         }
3643
3644         eps = kcalloc(hsotg->num_of_eps + 1, sizeof(struct s3c_hsotg_ep),
3645                       GFP_KERNEL);
3646         if (!eps) {
3647                 dev_err(dev, "cannot get memory\n");
3648                 ret = -ENOMEM;
3649                 goto err_supplies;
3650         }
3651
3652         hsotg->eps = eps;
3653
3654         /* setup endpoint information */
3655
3656         INIT_LIST_HEAD(&hsotg->gadget.ep_list);
3657         hsotg->gadget.ep0 = &hsotg->eps[0].ep;
3658
3659         /* allocate EP0 request */
3660
3661         hsotg->ctrl_req = s3c_hsotg_ep_alloc_request(&hsotg->eps[0].ep,
3662                                                      GFP_KERNEL);
3663         if (!hsotg->ctrl_req) {
3664                 dev_err(dev, "failed to allocate ctrl req\n");
3665                 ret = -ENOMEM;
3666                 goto err_ep_mem;
3667         }
3668
3669         /* initialise the endpoints now the core has been initialised */
3670         for (epnum = 0; epnum < hsotg->num_of_eps; epnum++)
3671                 s3c_hsotg_initep(hsotg, &hsotg->eps[epnum], epnum);
3672
3673         /* disable power and clock */
3674
3675         ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3676                                     hsotg->supplies);
3677         if (ret) {
3678                 dev_err(hsotg->dev, "failed to disable supplies: %d\n", ret);
3679                 goto err_ep_mem;
3680         }
3681
3682         s3c_hsotg_phy_disable(hsotg);
3683
3684         ret = usb_add_gadget_udc(&pdev->dev, &hsotg->gadget);
3685         if (ret)
3686                 goto err_ep_mem;
3687
3688         s3c_hsotg_create_debug(hsotg);
3689
3690         s3c_hsotg_dump(hsotg);
3691
3692         return 0;
3693
3694 err_ep_mem:
3695         kfree(eps);
3696 err_supplies:
3697         s3c_hsotg_phy_disable(hsotg);
3698 err_clk:
3699         clk_disable_unprepare(hsotg->clk);
3700
3701         return ret;
3702 }
3703
3704 /**
3705  * s3c_hsotg_remove - remove function for hsotg driver
3706  * @pdev: The platform information for the driver
3707  */
3708 static int s3c_hsotg_remove(struct platform_device *pdev)
3709 {
3710         struct s3c_hsotg *hsotg = platform_get_drvdata(pdev);
3711
3712         usb_del_gadget_udc(&hsotg->gadget);
3713
3714         s3c_hsotg_delete_debug(hsotg);
3715
3716         if (hsotg->driver) {
3717                 /* should have been done already by driver model core */
3718                 usb_gadget_unregister_driver(hsotg->driver);
3719         }
3720
3721         s3c_hsotg_phy_disable(hsotg);
3722         clk_disable_unprepare(hsotg->clk);
3723
3724         return 0;
3725 }
3726
3727 #if 1
3728 #define s3c_hsotg_suspend NULL
3729 #define s3c_hsotg_resume NULL
3730 #endif
3731
3732 #ifdef CONFIG_OF
3733 static const struct of_device_id s3c_hsotg_of_ids[] = {
3734         { .compatible = "samsung,s3c6400-hsotg", },
3735         { /* sentinel */ }
3736 };
3737 MODULE_DEVICE_TABLE(of, s3c_hsotg_of_ids);
3738 #endif
3739
3740 static struct platform_driver s3c_hsotg_driver = {
3741         .driver         = {
3742                 .name   = "s3c-hsotg",
3743                 .owner  = THIS_MODULE,
3744                 .of_match_table = of_match_ptr(s3c_hsotg_of_ids),
3745         },
3746         .probe          = s3c_hsotg_probe,
3747         .remove         = s3c_hsotg_remove,
3748         .suspend        = s3c_hsotg_suspend,
3749         .resume         = s3c_hsotg_resume,
3750 };
3751
3752 module_platform_driver(s3c_hsotg_driver);
3753
3754 MODULE_DESCRIPTION("Samsung S3C USB High-speed/OtG device");
3755 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
3756 MODULE_LICENSE("GPL");
3757 MODULE_ALIAS("platform:s3c-hsotg");