blob: 50df18d1f1cfc719e979339649ec9e2f226ad179 [file] [log] [blame]
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001/**
2 * linux/drivers/usb/gadget/s3c-hsotg.c
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003 *
Anton Tikhomirovdfbc6fa2011-04-21 17:06:43 +09004 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 *
Ben Dooks5b7d70c2009-06-02 14:58:06 +01007 * 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.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +020017 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +010018
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Maurus Cuelenaeree50bf382010-07-19 09:40:50 +010030#include <linux/clk.h>
Lukasz Majewskifc9a7312012-05-04 14:17:02 +020031#include <linux/regulator/consumer.h>
Tomasz Figac50f056c2013-06-25 17:38:23 +020032#include <linux/of_platform.h>
Ben Dooks5b7d70c2009-06-02 14:58:06 +010033
34#include <linux/usb/ch9.h>
35#include <linux/usb/gadget.h>
Praveen Panerib2e587d2012-11-14 15:57:16 +053036#include <linux/usb/phy.h>
Lukasz Majewski126625e2012-05-09 13:16:53 +020037#include <linux/platform_data/s3c-hsotg.h>
Ben Dooks5b7d70c2009-06-02 14:58:06 +010038
39#include <mach/map.h>
40
Lukasz Majewski127d42a2012-05-04 14:16:59 +020041#include "s3c-hsotg.h"
Ben Dooks5b7d70c2009-06-02 14:58:06 +010042
Lukasz Majewskifc9a7312012-05-04 14:17:02 +020043static 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
Lukasz Majewski8b9bc462012-05-04 14:17:11 +020048/*
49 * EP0_MPS_LIMIT
Ben Dooks5b7d70c2009-06-02 14:58:06 +010050 *
51 * Unfortunately there seems to be a limit of the amount of data that can
Lucas De Marchi25985ed2011-03-30 22:57:33 -030052 * 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
Ben Dooks5b7d70c2009-06-02 14:58:06 +010054 * 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
68struct s3c_hsotg;
69struct 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.
Robert Baldyga4fca54a2013-10-09 09:00:02 +020086 * @mc: Multi Count - number of transactions per microframe
Robert Baldyga1479e842013-10-09 08:41:57 +020087 * @interval - Interval for periodic endpoints
Ben Dooks5b7d70c2009-06-02 14:58:06 +010088 * @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
Robert Baldyga1479e842013-10-09 08:41:57 +020091 * @isochronous: Set if this is a isochronous ep
Ben Dooks5b7d70c2009-06-02 14:58:06 +010092 * @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
Ben Dookse7a9ff52010-07-19 09:40:42 +0100107 * 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)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100110 */
111struct 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
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100118
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;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200127 unsigned char mc;
Robert Baldyga1479e842013-10-09 08:41:57 +0200128 unsigned char interval;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100129
130 unsigned int halted:1;
131 unsigned int periodic:1;
Robert Baldyga1479e842013-10-09 08:41:57 +0200132 unsigned int isochronous:1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100133 unsigned int sent_zlp:1;
134
135 char name[10];
136};
137
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100138/**
139 * struct s3c_hsotg - driver state.
140 * @dev: The parent device supplied to the probe function
141 * @driver: USB gadget driver
Praveen Panerib2e587d2012-11-14 15:57:16 +0530142 * @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.
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100145 * @regs: The memory area mapped for accessing registers.
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100146 * @irq: The IRQ number we are using
Lukasz Majewskifc9a7312012-05-04 14:17:02 +0200147 * @supplies: Definition of USB power supplies
Ben Dooks10aebc72010-07-19 09:40:44 +0100148 * @dedicated_fifos: Set if the hardware has dedicated IN-EP fifos.
Lukasz Majewskib3f489b2012-05-04 14:17:09 +0200149 * @num_of_eps: Number of available EPs (excluding EP0)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100150 * @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.
Lukasz Majewski71225be2012-05-04 14:17:03 +0200157 * @setup: NAK management for EP0 SETUP
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +0200158 * @last_rst: Time of last reset
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100159 * @eps: The endpoints being supplied to the gadget framework
160 */
161struct s3c_hsotg {
162 struct device *dev;
163 struct usb_gadget_driver *driver;
Praveen Panerib2e587d2012-11-14 15:57:16 +0530164 struct usb_phy *phy;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100165 struct s3c_hsotg_plat *plat;
166
Lukasz Majewski22258f42012-06-14 10:02:24 +0200167 spinlock_t lock;
168
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100169 void __iomem *regs;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100170 int irq;
Marek Szyprowski31ee04d2010-07-19 16:01:42 +0200171 struct clk *clk;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100172
Lukasz Majewskifc9a7312012-05-04 14:17:02 +0200173 struct regulator_bulk_data supplies[ARRAY_SIZE(s3c_hsotg_supply_names)];
174
Ben Dooks10aebc72010-07-19 09:40:44 +0100175 unsigned int dedicated_fifos:1;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +0200176 unsigned char num_of_eps;
Ben Dooks10aebc72010-07-19 09:40:44 +0100177
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100178 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;
Lukasz Majewski71225be2012-05-04 14:17:03 +0200188 unsigned int setup;
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +0200189 unsigned long last_rst;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +0200190 struct s3c_hsotg_ep *eps;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100191};
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 */
200struct 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 */
208static inline struct s3c_hsotg_req *our_req(struct usb_request *req)
209{
210 return container_of(req, struct s3c_hsotg_req, req);
211}
212
213static inline struct s3c_hsotg_ep *our_ep(struct usb_ep *ep)
214{
215 return container_of(ep, struct s3c_hsotg_ep, ep);
216}
217
218static inline struct s3c_hsotg *to_hsotg(struct usb_gadget *gadget)
219{
220 return container_of(gadget, struct s3c_hsotg, gadget);
221}
222
223static inline void __orr32(void __iomem *ptr, u32 val)
224{
225 writel(readl(ptr) | val, ptr);
226}
227
228static inline void __bic32(void __iomem *ptr, u32 val)
229{
230 writel(readl(ptr) & ~val, ptr);
231}
232
233/* forward decleration of functions */
234static 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 */
255static 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 */
265static void s3c_hsotg_en_gsint(struct s3c_hsotg *hsotg, u32 ints)
266{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200267 u32 gsintmsk = readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100268 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);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200274 writel(new_gsintmsk, hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100275 }
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 */
283static void s3c_hsotg_disable_gsint(struct s3c_hsotg *hsotg, u32 ints)
284{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200285 u32 gsintmsk = readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100286 u32 new_gsintmsk;
287
288 new_gsintmsk = gsintmsk & ~ints;
289
290 if (new_gsintmsk != gsintmsk)
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200291 writel(new_gsintmsk, hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100292}
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 */
304static 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);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200316 daint = readl(hsotg->regs + DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100317 if (en)
318 daint |= bit;
319 else
320 daint &= ~bit;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200321 writel(daint, hsotg->regs + DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100322 local_irq_restore(flags);
323}
324
325/**
326 * s3c_hsotg_init_fifo - initialise non-periodic FIFOs
327 * @hsotg: The device instance.
328 */
329static void s3c_hsotg_init_fifo(struct s3c_hsotg *hsotg)
330{
Ben Dooks0f002d22010-05-25 05:36:50 +0100331 unsigned int ep;
332 unsigned int addr;
333 unsigned int size;
Ben Dooks1703a6d2010-05-25 05:36:52 +0100334 int timeout;
Ben Dooks0f002d22010-05-25 05:36:50 +0100335 u32 val;
336
Ben Dooks6d091ee2010-07-19 09:40:40 +0100337 /* set FIFO sizes to 2048/1024 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100338
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200339 writel(2048, hsotg->regs + GRXFSIZ);
340 writel(GNPTXFSIZ_NPTxFStAddr(2048) |
341 GNPTXFSIZ_NPTxFDep(1024),
342 hsotg->regs + GNPTXFSIZ);
Ben Dooks0f002d22010-05-25 05:36:50 +0100343
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200344 /*
345 * arange all the rest of the TX FIFOs, as some versions of this
Ben Dooks0f002d22010-05-25 05:36:50 +0100346 * block have overlapping default addresses. This also ensures
347 * that if the settings have been changed, then they are set to
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200348 * known values.
349 */
Ben Dooks0f002d22010-05-25 05:36:50 +0100350
351 /* start at the end of the GNPTXFSIZ, rounded up */
352 addr = 2048 + 1024;
353 size = 768;
354
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200355 /*
356 * currently we allocate TX FIFOs for all possible endpoints,
357 * and assume that they are all the same size.
358 */
Ben Dooks0f002d22010-05-25 05:36:50 +0100359
Anton Tikhomirovf7a83fe2012-03-06 14:05:49 +0900360 for (ep = 1; ep <= 15; ep++) {
Ben Dooks0f002d22010-05-25 05:36:50 +0100361 val = addr;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200362 val |= size << DPTXFSIZn_DPTxFSize_SHIFT;
Ben Dooks0f002d22010-05-25 05:36:50 +0100363 addr += size;
364
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200365 writel(val, hsotg->regs + DPTXFSIZn(ep));
Ben Dooks0f002d22010-05-25 05:36:50 +0100366 }
Ben Dooks1703a6d2010-05-25 05:36:52 +0100367
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200368 /*
369 * according to p428 of the design guide, we need to ensure that
370 * all fifos are flushed before continuing
371 */
Ben Dooks1703a6d2010-05-25 05:36:52 +0100372
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200373 writel(GRSTCTL_TxFNum(0x10) | GRSTCTL_TxFFlsh |
374 GRSTCTL_RxFFlsh, hsotg->regs + GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100375
376 /* wait until the fifos are both flushed */
377 timeout = 100;
378 while (1) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200379 val = readl(hsotg->regs + GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100380
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200381 if ((val & (GRSTCTL_TxFFlsh | GRSTCTL_RxFFlsh)) == 0)
Ben Dooks1703a6d2010-05-25 05:36:52 +0100382 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);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100394}
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 */
Mark Brown0978f8c2010-01-18 13:18:35 +0000402static struct usb_request *s3c_hsotg_ep_alloc_request(struct usb_ep *ep,
403 gfp_t flags)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100404{
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
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100413 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 */
423static 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.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200436 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100437static 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;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100442
443 /* ignore this if we're not moving any data */
444 if (hs_req->req.length == 0)
445 return;
446
Jingoo Han17d966a2013-05-11 21:14:00 +0900447 usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100448}
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
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200465 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100466static 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);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200471 u32 gnptxsts = readl(hsotg->regs + GNPTXSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100472 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;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200477 int max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100478
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
Ben Dooks10aebc72010-07-19 09:40:44 +0100485 if (periodic && !hsotg->dedicated_fifos) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200486 u32 epsize = readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100487 int size_left;
488 int size_done;
489
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200490 /*
491 * work out how much data was loaded so we can calculate
492 * how much data is left in the fifo.
493 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100494
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200495 size_left = DxEPTSIZ_XferSize_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100496
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200497 /*
498 * if shared fifo, we cannot write anything until the
Ben Dookse7a9ff52010-07-19 09:40:42 +0100499 * previous data has been completely sent.
500 */
501 if (hs_ep->fifo_load != 0) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200502 s3c_hsotg_en_gsint(hsotg, GINTSTS_PTxFEmp);
Ben Dookse7a9ff52010-07-19 09:40:42 +0100503 return -ENOSPC;
504 }
505
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100506 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) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200523 s3c_hsotg_en_gsint(hsotg, GINTSTS_PTxFEmp);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100524 return -ENOSPC;
525 }
Ben Dooks10aebc72010-07-19 09:40:44 +0100526 } else if (hsotg->dedicated_fifos && hs_ep->index != 0) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200527 can_write = readl(hsotg->regs + DTXFSTS(hs_ep->index));
Ben Dooks10aebc72010-07-19 09:40:44 +0100528
529 can_write &= 0xffff;
530 can_write *= 4;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100531 } else {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200532 if (GNPTXSTS_NPTxQSpcAvail_GET(gnptxsts) == 0) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100533 dev_dbg(hsotg->dev,
534 "%s: no queue slots available (0x%08x)\n",
535 __func__, gnptxsts);
536
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200537 s3c_hsotg_en_gsint(hsotg, GINTSTS_NPTxFEmp);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100538 return -ENOSPC;
539 }
540
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200541 can_write = GNPTXSTS_NPTxFSpcAvail_GET(gnptxsts);
Ben Dooks679f9b72010-07-19 09:40:41 +0100542 can_write *= 4; /* fifo size is in 32bit quantities. */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100543 }
544
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200545 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);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100549
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200550 /*
551 * limit to 512 bytes of data, it seems at least on the non-periodic
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100552 * FIFO, requests of >512 cause the endpoint to get stuck with a
553 * fragment of the end of the transfer in it.
554 */
Robert Baldyga811f3302013-09-24 11:24:28 +0200555 if (can_write > 512 && !periodic)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100556 can_write = 512;
557
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200558 /*
559 * limit the write to one max-packet size worth of data, but allow
Ben Dooks03e10e52010-07-19 09:40:45 +0100560 * the transfer to return that it did not run out of fifo space
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200561 * doing it.
562 */
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200563 if (to_write > max_transfer) {
564 to_write = max_transfer;
Ben Dooks03e10e52010-07-19 09:40:45 +0100565
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200566 /* 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);
Ben Dooks03e10e52010-07-19 09:40:45 +0100571 }
572
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100573 /* see if we can write data */
574
575 if (to_write > can_write) {
576 to_write = can_write;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200577 pkt_round = to_write % max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100578
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200579 /*
580 * Round the write down to an
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100581 * 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
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200590 /*
591 * enable correct FIFO interrupt to alert us when there
592 * is more room left.
593 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100594
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200595 /* 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);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100600 }
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
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200617 writesl(hsotg->regs + EPFIFO(hs_ep->index), data, to_write);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100618
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 */
629static 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) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200636 maxsize = DxEPTSIZ_XferSize_LIMIT + 1;
637 maxpkt = DxEPTSIZ_PktCnt_LIMIT + 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100638 } else {
Ben Dooksb05ca582010-07-19 09:40:48 +0100639 maxsize = 64+64;
Jingoo Han66e5c642011-05-13 21:26:15 +0900640 if (hs_ep->dir_in)
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200641 maxpkt = DIEPTSIZ0_PktCnt_LIMIT + 1;
Jingoo Han66e5c642011-05-13 21:26:15 +0900642 else
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100643 maxpkt = 2;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100644 }
645
646 /* we made the constant loading easier above by using +1 */
647 maxpkt--;
648 maxsize--;
649
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200650 /*
651 * constrain by packet count if maxpkts*pktsize is greater
652 * than the length register size.
653 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100654
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 */
671static 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
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200700 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
701 epsize_reg = dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100702
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
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900707 /* If endpoint is stalled, we will restart request later */
708 ctrl = readl(hsotg->regs + epctrl_reg);
709
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200710 if (ctrl & DxEPCTL_Stall) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900711 dev_warn(hsotg->dev, "%s: ep%d is stalled\n", __func__, index);
712 return;
713 }
714
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100715 length = ureq->length - ureq->actual;
Lukasz Majewski71225be2012-05-04 14:17:03 +0200716 dev_dbg(hsotg->dev, "ureq->length:%d ureq->actual:%d\n",
717 ureq->length, ureq->actual);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100718 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
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200743 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
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100748 if (dir_in && index != 0)
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200749 if (hs_ep->isochronous)
750 epsize = DxEPTSIZ_MC(packets);
751 else
752 epsize = DxEPTSIZ_MC(1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100753 else
754 epsize = 0;
755
756 if (index != 0 && ureq->zero) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200757 /*
758 * test for the packets being exactly right for the
759 * transfer
760 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100761
762 if (length == (packets * hs_ep->ep.maxpacket))
763 packets++;
764 }
765
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200766 epsize |= DxEPTSIZ_PktCnt(packets);
767 epsize |= DxEPTSIZ_XferSize(length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100768
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
Anton Tikhomirovdb1d8ba2012-03-06 14:09:19 +0900778 if (using_dma(hsotg) && !continuing) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100779 unsigned int dma_reg;
780
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200781 /*
782 * write DMA address to control register, buffer already
783 * synced by s3c_hsotg_ep_queue().
784 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100785
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200786 dma_reg = dir_in ? DIEPDMA(index) : DOEPDMA(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100787 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
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200793 ctrl |= DxEPCTL_EPEna; /* ensure ep enabled */
794 ctrl |= DxEPCTL_USBActEp;
Lukasz Majewski71225be2012-05-04 14:17:03 +0200795
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
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200802 ctrl |= DxEPCTL_CNAK; /* clear NAK set by core */
Lukasz Majewski71225be2012-05-04 14:17:03 +0200803
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100804
805 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
806 writel(ctrl, hsotg->regs + epctrl_reg);
807
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200808 /*
809 * set these, it seems that DMA support increments past the end
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100810 * of the packet buffer so we need to calculate the length from
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200811 * this information.
812 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100813 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
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200823 /*
824 * clear the INTknTXFEmpMsk when we start request, more as a aide
825 * to debugging to see what is going on.
826 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100827 if (dir_in)
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200828 writel(DIEPMSK_INTknTXFEmpMsk,
829 hsotg->regs + DIEPINT(index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100830
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200831 /*
832 * Note, trying to clear the NAK here causes problems with transmit
833 * on the S3C6400 ending up with the TXFIFO becoming full.
834 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100835
836 /* check ep is enabled */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200837 if (!(readl(hsotg->regs + epctrl_reg) & DxEPCTL_EPEna))
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100838 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));
Robert Baldygaafcf4162013-09-19 11:50:19 +0200844
845 /* enable ep interrupts */
846 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100847}
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.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200860 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100861static int s3c_hsotg_map_dma(struct s3c_hsotg *hsotg,
862 struct s3c_hsotg_ep *hs_ep,
863 struct usb_request *req)
864{
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100865 struct s3c_hsotg_req *hs_req = our_req(req);
Felipe Balbie58ebcd2013-01-28 14:48:36 +0200866 int ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100867
868 /* if the length is zero, ignore the DMA data */
869 if (hs_req->req.length == 0)
870 return 0;
871
Felipe Balbie58ebcd2013-01-28 14:48:36 +0200872 ret = usb_gadget_map_request(&hsotg->gadget, req, hs_ep->dir_in);
873 if (ret)
874 goto dma_error;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100875
876 return 0;
877
878dma_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
885static 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;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100891 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
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100909 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
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100915 return 0;
916}
917
Lukasz Majewski5ad1d312012-06-14 10:02:26 +0200918static 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
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100933static 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 */
949static 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.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200967 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100968static 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
Lukasz Majewskib3f489b2012-05-04 14:17:09 +0200978 if (idx > hsotg->num_of_eps)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100979 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 */
997static 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 */
1038static 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
1088static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value);
1089
1090/**
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001091 * 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 */
1096static 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/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001105 * s3c_hsotg_process_req_featire - process request {SET,CLEAR}_FEATURE
1106 * @hsotg: The device state
1107 * @ctrl: USB control request
1108 */
1109static int s3c_hsotg_process_req_feature(struct s3c_hsotg *hsotg,
1110 struct usb_ctrlrequest *ctrl)
1111{
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001112 struct s3c_hsotg_ep *ep0 = &hsotg->eps[0];
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001113 struct s3c_hsotg_req *hs_req;
1114 bool restart;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001115 bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE);
1116 struct s3c_hsotg_ep *ep;
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001117 int ret;
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001118 bool halted;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001119
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:
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001133 halted = ep->halted;
1134
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001135 s3c_hsotg_ep_sethalt(&ep->ep, set);
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001136
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 }
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001143
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001144 /*
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) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001150 /*
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
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001171 break;
1172
1173 default:
1174 return -ENOENT;
1175 }
1176 } else
1177 return -ENOENT; /* currently only deal with endpoint */
1178
1179 return 1;
1180}
1181
Robert Baldygaab93e012013-09-19 11:50:17 +02001182static void s3c_hsotg_enqueue_setup(struct s3c_hsotg *hsotg);
1183
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001184/**
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 */
1193static 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
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001206 /*
1207 * record the direction of the request, for later use when enquing
1208 * packets onto EP0.
1209 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001210
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
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001214 /*
1215 * if we've no data with this request, then the last part of the
1216 * transaction is going to implicitly be IN.
1217 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001218 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:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001224 dcfg = readl(hsotg->regs + DCFG);
1225 dcfg &= ~DCFG_DevAddr_MASK;
1226 dcfg |= ctrl->wValue << DCFG_DevAddr_SHIFT;
1227 writel(dcfg, hsotg->regs + DCFG);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001228
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 ret = hsotg->driver->setup(&hsotg->gadget, ctrl);
1249 if (ret < 0)
1250 dev_dbg(hsotg->dev, "driver->setup() ret %d\n", ret);
1251 }
1252
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001253 /*
1254 * the request is either unhandlable, or is not formatted correctly
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001255 * so respond with a STALL for the status stage to indicate failure.
1256 */
1257
1258 if (ret < 0) {
1259 u32 reg;
1260 u32 ctrl;
1261
1262 dev_dbg(hsotg->dev, "ep0 stall (dir=%d)\n", ep0->dir_in);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001263 reg = (ep0->dir_in) ? DIEPCTL0 : DOEPCTL0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001264
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001265 /*
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001266 * DxEPCTL_Stall will be cleared by EP once it has
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001267 * taken effect, so no need to clear later.
1268 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001269
1270 ctrl = readl(hsotg->regs + reg);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001271 ctrl |= DxEPCTL_Stall;
1272 ctrl |= DxEPCTL_CNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001273 writel(ctrl, hsotg->regs + reg);
1274
1275 dev_dbg(hsotg->dev,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001276 "written DxEPCTL=0x%08x to %08x (DxEPCTL=0x%08x)\n",
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001277 ctrl, reg, readl(hsotg->regs + reg));
1278
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001279 /*
1280 * don't believe we need to anything more to get the EP
1281 * to reply with a STALL packet
1282 */
Robert Baldygaab93e012013-09-19 11:50:17 +02001283
1284 /*
1285 * complete won't be called, so we enqueue
1286 * setup request here
1287 */
1288 s3c_hsotg_enqueue_setup(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001289 }
1290}
1291
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001292/**
1293 * s3c_hsotg_complete_setup - completion of a setup transfer
1294 * @ep: The endpoint the request was on.
1295 * @req: The request completed.
1296 *
1297 * Called on completion of any requests the driver itself submitted for
1298 * EP0 setup packets
1299 */
1300static void s3c_hsotg_complete_setup(struct usb_ep *ep,
1301 struct usb_request *req)
1302{
1303 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
1304 struct s3c_hsotg *hsotg = hs_ep->parent;
1305
1306 if (req->status < 0) {
1307 dev_dbg(hsotg->dev, "%s: failed %d\n", __func__, req->status);
1308 return;
1309 }
1310
1311 if (req->actual == 0)
1312 s3c_hsotg_enqueue_setup(hsotg);
1313 else
1314 s3c_hsotg_process_control(hsotg, req->buf);
1315}
1316
1317/**
1318 * s3c_hsotg_enqueue_setup - start a request for EP0 packets
1319 * @hsotg: The device state.
1320 *
1321 * Enqueue a request on EP0 if necessary to received any SETUP packets
1322 * received from the host.
1323 */
1324static void s3c_hsotg_enqueue_setup(struct s3c_hsotg *hsotg)
1325{
1326 struct usb_request *req = hsotg->ctrl_req;
1327 struct s3c_hsotg_req *hs_req = our_req(req);
1328 int ret;
1329
1330 dev_dbg(hsotg->dev, "%s: queueing setup request\n", __func__);
1331
1332 req->zero = 0;
1333 req->length = 8;
1334 req->buf = hsotg->ctrl_buff;
1335 req->complete = s3c_hsotg_complete_setup;
1336
1337 if (!list_empty(&hs_req->queue)) {
1338 dev_dbg(hsotg->dev, "%s already queued???\n", __func__);
1339 return;
1340 }
1341
1342 hsotg->eps[0].dir_in = 0;
1343
1344 ret = s3c_hsotg_ep_queue(&hsotg->eps[0].ep, req, GFP_ATOMIC);
1345 if (ret < 0) {
1346 dev_err(hsotg->dev, "%s: failed queue (%d)\n", __func__, ret);
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001347 /*
1348 * Don't think there's much we can do other than watch the
1349 * driver fail.
1350 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001351 }
1352}
1353
1354/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001355 * s3c_hsotg_complete_request - complete a request given to us
1356 * @hsotg: The device state.
1357 * @hs_ep: The endpoint the request was on.
1358 * @hs_req: The request to complete.
1359 * @result: The result code (0 => Ok, otherwise errno)
1360 *
1361 * The given request has finished, so call the necessary completion
1362 * if it has one and then look to see if we can start a new request
1363 * on the endpoint.
1364 *
1365 * Note, expects the ep to already be locked as appropriate.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001366 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001367static void s3c_hsotg_complete_request(struct s3c_hsotg *hsotg,
1368 struct s3c_hsotg_ep *hs_ep,
1369 struct s3c_hsotg_req *hs_req,
1370 int result)
1371{
1372 bool restart;
1373
1374 if (!hs_req) {
1375 dev_dbg(hsotg->dev, "%s: nothing to complete?\n", __func__);
1376 return;
1377 }
1378
1379 dev_dbg(hsotg->dev, "complete: ep %p %s, req %p, %d => %p\n",
1380 hs_ep, hs_ep->ep.name, hs_req, result, hs_req->req.complete);
1381
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001382 /*
1383 * only replace the status if we've not already set an error
1384 * from a previous transaction
1385 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001386
1387 if (hs_req->req.status == -EINPROGRESS)
1388 hs_req->req.status = result;
1389
1390 hs_ep->req = NULL;
1391 list_del_init(&hs_req->queue);
1392
1393 if (using_dma(hsotg))
1394 s3c_hsotg_unmap_dma(hsotg, hs_ep, hs_req);
1395
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001396 /*
1397 * call the complete request with the locks off, just in case the
1398 * request tries to queue more work for this endpoint.
1399 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001400
1401 if (hs_req->req.complete) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02001402 spin_unlock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001403 hs_req->req.complete(&hs_ep->ep, &hs_req->req);
Lukasz Majewski22258f42012-06-14 10:02:24 +02001404 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001405 }
1406
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001407 /*
1408 * Look to see if there is anything else to do. Note, the completion
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001409 * of the previous request may have caused a new request to be started
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001410 * so be careful when doing this.
1411 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001412
1413 if (!hs_ep->req && result >= 0) {
1414 restart = !list_empty(&hs_ep->queue);
1415 if (restart) {
1416 hs_req = get_ep_head(hs_ep);
1417 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, false);
1418 }
1419 }
1420}
1421
1422/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001423 * s3c_hsotg_rx_data - receive data from the FIFO for an endpoint
1424 * @hsotg: The device state.
1425 * @ep_idx: The endpoint index for the data
1426 * @size: The size of data in the fifo, in bytes
1427 *
1428 * The FIFO status shows there is data to read from the FIFO for a given
1429 * endpoint, so sort out whether we need to read the data into a request
1430 * that has been made for that endpoint.
1431 */
1432static void s3c_hsotg_rx_data(struct s3c_hsotg *hsotg, int ep_idx, int size)
1433{
1434 struct s3c_hsotg_ep *hs_ep = &hsotg->eps[ep_idx];
1435 struct s3c_hsotg_req *hs_req = hs_ep->req;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001436 void __iomem *fifo = hsotg->regs + EPFIFO(ep_idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001437 int to_read;
1438 int max_req;
1439 int read_ptr;
1440
Lukasz Majewski22258f42012-06-14 10:02:24 +02001441
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001442 if (!hs_req) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001443 u32 epctl = readl(hsotg->regs + DOEPCTL(ep_idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001444 int ptr;
1445
1446 dev_warn(hsotg->dev,
1447 "%s: FIFO %d bytes on ep%d but no req (DxEPCTl=0x%08x)\n",
1448 __func__, size, ep_idx, epctl);
1449
1450 /* dump the data from the FIFO, we've nothing we can do */
1451 for (ptr = 0; ptr < size; ptr += 4)
1452 (void)readl(fifo);
1453
1454 return;
1455 }
1456
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001457 to_read = size;
1458 read_ptr = hs_req->req.actual;
1459 max_req = hs_req->req.length - read_ptr;
1460
Ben Dooksa33e7132010-07-19 09:40:49 +01001461 dev_dbg(hsotg->dev, "%s: read %d/%d, done %d/%d\n",
1462 __func__, to_read, max_req, read_ptr, hs_req->req.length);
1463
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001464 if (to_read > max_req) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001465 /*
1466 * more data appeared than we where willing
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001467 * to deal with in this request.
1468 */
1469
1470 /* currently we don't deal this */
1471 WARN_ON_ONCE(1);
1472 }
1473
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001474 hs_ep->total_data += to_read;
1475 hs_req->req.actual += to_read;
1476 to_read = DIV_ROUND_UP(to_read, 4);
1477
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001478 /*
1479 * note, we might over-write the buffer end by 3 bytes depending on
1480 * alignment of the data.
1481 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001482 readsl(fifo, hs_req->req.buf + read_ptr, to_read);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001483}
1484
1485/**
1486 * s3c_hsotg_send_zlp - send zero-length packet on control endpoint
1487 * @hsotg: The device instance
1488 * @req: The request currently on this endpoint
1489 *
1490 * Generate a zero-length IN packet request for terminating a SETUP
1491 * transaction.
1492 *
1493 * Note, since we don't write any data to the TxFIFO, then it is
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001494 * currently believed that we do not need to wait for any space in
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001495 * the TxFIFO.
1496 */
1497static void s3c_hsotg_send_zlp(struct s3c_hsotg *hsotg,
1498 struct s3c_hsotg_req *req)
1499{
1500 u32 ctrl;
1501
1502 if (!req) {
1503 dev_warn(hsotg->dev, "%s: no request?\n", __func__);
1504 return;
1505 }
1506
1507 if (req->req.length == 0) {
1508 hsotg->eps[0].sent_zlp = 1;
1509 s3c_hsotg_enqueue_setup(hsotg);
1510 return;
1511 }
1512
1513 hsotg->eps[0].dir_in = 1;
1514 hsotg->eps[0].sent_zlp = 1;
1515
1516 dev_dbg(hsotg->dev, "sending zero-length packet\n");
1517
1518 /* issue a zero-sized packet to terminate this */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001519 writel(DxEPTSIZ_MC(1) | DxEPTSIZ_PktCnt(1) |
1520 DxEPTSIZ_XferSize(0), hsotg->regs + DIEPTSIZ(0));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001521
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001522 ctrl = readl(hsotg->regs + DIEPCTL0);
1523 ctrl |= DxEPCTL_CNAK; /* clear NAK set by core */
1524 ctrl |= DxEPCTL_EPEna; /* ensure ep enabled */
1525 ctrl |= DxEPCTL_USBActEp;
1526 writel(ctrl, hsotg->regs + DIEPCTL0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001527}
1528
1529/**
1530 * s3c_hsotg_handle_outdone - handle receiving OutDone/SetupDone from RXFIFO
1531 * @hsotg: The device instance
1532 * @epnum: The endpoint received from
1533 * @was_setup: Set if processing a SetupDone event.
1534 *
1535 * The RXFIFO has delivered an OutDone event, which means that the data
1536 * transfer for an OUT endpoint has been completed, either by a short
1537 * packet or by the finish of a transfer.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001538 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001539static void s3c_hsotg_handle_outdone(struct s3c_hsotg *hsotg,
1540 int epnum, bool was_setup)
1541{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001542 u32 epsize = readl(hsotg->regs + DOEPTSIZ(epnum));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001543 struct s3c_hsotg_ep *hs_ep = &hsotg->eps[epnum];
1544 struct s3c_hsotg_req *hs_req = hs_ep->req;
1545 struct usb_request *req = &hs_req->req;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001546 unsigned size_left = DxEPTSIZ_XferSize_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001547 int result = 0;
1548
1549 if (!hs_req) {
1550 dev_dbg(hsotg->dev, "%s: no request active\n", __func__);
1551 return;
1552 }
1553
1554 if (using_dma(hsotg)) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001555 unsigned size_done;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001556
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001557 /*
1558 * Calculate the size of the transfer by checking how much
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001559 * is left in the endpoint size register and then working it
1560 * out from the amount we loaded for the transfer.
1561 *
1562 * We need to do this as DMA pointers are always 32bit aligned
1563 * so may overshoot/undershoot the transfer.
1564 */
1565
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001566 size_done = hs_ep->size_loaded - size_left;
1567 size_done += hs_ep->last_load;
1568
1569 req->actual = size_done;
1570 }
1571
Ben Dooksa33e7132010-07-19 09:40:49 +01001572 /* if there is more request to do, schedule new transfer */
1573 if (req->actual < req->length && size_left == 0) {
1574 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, true);
1575 return;
Lukasz Majewski71225be2012-05-04 14:17:03 +02001576 } else if (epnum == 0) {
1577 /*
1578 * After was_setup = 1 =>
1579 * set CNAK for non Setup requests
1580 */
1581 hsotg->setup = was_setup ? 0 : 1;
Ben Dooksa33e7132010-07-19 09:40:49 +01001582 }
1583
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001584 if (req->actual < req->length && req->short_not_ok) {
1585 dev_dbg(hsotg->dev, "%s: got %d/%d (short not ok) => error\n",
1586 __func__, req->actual, req->length);
1587
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001588 /*
1589 * todo - what should we return here? there's no one else
1590 * even bothering to check the status.
1591 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001592 }
1593
1594 if (epnum == 0) {
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001595 /*
1596 * Condition req->complete != s3c_hsotg_complete_setup says:
1597 * send ZLP when we have an asynchronous request from gadget
1598 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001599 if (!was_setup && req->complete != s3c_hsotg_complete_setup)
1600 s3c_hsotg_send_zlp(hsotg, hs_req);
1601 }
1602
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001603 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, result);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001604}
1605
1606/**
1607 * s3c_hsotg_read_frameno - read current frame number
1608 * @hsotg: The device instance
1609 *
1610 * Return the current frame number
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001611 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001612static u32 s3c_hsotg_read_frameno(struct s3c_hsotg *hsotg)
1613{
1614 u32 dsts;
1615
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001616 dsts = readl(hsotg->regs + DSTS);
1617 dsts &= DSTS_SOFFN_MASK;
1618 dsts >>= DSTS_SOFFN_SHIFT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001619
1620 return dsts;
1621}
1622
1623/**
1624 * s3c_hsotg_handle_rx - RX FIFO has data
1625 * @hsotg: The device instance
1626 *
1627 * The IRQ handler has detected that the RX FIFO has some data in it
1628 * that requires processing, so find out what is in there and do the
1629 * appropriate read.
1630 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001631 * The RXFIFO is a true FIFO, the packets coming out are still in packet
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001632 * chunks, so if you have x packets received on an endpoint you'll get x
1633 * FIFO events delivered, each with a packet's worth of data in it.
1634 *
1635 * When using DMA, we should not be processing events from the RXFIFO
1636 * as the actual data should be sent to the memory directly and we turn
1637 * on the completion interrupts to get notifications of transfer completion.
1638 */
Mark Brown0978f8c2010-01-18 13:18:35 +00001639static void s3c_hsotg_handle_rx(struct s3c_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001640{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001641 u32 grxstsr = readl(hsotg->regs + GRXSTSP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001642 u32 epnum, status, size;
1643
1644 WARN_ON(using_dma(hsotg));
1645
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001646 epnum = grxstsr & GRXSTS_EPNum_MASK;
1647 status = grxstsr & GRXSTS_PktSts_MASK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001648
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001649 size = grxstsr & GRXSTS_ByteCnt_MASK;
1650 size >>= GRXSTS_ByteCnt_SHIFT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001651
1652 if (1)
1653 dev_dbg(hsotg->dev, "%s: GRXSTSP=0x%08x (%d@%d)\n",
1654 __func__, grxstsr, size, epnum);
1655
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001656#define __status(x) ((x) >> GRXSTS_PktSts_SHIFT)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001657
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001658 switch (status >> GRXSTS_PktSts_SHIFT) {
1659 case __status(GRXSTS_PktSts_GlobalOutNAK):
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001660 dev_dbg(hsotg->dev, "GlobalOutNAK\n");
1661 break;
1662
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001663 case __status(GRXSTS_PktSts_OutDone):
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001664 dev_dbg(hsotg->dev, "OutDone (Frame=0x%08x)\n",
1665 s3c_hsotg_read_frameno(hsotg));
1666
1667 if (!using_dma(hsotg))
1668 s3c_hsotg_handle_outdone(hsotg, epnum, false);
1669 break;
1670
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001671 case __status(GRXSTS_PktSts_SetupDone):
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001672 dev_dbg(hsotg->dev,
1673 "SetupDone (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1674 s3c_hsotg_read_frameno(hsotg),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001675 readl(hsotg->regs + DOEPCTL(0)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001676
1677 s3c_hsotg_handle_outdone(hsotg, epnum, true);
1678 break;
1679
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001680 case __status(GRXSTS_PktSts_OutRX):
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001681 s3c_hsotg_rx_data(hsotg, epnum, size);
1682 break;
1683
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001684 case __status(GRXSTS_PktSts_SetupRX):
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001685 dev_dbg(hsotg->dev,
1686 "SetupRX (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1687 s3c_hsotg_read_frameno(hsotg),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001688 readl(hsotg->regs + DOEPCTL(0)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001689
1690 s3c_hsotg_rx_data(hsotg, epnum, size);
1691 break;
1692
1693 default:
1694 dev_warn(hsotg->dev, "%s: unknown status %08x\n",
1695 __func__, grxstsr);
1696
1697 s3c_hsotg_dump(hsotg);
1698 break;
1699 }
1700}
1701
1702/**
1703 * s3c_hsotg_ep0_mps - turn max packet size into register setting
1704 * @mps: The maximum packet size in bytes.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001705 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001706static u32 s3c_hsotg_ep0_mps(unsigned int mps)
1707{
1708 switch (mps) {
1709 case 64:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001710 return D0EPCTL_MPS_64;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001711 case 32:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001712 return D0EPCTL_MPS_32;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001713 case 16:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001714 return D0EPCTL_MPS_16;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001715 case 8:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001716 return D0EPCTL_MPS_8;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001717 }
1718
1719 /* bad max packet size, warn and return invalid result */
1720 WARN_ON(1);
1721 return (u32)-1;
1722}
1723
1724/**
1725 * s3c_hsotg_set_ep_maxpacket - set endpoint's max-packet field
1726 * @hsotg: The driver state.
1727 * @ep: The index number of the endpoint
1728 * @mps: The maximum packet size in bytes
1729 *
1730 * Configure the maximum packet size for the given endpoint, updating
1731 * the hardware control registers to reflect this.
1732 */
1733static void s3c_hsotg_set_ep_maxpacket(struct s3c_hsotg *hsotg,
1734 unsigned int ep, unsigned int mps)
1735{
1736 struct s3c_hsotg_ep *hs_ep = &hsotg->eps[ep];
1737 void __iomem *regs = hsotg->regs;
1738 u32 mpsval;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001739 u32 mcval;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001740 u32 reg;
1741
1742 if (ep == 0) {
1743 /* EP0 is a special case */
1744 mpsval = s3c_hsotg_ep0_mps(mps);
1745 if (mpsval > 3)
1746 goto bad_mps;
Robert Baldygae9edd1992013-10-09 08:20:02 +02001747 hs_ep->ep.maxpacket = mps;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001748 hs_ep->mc = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001749 } else {
Robert Baldygae9edd1992013-10-09 08:20:02 +02001750 mpsval = mps & DxEPCTL_MPS_MASK;
1751 if (mpsval > 1024)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001752 goto bad_mps;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001753 mcval = ((mps >> 11) & 0x3) + 1;
1754 hs_ep->mc = mcval;
1755 if (mcval > 3)
1756 goto bad_mps;
Robert Baldygae9edd1992013-10-09 08:20:02 +02001757 hs_ep->ep.maxpacket = mpsval;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001758 }
1759
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001760 /*
1761 * update both the in and out endpoint controldir_ registers, even
1762 * if one of the directions may not be in use.
1763 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001764
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001765 reg = readl(regs + DIEPCTL(ep));
1766 reg &= ~DxEPCTL_MPS_MASK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001767 reg |= mpsval;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001768 writel(reg, regs + DIEPCTL(ep));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001769
Anton Tikhomirov659ad602012-03-06 14:07:29 +09001770 if (ep) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001771 reg = readl(regs + DOEPCTL(ep));
1772 reg &= ~DxEPCTL_MPS_MASK;
Anton Tikhomirov659ad602012-03-06 14:07:29 +09001773 reg |= mpsval;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001774 writel(reg, regs + DOEPCTL(ep));
Anton Tikhomirov659ad602012-03-06 14:07:29 +09001775 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001776
1777 return;
1778
1779bad_mps:
1780 dev_err(hsotg->dev, "ep%d: bad mps of %d\n", ep, mps);
1781}
1782
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001783/**
1784 * s3c_hsotg_txfifo_flush - flush Tx FIFO
1785 * @hsotg: The driver state
1786 * @idx: The index for the endpoint (0..15)
1787 */
1788static void s3c_hsotg_txfifo_flush(struct s3c_hsotg *hsotg, unsigned int idx)
1789{
1790 int timeout;
1791 int val;
1792
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001793 writel(GRSTCTL_TxFNum(idx) | GRSTCTL_TxFFlsh,
1794 hsotg->regs + GRSTCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001795
1796 /* wait until the fifo is flushed */
1797 timeout = 100;
1798
1799 while (1) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001800 val = readl(hsotg->regs + GRSTCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001801
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001802 if ((val & (GRSTCTL_TxFFlsh)) == 0)
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001803 break;
1804
1805 if (--timeout == 0) {
1806 dev_err(hsotg->dev,
1807 "%s: timeout flushing fifo (GRSTCTL=%08x)\n",
1808 __func__, val);
1809 }
1810
1811 udelay(1);
1812 }
1813}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001814
1815/**
1816 * s3c_hsotg_trytx - check to see if anything needs transmitting
1817 * @hsotg: The driver state
1818 * @hs_ep: The driver endpoint to check.
1819 *
1820 * Check to see if there is a request that has data to send, and if so
1821 * make an attempt to write data into the FIFO.
1822 */
1823static int s3c_hsotg_trytx(struct s3c_hsotg *hsotg,
1824 struct s3c_hsotg_ep *hs_ep)
1825{
1826 struct s3c_hsotg_req *hs_req = hs_ep->req;
1827
Robert Baldygaafcf4162013-09-19 11:50:19 +02001828 if (!hs_ep->dir_in || !hs_req) {
1829 /**
1830 * if request is not enqueued, we disable interrupts
1831 * for endpoints, excepting ep0
1832 */
1833 if (hs_ep->index != 0)
1834 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index,
1835 hs_ep->dir_in, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001836 return 0;
Robert Baldygaafcf4162013-09-19 11:50:19 +02001837 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001838
1839 if (hs_req->req.actual < hs_req->req.length) {
1840 dev_dbg(hsotg->dev, "trying to write more for ep%d\n",
1841 hs_ep->index);
1842 return s3c_hsotg_write_fifo(hsotg, hs_ep, hs_req);
1843 }
1844
1845 return 0;
1846}
1847
1848/**
1849 * s3c_hsotg_complete_in - complete IN transfer
1850 * @hsotg: The device state.
1851 * @hs_ep: The endpoint that has just completed.
1852 *
1853 * An IN transfer has been completed, update the transfer's state and then
1854 * call the relevant completion routines.
1855 */
1856static void s3c_hsotg_complete_in(struct s3c_hsotg *hsotg,
1857 struct s3c_hsotg_ep *hs_ep)
1858{
1859 struct s3c_hsotg_req *hs_req = hs_ep->req;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001860 u32 epsize = readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001861 int size_left, size_done;
1862
1863 if (!hs_req) {
1864 dev_dbg(hsotg->dev, "XferCompl but no req\n");
1865 return;
1866 }
1867
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001868 /* Finish ZLP handling for IN EP0 transactions */
1869 if (hsotg->eps[0].sent_zlp) {
1870 dev_dbg(hsotg->dev, "zlp packet received\n");
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001871 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001872 return;
1873 }
1874
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001875 /*
1876 * Calculate the size of the transfer by checking how much is left
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001877 * in the endpoint size register and then working it out from
1878 * the amount we loaded for the transfer.
1879 *
1880 * We do this even for DMA, as the transfer may have incremented
1881 * past the end of the buffer (DMA transfers are always 32bit
1882 * aligned).
1883 */
1884
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001885 size_left = DxEPTSIZ_XferSize_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001886
1887 size_done = hs_ep->size_loaded - size_left;
1888 size_done += hs_ep->last_load;
1889
1890 if (hs_req->req.actual != size_done)
1891 dev_dbg(hsotg->dev, "%s: adjusting size done %d => %d\n",
1892 __func__, hs_req->req.actual, size_done);
1893
1894 hs_req->req.actual = size_done;
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001895 dev_dbg(hsotg->dev, "req->length:%d req->actual:%d req->zero:%d\n",
1896 hs_req->req.length, hs_req->req.actual, hs_req->req.zero);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001897
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001898 /*
1899 * Check if dealing with Maximum Packet Size(MPS) IN transfer at EP0
1900 * When sent data is a multiple MPS size (e.g. 64B ,128B ,192B
1901 * ,256B ... ), after last MPS sized packet send IN ZLP packet to
1902 * inform the host that no more data is available.
1903 * The state of req.zero member is checked to be sure that the value to
1904 * send is smaller than wValue expected from host.
1905 * Check req.length to NOT send another ZLP when the current one is
1906 * under completion (the one for which this completion has been called).
1907 */
1908 if (hs_req->req.length && hs_ep->index == 0 && hs_req->req.zero &&
1909 hs_req->req.length == hs_req->req.actual &&
1910 !(hs_req->req.length % hs_ep->ep.maxpacket)) {
1911
1912 dev_dbg(hsotg->dev, "ep0 zlp IN packet sent\n");
1913 s3c_hsotg_send_zlp(hsotg, hs_req);
1914
1915 return;
1916 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001917
1918 if (!size_left && hs_req->req.actual < hs_req->req.length) {
1919 dev_dbg(hsotg->dev, "%s trying more for req...\n", __func__);
1920 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, true);
1921 } else
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001922 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001923}
1924
1925/**
1926 * s3c_hsotg_epint - handle an in/out endpoint interrupt
1927 * @hsotg: The driver state
1928 * @idx: The index for the endpoint (0..15)
1929 * @dir_in: Set if this is an IN endpoint
1930 *
1931 * Process and clear any interrupt pending for an individual endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001932 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001933static void s3c_hsotg_epint(struct s3c_hsotg *hsotg, unsigned int idx,
1934 int dir_in)
1935{
1936 struct s3c_hsotg_ep *hs_ep = &hsotg->eps[idx];
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001937 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
1938 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
1939 u32 epsiz_reg = dir_in ? DIEPTSIZ(idx) : DOEPTSIZ(idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001940 u32 ints;
Robert Baldyga1479e842013-10-09 08:41:57 +02001941 u32 ctrl;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001942
1943 ints = readl(hsotg->regs + epint_reg);
Robert Baldyga1479e842013-10-09 08:41:57 +02001944 ctrl = readl(hsotg->regs + epctl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001945
Anton Tikhomirova3395f02011-04-21 17:06:39 +09001946 /* Clear endpoint interrupts */
1947 writel(ints, hsotg->regs + epint_reg);
1948
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001949 dev_dbg(hsotg->dev, "%s: ep%d(%s) DxEPINT=0x%08x\n",
1950 __func__, idx, dir_in ? "in" : "out", ints);
1951
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001952 if (ints & DxEPINT_XferCompl) {
Robert Baldyga1479e842013-10-09 08:41:57 +02001953 if (hs_ep->isochronous && hs_ep->interval == 1) {
1954 if (ctrl & DxEPCTL_EOFrNum)
1955 ctrl |= DxEPCTL_SetEvenFr;
1956 else
1957 ctrl |= DxEPCTL_SetOddFr;
1958 writel(ctrl, hsotg->regs + epctl_reg);
1959 }
1960
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001961 dev_dbg(hsotg->dev,
1962 "%s: XferCompl: DxEPCTL=0x%08x, DxEPTSIZ=%08x\n",
1963 __func__, readl(hsotg->regs + epctl_reg),
1964 readl(hsotg->regs + epsiz_reg));
1965
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001966 /*
1967 * we get OutDone from the FIFO, so we only need to look
1968 * at completing IN requests here
1969 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001970 if (dir_in) {
1971 s3c_hsotg_complete_in(hsotg, hs_ep);
1972
Ben Dooksc9a64ea2010-07-19 09:40:46 +01001973 if (idx == 0 && !hs_ep->req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001974 s3c_hsotg_enqueue_setup(hsotg);
1975 } else if (using_dma(hsotg)) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001976 /*
1977 * We're using DMA, we need to fire an OutDone here
1978 * as we ignore the RXFIFO.
1979 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001980
1981 s3c_hsotg_handle_outdone(hsotg, idx, false);
1982 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001983 }
1984
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001985 if (ints & DxEPINT_EPDisbld) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001986 dev_dbg(hsotg->dev, "%s: EPDisbld\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001987
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001988 if (dir_in) {
1989 int epctl = readl(hsotg->regs + epctl_reg);
1990
1991 s3c_hsotg_txfifo_flush(hsotg, idx);
1992
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001993 if ((epctl & DxEPCTL_Stall) &&
1994 (epctl & DxEPCTL_EPType_Bulk)) {
1995 int dctl = readl(hsotg->regs + DCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001996
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001997 dctl |= DCTL_CGNPInNAK;
1998 writel(dctl, hsotg->regs + DCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001999 }
2000 }
2001 }
2002
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002003 if (ints & DxEPINT_AHBErr)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002004 dev_dbg(hsotg->dev, "%s: AHBErr\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002005
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002006 if (ints & DxEPINT_Setup) { /* Setup or Timeout */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002007 dev_dbg(hsotg->dev, "%s: Setup/Timeout\n", __func__);
2008
2009 if (using_dma(hsotg) && idx == 0) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002010 /*
2011 * this is the notification we've received a
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002012 * setup packet. In non-DMA mode we'd get this
2013 * from the RXFIFO, instead we need to process
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002014 * the setup here.
2015 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002016
2017 if (dir_in)
2018 WARN_ON_ONCE(1);
2019 else
2020 s3c_hsotg_handle_outdone(hsotg, 0, true);
2021 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002022 }
2023
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002024 if (ints & DxEPINT_Back2BackSetup)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002025 dev_dbg(hsotg->dev, "%s: B2BSetup/INEPNakEff\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002026
Robert Baldyga1479e842013-10-09 08:41:57 +02002027 if (dir_in && !hs_ep->isochronous) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002028 /* not sure if this is important, but we'll clear it anyway */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002029 if (ints & DIEPMSK_INTknTXFEmpMsk) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002030 dev_dbg(hsotg->dev, "%s: ep%d: INTknTXFEmpMsk\n",
2031 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002032 }
2033
2034 /* this probably means something bad is happening */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002035 if (ints & DIEPMSK_INTknEPMisMsk) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002036 dev_warn(hsotg->dev, "%s: ep%d: INTknEP\n",
2037 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002038 }
Ben Dooks10aebc72010-07-19 09:40:44 +01002039
2040 /* FIFO has space or is empty (see GAHBCFG) */
2041 if (hsotg->dedicated_fifos &&
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002042 ints & DIEPMSK_TxFIFOEmpty) {
Ben Dooks10aebc72010-07-19 09:40:44 +01002043 dev_dbg(hsotg->dev, "%s: ep%d: TxFIFOEmpty\n",
2044 __func__, idx);
Anton Tikhomirov70fa0302012-03-06 14:08:29 +09002045 if (!using_dma(hsotg))
2046 s3c_hsotg_trytx(hsotg, hs_ep);
Ben Dooks10aebc72010-07-19 09:40:44 +01002047 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002048 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002049}
2050
2051/**
2052 * s3c_hsotg_irq_enumdone - Handle EnumDone interrupt (enumeration done)
2053 * @hsotg: The device state.
2054 *
2055 * Handle updating the device settings after the enumeration phase has
2056 * been completed.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002057 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002058static void s3c_hsotg_irq_enumdone(struct s3c_hsotg *hsotg)
2059{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002060 u32 dsts = readl(hsotg->regs + DSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002061 int ep0_mps = 0, ep_mps;
2062
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002063 /*
2064 * This should signal the finish of the enumeration phase
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002065 * of the USB handshaking, so we should now know what rate
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002066 * we connected at.
2067 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002068
2069 dev_dbg(hsotg->dev, "EnumDone (DSTS=0x%08x)\n", dsts);
2070
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002071 /*
2072 * note, since we're limited by the size of transfer on EP0, and
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002073 * it seems IN transfers must be a even number of packets we do
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002074 * not advertise a 64byte MPS on EP0.
2075 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002076
2077 /* catch both EnumSpd_FS and EnumSpd_FS48 */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002078 switch (dsts & DSTS_EnumSpd_MASK) {
2079 case DSTS_EnumSpd_FS:
2080 case DSTS_EnumSpd_FS48:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002081 hsotg->gadget.speed = USB_SPEED_FULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002082 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01002083 ep_mps = 1023;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002084 break;
2085
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002086 case DSTS_EnumSpd_HS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002087 hsotg->gadget.speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002088 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01002089 ep_mps = 1024;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002090 break;
2091
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002092 case DSTS_EnumSpd_LS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002093 hsotg->gadget.speed = USB_SPEED_LOW;
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002094 /*
2095 * note, we don't actually support LS in this driver at the
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002096 * moment, and the documentation seems to imply that it isn't
2097 * supported by the PHYs on some of the devices.
2098 */
2099 break;
2100 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002101 dev_info(hsotg->dev, "new device is %s\n",
2102 usb_speed_string(hsotg->gadget.speed));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002103
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002104 /*
2105 * we should now know the maximum packet size for an
2106 * endpoint, so set the endpoints to a default value.
2107 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002108
2109 if (ep0_mps) {
2110 int i;
2111 s3c_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002112 for (i = 1; i < hsotg->num_of_eps; i++)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002113 s3c_hsotg_set_ep_maxpacket(hsotg, i, ep_mps);
2114 }
2115
2116 /* ensure after enumeration our EP0 is active */
2117
2118 s3c_hsotg_enqueue_setup(hsotg);
2119
2120 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002121 readl(hsotg->regs + DIEPCTL0),
2122 readl(hsotg->regs + DOEPCTL0));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002123}
2124
2125/**
2126 * kill_all_requests - remove all requests from the endpoint's queue
2127 * @hsotg: The device state.
2128 * @ep: The endpoint the requests may be on.
2129 * @result: The result code to use.
2130 * @force: Force removal of any current requests
2131 *
2132 * Go through the requests on the given endpoint and mark them
2133 * completed with the given result code.
2134 */
2135static void kill_all_requests(struct s3c_hsotg *hsotg,
2136 struct s3c_hsotg_ep *ep,
2137 int result, bool force)
2138{
2139 struct s3c_hsotg_req *req, *treq;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002140
2141 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002142 /*
2143 * currently, we can't do much about an already
2144 * running request on an in endpoint
2145 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002146
2147 if (ep->req == req && ep->dir_in && !force)
2148 continue;
2149
2150 s3c_hsotg_complete_request(hsotg, ep, req,
2151 result);
2152 }
Robert Baldygab963a812013-12-06 13:03:45 +01002153 if(hsotg->dedicated_fifos)
2154 if ((readl(hsotg->regs + DTXFSTS(ep->index)) & 0xffff) * 4 < 3072)
2155 s3c_hsotg_txfifo_flush(hsotg, ep->index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002156}
2157
2158#define call_gadget(_hs, _entry) \
Pavel Macheka023da32013-09-30 14:56:02 +02002159do { \
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002160 if ((_hs)->gadget.speed != USB_SPEED_UNKNOWN && \
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002161 (_hs)->driver && (_hs)->driver->_entry) { \
2162 spin_unlock(&_hs->lock); \
2163 (_hs)->driver->_entry(&(_hs)->gadget); \
2164 spin_lock(&_hs->lock); \
Pavel Macheka023da32013-09-30 14:56:02 +02002165 } \
2166} while (0)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002167
2168/**
Lukasz Majewski5e891342012-05-04 14:17:07 +02002169 * s3c_hsotg_disconnect - disconnect service
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002170 * @hsotg: The device state.
2171 *
Lukasz Majewski5e891342012-05-04 14:17:07 +02002172 * The device has been disconnected. Remove all current
2173 * transactions and signal the gadget driver that this
2174 * has happened.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002175 */
Lukasz Majewski5e891342012-05-04 14:17:07 +02002176static void s3c_hsotg_disconnect(struct s3c_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002177{
2178 unsigned ep;
2179
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002180 for (ep = 0; ep < hsotg->num_of_eps; ep++)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002181 kill_all_requests(hsotg, &hsotg->eps[ep], -ESHUTDOWN, true);
2182
2183 call_gadget(hsotg, disconnect);
2184}
2185
2186/**
2187 * s3c_hsotg_irq_fifoempty - TX FIFO empty interrupt handler
2188 * @hsotg: The device state:
2189 * @periodic: True if this is a periodic FIFO interrupt
2190 */
2191static void s3c_hsotg_irq_fifoempty(struct s3c_hsotg *hsotg, bool periodic)
2192{
2193 struct s3c_hsotg_ep *ep;
2194 int epno, ret;
2195
2196 /* look through for any more data to transmit */
2197
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002198 for (epno = 0; epno < hsotg->num_of_eps; epno++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002199 ep = &hsotg->eps[epno];
2200
2201 if (!ep->dir_in)
2202 continue;
2203
2204 if ((periodic && !ep->periodic) ||
2205 (!periodic && ep->periodic))
2206 continue;
2207
2208 ret = s3c_hsotg_trytx(hsotg, ep);
2209 if (ret < 0)
2210 break;
2211 }
2212}
2213
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002214/* IRQ flags which will trigger a retry around the IRQ loop */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002215#define IRQ_RETRY_MASK (GINTSTS_NPTxFEmp | \
2216 GINTSTS_PTxFEmp | \
2217 GINTSTS_RxFLvl)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002218
2219/**
Lukasz Majewski308d7342012-05-04 14:17:05 +02002220 * s3c_hsotg_corereset - issue softreset to the core
2221 * @hsotg: The device state
2222 *
2223 * Issue a soft reset to the core, and await the core finishing it.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002224 */
Lukasz Majewski308d7342012-05-04 14:17:05 +02002225static int s3c_hsotg_corereset(struct s3c_hsotg *hsotg)
2226{
2227 int timeout;
2228 u32 grstctl;
2229
2230 dev_dbg(hsotg->dev, "resetting core\n");
2231
2232 /* issue soft reset */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002233 writel(GRSTCTL_CSftRst, hsotg->regs + GRSTCTL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002234
Du, Changbin2868fea2012-07-24 08:19:25 +08002235 timeout = 10000;
Lukasz Majewski308d7342012-05-04 14:17:05 +02002236 do {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002237 grstctl = readl(hsotg->regs + GRSTCTL);
2238 } while ((grstctl & GRSTCTL_CSftRst) && timeout-- > 0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002239
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002240 if (grstctl & GRSTCTL_CSftRst) {
Lukasz Majewski308d7342012-05-04 14:17:05 +02002241 dev_err(hsotg->dev, "Failed to get CSftRst asserted\n");
2242 return -EINVAL;
2243 }
2244
Du, Changbin2868fea2012-07-24 08:19:25 +08002245 timeout = 10000;
Lukasz Majewski308d7342012-05-04 14:17:05 +02002246
2247 while (1) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002248 u32 grstctl = readl(hsotg->regs + GRSTCTL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002249
2250 if (timeout-- < 0) {
2251 dev_info(hsotg->dev,
2252 "%s: reset failed, GRSTCTL=%08x\n",
2253 __func__, grstctl);
2254 return -ETIMEDOUT;
2255 }
2256
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002257 if (!(grstctl & GRSTCTL_AHBIdle))
Lukasz Majewski308d7342012-05-04 14:17:05 +02002258 continue;
2259
2260 break; /* reset done */
2261 }
2262
2263 dev_dbg(hsotg->dev, "reset successful\n");
2264 return 0;
2265}
2266
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002267/**
2268 * s3c_hsotg_core_init - issue softreset to the core
2269 * @hsotg: The device state
2270 *
2271 * Issue a soft reset to the core, and await the core finishing it.
2272 */
Lukasz Majewski308d7342012-05-04 14:17:05 +02002273static void s3c_hsotg_core_init(struct s3c_hsotg *hsotg)
2274{
2275 s3c_hsotg_corereset(hsotg);
2276
2277 /*
2278 * we must now enable ep0 ready for host detection and then
2279 * set configuration.
2280 */
2281
2282 /* set the PLL on, remove the HNP/SRP and set the PHY */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002283 writel(GUSBCFG_PHYIf16 | GUSBCFG_TOutCal(7) |
2284 (0x5 << 10), hsotg->regs + GUSBCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002285
2286 s3c_hsotg_init_fifo(hsotg);
2287
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002288 __orr32(hsotg->regs + DCTL, DCTL_SftDiscon);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002289
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002290 writel(1 << 18 | DCFG_DevSpd_HS, hsotg->regs + DCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002291
2292 /* Clear any pending OTG interrupts */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002293 writel(0xffffffff, hsotg->regs + GOTGINT);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002294
2295 /* Clear any pending interrupts */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002296 writel(0xffffffff, hsotg->regs + GINTSTS);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002297
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002298 writel(GINTSTS_ErlySusp | GINTSTS_SessReqInt |
2299 GINTSTS_GOUTNakEff | GINTSTS_GINNakEff |
2300 GINTSTS_ConIDStsChng | GINTSTS_USBRst |
2301 GINTSTS_EnumDone | GINTSTS_OTGInt |
2302 GINTSTS_USBSusp | GINTSTS_WkUpInt,
2303 hsotg->regs + GINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002304
2305 if (using_dma(hsotg))
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002306 writel(GAHBCFG_GlblIntrEn | GAHBCFG_DMAEn |
2307 GAHBCFG_HBstLen_Incr4,
2308 hsotg->regs + GAHBCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002309 else
Robert Baldyga8acc8292013-09-19 11:50:23 +02002310 writel(((hsotg->dedicated_fifos) ? (GAHBCFG_NPTxFEmpLvl |
2311 GAHBCFG_PTxFEmpLvl) : 0) |
2312 GAHBCFG_GlblIntrEn,
2313 hsotg->regs + GAHBCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002314
2315 /*
Robert Baldyga8acc8292013-09-19 11:50:23 +02002316 * If INTknTXFEmpMsk is enabled, it's important to disable ep interrupts
2317 * when we have no data to transfer. Otherwise we get being flooded by
2318 * interrupts.
Lukasz Majewski308d7342012-05-04 14:17:05 +02002319 */
2320
Robert Baldyga8acc8292013-09-19 11:50:23 +02002321 writel(((hsotg->dedicated_fifos) ? DIEPMSK_TxFIFOEmpty |
2322 DIEPMSK_INTknTXFEmpMsk : 0) |
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002323 DIEPMSK_EPDisbldMsk | DIEPMSK_XferComplMsk |
2324 DIEPMSK_TimeOUTMsk | DIEPMSK_AHBErrMsk |
2325 DIEPMSK_INTknEPMisMsk,
2326 hsotg->regs + DIEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002327
2328 /*
2329 * don't need XferCompl, we get that from RXFIFO in slave mode. In
2330 * DMA mode we may need this.
2331 */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002332 writel((using_dma(hsotg) ? (DIEPMSK_XferComplMsk |
2333 DIEPMSK_TimeOUTMsk) : 0) |
2334 DOEPMSK_EPDisbldMsk | DOEPMSK_AHBErrMsk |
2335 DOEPMSK_SetupMsk,
2336 hsotg->regs + DOEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002337
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002338 writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002339
2340 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002341 readl(hsotg->regs + DIEPCTL0),
2342 readl(hsotg->regs + DOEPCTL0));
Lukasz Majewski308d7342012-05-04 14:17:05 +02002343
2344 /* enable in and out endpoint interrupts */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002345 s3c_hsotg_en_gsint(hsotg, GINTSTS_OEPInt | GINTSTS_IEPInt);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002346
2347 /*
2348 * Enable the RXFIFO when in slave mode, as this is how we collect
2349 * the data. In DMA mode, we get events from the FIFO but also
2350 * things we cannot process, so do not use it.
2351 */
2352 if (!using_dma(hsotg))
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002353 s3c_hsotg_en_gsint(hsotg, GINTSTS_RxFLvl);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002354
2355 /* Enable interrupts for EP0 in and out */
2356 s3c_hsotg_ctrl_epint(hsotg, 0, 0, 1);
2357 s3c_hsotg_ctrl_epint(hsotg, 0, 1, 1);
2358
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002359 __orr32(hsotg->regs + DCTL, DCTL_PWROnPrgDone);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002360 udelay(10); /* see openiboot */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002361 __bic32(hsotg->regs + DCTL, DCTL_PWROnPrgDone);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002362
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002363 dev_dbg(hsotg->dev, "DCTL=0x%08x\n", readl(hsotg->regs + DCTL));
Lukasz Majewski308d7342012-05-04 14:17:05 +02002364
2365 /*
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002366 * DxEPCTL_USBActEp says RO in manual, but seems to be set by
Lukasz Majewski308d7342012-05-04 14:17:05 +02002367 * writing to the EPCTL register..
2368 */
2369
2370 /* set to read 1 8byte packet */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002371 writel(DxEPTSIZ_MC(1) | DxEPTSIZ_PktCnt(1) |
2372 DxEPTSIZ_XferSize(8), hsotg->regs + DOEPTSIZ0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002373
2374 writel(s3c_hsotg_ep0_mps(hsotg->eps[0].ep.maxpacket) |
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002375 DxEPCTL_CNAK | DxEPCTL_EPEna |
2376 DxEPCTL_USBActEp,
2377 hsotg->regs + DOEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002378
2379 /* enable, but don't activate EP0in */
2380 writel(s3c_hsotg_ep0_mps(hsotg->eps[0].ep.maxpacket) |
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002381 DxEPCTL_USBActEp, hsotg->regs + DIEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002382
2383 s3c_hsotg_enqueue_setup(hsotg);
2384
2385 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002386 readl(hsotg->regs + DIEPCTL0),
2387 readl(hsotg->regs + DOEPCTL0));
Lukasz Majewski308d7342012-05-04 14:17:05 +02002388
2389 /* clear global NAKs */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002390 writel(DCTL_CGOUTNak | DCTL_CGNPInNAK,
2391 hsotg->regs + DCTL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002392
2393 /* must be at-least 3ms to allow bus to see disconnect */
2394 mdelay(3);
2395
2396 /* remove the soft-disconnect and let's go */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002397 __bic32(hsotg->regs + DCTL, DCTL_SftDiscon);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002398}
2399
2400/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002401 * s3c_hsotg_irq - handle device interrupt
2402 * @irq: The IRQ number triggered
2403 * @pw: The pw value when registered the handler.
2404 */
2405static irqreturn_t s3c_hsotg_irq(int irq, void *pw)
2406{
2407 struct s3c_hsotg *hsotg = pw;
2408 int retry_count = 8;
2409 u32 gintsts;
2410 u32 gintmsk;
2411
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002412 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002413irq_retry:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002414 gintsts = readl(hsotg->regs + GINTSTS);
2415 gintmsk = readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002416
2417 dev_dbg(hsotg->dev, "%s: %08x %08x (%08x) retry %d\n",
2418 __func__, gintsts, gintsts & gintmsk, gintmsk, retry_count);
2419
2420 gintsts &= gintmsk;
2421
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002422 if (gintsts & GINTSTS_OTGInt) {
2423 u32 otgint = readl(hsotg->regs + GOTGINT);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002424
2425 dev_info(hsotg->dev, "OTGInt: %08x\n", otgint);
2426
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002427 writel(otgint, hsotg->regs + GOTGINT);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002428 }
2429
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002430 if (gintsts & GINTSTS_SessReqInt) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002431 dev_dbg(hsotg->dev, "%s: SessReqInt\n", __func__);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002432 writel(GINTSTS_SessReqInt, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002433 }
2434
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002435 if (gintsts & GINTSTS_EnumDone) {
2436 writel(GINTSTS_EnumDone, hsotg->regs + GINTSTS);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002437
2438 s3c_hsotg_irq_enumdone(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002439 }
2440
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002441 if (gintsts & GINTSTS_ConIDStsChng) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002442 dev_dbg(hsotg->dev, "ConIDStsChg (DSTS=0x%08x, GOTCTL=%08x)\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002443 readl(hsotg->regs + DSTS),
2444 readl(hsotg->regs + GOTGCTL));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002445
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002446 writel(GINTSTS_ConIDStsChng, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002447 }
2448
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002449 if (gintsts & (GINTSTS_OEPInt | GINTSTS_IEPInt)) {
2450 u32 daint = readl(hsotg->regs + DAINT);
Robert Baldyga7e804652013-09-19 11:50:20 +02002451 u32 daintmsk = readl(hsotg->regs + DAINTMSK);
2452 u32 daint_out, daint_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002453 int ep;
2454
Robert Baldyga7e804652013-09-19 11:50:20 +02002455 daint &= daintmsk;
2456 daint_out = daint >> DAINT_OutEP_SHIFT;
2457 daint_in = daint & ~(daint_out << DAINT_OutEP_SHIFT);
2458
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002459 dev_dbg(hsotg->dev, "%s: daint=%08x\n", __func__, daint);
2460
2461 for (ep = 0; ep < 15 && daint_out; ep++, daint_out >>= 1) {
2462 if (daint_out & 1)
2463 s3c_hsotg_epint(hsotg, ep, 0);
2464 }
2465
2466 for (ep = 0; ep < 15 && daint_in; ep++, daint_in >>= 1) {
2467 if (daint_in & 1)
2468 s3c_hsotg_epint(hsotg, ep, 1);
2469 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002470 }
2471
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002472 if (gintsts & GINTSTS_USBRst) {
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002473
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002474 u32 usb_status = readl(hsotg->regs + GOTGCTL);
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002475
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002476 dev_info(hsotg->dev, "%s: USBRst\n", __func__);
2477 dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002478 readl(hsotg->regs + GNPTXSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002479
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002480 writel(GINTSTS_USBRst, hsotg->regs + GINTSTS);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002481
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002482 if (usb_status & GOTGCTL_BSESVLD) {
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002483 if (time_after(jiffies, hsotg->last_rst +
2484 msecs_to_jiffies(200))) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002485
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002486 kill_all_requests(hsotg, &hsotg->eps[0],
2487 -ECONNRESET, true);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002488
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002489 s3c_hsotg_core_init(hsotg);
2490 hsotg->last_rst = jiffies;
2491 }
2492 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002493 }
2494
2495 /* check both FIFOs */
2496
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002497 if (gintsts & GINTSTS_NPTxFEmp) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002498 dev_dbg(hsotg->dev, "NPTxFEmp\n");
2499
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002500 /*
2501 * Disable the interrupt to stop it happening again
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002502 * unless one of these endpoint routines decides that
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002503 * it needs re-enabling
2504 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002505
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002506 s3c_hsotg_disable_gsint(hsotg, GINTSTS_NPTxFEmp);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002507 s3c_hsotg_irq_fifoempty(hsotg, false);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002508 }
2509
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002510 if (gintsts & GINTSTS_PTxFEmp) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002511 dev_dbg(hsotg->dev, "PTxFEmp\n");
2512
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002513 /* See note in GINTSTS_NPTxFEmp */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002514
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002515 s3c_hsotg_disable_gsint(hsotg, GINTSTS_PTxFEmp);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002516 s3c_hsotg_irq_fifoempty(hsotg, true);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002517 }
2518
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002519 if (gintsts & GINTSTS_RxFLvl) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002520 /*
2521 * note, since GINTSTS_RxFLvl doubles as FIFO-not-empty,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002522 * we need to retry s3c_hsotg_handle_rx if this is still
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002523 * set.
2524 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002525
2526 s3c_hsotg_handle_rx(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002527 }
2528
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002529 if (gintsts & GINTSTS_ModeMis) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002530 dev_warn(hsotg->dev, "warning, mode mismatch triggered\n");
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002531 writel(GINTSTS_ModeMis, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002532 }
2533
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002534 if (gintsts & GINTSTS_USBSusp) {
2535 dev_info(hsotg->dev, "GINTSTS_USBSusp\n");
2536 writel(GINTSTS_USBSusp, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002537
2538 call_gadget(hsotg, suspend);
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002539 s3c_hsotg_disconnect(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002540 }
2541
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002542 if (gintsts & GINTSTS_WkUpInt) {
2543 dev_info(hsotg->dev, "GINTSTS_WkUpIn\n");
2544 writel(GINTSTS_WkUpInt, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002545
2546 call_gadget(hsotg, resume);
2547 }
2548
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002549 if (gintsts & GINTSTS_ErlySusp) {
2550 dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n");
2551 writel(GINTSTS_ErlySusp, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002552 }
2553
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002554 /*
2555 * these next two seem to crop-up occasionally causing the core
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002556 * to shutdown the USB transfer, so try clearing them and logging
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002557 * the occurrence.
2558 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002559
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002560 if (gintsts & GINTSTS_GOUTNakEff) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002561 dev_info(hsotg->dev, "GOUTNakEff triggered\n");
2562
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002563 writel(DCTL_CGOUTNak, hsotg->regs + DCTL);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002564
2565 s3c_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002566 }
2567
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002568 if (gintsts & GINTSTS_GINNakEff) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002569 dev_info(hsotg->dev, "GINNakEff triggered\n");
2570
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002571 writel(DCTL_CGNPInNAK, hsotg->regs + DCTL);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002572
2573 s3c_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002574 }
2575
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002576 /*
2577 * if we've had fifo events, we should try and go around the
2578 * loop again to see if there's any point in returning yet.
2579 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002580
2581 if (gintsts & IRQ_RETRY_MASK && --retry_count > 0)
2582 goto irq_retry;
2583
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002584 spin_unlock(&hsotg->lock);
2585
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002586 return IRQ_HANDLED;
2587}
2588
2589/**
2590 * s3c_hsotg_ep_enable - enable the given endpoint
2591 * @ep: The USB endpint to configure
2592 * @desc: The USB endpoint descriptor to configure with.
2593 *
2594 * This is called from the USB gadget code's usb_ep_enable().
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002595 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002596static int s3c_hsotg_ep_enable(struct usb_ep *ep,
2597 const struct usb_endpoint_descriptor *desc)
2598{
2599 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2600 struct s3c_hsotg *hsotg = hs_ep->parent;
2601 unsigned long flags;
2602 int index = hs_ep->index;
2603 u32 epctrl_reg;
2604 u32 epctrl;
2605 u32 mps;
2606 int dir_in;
Julia Lawall19c190f2010-03-29 17:36:44 +02002607 int ret = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002608
2609 dev_dbg(hsotg->dev,
2610 "%s: ep %s: a 0x%02x, attr 0x%02x, mps 0x%04x, intr %d\n",
2611 __func__, ep->name, desc->bEndpointAddress, desc->bmAttributes,
2612 desc->wMaxPacketSize, desc->bInterval);
2613
2614 /* not to be called for EP0 */
2615 WARN_ON(index == 0);
2616
2617 dir_in = (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? 1 : 0;
2618 if (dir_in != hs_ep->dir_in) {
2619 dev_err(hsotg->dev, "%s: direction mismatch!\n", __func__);
2620 return -EINVAL;
2621 }
2622
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002623 mps = usb_endpoint_maxp(desc);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002624
2625 /* note, we handle this here instead of s3c_hsotg_set_ep_maxpacket */
2626
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002627 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002628 epctrl = readl(hsotg->regs + epctrl_reg);
2629
2630 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x from 0x%08x\n",
2631 __func__, epctrl, epctrl_reg);
2632
Lukasz Majewski22258f42012-06-14 10:02:24 +02002633 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002634
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002635 epctrl &= ~(DxEPCTL_EPType_MASK | DxEPCTL_MPS_MASK);
2636 epctrl |= DxEPCTL_MPS(mps);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002637
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002638 /*
2639 * mark the endpoint as active, otherwise the core may ignore
2640 * transactions entirely for this endpoint
2641 */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002642 epctrl |= DxEPCTL_USBActEp;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002643
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002644 /*
2645 * set the NAK status on the endpoint, otherwise we might try and
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002646 * do something with data that we've yet got a request to process
2647 * since the RXFIFO will take data for an endpoint even if the
2648 * size register hasn't been set.
2649 */
2650
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002651 epctrl |= DxEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002652
2653 /* update the endpoint state */
Robert Baldygae9edd1992013-10-09 08:20:02 +02002654 s3c_hsotg_set_ep_maxpacket(hsotg, hs_ep->index, mps);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002655
2656 /* default, set to non-periodic */
Robert Baldyga1479e842013-10-09 08:41:57 +02002657 hs_ep->isochronous = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002658 hs_ep->periodic = 0;
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02002659 hs_ep->halted = 0;
Robert Baldyga1479e842013-10-09 08:41:57 +02002660 hs_ep->interval = desc->bInterval;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002661
Robert Baldyga4fca54a2013-10-09 09:00:02 +02002662 if (hs_ep->interval > 1 && hs_ep->mc > 1)
2663 dev_err(hsotg->dev, "MC > 1 when interval is not 1\n");
2664
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002665 switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
2666 case USB_ENDPOINT_XFER_ISOC:
Robert Baldyga1479e842013-10-09 08:41:57 +02002667 epctrl |= DxEPCTL_EPType_Iso;
2668 epctrl |= DxEPCTL_SetEvenFr;
2669 hs_ep->isochronous = 1;
2670 if (dir_in)
2671 hs_ep->periodic = 1;
2672 break;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002673
2674 case USB_ENDPOINT_XFER_BULK:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002675 epctrl |= DxEPCTL_EPType_Bulk;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002676 break;
2677
2678 case USB_ENDPOINT_XFER_INT:
2679 if (dir_in) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002680 /*
2681 * Allocate our TxFNum by simply using the index
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002682 * of the endpoint for the moment. We could do
2683 * something better if the host indicates how
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002684 * many FIFOs we are expecting to use.
2685 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002686
2687 hs_ep->periodic = 1;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002688 epctrl |= DxEPCTL_TxFNum(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002689 }
2690
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002691 epctrl |= DxEPCTL_EPType_Intterupt;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002692 break;
2693
2694 case USB_ENDPOINT_XFER_CONTROL:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002695 epctrl |= DxEPCTL_EPType_Control;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002696 break;
2697 }
2698
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002699 /*
2700 * if the hardware has dedicated fifos, we must give each IN EP
Ben Dooks10aebc72010-07-19 09:40:44 +01002701 * a unique tx-fifo even if it is non-periodic.
2702 */
2703 if (dir_in && hsotg->dedicated_fifos)
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002704 epctrl |= DxEPCTL_TxFNum(index);
Ben Dooks10aebc72010-07-19 09:40:44 +01002705
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002706 /* for non control endpoints, set PID to D0 */
2707 if (index)
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002708 epctrl |= DxEPCTL_SetD0PID;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002709
2710 dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
2711 __func__, epctrl);
2712
2713 writel(epctrl, hsotg->regs + epctrl_reg);
2714 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
2715 __func__, readl(hsotg->regs + epctrl_reg));
2716
2717 /* enable the endpoint interrupt */
2718 s3c_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
2719
Lukasz Majewski22258f42012-06-14 10:02:24 +02002720 spin_unlock_irqrestore(&hsotg->lock, flags);
Julia Lawall19c190f2010-03-29 17:36:44 +02002721 return ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002722}
2723
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002724/**
2725 * s3c_hsotg_ep_disable - disable given endpoint
2726 * @ep: The endpoint to disable.
2727 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002728static int s3c_hsotg_ep_disable(struct usb_ep *ep)
2729{
2730 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2731 struct s3c_hsotg *hsotg = hs_ep->parent;
2732 int dir_in = hs_ep->dir_in;
2733 int index = hs_ep->index;
2734 unsigned long flags;
2735 u32 epctrl_reg;
2736 u32 ctrl;
2737
2738 dev_info(hsotg->dev, "%s(ep %p)\n", __func__, ep);
2739
2740 if (ep == &hsotg->eps[0].ep) {
2741 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
2742 return -EINVAL;
2743 }
2744
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002745 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002746
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002747 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002748 /* terminate all requests with shutdown */
2749 kill_all_requests(hsotg, hs_ep, -ESHUTDOWN, false);
2750
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002751
2752 ctrl = readl(hsotg->regs + epctrl_reg);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002753 ctrl &= ~DxEPCTL_EPEna;
2754 ctrl &= ~DxEPCTL_USBActEp;
2755 ctrl |= DxEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002756
2757 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
2758 writel(ctrl, hsotg->regs + epctrl_reg);
2759
2760 /* disable endpoint interrupts */
2761 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
2762
Lukasz Majewski22258f42012-06-14 10:02:24 +02002763 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002764 return 0;
2765}
2766
2767/**
2768 * on_list - check request is on the given endpoint
2769 * @ep: The endpoint to check.
2770 * @test: The request to test if it is on the endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002771 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002772static bool on_list(struct s3c_hsotg_ep *ep, struct s3c_hsotg_req *test)
2773{
2774 struct s3c_hsotg_req *req, *treq;
2775
2776 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
2777 if (req == test)
2778 return true;
2779 }
2780
2781 return false;
2782}
2783
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002784/**
2785 * s3c_hsotg_ep_dequeue - dequeue given endpoint
2786 * @ep: The endpoint to dequeue.
2787 * @req: The request to be removed from a queue.
2788 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002789static int s3c_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
2790{
2791 struct s3c_hsotg_req *hs_req = our_req(req);
2792 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2793 struct s3c_hsotg *hs = hs_ep->parent;
2794 unsigned long flags;
2795
2796 dev_info(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
2797
Lukasz Majewski22258f42012-06-14 10:02:24 +02002798 spin_lock_irqsave(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002799
2800 if (!on_list(hs_ep, hs_req)) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02002801 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002802 return -EINVAL;
2803 }
2804
2805 s3c_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
Lukasz Majewski22258f42012-06-14 10:02:24 +02002806 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002807
2808 return 0;
2809}
2810
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002811/**
2812 * s3c_hsotg_ep_sethalt - set halt on a given endpoint
2813 * @ep: The endpoint to set halt.
2814 * @value: Set or unset the halt.
2815 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002816static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value)
2817{
2818 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2819 struct s3c_hsotg *hs = hs_ep->parent;
2820 int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002821 u32 epreg;
2822 u32 epctl;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002823 u32 xfertype;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002824
2825 dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
2826
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002827 /* write both IN and OUT control registers */
2828
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002829 epreg = DIEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002830 epctl = readl(hs->regs + epreg);
2831
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002832 if (value) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002833 epctl |= DxEPCTL_Stall + DxEPCTL_SNAK;
2834 if (epctl & DxEPCTL_EPEna)
2835 epctl |= DxEPCTL_EPDis;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002836 } else {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002837 epctl &= ~DxEPCTL_Stall;
2838 xfertype = epctl & DxEPCTL_EPType_MASK;
2839 if (xfertype == DxEPCTL_EPType_Bulk ||
2840 xfertype == DxEPCTL_EPType_Intterupt)
2841 epctl |= DxEPCTL_SetD0PID;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002842 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002843
2844 writel(epctl, hs->regs + epreg);
2845
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002846 epreg = DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002847 epctl = readl(hs->regs + epreg);
2848
2849 if (value)
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002850 epctl |= DxEPCTL_Stall;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002851 else {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002852 epctl &= ~DxEPCTL_Stall;
2853 xfertype = epctl & DxEPCTL_EPType_MASK;
2854 if (xfertype == DxEPCTL_EPType_Bulk ||
2855 xfertype == DxEPCTL_EPType_Intterupt)
2856 epctl |= DxEPCTL_SetD0PID;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002857 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002858
2859 writel(epctl, hs->regs + epreg);
2860
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02002861 hs_ep->halted = value;
2862
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002863 return 0;
2864}
2865
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002866/**
2867 * s3c_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
2868 * @ep: The endpoint to set halt.
2869 * @value: Set or unset the halt.
2870 */
2871static int s3c_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
2872{
2873 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
2874 struct s3c_hsotg *hs = hs_ep->parent;
2875 unsigned long flags = 0;
2876 int ret = 0;
2877
2878 spin_lock_irqsave(&hs->lock, flags);
2879 ret = s3c_hsotg_ep_sethalt(ep, value);
2880 spin_unlock_irqrestore(&hs->lock, flags);
2881
2882 return ret;
2883}
2884
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002885static struct usb_ep_ops s3c_hsotg_ep_ops = {
2886 .enable = s3c_hsotg_ep_enable,
2887 .disable = s3c_hsotg_ep_disable,
2888 .alloc_request = s3c_hsotg_ep_alloc_request,
2889 .free_request = s3c_hsotg_ep_free_request,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002890 .queue = s3c_hsotg_ep_queue_lock,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002891 .dequeue = s3c_hsotg_ep_dequeue,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002892 .set_halt = s3c_hsotg_ep_sethalt_lock,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002893 /* note, don't believe we have any call for the fifo routines */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002894};
2895
2896/**
Lukasz Majewski41188782012-05-04 14:17:01 +02002897 * s3c_hsotg_phy_enable - enable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002898 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002899 *
2900 * A wrapper for platform code responsible for controlling
2901 * low-level USB code
2902 */
2903static void s3c_hsotg_phy_enable(struct s3c_hsotg *hsotg)
2904{
2905 struct platform_device *pdev = to_platform_device(hsotg->dev);
2906
2907 dev_dbg(hsotg->dev, "pdev 0x%p\n", pdev);
Praveen Panerib2e587d2012-11-14 15:57:16 +05302908
2909 if (hsotg->phy)
2910 usb_phy_init(hsotg->phy);
2911 else if (hsotg->plat->phy_init)
Lukasz Majewski41188782012-05-04 14:17:01 +02002912 hsotg->plat->phy_init(pdev, hsotg->plat->phy_type);
2913}
2914
2915/**
2916 * s3c_hsotg_phy_disable - disable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002917 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002918 *
2919 * A wrapper for platform code responsible for controlling
2920 * low-level USB code
2921 */
2922static void s3c_hsotg_phy_disable(struct s3c_hsotg *hsotg)
2923{
2924 struct platform_device *pdev = to_platform_device(hsotg->dev);
2925
Praveen Panerib2e587d2012-11-14 15:57:16 +05302926 if (hsotg->phy)
2927 usb_phy_shutdown(hsotg->phy);
2928 else if (hsotg->plat->phy_exit)
Lukasz Majewski41188782012-05-04 14:17:01 +02002929 hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type);
2930}
2931
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002932/**
2933 * s3c_hsotg_init - initalize the usb core
2934 * @hsotg: The driver state
2935 */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002936static void s3c_hsotg_init(struct s3c_hsotg *hsotg)
2937{
2938 /* unmask subset of endpoint interrupts */
2939
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002940 writel(DIEPMSK_TimeOUTMsk | DIEPMSK_AHBErrMsk |
2941 DIEPMSK_EPDisbldMsk | DIEPMSK_XferComplMsk,
2942 hsotg->regs + DIEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002943
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002944 writel(DOEPMSK_SetupMsk | DOEPMSK_AHBErrMsk |
2945 DOEPMSK_EPDisbldMsk | DOEPMSK_XferComplMsk,
2946 hsotg->regs + DOEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002947
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002948 writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002949
2950 /* Be in disconnected state until gadget is registered */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002951 __orr32(hsotg->regs + DCTL, DCTL_SftDiscon);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002952
2953 if (0) {
2954 /* post global nak until we're ready */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002955 writel(DCTL_SGNPInNAK | DCTL_SGOUTNak,
2956 hsotg->regs + DCTL);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002957 }
2958
2959 /* setup fifos */
2960
2961 dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002962 readl(hsotg->regs + GRXFSIZ),
2963 readl(hsotg->regs + GNPTXFSIZ));
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002964
2965 s3c_hsotg_init_fifo(hsotg);
2966
2967 /* set the PLL on, remove the HNP/SRP and set the PHY */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002968 writel(GUSBCFG_PHYIf16 | GUSBCFG_TOutCal(7) | (0x5 << 10),
2969 hsotg->regs + GUSBCFG);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002970
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002971 writel(using_dma(hsotg) ? GAHBCFG_DMAEn : 0x0,
2972 hsotg->regs + GAHBCFG);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002973}
2974
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002975/**
2976 * s3c_hsotg_udc_start - prepare the udc for work
2977 * @gadget: The usb gadget state
2978 * @driver: The usb gadget driver
2979 *
2980 * Perform initialization to prepare udc device and driver
2981 * to work.
2982 */
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002983static int s3c_hsotg_udc_start(struct usb_gadget *gadget,
2984 struct usb_gadget_driver *driver)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002985{
Lukasz Majewskif99b2bf2012-05-04 14:17:12 +02002986 struct s3c_hsotg *hsotg = to_hsotg(gadget);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002987 int ret;
2988
2989 if (!hsotg) {
Pavel Macheka023da32013-09-30 14:56:02 +02002990 pr_err("%s: called with no device\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002991 return -ENODEV;
2992 }
2993
2994 if (!driver) {
2995 dev_err(hsotg->dev, "%s: no driver\n", __func__);
2996 return -EINVAL;
2997 }
2998
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01002999 if (driver->max_speed < USB_SPEED_FULL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003000 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003001
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003002 if (!driver->setup) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003003 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
3004 return -EINVAL;
3005 }
3006
3007 WARN_ON(hsotg->driver);
3008
3009 driver->driver.bus = NULL;
3010 hsotg->driver = driver;
Alexandre Pereira da Silva7d7b2292012-06-26 11:27:10 -03003011 hsotg->gadget.dev.of_node = hsotg->dev->of_node;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003012 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3013
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003014 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
3015 hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003016 if (ret) {
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003017 dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003018 goto err;
3019 }
3020
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02003021 hsotg->last_rst = jiffies;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003022 dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
3023 return 0;
3024
3025err:
3026 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003027 return ret;
3028}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003029
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003030/**
3031 * s3c_hsotg_udc_stop - stop the udc
3032 * @gadget: The usb gadget state
3033 * @driver: The usb gadget driver
3034 *
3035 * Stop udc hw block and stay tunned for future transmissions
3036 */
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003037static int s3c_hsotg_udc_stop(struct usb_gadget *gadget,
3038 struct usb_gadget_driver *driver)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003039{
Lukasz Majewskif99b2bf2012-05-04 14:17:12 +02003040 struct s3c_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewski2b19a522012-06-14 10:02:25 +02003041 unsigned long flags = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003042 int ep;
3043
3044 if (!hsotg)
3045 return -ENODEV;
3046
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003047 /* all endpoints should be shutdown */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003048 for (ep = 0; ep < hsotg->num_of_eps; ep++)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003049 s3c_hsotg_ep_disable(&hsotg->eps[ep].ep);
3050
Lukasz Majewski2b19a522012-06-14 10:02:25 +02003051 spin_lock_irqsave(&hsotg->lock, flags);
3052
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003053 s3c_hsotg_phy_disable(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003054
Marek Szyprowskic8c10252013-09-12 16:18:48 +02003055 if (!driver)
3056 hsotg->driver = NULL;
3057
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003058 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003059
Lukasz Majewski2b19a522012-06-14 10:02:25 +02003060 spin_unlock_irqrestore(&hsotg->lock, flags);
3061
Marek Szyprowskic8c10252013-09-12 16:18:48 +02003062 regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003063
3064 return 0;
3065}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003066
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003067/**
3068 * s3c_hsotg_gadget_getframe - read the frame number
3069 * @gadget: The usb gadget state
3070 *
3071 * Read the {micro} frame number
3072 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003073static int s3c_hsotg_gadget_getframe(struct usb_gadget *gadget)
3074{
3075 return s3c_hsotg_read_frameno(to_hsotg(gadget));
3076}
3077
Lukasz Majewskia188b682012-06-22 09:29:56 +02003078/**
3079 * s3c_hsotg_pullup - connect/disconnect the USB PHY
3080 * @gadget: The usb gadget state
3081 * @is_on: Current state of the USB PHY
3082 *
3083 * Connect/Disconnect the USB PHY pullup
3084 */
3085static int s3c_hsotg_pullup(struct usb_gadget *gadget, int is_on)
3086{
3087 struct s3c_hsotg *hsotg = to_hsotg(gadget);
3088 unsigned long flags = 0;
3089
3090 dev_dbg(hsotg->dev, "%s: is_in: %d\n", __func__, is_on);
3091
3092 spin_lock_irqsave(&hsotg->lock, flags);
3093 if (is_on) {
3094 s3c_hsotg_phy_enable(hsotg);
3095 s3c_hsotg_core_init(hsotg);
3096 } else {
3097 s3c_hsotg_disconnect(hsotg);
3098 s3c_hsotg_phy_disable(hsotg);
3099 }
3100
3101 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3102 spin_unlock_irqrestore(&hsotg->lock, flags);
3103
3104 return 0;
3105}
3106
Felipe Balbieeef4582013-01-24 17:58:16 +02003107static const struct usb_gadget_ops s3c_hsotg_gadget_ops = {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003108 .get_frame = s3c_hsotg_gadget_getframe,
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003109 .udc_start = s3c_hsotg_udc_start,
3110 .udc_stop = s3c_hsotg_udc_stop,
Lukasz Majewskia188b682012-06-22 09:29:56 +02003111 .pullup = s3c_hsotg_pullup,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003112};
3113
3114/**
3115 * s3c_hsotg_initep - initialise a single endpoint
3116 * @hsotg: The device state.
3117 * @hs_ep: The endpoint to be initialised.
3118 * @epnum: The endpoint number
3119 *
3120 * Initialise the given endpoint (as part of the probe and device state
3121 * creation) to give to the gadget driver. Setup the endpoint name, any
3122 * direction information and other state that may be required.
3123 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05003124static void s3c_hsotg_initep(struct s3c_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003125 struct s3c_hsotg_ep *hs_ep,
3126 int epnum)
3127{
3128 u32 ptxfifo;
3129 char *dir;
3130
3131 if (epnum == 0)
3132 dir = "";
3133 else if ((epnum % 2) == 0) {
3134 dir = "out";
3135 } else {
3136 dir = "in";
3137 hs_ep->dir_in = 1;
3138 }
3139
3140 hs_ep->index = epnum;
3141
3142 snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
3143
3144 INIT_LIST_HEAD(&hs_ep->queue);
3145 INIT_LIST_HEAD(&hs_ep->ep.ep_list);
3146
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003147 /* add to the list of endpoints known by the gadget driver */
3148 if (epnum)
3149 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
3150
3151 hs_ep->parent = hsotg;
3152 hs_ep->ep.name = hs_ep->name;
Robert Baldygae117e742013-12-13 12:23:38 +01003153 usb_ep_set_maxpacket_limit(&hs_ep->ep, epnum ? 1024 : EP0_MPS_LIMIT);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003154 hs_ep->ep.ops = &s3c_hsotg_ep_ops;
3155
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003156 /*
3157 * Read the FIFO size for the Periodic TX FIFO, even if we're
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003158 * an OUT endpoint, we may as well do this if in future the
3159 * code is changed to make each endpoint's direction changeable.
3160 */
3161
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003162 ptxfifo = readl(hsotg->regs + DPTXFSIZn(epnum));
3163 hs_ep->fifo_size = DPTXFSIZn_DPTxFSize_GET(ptxfifo) * 4;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003164
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003165 /*
3166 * if we're using dma, we need to set the next-endpoint pointer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003167 * to be something valid.
3168 */
3169
3170 if (using_dma(hsotg)) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003171 u32 next = DxEPCTL_NextEp((epnum + 1) % 15);
3172 writel(next, hsotg->regs + DIEPCTL(epnum));
3173 writel(next, hsotg->regs + DOEPCTL(epnum));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003174 }
3175}
3176
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003177/**
3178 * s3c_hsotg_hw_cfg - read HW configuration registers
3179 * @param: The device state
3180 *
3181 * Read the USB core HW configuration registers
3182 */
3183static void s3c_hsotg_hw_cfg(struct s3c_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003184{
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003185 u32 cfg2, cfg4;
Ben Dooks10aebc72010-07-19 09:40:44 +01003186 /* check hardware configuration */
3187
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003188 cfg2 = readl(hsotg->regs + 0x48);
3189 hsotg->num_of_eps = (cfg2 >> 10) & 0xF;
3190
3191 dev_info(hsotg->dev, "EPs:%d\n", hsotg->num_of_eps);
3192
Ben Dooks10aebc72010-07-19 09:40:44 +01003193 cfg4 = readl(hsotg->regs + 0x50);
3194 hsotg->dedicated_fifos = (cfg4 >> 25) & 1;
3195
3196 dev_info(hsotg->dev, "%s fifos\n",
3197 hsotg->dedicated_fifos ? "dedicated" : "shared");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003198}
3199
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003200/**
3201 * s3c_hsotg_dump - dump state of the udc
3202 * @param: The device state
3203 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003204static void s3c_hsotg_dump(struct s3c_hsotg *hsotg)
3205{
Mark Brown83a01802011-06-01 17:16:15 +01003206#ifdef DEBUG
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003207 struct device *dev = hsotg->dev;
3208 void __iomem *regs = hsotg->regs;
3209 u32 val;
3210 int idx;
3211
3212 dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003213 readl(regs + DCFG), readl(regs + DCTL),
3214 readl(regs + DIEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003215
3216 dev_info(dev, "GAHBCFG=0x%08x, 0x44=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003217 readl(regs + GAHBCFG), readl(regs + 0x44));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003218
3219 dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003220 readl(regs + GRXFSIZ), readl(regs + GNPTXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003221
3222 /* show periodic fifo settings */
3223
3224 for (idx = 1; idx <= 15; idx++) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003225 val = readl(regs + DPTXFSIZn(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003226 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003227 val >> DPTXFSIZn_DPTxFSize_SHIFT,
3228 val & DPTXFSIZn_DPTxFStAddr_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003229 }
3230
3231 for (idx = 0; idx < 15; idx++) {
3232 dev_info(dev,
3233 "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003234 readl(regs + DIEPCTL(idx)),
3235 readl(regs + DIEPTSIZ(idx)),
3236 readl(regs + DIEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003237
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003238 val = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003239 dev_info(dev,
3240 "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003241 idx, readl(regs + DOEPCTL(idx)),
3242 readl(regs + DOEPTSIZ(idx)),
3243 readl(regs + DOEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003244
3245 }
3246
3247 dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003248 readl(regs + DVBUSDIS), readl(regs + DVBUSPULSE));
Mark Brown83a01802011-06-01 17:16:15 +01003249#endif
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003250}
3251
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003252/**
3253 * state_show - debugfs: show overall driver and device state.
3254 * @seq: The seq file to write to.
3255 * @v: Unused parameter.
3256 *
3257 * This debugfs entry shows the overall state of the hardware and
3258 * some general information about each of the endpoints available
3259 * to the system.
3260 */
3261static int state_show(struct seq_file *seq, void *v)
3262{
3263 struct s3c_hsotg *hsotg = seq->private;
3264 void __iomem *regs = hsotg->regs;
3265 int idx;
3266
3267 seq_printf(seq, "DCFG=0x%08x, DCTL=0x%08x, DSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003268 readl(regs + DCFG),
3269 readl(regs + DCTL),
3270 readl(regs + DSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003271
3272 seq_printf(seq, "DIEPMSK=0x%08x, DOEPMASK=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003273 readl(regs + DIEPMSK), readl(regs + DOEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003274
3275 seq_printf(seq, "GINTMSK=0x%08x, GINTSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003276 readl(regs + GINTMSK),
3277 readl(regs + GINTSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003278
3279 seq_printf(seq, "DAINTMSK=0x%08x, DAINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003280 readl(regs + DAINTMSK),
3281 readl(regs + DAINT));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003282
3283 seq_printf(seq, "GNPTXSTS=0x%08x, GRXSTSR=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003284 readl(regs + GNPTXSTS),
3285 readl(regs + GRXSTSR));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003286
Pavel Macheka023da32013-09-30 14:56:02 +02003287 seq_puts(seq, "\nEndpoint status:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003288
3289 for (idx = 0; idx < 15; idx++) {
3290 u32 in, out;
3291
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003292 in = readl(regs + DIEPCTL(idx));
3293 out = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003294
3295 seq_printf(seq, "ep%d: DIEPCTL=0x%08x, DOEPCTL=0x%08x",
3296 idx, in, out);
3297
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003298 in = readl(regs + DIEPTSIZ(idx));
3299 out = readl(regs + DOEPTSIZ(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003300
3301 seq_printf(seq, ", DIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x",
3302 in, out);
3303
Pavel Macheka023da32013-09-30 14:56:02 +02003304 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003305 }
3306
3307 return 0;
3308}
3309
3310static int state_open(struct inode *inode, struct file *file)
3311{
3312 return single_open(file, state_show, inode->i_private);
3313}
3314
3315static const struct file_operations state_fops = {
3316 .owner = THIS_MODULE,
3317 .open = state_open,
3318 .read = seq_read,
3319 .llseek = seq_lseek,
3320 .release = single_release,
3321};
3322
3323/**
3324 * fifo_show - debugfs: show the fifo information
3325 * @seq: The seq_file to write data to.
3326 * @v: Unused parameter.
3327 *
3328 * Show the FIFO information for the overall fifo and all the
3329 * periodic transmission FIFOs.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003330 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003331static int fifo_show(struct seq_file *seq, void *v)
3332{
3333 struct s3c_hsotg *hsotg = seq->private;
3334 void __iomem *regs = hsotg->regs;
3335 u32 val;
3336 int idx;
3337
Pavel Macheka023da32013-09-30 14:56:02 +02003338 seq_puts(seq, "Non-periodic FIFOs:\n");
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003339 seq_printf(seq, "RXFIFO: Size %d\n", readl(regs + GRXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003340
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003341 val = readl(regs + GNPTXFSIZ);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003342 seq_printf(seq, "NPTXFIFO: Size %d, Start 0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003343 val >> GNPTXFSIZ_NPTxFDep_SHIFT,
3344 val & GNPTXFSIZ_NPTxFStAddr_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003345
Pavel Macheka023da32013-09-30 14:56:02 +02003346 seq_puts(seq, "\nPeriodic TXFIFOs:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003347
3348 for (idx = 1; idx <= 15; idx++) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003349 val = readl(regs + DPTXFSIZn(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003350
3351 seq_printf(seq, "\tDPTXFIFO%2d: Size %d, Start 0x%08x\n", idx,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003352 val >> DPTXFSIZn_DPTxFSize_SHIFT,
3353 val & DPTXFSIZn_DPTxFStAddr_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003354 }
3355
3356 return 0;
3357}
3358
3359static int fifo_open(struct inode *inode, struct file *file)
3360{
3361 return single_open(file, fifo_show, inode->i_private);
3362}
3363
3364static const struct file_operations fifo_fops = {
3365 .owner = THIS_MODULE,
3366 .open = fifo_open,
3367 .read = seq_read,
3368 .llseek = seq_lseek,
3369 .release = single_release,
3370};
3371
3372
3373static const char *decode_direction(int is_in)
3374{
3375 return is_in ? "in" : "out";
3376}
3377
3378/**
3379 * ep_show - debugfs: show the state of an endpoint.
3380 * @seq: The seq_file to write data to.
3381 * @v: Unused parameter.
3382 *
3383 * This debugfs entry shows the state of the given endpoint (one is
3384 * registered for each available).
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003385 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003386static int ep_show(struct seq_file *seq, void *v)
3387{
3388 struct s3c_hsotg_ep *ep = seq->private;
3389 struct s3c_hsotg *hsotg = ep->parent;
3390 struct s3c_hsotg_req *req;
3391 void __iomem *regs = hsotg->regs;
3392 int index = ep->index;
3393 int show_limit = 15;
3394 unsigned long flags;
3395
3396 seq_printf(seq, "Endpoint index %d, named %s, dir %s:\n",
3397 ep->index, ep->ep.name, decode_direction(ep->dir_in));
3398
3399 /* first show the register state */
3400
3401 seq_printf(seq, "\tDIEPCTL=0x%08x, DOEPCTL=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003402 readl(regs + DIEPCTL(index)),
3403 readl(regs + DOEPCTL(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003404
3405 seq_printf(seq, "\tDIEPDMA=0x%08x, DOEPDMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003406 readl(regs + DIEPDMA(index)),
3407 readl(regs + DOEPDMA(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003408
3409 seq_printf(seq, "\tDIEPINT=0x%08x, DOEPINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003410 readl(regs + DIEPINT(index)),
3411 readl(regs + DOEPINT(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003412
3413 seq_printf(seq, "\tDIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003414 readl(regs + DIEPTSIZ(index)),
3415 readl(regs + DOEPTSIZ(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003416
Pavel Macheka023da32013-09-30 14:56:02 +02003417 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003418 seq_printf(seq, "mps %d\n", ep->ep.maxpacket);
3419 seq_printf(seq, "total_data=%ld\n", ep->total_data);
3420
3421 seq_printf(seq, "request list (%p,%p):\n",
3422 ep->queue.next, ep->queue.prev);
3423
Lukasz Majewski22258f42012-06-14 10:02:24 +02003424 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003425
3426 list_for_each_entry(req, &ep->queue, queue) {
3427 if (--show_limit < 0) {
Pavel Macheka023da32013-09-30 14:56:02 +02003428 seq_puts(seq, "not showing more requests...\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003429 break;
3430 }
3431
3432 seq_printf(seq, "%c req %p: %d bytes @%p, ",
3433 req == ep->req ? '*' : ' ',
3434 req, req->req.length, req->req.buf);
3435 seq_printf(seq, "%d done, res %d\n",
3436 req->req.actual, req->req.status);
3437 }
3438
Lukasz Majewski22258f42012-06-14 10:02:24 +02003439 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003440
3441 return 0;
3442}
3443
3444static int ep_open(struct inode *inode, struct file *file)
3445{
3446 return single_open(file, ep_show, inode->i_private);
3447}
3448
3449static const struct file_operations ep_fops = {
3450 .owner = THIS_MODULE,
3451 .open = ep_open,
3452 .read = seq_read,
3453 .llseek = seq_lseek,
3454 .release = single_release,
3455};
3456
3457/**
3458 * s3c_hsotg_create_debug - create debugfs directory and files
3459 * @hsotg: The driver state
3460 *
3461 * Create the debugfs files to allow the user to get information
3462 * about the state of the system. The directory name is created
3463 * with the same name as the device itself, in case we end up
3464 * with multiple blocks in future systems.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003465 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05003466static void s3c_hsotg_create_debug(struct s3c_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003467{
3468 struct dentry *root;
3469 unsigned epidx;
3470
3471 root = debugfs_create_dir(dev_name(hsotg->dev), NULL);
3472 hsotg->debug_root = root;
3473 if (IS_ERR(root)) {
3474 dev_err(hsotg->dev, "cannot create debug root\n");
3475 return;
3476 }
3477
3478 /* create general state file */
3479
3480 hsotg->debug_file = debugfs_create_file("state", 0444, root,
3481 hsotg, &state_fops);
3482
3483 if (IS_ERR(hsotg->debug_file))
3484 dev_err(hsotg->dev, "%s: failed to create state\n", __func__);
3485
3486 hsotg->debug_fifo = debugfs_create_file("fifo", 0444, root,
3487 hsotg, &fifo_fops);
3488
3489 if (IS_ERR(hsotg->debug_fifo))
3490 dev_err(hsotg->dev, "%s: failed to create fifo\n", __func__);
3491
3492 /* create one file for each endpoint */
3493
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003494 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003495 struct s3c_hsotg_ep *ep = &hsotg->eps[epidx];
3496
3497 ep->debugfs = debugfs_create_file(ep->name, 0444,
3498 root, ep, &ep_fops);
3499
3500 if (IS_ERR(ep->debugfs))
3501 dev_err(hsotg->dev, "failed to create %s debug file\n",
3502 ep->name);
3503 }
3504}
3505
3506/**
3507 * s3c_hsotg_delete_debug - cleanup debugfs entries
3508 * @hsotg: The driver state
3509 *
3510 * Cleanup (remove) the debugfs files for use on module exit.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003511 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05003512static void s3c_hsotg_delete_debug(struct s3c_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003513{
3514 unsigned epidx;
3515
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003516 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003517 struct s3c_hsotg_ep *ep = &hsotg->eps[epidx];
3518 debugfs_remove(ep->debugfs);
3519 }
3520
3521 debugfs_remove(hsotg->debug_file);
3522 debugfs_remove(hsotg->debug_fifo);
3523 debugfs_remove(hsotg->debug_root);
3524}
3525
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003526/**
3527 * s3c_hsotg_probe - probe function for hsotg driver
3528 * @pdev: The platform information for the driver
3529 */
Lukasz Majewskif026a522012-05-04 14:17:13 +02003530
Bill Pemberton41ac7b32012-11-19 13:21:48 -05003531static int s3c_hsotg_probe(struct platform_device *pdev)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003532{
Jingoo Hane01ee9f2013-07-30 17:00:51 +09003533 struct s3c_hsotg_plat *plat = dev_get_platdata(&pdev->dev);
Praveen Panerib2e587d2012-11-14 15:57:16 +05303534 struct usb_phy *phy;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003535 struct device *dev = &pdev->dev;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003536 struct s3c_hsotg_ep *eps;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003537 struct s3c_hsotg *hsotg;
3538 struct resource *res;
3539 int epnum;
3540 int ret;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003541 int i;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003542
Sachin Kamat338edab2012-05-18 14:33:46 +05303543 hsotg = devm_kzalloc(&pdev->dev, sizeof(struct s3c_hsotg), GFP_KERNEL);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003544 if (!hsotg) {
3545 dev_err(dev, "cannot get memory\n");
3546 return -ENOMEM;
3547 }
3548
Praveen Panerib2e587d2012-11-14 15:57:16 +05303549 phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
Felipe Balbif4f5ba52013-03-15 10:56:19 +02003550 if (IS_ERR(phy)) {
Praveen Panerib2e587d2012-11-14 15:57:16 +05303551 /* Fallback for pdata */
Jingoo Hane01ee9f2013-07-30 17:00:51 +09003552 plat = dev_get_platdata(&pdev->dev);
Praveen Panerib2e587d2012-11-14 15:57:16 +05303553 if (!plat) {
3554 dev_err(&pdev->dev, "no platform data or transceiver defined\n");
3555 return -EPROBE_DEFER;
3556 } else {
3557 hsotg->plat = plat;
3558 }
3559 } else {
3560 hsotg->phy = phy;
3561 }
3562
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003563 hsotg->dev = dev;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003564
Sachin Kamat84749c62012-09-03 16:15:18 +05303565 hsotg->clk = devm_clk_get(&pdev->dev, "otg");
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003566 if (IS_ERR(hsotg->clk)) {
3567 dev_err(dev, "cannot get otg clock\n");
Sachin Kamat338edab2012-05-18 14:33:46 +05303568 return PTR_ERR(hsotg->clk);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003569 }
3570
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003571 platform_set_drvdata(pdev, hsotg);
3572
3573 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003574
Thierry Reding148e1132013-01-21 11:09:22 +01003575 hsotg->regs = devm_ioremap_resource(&pdev->dev, res);
3576 if (IS_ERR(hsotg->regs)) {
3577 ret = PTR_ERR(hsotg->regs);
Sachin Kamat338edab2012-05-18 14:33:46 +05303578 goto err_clk;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003579 }
3580
3581 ret = platform_get_irq(pdev, 0);
3582 if (ret < 0) {
3583 dev_err(dev, "cannot find IRQ\n");
Sachin Kamat338edab2012-05-18 14:33:46 +05303584 goto err_clk;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003585 }
3586
Lukasz Majewski22258f42012-06-14 10:02:24 +02003587 spin_lock_init(&hsotg->lock);
3588
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003589 hsotg->irq = ret;
3590
Sachin Kamat338edab2012-05-18 14:33:46 +05303591 ret = devm_request_irq(&pdev->dev, hsotg->irq, s3c_hsotg_irq, 0,
3592 dev_name(dev), hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003593 if (ret < 0) {
3594 dev_err(dev, "cannot claim IRQ\n");
Sachin Kamat338edab2012-05-18 14:33:46 +05303595 goto err_clk;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003596 }
3597
3598 dev_info(dev, "regs %p, irq %d\n", hsotg->regs, hsotg->irq);
3599
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01003600 hsotg->gadget.max_speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003601 hsotg->gadget.ops = &s3c_hsotg_gadget_ops;
3602 hsotg->gadget.name = dev_name(dev);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003603
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003604 /* reset the system */
3605
Lukasz Majewski04b4a0f2012-05-04 14:17:15 +02003606 clk_prepare_enable(hsotg->clk);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003607
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003608 /* regulators */
3609
3610 for (i = 0; i < ARRAY_SIZE(hsotg->supplies); i++)
3611 hsotg->supplies[i].supply = s3c_hsotg_supply_names[i];
3612
Sachin Kamatcd762132013-01-08 14:27:00 +05303613 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(hsotg->supplies),
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003614 hsotg->supplies);
3615 if (ret) {
3616 dev_err(dev, "failed to request supplies: %d\n", ret);
Sachin Kamat338edab2012-05-18 14:33:46 +05303617 goto err_clk;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003618 }
3619
3620 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
3621 hsotg->supplies);
3622
3623 if (ret) {
3624 dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret);
3625 goto err_supplies;
3626 }
3627
Lukasz Majewski41188782012-05-04 14:17:01 +02003628 /* usb phy enable */
3629 s3c_hsotg_phy_enable(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003630
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003631 s3c_hsotg_corereset(hsotg);
3632 s3c_hsotg_init(hsotg);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003633 s3c_hsotg_hw_cfg(hsotg);
3634
3635 /* hsotg->num_of_eps holds number of EPs other than ep0 */
3636
3637 if (hsotg->num_of_eps == 0) {
3638 dev_err(dev, "wrong number of EPs (zero)\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003639 ret = -EINVAL;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003640 goto err_supplies;
3641 }
3642
3643 eps = kcalloc(hsotg->num_of_eps + 1, sizeof(struct s3c_hsotg_ep),
3644 GFP_KERNEL);
3645 if (!eps) {
3646 dev_err(dev, "cannot get memory\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003647 ret = -ENOMEM;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003648 goto err_supplies;
3649 }
3650
3651 hsotg->eps = eps;
3652
3653 /* setup endpoint information */
3654
3655 INIT_LIST_HEAD(&hsotg->gadget.ep_list);
3656 hsotg->gadget.ep0 = &hsotg->eps[0].ep;
3657
3658 /* allocate EP0 request */
3659
3660 hsotg->ctrl_req = s3c_hsotg_ep_alloc_request(&hsotg->eps[0].ep,
3661 GFP_KERNEL);
3662 if (!hsotg->ctrl_req) {
3663 dev_err(dev, "failed to allocate ctrl req\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003664 ret = -ENOMEM;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003665 goto err_ep_mem;
3666 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003667
3668 /* initialise the endpoints now the core has been initialised */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003669 for (epnum = 0; epnum < hsotg->num_of_eps; epnum++)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003670 s3c_hsotg_initep(hsotg, &hsotg->eps[epnum], epnum);
3671
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003672 /* disable power and clock */
3673
3674 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3675 hsotg->supplies);
3676 if (ret) {
3677 dev_err(hsotg->dev, "failed to disable supplies: %d\n", ret);
3678 goto err_ep_mem;
3679 }
3680
3681 s3c_hsotg_phy_disable(hsotg);
3682
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003683 ret = usb_add_gadget_udc(&pdev->dev, &hsotg->gadget);
3684 if (ret)
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003685 goto err_ep_mem;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003686
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003687 s3c_hsotg_create_debug(hsotg);
3688
3689 s3c_hsotg_dump(hsotg);
3690
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003691 return 0;
3692
Lukasz Majewski1d144c62012-05-04 14:17:16 +02003693err_ep_mem:
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003694 kfree(eps);
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003695err_supplies:
Lukasz Majewski41188782012-05-04 14:17:01 +02003696 s3c_hsotg_phy_disable(hsotg);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003697err_clk:
Lukasz Majewski1d144c62012-05-04 14:17:16 +02003698 clk_disable_unprepare(hsotg->clk);
Sachin Kamat338edab2012-05-18 14:33:46 +05303699
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003700 return ret;
3701}
3702
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003703/**
3704 * s3c_hsotg_remove - remove function for hsotg driver
3705 * @pdev: The platform information for the driver
3706 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05003707static int s3c_hsotg_remove(struct platform_device *pdev)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003708{
3709 struct s3c_hsotg *hsotg = platform_get_drvdata(pdev);
3710
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003711 usb_del_gadget_udc(&hsotg->gadget);
3712
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003713 s3c_hsotg_delete_debug(hsotg);
3714
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003715 if (hsotg->driver) {
3716 /* should have been done already by driver model core */
3717 usb_gadget_unregister_driver(hsotg->driver);
3718 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003719
Lukasz Majewski41188782012-05-04 14:17:01 +02003720 s3c_hsotg_phy_disable(hsotg);
Lukasz Majewski04b4a0f2012-05-04 14:17:15 +02003721 clk_disable_unprepare(hsotg->clk);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003722
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003723 return 0;
3724}
3725
3726#if 1
3727#define s3c_hsotg_suspend NULL
3728#define s3c_hsotg_resume NULL
3729#endif
3730
Tomasz Figac50f056c2013-06-25 17:38:23 +02003731#ifdef CONFIG_OF
3732static const struct of_device_id s3c_hsotg_of_ids[] = {
3733 { .compatible = "samsung,s3c6400-hsotg", },
3734 { /* sentinel */ }
3735};
3736MODULE_DEVICE_TABLE(of, s3c_hsotg_of_ids);
3737#endif
3738
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003739static struct platform_driver s3c_hsotg_driver = {
3740 .driver = {
3741 .name = "s3c-hsotg",
3742 .owner = THIS_MODULE,
Tomasz Figac50f056c2013-06-25 17:38:23 +02003743 .of_match_table = of_match_ptr(s3c_hsotg_of_ids),
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003744 },
3745 .probe = s3c_hsotg_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05003746 .remove = s3c_hsotg_remove,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003747 .suspend = s3c_hsotg_suspend,
3748 .resume = s3c_hsotg_resume,
3749};
3750
Axel Lincc27c962011-11-27 20:16:27 +08003751module_platform_driver(s3c_hsotg_driver);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003752
3753MODULE_DESCRIPTION("Samsung S3C USB High-speed/OtG device");
3754MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
3755MODULE_LICENSE("GPL");
3756MODULE_ALIAS("platform:s3c-hsotg");