blob: de5da92a8537387593de358b79d15945a655f933 [file] [log] [blame]
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001/**
Anton Tikhomirovdfbc6fa2011-04-21 17:06:43 +09002 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
4 *
Ben Dooks5b7d70c2009-06-02 14:58:06 +01005 * Copyright 2008 Openmoko, Inc.
6 * Copyright 2008 Simtec Electronics
7 * Ben Dooks <ben@simtec.co.uk>
8 * http://armlinux.simtec.co.uk/
9 *
10 * S3C USB2.0 High-speed / OtG driver
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +020015 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +010016
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/spinlock.h>
20#include <linux/interrupt.h>
21#include <linux/platform_device.h>
22#include <linux/dma-mapping.h>
23#include <linux/debugfs.h>
Marek Szyprowski7ad80962014-11-21 15:14:48 +010024#include <linux/mutex.h>
Ben Dooks5b7d70c2009-06-02 14:58:06 +010025#include <linux/seq_file.h>
26#include <linux/delay.h>
27#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Maurus Cuelenaeree50bf382010-07-19 09:40:50 +010029#include <linux/clk.h>
Lukasz Majewskifc9a7312012-05-04 14:17:02 +020030#include <linux/regulator/consumer.h>
Tomasz Figac50f056c2013-06-25 17:38:23 +020031#include <linux/of_platform.h>
Matt Porter74084842013-12-19 09:23:06 -050032#include <linux/phy/phy.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
Dinh Nguyenf7c0b142014-04-14 14:13:35 -070039#include "core.h"
Dinh Nguyen941fcce2014-11-11 11:13:33 -060040#include "hw.h"
Ben Dooks5b7d70c2009-06-02 14:58:06 +010041
42/* conversion functions */
43static inline struct s3c_hsotg_req *our_req(struct usb_request *req)
44{
45 return container_of(req, struct s3c_hsotg_req, req);
46}
47
48static inline struct s3c_hsotg_ep *our_ep(struct usb_ep *ep)
49{
50 return container_of(ep, struct s3c_hsotg_ep, ep);
51}
52
Dinh Nguyen941fcce2014-11-11 11:13:33 -060053static inline struct dwc2_hsotg *to_hsotg(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010054{
Dinh Nguyen941fcce2014-11-11 11:13:33 -060055 return container_of(gadget, struct dwc2_hsotg, gadget);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010056}
57
58static inline void __orr32(void __iomem *ptr, u32 val)
59{
60 writel(readl(ptr) | val, ptr);
61}
62
63static inline void __bic32(void __iomem *ptr, u32 val)
64{
65 writel(readl(ptr) & ~val, ptr);
66}
67
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +010068static inline struct s3c_hsotg_ep *index_to_ep(struct dwc2_hsotg *hsotg,
69 u32 ep_index, u32 dir_in)
70{
71 if (dir_in)
72 return hsotg->eps_in[ep_index];
73 else
74 return hsotg->eps_out[ep_index];
75}
76
Mickael Maison997f4f82014-12-23 17:39:45 +010077/* forward declaration of functions */
Dinh Nguyen941fcce2014-11-11 11:13:33 -060078static void s3c_hsotg_dump(struct dwc2_hsotg *hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010079
80/**
81 * using_dma - return the DMA status of the driver.
82 * @hsotg: The driver state.
83 *
84 * Return true if we're using DMA.
85 *
86 * Currently, we have the DMA support code worked into everywhere
87 * that needs it, but the AMBA DMA implementation in the hardware can
88 * only DMA from 32bit aligned addresses. This means that gadgets such
89 * as the CDC Ethernet cannot work as they often pass packets which are
90 * not 32bit aligned.
91 *
92 * Unfortunately the choice to use DMA or not is global to the controller
93 * and seems to be only settable when the controller is being put through
94 * a core reset. This means we either need to fix the gadgets to take
95 * account of DMA alignment, or add bounce buffers (yuerk).
96 *
Gregory Herreroedd74be2015-01-09 13:38:48 +010097 * g_using_dma is set depending on dts flag.
Ben Dooks5b7d70c2009-06-02 14:58:06 +010098 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -060099static inline bool using_dma(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100100{
Gregory Herreroedd74be2015-01-09 13:38:48 +0100101 return hsotg->g_using_dma;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100102}
103
104/**
105 * s3c_hsotg_en_gsint - enable one or more of the general interrupt
106 * @hsotg: The device state
107 * @ints: A bitmask of the interrupts to enable
108 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600109static void s3c_hsotg_en_gsint(struct dwc2_hsotg *hsotg, u32 ints)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100110{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200111 u32 gsintmsk = readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100112 u32 new_gsintmsk;
113
114 new_gsintmsk = gsintmsk | ints;
115
116 if (new_gsintmsk != gsintmsk) {
117 dev_dbg(hsotg->dev, "gsintmsk now 0x%08x\n", new_gsintmsk);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200118 writel(new_gsintmsk, hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100119 }
120}
121
122/**
123 * s3c_hsotg_disable_gsint - disable one or more of the general interrupt
124 * @hsotg: The device state
125 * @ints: A bitmask of the interrupts to enable
126 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600127static void s3c_hsotg_disable_gsint(struct dwc2_hsotg *hsotg, u32 ints)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100128{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200129 u32 gsintmsk = readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100130 u32 new_gsintmsk;
131
132 new_gsintmsk = gsintmsk & ~ints;
133
134 if (new_gsintmsk != gsintmsk)
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200135 writel(new_gsintmsk, hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100136}
137
138/**
139 * s3c_hsotg_ctrl_epint - enable/disable an endpoint irq
140 * @hsotg: The device state
141 * @ep: The endpoint index
142 * @dir_in: True if direction is in.
143 * @en: The enable value, true to enable
144 *
145 * Set or clear the mask for an individual endpoint's interrupt
146 * request.
147 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600148static void s3c_hsotg_ctrl_epint(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100149 unsigned int ep, unsigned int dir_in,
150 unsigned int en)
151{
152 unsigned long flags;
153 u32 bit = 1 << ep;
154 u32 daint;
155
156 if (!dir_in)
157 bit <<= 16;
158
159 local_irq_save(flags);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200160 daint = readl(hsotg->regs + DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100161 if (en)
162 daint |= bit;
163 else
164 daint &= ~bit;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200165 writel(daint, hsotg->regs + DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100166 local_irq_restore(flags);
167}
168
169/**
170 * s3c_hsotg_init_fifo - initialise non-periodic FIFOs
171 * @hsotg: The device instance.
172 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600173static void s3c_hsotg_init_fifo(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100174{
Ben Dooks0f002d22010-05-25 05:36:50 +0100175 unsigned int ep;
176 unsigned int addr;
Ben Dooks1703a6d2010-05-25 05:36:52 +0100177 int timeout;
Ben Dooks0f002d22010-05-25 05:36:50 +0100178 u32 val;
179
Gregory Herrero0a176272015-01-09 13:38:52 +0100180 /* set RX/NPTX FIFO sizes */
181 writel(hsotg->g_rx_fifo_sz, hsotg->regs + GRXFSIZ);
182 writel((hsotg->g_rx_fifo_sz << FIFOSIZE_STARTADDR_SHIFT) |
183 (hsotg->g_np_g_tx_fifo_sz << FIFOSIZE_DEPTH_SHIFT),
184 hsotg->regs + GNPTXFSIZ);
Ben Dooks0f002d22010-05-25 05:36:50 +0100185
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200186 /*
187 * arange all the rest of the TX FIFOs, as some versions of this
Ben Dooks0f002d22010-05-25 05:36:50 +0100188 * block have overlapping default addresses. This also ensures
189 * that if the settings have been changed, then they are set to
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200190 * known values.
191 */
Ben Dooks0f002d22010-05-25 05:36:50 +0100192
193 /* start at the end of the GNPTXFSIZ, rounded up */
Gregory Herrero0a176272015-01-09 13:38:52 +0100194 addr = hsotg->g_rx_fifo_sz + hsotg->g_np_g_tx_fifo_sz;
Ben Dooks0f002d22010-05-25 05:36:50 +0100195
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200196 /*
Gregory Herrero0a176272015-01-09 13:38:52 +0100197 * Configure fifos sizes from provided configuration and assign
Robert Baldygab203d0a2014-09-09 10:44:56 +0200198 * them to endpoints dynamically according to maxpacket size value of
199 * given endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200200 */
Gregory Herrero0a176272015-01-09 13:38:52 +0100201 for (ep = 1; ep < MAX_EPS_CHANNELS; ep++) {
202 if (!hsotg->g_tx_fifo_sz[ep])
203 continue;
Robert Baldygab203d0a2014-09-09 10:44:56 +0200204 val = addr;
Gregory Herrero0a176272015-01-09 13:38:52 +0100205 val |= hsotg->g_tx_fifo_sz[ep] << FIFOSIZE_DEPTH_SHIFT;
206 WARN_ONCE(addr + hsotg->g_tx_fifo_sz[ep] > hsotg->fifo_mem,
Robert Baldygab203d0a2014-09-09 10:44:56 +0200207 "insufficient fifo memory");
Gregory Herrero0a176272015-01-09 13:38:52 +0100208 addr += hsotg->g_tx_fifo_sz[ep];
Ben Dooks0f002d22010-05-25 05:36:50 +0100209
Dinh Nguyen47a16852014-04-14 14:13:34 -0700210 writel(val, hsotg->regs + DPTXFSIZN(ep));
Ben Dooks0f002d22010-05-25 05:36:50 +0100211 }
Ben Dooks1703a6d2010-05-25 05:36:52 +0100212
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200213 /*
214 * according to p428 of the design guide, we need to ensure that
215 * all fifos are flushed before continuing
216 */
Ben Dooks1703a6d2010-05-25 05:36:52 +0100217
Dinh Nguyen47a16852014-04-14 14:13:34 -0700218 writel(GRSTCTL_TXFNUM(0x10) | GRSTCTL_TXFFLSH |
219 GRSTCTL_RXFFLSH, hsotg->regs + GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100220
221 /* wait until the fifos are both flushed */
222 timeout = 100;
223 while (1) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200224 val = readl(hsotg->regs + GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100225
Dinh Nguyen47a16852014-04-14 14:13:34 -0700226 if ((val & (GRSTCTL_TXFFLSH | GRSTCTL_RXFFLSH)) == 0)
Ben Dooks1703a6d2010-05-25 05:36:52 +0100227 break;
228
229 if (--timeout == 0) {
230 dev_err(hsotg->dev,
231 "%s: timeout flushing fifos (GRSTCTL=%08x)\n",
232 __func__, val);
Gregory Herrero48b20bc2015-01-09 13:39:01 +0100233 break;
Ben Dooks1703a6d2010-05-25 05:36:52 +0100234 }
235
236 udelay(1);
237 }
238
239 dev_dbg(hsotg->dev, "FIFOs reset, timeout at %d\n", timeout);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100240}
241
242/**
243 * @ep: USB endpoint to allocate request for.
244 * @flags: Allocation flags
245 *
246 * Allocate a new USB request structure appropriate for the specified endpoint
247 */
Mark Brown0978f8c2010-01-18 13:18:35 +0000248static struct usb_request *s3c_hsotg_ep_alloc_request(struct usb_ep *ep,
249 gfp_t flags)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100250{
251 struct s3c_hsotg_req *req;
252
253 req = kzalloc(sizeof(struct s3c_hsotg_req), flags);
254 if (!req)
255 return NULL;
256
257 INIT_LIST_HEAD(&req->queue);
258
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100259 return &req->req;
260}
261
262/**
263 * is_ep_periodic - return true if the endpoint is in periodic mode.
264 * @hs_ep: The endpoint to query.
265 *
266 * Returns true if the endpoint is in periodic mode, meaning it is being
267 * used for an Interrupt or ISO transfer.
268 */
269static inline int is_ep_periodic(struct s3c_hsotg_ep *hs_ep)
270{
271 return hs_ep->periodic;
272}
273
274/**
275 * s3c_hsotg_unmap_dma - unmap the DMA memory being used for the request
276 * @hsotg: The device state.
277 * @hs_ep: The endpoint for the request
278 * @hs_req: The request being processed.
279 *
280 * This is the reverse of s3c_hsotg_map_dma(), called for the completion
281 * of a request to ensure the buffer is ready for access by the caller.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200282 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600283static void s3c_hsotg_unmap_dma(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100284 struct s3c_hsotg_ep *hs_ep,
285 struct s3c_hsotg_req *hs_req)
286{
287 struct usb_request *req = &hs_req->req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100288
289 /* ignore this if we're not moving any data */
290 if (hs_req->req.length == 0)
291 return;
292
Jingoo Han17d966a2013-05-11 21:14:00 +0900293 usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100294}
295
296/**
297 * s3c_hsotg_write_fifo - write packet Data to the TxFIFO
298 * @hsotg: The controller state.
299 * @hs_ep: The endpoint we're going to write for.
300 * @hs_req: The request to write data for.
301 *
302 * This is called when the TxFIFO has some space in it to hold a new
303 * transmission and we have something to give it. The actual setup of
304 * the data size is done elsewhere, so all we have to do is to actually
305 * write the data.
306 *
307 * The return value is zero if there is more space (or nothing was done)
308 * otherwise -ENOSPC is returned if the FIFO space was used up.
309 *
310 * This routine is only needed for PIO
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200311 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600312static int s3c_hsotg_write_fifo(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100313 struct s3c_hsotg_ep *hs_ep,
314 struct s3c_hsotg_req *hs_req)
315{
316 bool periodic = is_ep_periodic(hs_ep);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200317 u32 gnptxsts = readl(hsotg->regs + GNPTXSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100318 int buf_pos = hs_req->req.actual;
319 int to_write = hs_ep->size_loaded;
320 void *data;
321 int can_write;
322 int pkt_round;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200323 int max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100324
325 to_write -= (buf_pos - hs_ep->last_load);
326
327 /* if there's nothing to write, get out early */
328 if (to_write == 0)
329 return 0;
330
Ben Dooks10aebc72010-07-19 09:40:44 +0100331 if (periodic && !hsotg->dedicated_fifos) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200332 u32 epsize = readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100333 int size_left;
334 int size_done;
335
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200336 /*
337 * work out how much data was loaded so we can calculate
338 * how much data is left in the fifo.
339 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100340
Dinh Nguyen47a16852014-04-14 14:13:34 -0700341 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100342
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200343 /*
344 * if shared fifo, we cannot write anything until the
Ben Dookse7a9ff52010-07-19 09:40:42 +0100345 * previous data has been completely sent.
346 */
347 if (hs_ep->fifo_load != 0) {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700348 s3c_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
Ben Dookse7a9ff52010-07-19 09:40:42 +0100349 return -ENOSPC;
350 }
351
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100352 dev_dbg(hsotg->dev, "%s: left=%d, load=%d, fifo=%d, size %d\n",
353 __func__, size_left,
354 hs_ep->size_loaded, hs_ep->fifo_load, hs_ep->fifo_size);
355
356 /* how much of the data has moved */
357 size_done = hs_ep->size_loaded - size_left;
358
359 /* how much data is left in the fifo */
360 can_write = hs_ep->fifo_load - size_done;
361 dev_dbg(hsotg->dev, "%s: => can_write1=%d\n",
362 __func__, can_write);
363
364 can_write = hs_ep->fifo_size - can_write;
365 dev_dbg(hsotg->dev, "%s: => can_write2=%d\n",
366 __func__, can_write);
367
368 if (can_write <= 0) {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700369 s3c_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100370 return -ENOSPC;
371 }
Ben Dooks10aebc72010-07-19 09:40:44 +0100372 } else if (hsotg->dedicated_fifos && hs_ep->index != 0) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200373 can_write = readl(hsotg->regs + DTXFSTS(hs_ep->index));
Ben Dooks10aebc72010-07-19 09:40:44 +0100374
375 can_write &= 0xffff;
376 can_write *= 4;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100377 } else {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700378 if (GNPTXSTS_NP_TXQ_SPC_AVAIL_GET(gnptxsts) == 0) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100379 dev_dbg(hsotg->dev,
380 "%s: no queue slots available (0x%08x)\n",
381 __func__, gnptxsts);
382
Dinh Nguyen47a16852014-04-14 14:13:34 -0700383 s3c_hsotg_en_gsint(hsotg, GINTSTS_NPTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100384 return -ENOSPC;
385 }
386
Dinh Nguyen47a16852014-04-14 14:13:34 -0700387 can_write = GNPTXSTS_NP_TXF_SPC_AVAIL_GET(gnptxsts);
Ben Dooks679f9b72010-07-19 09:40:41 +0100388 can_write *= 4; /* fifo size is in 32bit quantities. */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100389 }
390
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200391 max_transfer = hs_ep->ep.maxpacket * hs_ep->mc;
392
393 dev_dbg(hsotg->dev, "%s: GNPTXSTS=%08x, can=%d, to=%d, max_transfer %d\n",
394 __func__, gnptxsts, can_write, to_write, max_transfer);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100395
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200396 /*
397 * limit to 512 bytes of data, it seems at least on the non-periodic
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100398 * FIFO, requests of >512 cause the endpoint to get stuck with a
399 * fragment of the end of the transfer in it.
400 */
Robert Baldyga811f3302013-09-24 11:24:28 +0200401 if (can_write > 512 && !periodic)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100402 can_write = 512;
403
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200404 /*
405 * limit the write to one max-packet size worth of data, but allow
Ben Dooks03e10e52010-07-19 09:40:45 +0100406 * the transfer to return that it did not run out of fifo space
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200407 * doing it.
408 */
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200409 if (to_write > max_transfer) {
410 to_write = max_transfer;
Ben Dooks03e10e52010-07-19 09:40:45 +0100411
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200412 /* it's needed only when we do not use dedicated fifos */
413 if (!hsotg->dedicated_fifos)
414 s3c_hsotg_en_gsint(hsotg,
Dinh Nguyen47a16852014-04-14 14:13:34 -0700415 periodic ? GINTSTS_PTXFEMP :
416 GINTSTS_NPTXFEMP);
Ben Dooks03e10e52010-07-19 09:40:45 +0100417 }
418
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100419 /* see if we can write data */
420
421 if (to_write > can_write) {
422 to_write = can_write;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200423 pkt_round = to_write % max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100424
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200425 /*
426 * Round the write down to an
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100427 * exact number of packets.
428 *
429 * Note, we do not currently check to see if we can ever
430 * write a full packet or not to the FIFO.
431 */
432
433 if (pkt_round)
434 to_write -= pkt_round;
435
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200436 /*
437 * enable correct FIFO interrupt to alert us when there
438 * is more room left.
439 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100440
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200441 /* it's needed only when we do not use dedicated fifos */
442 if (!hsotg->dedicated_fifos)
443 s3c_hsotg_en_gsint(hsotg,
Dinh Nguyen47a16852014-04-14 14:13:34 -0700444 periodic ? GINTSTS_PTXFEMP :
445 GINTSTS_NPTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100446 }
447
448 dev_dbg(hsotg->dev, "write %d/%d, can_write %d, done %d\n",
449 to_write, hs_req->req.length, can_write, buf_pos);
450
451 if (to_write <= 0)
452 return -ENOSPC;
453
454 hs_req->req.actual = buf_pos + to_write;
455 hs_ep->total_data += to_write;
456
457 if (periodic)
458 hs_ep->fifo_load += to_write;
459
460 to_write = DIV_ROUND_UP(to_write, 4);
461 data = hs_req->req.buf + buf_pos;
462
Matt Porter1a7ed5b2014-02-03 10:29:09 -0500463 iowrite32_rep(hsotg->regs + EPFIFO(hs_ep->index), data, to_write);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100464
465 return (to_write >= can_write) ? -ENOSPC : 0;
466}
467
468/**
469 * get_ep_limit - get the maximum data legnth for this endpoint
470 * @hs_ep: The endpoint
471 *
472 * Return the maximum data that can be queued in one go on a given endpoint
473 * so that transfers that are too long can be split.
474 */
475static unsigned get_ep_limit(struct s3c_hsotg_ep *hs_ep)
476{
477 int index = hs_ep->index;
478 unsigned maxsize;
479 unsigned maxpkt;
480
481 if (index != 0) {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700482 maxsize = DXEPTSIZ_XFERSIZE_LIMIT + 1;
483 maxpkt = DXEPTSIZ_PKTCNT_LIMIT + 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100484 } else {
Ben Dooksb05ca582010-07-19 09:40:48 +0100485 maxsize = 64+64;
Jingoo Han66e5c642011-05-13 21:26:15 +0900486 if (hs_ep->dir_in)
Dinh Nguyen47a16852014-04-14 14:13:34 -0700487 maxpkt = DIEPTSIZ0_PKTCNT_LIMIT + 1;
Jingoo Han66e5c642011-05-13 21:26:15 +0900488 else
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100489 maxpkt = 2;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100490 }
491
492 /* we made the constant loading easier above by using +1 */
493 maxpkt--;
494 maxsize--;
495
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200496 /*
497 * constrain by packet count if maxpkts*pktsize is greater
498 * than the length register size.
499 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100500
501 if ((maxpkt * hs_ep->ep.maxpacket) < maxsize)
502 maxsize = maxpkt * hs_ep->ep.maxpacket;
503
504 return maxsize;
505}
506
507/**
508 * s3c_hsotg_start_req - start a USB request from an endpoint's queue
509 * @hsotg: The controller state.
510 * @hs_ep: The endpoint to process a request for
511 * @hs_req: The request to start.
512 * @continuing: True if we are doing more for the current request.
513 *
514 * Start the given request running by setting the endpoint registers
515 * appropriately, and writing any data to the FIFOs.
516 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600517static void s3c_hsotg_start_req(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100518 struct s3c_hsotg_ep *hs_ep,
519 struct s3c_hsotg_req *hs_req,
520 bool continuing)
521{
522 struct usb_request *ureq = &hs_req->req;
523 int index = hs_ep->index;
524 int dir_in = hs_ep->dir_in;
525 u32 epctrl_reg;
526 u32 epsize_reg;
527 u32 epsize;
528 u32 ctrl;
529 unsigned length;
530 unsigned packets;
531 unsigned maxreq;
532
533 if (index != 0) {
534 if (hs_ep->req && !continuing) {
535 dev_err(hsotg->dev, "%s: active request\n", __func__);
536 WARN_ON(1);
537 return;
538 } else if (hs_ep->req != hs_req && continuing) {
539 dev_err(hsotg->dev,
540 "%s: continue different req\n", __func__);
541 WARN_ON(1);
542 return;
543 }
544 }
545
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200546 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
547 epsize_reg = dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100548
549 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x, ep %d, dir %s\n",
550 __func__, readl(hsotg->regs + epctrl_reg), index,
551 hs_ep->dir_in ? "in" : "out");
552
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900553 /* If endpoint is stalled, we will restart request later */
554 ctrl = readl(hsotg->regs + epctrl_reg);
555
Dinh Nguyen47a16852014-04-14 14:13:34 -0700556 if (ctrl & DXEPCTL_STALL) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900557 dev_warn(hsotg->dev, "%s: ep%d is stalled\n", __func__, index);
558 return;
559 }
560
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100561 length = ureq->length - ureq->actual;
Lukasz Majewski71225be2012-05-04 14:17:03 +0200562 dev_dbg(hsotg->dev, "ureq->length:%d ureq->actual:%d\n",
563 ureq->length, ureq->actual);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100564 if (0)
565 dev_dbg(hsotg->dev,
Fabio Estevam0cc4cf62014-04-29 00:49:42 -0300566 "REQ buf %p len %d dma %pad noi=%d zp=%d snok=%d\n",
Jingoo Han8b3bc142014-02-04 14:25:29 +0900567 ureq->buf, length, &ureq->dma,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100568 ureq->no_interrupt, ureq->zero, ureq->short_not_ok);
569
570 maxreq = get_ep_limit(hs_ep);
571 if (length > maxreq) {
572 int round = maxreq % hs_ep->ep.maxpacket;
573
574 dev_dbg(hsotg->dev, "%s: length %d, max-req %d, r %d\n",
575 __func__, length, maxreq, round);
576
577 /* round down to multiple of packets */
578 if (round)
579 maxreq -= round;
580
581 length = maxreq;
582 }
583
584 if (length)
585 packets = DIV_ROUND_UP(length, hs_ep->ep.maxpacket);
586 else
587 packets = 1; /* send one packet if length is zero. */
588
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200589 if (hs_ep->isochronous && length > (hs_ep->mc * hs_ep->ep.maxpacket)) {
590 dev_err(hsotg->dev, "req length > maxpacket*mc\n");
591 return;
592 }
593
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100594 if (dir_in && index != 0)
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200595 if (hs_ep->isochronous)
Dinh Nguyen47a16852014-04-14 14:13:34 -0700596 epsize = DXEPTSIZ_MC(packets);
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200597 else
Dinh Nguyen47a16852014-04-14 14:13:34 -0700598 epsize = DXEPTSIZ_MC(1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100599 else
600 epsize = 0;
601
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +0100602 /*
603 * zero length packet should be programmed on its own and should not
604 * be counted in DIEPTSIZ.PktCnt with other packets.
605 */
606 if (dir_in && ureq->zero && !continuing) {
607 /* Test if zlp is actually required. */
608 if ((ureq->length >= hs_ep->ep.maxpacket) &&
609 !(ureq->length % hs_ep->ep.maxpacket))
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +0100610 hs_ep->send_zlp = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100611 }
612
Dinh Nguyen47a16852014-04-14 14:13:34 -0700613 epsize |= DXEPTSIZ_PKTCNT(packets);
614 epsize |= DXEPTSIZ_XFERSIZE(length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100615
616 dev_dbg(hsotg->dev, "%s: %d@%d/%d, 0x%08x => 0x%08x\n",
617 __func__, packets, length, ureq->length, epsize, epsize_reg);
618
619 /* store the request as the current one we're doing */
620 hs_ep->req = hs_req;
621
622 /* write size / packets */
623 writel(epsize, hsotg->regs + epsize_reg);
624
Anton Tikhomirovdb1d8ba2012-03-06 14:09:19 +0900625 if (using_dma(hsotg) && !continuing) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100626 unsigned int dma_reg;
627
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200628 /*
629 * write DMA address to control register, buffer already
630 * synced by s3c_hsotg_ep_queue().
631 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100632
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200633 dma_reg = dir_in ? DIEPDMA(index) : DOEPDMA(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100634 writel(ureq->dma, hsotg->regs + dma_reg);
635
Fabio Estevam0cc4cf62014-04-29 00:49:42 -0300636 dev_dbg(hsotg->dev, "%s: %pad => 0x%08x\n",
Jingoo Han8b3bc142014-02-04 14:25:29 +0900637 __func__, &ureq->dma, dma_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100638 }
639
Dinh Nguyen47a16852014-04-14 14:13:34 -0700640 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
641 ctrl |= DXEPCTL_USBACTEP;
Lukasz Majewski71225be2012-05-04 14:17:03 +0200642
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +0100643 dev_dbg(hsotg->dev, "ep0 state:%d\n", hsotg->ep0_state);
Lukasz Majewski71225be2012-05-04 14:17:03 +0200644
645 /* For Setup request do not clear NAK */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +0100646 if (!(index == 0 && hsotg->ep0_state == DWC2_EP0_SETUP))
Dinh Nguyen47a16852014-04-14 14:13:34 -0700647 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
Lukasz Majewski71225be2012-05-04 14:17:03 +0200648
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100649 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
650 writel(ctrl, hsotg->regs + epctrl_reg);
651
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200652 /*
653 * set these, it seems that DMA support increments past the end
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100654 * of the packet buffer so we need to calculate the length from
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200655 * this information.
656 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100657 hs_ep->size_loaded = length;
658 hs_ep->last_load = ureq->actual;
659
660 if (dir_in && !using_dma(hsotg)) {
661 /* set these anyway, we may need them for non-periodic in */
662 hs_ep->fifo_load = 0;
663
664 s3c_hsotg_write_fifo(hsotg, hs_ep, hs_req);
665 }
666
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200667 /*
668 * clear the INTknTXFEmpMsk when we start request, more as a aide
669 * to debugging to see what is going on.
670 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100671 if (dir_in)
Dinh Nguyen47a16852014-04-14 14:13:34 -0700672 writel(DIEPMSK_INTKNTXFEMPMSK,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200673 hsotg->regs + DIEPINT(index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100674
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200675 /*
676 * Note, trying to clear the NAK here causes problems with transmit
677 * on the S3C6400 ending up with the TXFIFO becoming full.
678 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100679
680 /* check ep is enabled */
Dinh Nguyen47a16852014-04-14 14:13:34 -0700681 if (!(readl(hsotg->regs + epctrl_reg) & DXEPCTL_EPENA))
Mian Yousaf Kaukab1a0ed862015-01-09 13:39:00 +0100682 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -0700683 "ep%d: failed to become enabled (DXEPCTL=0x%08x)?\n",
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100684 index, readl(hsotg->regs + epctrl_reg));
685
Dinh Nguyen47a16852014-04-14 14:13:34 -0700686 dev_dbg(hsotg->dev, "%s: DXEPCTL=0x%08x\n",
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100687 __func__, readl(hsotg->regs + epctrl_reg));
Robert Baldygaafcf4162013-09-19 11:50:19 +0200688
689 /* enable ep interrupts */
690 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100691}
692
693/**
694 * s3c_hsotg_map_dma - map the DMA memory being used for the request
695 * @hsotg: The device state.
696 * @hs_ep: The endpoint the request is on.
697 * @req: The request being processed.
698 *
699 * We've been asked to queue a request, so ensure that the memory buffer
700 * is correctly setup for DMA. If we've been passed an extant DMA address
701 * then ensure the buffer has been synced to memory. If our buffer has no
702 * DMA memory, then we map the memory and mark our request to allow us to
703 * cleanup on completion.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200704 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600705static int s3c_hsotg_map_dma(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100706 struct s3c_hsotg_ep *hs_ep,
707 struct usb_request *req)
708{
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100709 struct s3c_hsotg_req *hs_req = our_req(req);
Felipe Balbie58ebcd2013-01-28 14:48:36 +0200710 int ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100711
712 /* if the length is zero, ignore the DMA data */
713 if (hs_req->req.length == 0)
714 return 0;
715
Felipe Balbie58ebcd2013-01-28 14:48:36 +0200716 ret = usb_gadget_map_request(&hsotg->gadget, req, hs_ep->dir_in);
717 if (ret)
718 goto dma_error;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100719
720 return 0;
721
722dma_error:
723 dev_err(hsotg->dev, "%s: failed to map buffer %p, %d bytes\n",
724 __func__, req->buf, req->length);
725
726 return -EIO;
727}
728
729static int s3c_hsotg_ep_queue(struct usb_ep *ep, struct usb_request *req,
730 gfp_t gfp_flags)
731{
732 struct s3c_hsotg_req *hs_req = our_req(req);
733 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600734 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100735 bool first;
736
737 dev_dbg(hs->dev, "%s: req %p: %d@%p, noi=%d, zero=%d, snok=%d\n",
738 ep->name, req, req->length, req->buf, req->no_interrupt,
739 req->zero, req->short_not_ok);
740
741 /* initialise status of the request */
742 INIT_LIST_HEAD(&hs_req->queue);
743 req->actual = 0;
744 req->status = -EINPROGRESS;
745
746 /* if we're using DMA, sync the buffers as necessary */
747 if (using_dma(hs)) {
748 int ret = s3c_hsotg_map_dma(hs, hs_ep, req);
749 if (ret)
750 return ret;
751 }
752
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100753 first = list_empty(&hs_ep->queue);
754 list_add_tail(&hs_req->queue, &hs_ep->queue);
755
756 if (first)
757 s3c_hsotg_start_req(hs, hs_ep, hs_req, false);
758
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100759 return 0;
760}
761
Lukasz Majewski5ad1d312012-06-14 10:02:26 +0200762static int s3c_hsotg_ep_queue_lock(struct usb_ep *ep, struct usb_request *req,
763 gfp_t gfp_flags)
764{
765 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600766 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +0200767 unsigned long flags = 0;
768 int ret = 0;
769
770 spin_lock_irqsave(&hs->lock, flags);
771 ret = s3c_hsotg_ep_queue(ep, req, gfp_flags);
772 spin_unlock_irqrestore(&hs->lock, flags);
773
774 return ret;
775}
776
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100777static void s3c_hsotg_ep_free_request(struct usb_ep *ep,
778 struct usb_request *req)
779{
780 struct s3c_hsotg_req *hs_req = our_req(req);
781
782 kfree(hs_req);
783}
784
785/**
786 * s3c_hsotg_complete_oursetup - setup completion callback
787 * @ep: The endpoint the request was on.
788 * @req: The request completed.
789 *
790 * Called on completion of any requests the driver itself
791 * submitted that need cleaning up.
792 */
793static void s3c_hsotg_complete_oursetup(struct usb_ep *ep,
794 struct usb_request *req)
795{
796 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600797 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100798
799 dev_dbg(hsotg->dev, "%s: ep %p, req %p\n", __func__, ep, req);
800
801 s3c_hsotg_ep_free_request(ep, req);
802}
803
804/**
805 * ep_from_windex - convert control wIndex value to endpoint
806 * @hsotg: The driver state.
807 * @windex: The control request wIndex field (in host order).
808 *
809 * Convert the given wIndex into a pointer to an driver endpoint
810 * structure, or return NULL if it is not a valid endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200811 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600812static struct s3c_hsotg_ep *ep_from_windex(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100813 u32 windex)
814{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +0100815 struct s3c_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100816 int dir = (windex & USB_DIR_IN) ? 1 : 0;
817 int idx = windex & 0x7F;
818
819 if (windex >= 0x100)
820 return NULL;
821
Lukasz Majewskib3f489b2012-05-04 14:17:09 +0200822 if (idx > hsotg->num_of_eps)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100823 return NULL;
824
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +0100825 ep = index_to_ep(hsotg, idx, dir);
826
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100827 if (idx && ep->dir_in != dir)
828 return NULL;
829
830 return ep;
831}
832
833/**
834 * s3c_hsotg_send_reply - send reply to control request
835 * @hsotg: The device state
836 * @ep: Endpoint 0
837 * @buff: Buffer for request
838 * @length: Length of reply.
839 *
840 * Create a request and queue it on the given endpoint. This is useful as
841 * an internal method of sending replies to certain control requests, etc.
842 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600843static int s3c_hsotg_send_reply(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100844 struct s3c_hsotg_ep *ep,
845 void *buff,
846 int length)
847{
848 struct usb_request *req;
849 int ret;
850
851 dev_dbg(hsotg->dev, "%s: buff %p, len %d\n", __func__, buff, length);
852
853 req = s3c_hsotg_ep_alloc_request(&ep->ep, GFP_ATOMIC);
854 hsotg->ep0_reply = req;
855 if (!req) {
856 dev_warn(hsotg->dev, "%s: cannot alloc req\n", __func__);
857 return -ENOMEM;
858 }
859
860 req->buf = hsotg->ep0_buff;
861 req->length = length;
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +0100862 /*
863 * zero flag is for sending zlp in DATA IN stage. It has no impact on
864 * STATUS stage.
865 */
866 req->zero = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100867 req->complete = s3c_hsotg_complete_oursetup;
868
869 if (length)
870 memcpy(req->buf, buff, length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100871
872 ret = s3c_hsotg_ep_queue(&ep->ep, req, GFP_ATOMIC);
873 if (ret) {
874 dev_warn(hsotg->dev, "%s: cannot queue req\n", __func__);
875 return ret;
876 }
877
878 return 0;
879}
880
881/**
882 * s3c_hsotg_process_req_status - process request GET_STATUS
883 * @hsotg: The device state
884 * @ctrl: USB control request
885 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600886static int s3c_hsotg_process_req_status(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100887 struct usb_ctrlrequest *ctrl)
888{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +0100889 struct s3c_hsotg_ep *ep0 = hsotg->eps_out[0];
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100890 struct s3c_hsotg_ep *ep;
891 __le16 reply;
892 int ret;
893
894 dev_dbg(hsotg->dev, "%s: USB_REQ_GET_STATUS\n", __func__);
895
896 if (!ep0->dir_in) {
897 dev_warn(hsotg->dev, "%s: direction out?\n", __func__);
898 return -EINVAL;
899 }
900
901 switch (ctrl->bRequestType & USB_RECIP_MASK) {
902 case USB_RECIP_DEVICE:
903 reply = cpu_to_le16(0); /* bit 0 => self powered,
904 * bit 1 => remote wakeup */
905 break;
906
907 case USB_RECIP_INTERFACE:
908 /* currently, the data result should be zero */
909 reply = cpu_to_le16(0);
910 break;
911
912 case USB_RECIP_ENDPOINT:
913 ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex));
914 if (!ep)
915 return -ENOENT;
916
917 reply = cpu_to_le16(ep->halted ? 1 : 0);
918 break;
919
920 default:
921 return 0;
922 }
923
924 if (le16_to_cpu(ctrl->wLength) != 2)
925 return -EINVAL;
926
927 ret = s3c_hsotg_send_reply(hsotg, ep0, &reply, 2);
928 if (ret) {
929 dev_err(hsotg->dev, "%s: failed to send reply\n", __func__);
930 return ret;
931 }
932
933 return 1;
934}
935
936static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value);
937
938/**
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900939 * get_ep_head - return the first request on the endpoint
940 * @hs_ep: The controller endpoint to get
941 *
942 * Get the first request on the endpoint.
943 */
944static struct s3c_hsotg_req *get_ep_head(struct s3c_hsotg_ep *hs_ep)
945{
946 if (list_empty(&hs_ep->queue))
947 return NULL;
948
949 return list_first_entry(&hs_ep->queue, struct s3c_hsotg_req, queue);
950}
951
952/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100953 * s3c_hsotg_process_req_featire - process request {SET,CLEAR}_FEATURE
954 * @hsotg: The device state
955 * @ctrl: USB control request
956 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -0600957static int s3c_hsotg_process_req_feature(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100958 struct usb_ctrlrequest *ctrl)
959{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +0100960 struct s3c_hsotg_ep *ep0 = hsotg->eps_out[0];
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900961 struct s3c_hsotg_req *hs_req;
962 bool restart;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100963 bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE);
964 struct s3c_hsotg_ep *ep;
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +0900965 int ret;
Robert Baldygabd9ef7b2013-09-19 11:50:22 +0200966 bool halted;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100967
968 dev_dbg(hsotg->dev, "%s: %s_FEATURE\n",
969 __func__, set ? "SET" : "CLEAR");
970
971 if (ctrl->bRequestType == USB_RECIP_ENDPOINT) {
972 ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex));
973 if (!ep) {
974 dev_dbg(hsotg->dev, "%s: no endpoint for 0x%04x\n",
975 __func__, le16_to_cpu(ctrl->wIndex));
976 return -ENOENT;
977 }
978
979 switch (le16_to_cpu(ctrl->wValue)) {
980 case USB_ENDPOINT_HALT:
Robert Baldygabd9ef7b2013-09-19 11:50:22 +0200981 halted = ep->halted;
982
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100983 s3c_hsotg_ep_sethalt(&ep->ep, set);
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +0900984
985 ret = s3c_hsotg_send_reply(hsotg, ep0, NULL, 0);
986 if (ret) {
987 dev_err(hsotg->dev,
988 "%s: failed to send reply\n", __func__);
989 return ret;
990 }
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900991
Robert Baldygabd9ef7b2013-09-19 11:50:22 +0200992 /*
993 * we have to complete all requests for ep if it was
994 * halted, and the halt was cleared by CLEAR_FEATURE
995 */
996
997 if (!set && halted) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900998 /*
999 * If we have request in progress,
1000 * then complete it
1001 */
1002 if (ep->req) {
1003 hs_req = ep->req;
1004 ep->req = NULL;
1005 list_del_init(&hs_req->queue);
Michal Sojka304f7e52014-09-24 22:43:19 +02001006 usb_gadget_giveback_request(&ep->ep,
1007 &hs_req->req);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001008 }
1009
1010 /* If we have pending request, then start it */
1011 restart = !list_empty(&ep->queue);
1012 if (restart) {
1013 hs_req = get_ep_head(ep);
1014 s3c_hsotg_start_req(hsotg, ep,
1015 hs_req, false);
1016 }
1017 }
1018
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001019 break;
1020
1021 default:
1022 return -ENOENT;
1023 }
1024 } else
1025 return -ENOENT; /* currently only deal with endpoint */
1026
1027 return 1;
1028}
1029
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001030static void s3c_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg);
Robert Baldygaab93e012013-09-19 11:50:17 +02001031
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001032/**
Robert Baldygac9f721b2014-01-14 08:36:00 +01001033 * s3c_hsotg_stall_ep0 - stall ep0
1034 * @hsotg: The device state
1035 *
1036 * Set stall for ep0 as response for setup request.
1037 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001038static void s3c_hsotg_stall_ep0(struct dwc2_hsotg *hsotg)
Jingoo Hane9ebe7c2014-06-03 22:14:56 +09001039{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001040 struct s3c_hsotg_ep *ep0 = hsotg->eps_out[0];
Robert Baldygac9f721b2014-01-14 08:36:00 +01001041 u32 reg;
1042 u32 ctrl;
1043
1044 dev_dbg(hsotg->dev, "ep0 stall (dir=%d)\n", ep0->dir_in);
1045 reg = (ep0->dir_in) ? DIEPCTL0 : DOEPCTL0;
1046
1047 /*
1048 * DxEPCTL_Stall will be cleared by EP once it has
1049 * taken effect, so no need to clear later.
1050 */
1051
1052 ctrl = readl(hsotg->regs + reg);
Dinh Nguyen47a16852014-04-14 14:13:34 -07001053 ctrl |= DXEPCTL_STALL;
1054 ctrl |= DXEPCTL_CNAK;
Robert Baldygac9f721b2014-01-14 08:36:00 +01001055 writel(ctrl, hsotg->regs + reg);
1056
1057 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -07001058 "written DXEPCTL=0x%08x to %08x (DXEPCTL=0x%08x)\n",
Robert Baldygac9f721b2014-01-14 08:36:00 +01001059 ctrl, reg, readl(hsotg->regs + reg));
1060
1061 /*
1062 * complete won't be called, so we enqueue
1063 * setup request here
1064 */
1065 s3c_hsotg_enqueue_setup(hsotg);
1066}
1067
1068/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001069 * s3c_hsotg_process_control - process a control request
1070 * @hsotg: The device state
1071 * @ctrl: The control request received
1072 *
1073 * The controller has received the SETUP phase of a control request, and
1074 * needs to work out what to do next (and whether to pass it on to the
1075 * gadget driver).
1076 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001077static void s3c_hsotg_process_control(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001078 struct usb_ctrlrequest *ctrl)
1079{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001080 struct s3c_hsotg_ep *ep0 = hsotg->eps_out[0];
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001081 int ret = 0;
1082 u32 dcfg;
1083
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001084 dev_dbg(hsotg->dev, "ctrl Req=%02x, Type=%02x, V=%04x, L=%04x\n",
1085 ctrl->bRequest, ctrl->bRequestType,
1086 ctrl->wValue, ctrl->wLength);
1087
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001088 if (ctrl->wLength == 0) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001089 ep0->dir_in = 1;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001090 hsotg->ep0_state = DWC2_EP0_STATUS_IN;
1091 } else if (ctrl->bRequestType & USB_DIR_IN) {
1092 ep0->dir_in = 1;
1093 hsotg->ep0_state = DWC2_EP0_DATA_IN;
1094 } else {
1095 ep0->dir_in = 0;
1096 hsotg->ep0_state = DWC2_EP0_DATA_OUT;
1097 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001098
1099 if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
1100 switch (ctrl->bRequest) {
1101 case USB_REQ_SET_ADDRESS:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001102 dcfg = readl(hsotg->regs + DCFG);
Dinh Nguyen47a16852014-04-14 14:13:34 -07001103 dcfg &= ~DCFG_DEVADDR_MASK;
Paul Zimmermand5dbd3f2014-04-25 14:18:13 -07001104 dcfg |= (le16_to_cpu(ctrl->wValue) <<
1105 DCFG_DEVADDR_SHIFT) & DCFG_DEVADDR_MASK;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001106 writel(dcfg, hsotg->regs + DCFG);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001107
1108 dev_info(hsotg->dev, "new address %d\n", ctrl->wValue);
1109
1110 ret = s3c_hsotg_send_reply(hsotg, ep0, NULL, 0);
1111 return;
1112
1113 case USB_REQ_GET_STATUS:
1114 ret = s3c_hsotg_process_req_status(hsotg, ctrl);
1115 break;
1116
1117 case USB_REQ_CLEAR_FEATURE:
1118 case USB_REQ_SET_FEATURE:
1119 ret = s3c_hsotg_process_req_feature(hsotg, ctrl);
1120 break;
1121 }
1122 }
1123
1124 /* as a fallback, try delivering it to the driver to deal with */
1125
1126 if (ret == 0 && hsotg->driver) {
Robert Baldyga93f599f2013-11-21 13:49:17 +01001127 spin_unlock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001128 ret = hsotg->driver->setup(&hsotg->gadget, ctrl);
Robert Baldyga93f599f2013-11-21 13:49:17 +01001129 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001130 if (ret < 0)
1131 dev_dbg(hsotg->dev, "driver->setup() ret %d\n", ret);
1132 }
1133
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001134 /*
1135 * the request is either unhandlable, or is not formatted correctly
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001136 * so respond with a STALL for the status stage to indicate failure.
1137 */
1138
Robert Baldygac9f721b2014-01-14 08:36:00 +01001139 if (ret < 0)
1140 s3c_hsotg_stall_ep0(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001141}
1142
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001143/**
1144 * s3c_hsotg_complete_setup - completion of a setup transfer
1145 * @ep: The endpoint the request was on.
1146 * @req: The request completed.
1147 *
1148 * Called on completion of any requests the driver itself submitted for
1149 * EP0 setup packets
1150 */
1151static void s3c_hsotg_complete_setup(struct usb_ep *ep,
1152 struct usb_request *req)
1153{
1154 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001155 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001156
1157 if (req->status < 0) {
1158 dev_dbg(hsotg->dev, "%s: failed %d\n", __func__, req->status);
1159 return;
1160 }
1161
Robert Baldyga93f599f2013-11-21 13:49:17 +01001162 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001163 if (req->actual == 0)
1164 s3c_hsotg_enqueue_setup(hsotg);
1165 else
1166 s3c_hsotg_process_control(hsotg, req->buf);
Robert Baldyga93f599f2013-11-21 13:49:17 +01001167 spin_unlock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001168}
1169
1170/**
1171 * s3c_hsotg_enqueue_setup - start a request for EP0 packets
1172 * @hsotg: The device state.
1173 *
1174 * Enqueue a request on EP0 if necessary to received any SETUP packets
1175 * received from the host.
1176 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001177static void s3c_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001178{
1179 struct usb_request *req = hsotg->ctrl_req;
1180 struct s3c_hsotg_req *hs_req = our_req(req);
1181 int ret;
1182
1183 dev_dbg(hsotg->dev, "%s: queueing setup request\n", __func__);
1184
1185 req->zero = 0;
1186 req->length = 8;
1187 req->buf = hsotg->ctrl_buff;
1188 req->complete = s3c_hsotg_complete_setup;
1189
1190 if (!list_empty(&hs_req->queue)) {
1191 dev_dbg(hsotg->dev, "%s already queued???\n", __func__);
1192 return;
1193 }
1194
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001195 hsotg->eps_out[0]->dir_in = 0;
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01001196 hsotg->eps_out[0]->send_zlp = 0;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001197 hsotg->ep0_state = DWC2_EP0_SETUP;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001198
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001199 ret = s3c_hsotg_ep_queue(&hsotg->eps_out[0]->ep, req, GFP_ATOMIC);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001200 if (ret < 0) {
1201 dev_err(hsotg->dev, "%s: failed queue (%d)\n", __func__, ret);
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001202 /*
1203 * Don't think there's much we can do other than watch the
1204 * driver fail.
1205 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001206 }
1207}
1208
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001209static void s3c_hsotg_program_zlp(struct dwc2_hsotg *hsotg,
1210 struct s3c_hsotg_ep *hs_ep)
1211{
1212 u32 ctrl;
1213 u8 index = hs_ep->index;
1214 u32 epctl_reg = hs_ep->dir_in ? DIEPCTL(index) : DOEPCTL(index);
1215 u32 epsiz_reg = hs_ep->dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
1216
1217 dev_dbg(hsotg->dev, "Sending zero-length packet on ep%d\n", index);
1218
1219 writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
1220 DXEPTSIZ_XFERSIZE(0), hsotg->regs +
1221 epsiz_reg);
1222
1223 ctrl = readl(hsotg->regs + epctl_reg);
1224 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
1225 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
1226 ctrl |= DXEPCTL_USBACTEP;
1227 writel(ctrl, hsotg->regs + epctl_reg);
1228}
1229
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001230/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001231 * s3c_hsotg_complete_request - complete a request given to us
1232 * @hsotg: The device state.
1233 * @hs_ep: The endpoint the request was on.
1234 * @hs_req: The request to complete.
1235 * @result: The result code (0 => Ok, otherwise errno)
1236 *
1237 * The given request has finished, so call the necessary completion
1238 * if it has one and then look to see if we can start a new request
1239 * on the endpoint.
1240 *
1241 * Note, expects the ep to already be locked as appropriate.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001242 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001243static void s3c_hsotg_complete_request(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001244 struct s3c_hsotg_ep *hs_ep,
1245 struct s3c_hsotg_req *hs_req,
1246 int result)
1247{
1248 bool restart;
1249
1250 if (!hs_req) {
1251 dev_dbg(hsotg->dev, "%s: nothing to complete?\n", __func__);
1252 return;
1253 }
1254
1255 dev_dbg(hsotg->dev, "complete: ep %p %s, req %p, %d => %p\n",
1256 hs_ep, hs_ep->ep.name, hs_req, result, hs_req->req.complete);
1257
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001258 /*
1259 * only replace the status if we've not already set an error
1260 * from a previous transaction
1261 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001262
1263 if (hs_req->req.status == -EINPROGRESS)
1264 hs_req->req.status = result;
1265
1266 hs_ep->req = NULL;
1267 list_del_init(&hs_req->queue);
1268
1269 if (using_dma(hsotg))
1270 s3c_hsotg_unmap_dma(hsotg, hs_ep, hs_req);
1271
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001272 /*
1273 * call the complete request with the locks off, just in case the
1274 * request tries to queue more work for this endpoint.
1275 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001276
1277 if (hs_req->req.complete) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02001278 spin_unlock(&hsotg->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02001279 usb_gadget_giveback_request(&hs_ep->ep, &hs_req->req);
Lukasz Majewski22258f42012-06-14 10:02:24 +02001280 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001281 }
1282
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001283 /*
1284 * Look to see if there is anything else to do. Note, the completion
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001285 * of the previous request may have caused a new request to be started
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001286 * so be careful when doing this.
1287 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001288
1289 if (!hs_ep->req && result >= 0) {
1290 restart = !list_empty(&hs_ep->queue);
1291 if (restart) {
1292 hs_req = get_ep_head(hs_ep);
1293 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, false);
1294 }
1295 }
1296}
1297
1298/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001299 * s3c_hsotg_rx_data - receive data from the FIFO for an endpoint
1300 * @hsotg: The device state.
1301 * @ep_idx: The endpoint index for the data
1302 * @size: The size of data in the fifo, in bytes
1303 *
1304 * The FIFO status shows there is data to read from the FIFO for a given
1305 * endpoint, so sort out whether we need to read the data into a request
1306 * that has been made for that endpoint.
1307 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001308static void s3c_hsotg_rx_data(struct dwc2_hsotg *hsotg, int ep_idx, int size)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001309{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001310 struct s3c_hsotg_ep *hs_ep = hsotg->eps_out[ep_idx];
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001311 struct s3c_hsotg_req *hs_req = hs_ep->req;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001312 void __iomem *fifo = hsotg->regs + EPFIFO(ep_idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001313 int to_read;
1314 int max_req;
1315 int read_ptr;
1316
Lukasz Majewski22258f42012-06-14 10:02:24 +02001317
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001318 if (!hs_req) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001319 u32 epctl = readl(hsotg->regs + DOEPCTL(ep_idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001320 int ptr;
1321
Robert Baldyga6b448af2014-12-16 11:51:44 +01001322 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -07001323 "%s: FIFO %d bytes on ep%d but no req (DXEPCTl=0x%08x)\n",
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001324 __func__, size, ep_idx, epctl);
1325
1326 /* dump the data from the FIFO, we've nothing we can do */
1327 for (ptr = 0; ptr < size; ptr += 4)
1328 (void)readl(fifo);
1329
1330 return;
1331 }
1332
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001333 to_read = size;
1334 read_ptr = hs_req->req.actual;
1335 max_req = hs_req->req.length - read_ptr;
1336
Ben Dooksa33e7132010-07-19 09:40:49 +01001337 dev_dbg(hsotg->dev, "%s: read %d/%d, done %d/%d\n",
1338 __func__, to_read, max_req, read_ptr, hs_req->req.length);
1339
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001340 if (to_read > max_req) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001341 /*
1342 * more data appeared than we where willing
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001343 * to deal with in this request.
1344 */
1345
1346 /* currently we don't deal this */
1347 WARN_ON_ONCE(1);
1348 }
1349
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001350 hs_ep->total_data += to_read;
1351 hs_req->req.actual += to_read;
1352 to_read = DIV_ROUND_UP(to_read, 4);
1353
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001354 /*
1355 * note, we might over-write the buffer end by 3 bytes depending on
1356 * alignment of the data.
1357 */
Matt Porter1a7ed5b2014-02-03 10:29:09 -05001358 ioread32_rep(fifo, hs_req->req.buf + read_ptr, to_read);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001359}
1360
1361/**
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001362 * s3c_hsotg_ep0_zlp - send/receive zero-length packet on control endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001363 * @hsotg: The device instance
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001364 * @dir_in: If IN zlp
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001365 *
1366 * Generate a zero-length IN packet request for terminating a SETUP
1367 * transaction.
1368 *
1369 * Note, since we don't write any data to the TxFIFO, then it is
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001370 * currently believed that we do not need to wait for any space in
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001371 * the TxFIFO.
1372 */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001373static void s3c_hsotg_ep0_zlp(struct dwc2_hsotg *hsotg, bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001374{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001375 /* eps_out[0] is used in both directions */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001376 hsotg->eps_out[0]->dir_in = dir_in;
1377 hsotg->ep0_state = dir_in ? DWC2_EP0_STATUS_IN : DWC2_EP0_STATUS_OUT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001378
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001379 s3c_hsotg_program_zlp(hsotg, hsotg->eps_out[0]);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001380}
1381
1382/**
1383 * s3c_hsotg_handle_outdone - handle receiving OutDone/SetupDone from RXFIFO
1384 * @hsotg: The device instance
1385 * @epnum: The endpoint received from
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001386 *
1387 * The RXFIFO has delivered an OutDone event, which means that the data
1388 * transfer for an OUT endpoint has been completed, either by a short
1389 * packet or by the finish of a transfer.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001390 */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001391static void s3c_hsotg_handle_outdone(struct dwc2_hsotg *hsotg, int epnum)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001392{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001393 u32 epsize = readl(hsotg->regs + DOEPTSIZ(epnum));
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001394 struct s3c_hsotg_ep *hs_ep = hsotg->eps_out[epnum];
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001395 struct s3c_hsotg_req *hs_req = hs_ep->req;
1396 struct usb_request *req = &hs_req->req;
Dinh Nguyen47a16852014-04-14 14:13:34 -07001397 unsigned size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001398 int result = 0;
1399
1400 if (!hs_req) {
1401 dev_dbg(hsotg->dev, "%s: no request active\n", __func__);
1402 return;
1403 }
1404
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001405 if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_OUT) {
1406 dev_dbg(hsotg->dev, "zlp packet received\n");
1407 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
1408 s3c_hsotg_enqueue_setup(hsotg);
1409 return;
1410 }
1411
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001412 if (using_dma(hsotg)) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001413 unsigned size_done;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001414
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001415 /*
1416 * Calculate the size of the transfer by checking how much
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001417 * is left in the endpoint size register and then working it
1418 * out from the amount we loaded for the transfer.
1419 *
1420 * We need to do this as DMA pointers are always 32bit aligned
1421 * so may overshoot/undershoot the transfer.
1422 */
1423
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001424 size_done = hs_ep->size_loaded - size_left;
1425 size_done += hs_ep->last_load;
1426
1427 req->actual = size_done;
1428 }
1429
Ben Dooksa33e7132010-07-19 09:40:49 +01001430 /* if there is more request to do, schedule new transfer */
1431 if (req->actual < req->length && size_left == 0) {
1432 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, true);
1433 return;
1434 }
1435
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001436 if (req->actual < req->length && req->short_not_ok) {
1437 dev_dbg(hsotg->dev, "%s: got %d/%d (short not ok) => error\n",
1438 __func__, req->actual, req->length);
1439
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001440 /*
1441 * todo - what should we return here? there's no one else
1442 * even bothering to check the status.
1443 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001444 }
1445
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001446 if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
1447 /* Move to STATUS IN */
1448 s3c_hsotg_ep0_zlp(hsotg, true);
1449 return;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001450 }
1451
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001452 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, result);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001453}
1454
1455/**
1456 * s3c_hsotg_read_frameno - read current frame number
1457 * @hsotg: The device instance
1458 *
1459 * Return the current frame number
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001460 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001461static u32 s3c_hsotg_read_frameno(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001462{
1463 u32 dsts;
1464
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001465 dsts = readl(hsotg->regs + DSTS);
1466 dsts &= DSTS_SOFFN_MASK;
1467 dsts >>= DSTS_SOFFN_SHIFT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001468
1469 return dsts;
1470}
1471
1472/**
1473 * s3c_hsotg_handle_rx - RX FIFO has data
1474 * @hsotg: The device instance
1475 *
1476 * The IRQ handler has detected that the RX FIFO has some data in it
1477 * that requires processing, so find out what is in there and do the
1478 * appropriate read.
1479 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001480 * The RXFIFO is a true FIFO, the packets coming out are still in packet
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001481 * chunks, so if you have x packets received on an endpoint you'll get x
1482 * FIFO events delivered, each with a packet's worth of data in it.
1483 *
1484 * When using DMA, we should not be processing events from the RXFIFO
1485 * as the actual data should be sent to the memory directly and we turn
1486 * on the completion interrupts to get notifications of transfer completion.
1487 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001488static void s3c_hsotg_handle_rx(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001489{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001490 u32 grxstsr = readl(hsotg->regs + GRXSTSP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001491 u32 epnum, status, size;
1492
1493 WARN_ON(using_dma(hsotg));
1494
Dinh Nguyen47a16852014-04-14 14:13:34 -07001495 epnum = grxstsr & GRXSTS_EPNUM_MASK;
1496 status = grxstsr & GRXSTS_PKTSTS_MASK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001497
Dinh Nguyen47a16852014-04-14 14:13:34 -07001498 size = grxstsr & GRXSTS_BYTECNT_MASK;
1499 size >>= GRXSTS_BYTECNT_SHIFT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001500
1501 if (1)
1502 dev_dbg(hsotg->dev, "%s: GRXSTSP=0x%08x (%d@%d)\n",
1503 __func__, grxstsr, size, epnum);
1504
Dinh Nguyen47a16852014-04-14 14:13:34 -07001505 switch ((status & GRXSTS_PKTSTS_MASK) >> GRXSTS_PKTSTS_SHIFT) {
1506 case GRXSTS_PKTSTS_GLOBALOUTNAK:
1507 dev_dbg(hsotg->dev, "GLOBALOUTNAK\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001508 break;
1509
Dinh Nguyen47a16852014-04-14 14:13:34 -07001510 case GRXSTS_PKTSTS_OUTDONE:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001511 dev_dbg(hsotg->dev, "OutDone (Frame=0x%08x)\n",
1512 s3c_hsotg_read_frameno(hsotg));
1513
1514 if (!using_dma(hsotg))
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001515 s3c_hsotg_handle_outdone(hsotg, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001516 break;
1517
Dinh Nguyen47a16852014-04-14 14:13:34 -07001518 case GRXSTS_PKTSTS_SETUPDONE:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001519 dev_dbg(hsotg->dev,
1520 "SetupDone (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1521 s3c_hsotg_read_frameno(hsotg),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001522 readl(hsotg->regs + DOEPCTL(0)));
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001523 /*
1524 * Call s3c_hsotg_handle_outdone here if it was not called from
1525 * GRXSTS_PKTSTS_OUTDONE. That is, if the core didn't
1526 * generate GRXSTS_PKTSTS_OUTDONE for setup packet.
1527 */
1528 if (hsotg->ep0_state == DWC2_EP0_SETUP)
1529 s3c_hsotg_handle_outdone(hsotg, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001530 break;
1531
Dinh Nguyen47a16852014-04-14 14:13:34 -07001532 case GRXSTS_PKTSTS_OUTRX:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001533 s3c_hsotg_rx_data(hsotg, epnum, size);
1534 break;
1535
Dinh Nguyen47a16852014-04-14 14:13:34 -07001536 case GRXSTS_PKTSTS_SETUPRX:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001537 dev_dbg(hsotg->dev,
1538 "SetupRX (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1539 s3c_hsotg_read_frameno(hsotg),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001540 readl(hsotg->regs + DOEPCTL(0)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001541
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001542 WARN_ON(hsotg->ep0_state != DWC2_EP0_SETUP);
1543
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001544 s3c_hsotg_rx_data(hsotg, epnum, size);
1545 break;
1546
1547 default:
1548 dev_warn(hsotg->dev, "%s: unknown status %08x\n",
1549 __func__, grxstsr);
1550
1551 s3c_hsotg_dump(hsotg);
1552 break;
1553 }
1554}
1555
1556/**
1557 * s3c_hsotg_ep0_mps - turn max packet size into register setting
1558 * @mps: The maximum packet size in bytes.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001559 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001560static u32 s3c_hsotg_ep0_mps(unsigned int mps)
1561{
1562 switch (mps) {
1563 case 64:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001564 return D0EPCTL_MPS_64;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001565 case 32:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001566 return D0EPCTL_MPS_32;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001567 case 16:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001568 return D0EPCTL_MPS_16;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001569 case 8:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001570 return D0EPCTL_MPS_8;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001571 }
1572
1573 /* bad max packet size, warn and return invalid result */
1574 WARN_ON(1);
1575 return (u32)-1;
1576}
1577
1578/**
1579 * s3c_hsotg_set_ep_maxpacket - set endpoint's max-packet field
1580 * @hsotg: The driver state.
1581 * @ep: The index number of the endpoint
1582 * @mps: The maximum packet size in bytes
1583 *
1584 * Configure the maximum packet size for the given endpoint, updating
1585 * the hardware control registers to reflect this.
1586 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001587static void s3c_hsotg_set_ep_maxpacket(struct dwc2_hsotg *hsotg,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001588 unsigned int ep, unsigned int mps, unsigned int dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001589{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001590 struct s3c_hsotg_ep *hs_ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001591 void __iomem *regs = hsotg->regs;
1592 u32 mpsval;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001593 u32 mcval;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001594 u32 reg;
1595
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001596 hs_ep = index_to_ep(hsotg, ep, dir_in);
1597 if (!hs_ep)
1598 return;
1599
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001600 if (ep == 0) {
1601 /* EP0 is a special case */
1602 mpsval = s3c_hsotg_ep0_mps(mps);
1603 if (mpsval > 3)
1604 goto bad_mps;
Robert Baldygae9edd1992013-10-09 08:20:02 +02001605 hs_ep->ep.maxpacket = mps;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001606 hs_ep->mc = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001607 } else {
Dinh Nguyen47a16852014-04-14 14:13:34 -07001608 mpsval = mps & DXEPCTL_MPS_MASK;
Robert Baldygae9edd1992013-10-09 08:20:02 +02001609 if (mpsval > 1024)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001610 goto bad_mps;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001611 mcval = ((mps >> 11) & 0x3) + 1;
1612 hs_ep->mc = mcval;
1613 if (mcval > 3)
1614 goto bad_mps;
Robert Baldygae9edd1992013-10-09 08:20:02 +02001615 hs_ep->ep.maxpacket = mpsval;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001616 }
1617
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001618 if (dir_in) {
1619 reg = readl(regs + DIEPCTL(ep));
1620 reg &= ~DXEPCTL_MPS_MASK;
1621 reg |= mpsval;
1622 writel(reg, regs + DIEPCTL(ep));
1623 } else {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001624 reg = readl(regs + DOEPCTL(ep));
Dinh Nguyen47a16852014-04-14 14:13:34 -07001625 reg &= ~DXEPCTL_MPS_MASK;
Anton Tikhomirov659ad602012-03-06 14:07:29 +09001626 reg |= mpsval;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001627 writel(reg, regs + DOEPCTL(ep));
Anton Tikhomirov659ad602012-03-06 14:07:29 +09001628 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001629
1630 return;
1631
1632bad_mps:
1633 dev_err(hsotg->dev, "ep%d: bad mps of %d\n", ep, mps);
1634}
1635
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001636/**
1637 * s3c_hsotg_txfifo_flush - flush Tx FIFO
1638 * @hsotg: The driver state
1639 * @idx: The index for the endpoint (0..15)
1640 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001641static void s3c_hsotg_txfifo_flush(struct dwc2_hsotg *hsotg, unsigned int idx)
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001642{
1643 int timeout;
1644 int val;
1645
Dinh Nguyen47a16852014-04-14 14:13:34 -07001646 writel(GRSTCTL_TXFNUM(idx) | GRSTCTL_TXFFLSH,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001647 hsotg->regs + GRSTCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001648
1649 /* wait until the fifo is flushed */
1650 timeout = 100;
1651
1652 while (1) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001653 val = readl(hsotg->regs + GRSTCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001654
Dinh Nguyen47a16852014-04-14 14:13:34 -07001655 if ((val & (GRSTCTL_TXFFLSH)) == 0)
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001656 break;
1657
1658 if (--timeout == 0) {
1659 dev_err(hsotg->dev,
1660 "%s: timeout flushing fifo (GRSTCTL=%08x)\n",
1661 __func__, val);
Marek Szyprowskie0cbe592014-09-09 10:44:10 +02001662 break;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001663 }
1664
1665 udelay(1);
1666 }
1667}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001668
1669/**
1670 * s3c_hsotg_trytx - check to see if anything needs transmitting
1671 * @hsotg: The driver state
1672 * @hs_ep: The driver endpoint to check.
1673 *
1674 * Check to see if there is a request that has data to send, and if so
1675 * make an attempt to write data into the FIFO.
1676 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001677static int s3c_hsotg_trytx(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001678 struct s3c_hsotg_ep *hs_ep)
1679{
1680 struct s3c_hsotg_req *hs_req = hs_ep->req;
1681
Robert Baldygaafcf4162013-09-19 11:50:19 +02001682 if (!hs_ep->dir_in || !hs_req) {
1683 /**
1684 * if request is not enqueued, we disable interrupts
1685 * for endpoints, excepting ep0
1686 */
1687 if (hs_ep->index != 0)
1688 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index,
1689 hs_ep->dir_in, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001690 return 0;
Robert Baldygaafcf4162013-09-19 11:50:19 +02001691 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001692
1693 if (hs_req->req.actual < hs_req->req.length) {
1694 dev_dbg(hsotg->dev, "trying to write more for ep%d\n",
1695 hs_ep->index);
1696 return s3c_hsotg_write_fifo(hsotg, hs_ep, hs_req);
1697 }
1698
1699 return 0;
1700}
1701
1702/**
1703 * s3c_hsotg_complete_in - complete IN transfer
1704 * @hsotg: The device state.
1705 * @hs_ep: The endpoint that has just completed.
1706 *
1707 * An IN transfer has been completed, update the transfer's state and then
1708 * call the relevant completion routines.
1709 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001710static void s3c_hsotg_complete_in(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001711 struct s3c_hsotg_ep *hs_ep)
1712{
1713 struct s3c_hsotg_req *hs_req = hs_ep->req;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001714 u32 epsize = readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001715 int size_left, size_done;
1716
1717 if (!hs_req) {
1718 dev_dbg(hsotg->dev, "XferCompl but no req\n");
1719 return;
1720 }
1721
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001722 /* Finish ZLP handling for IN EP0 transactions */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001723 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_IN) {
1724 dev_dbg(hsotg->dev, "zlp packet sent\n");
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001725 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001726 s3c_hsotg_enqueue_setup(hsotg);
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001727 return;
1728 }
1729
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001730 /*
1731 * Calculate the size of the transfer by checking how much is left
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001732 * in the endpoint size register and then working it out from
1733 * the amount we loaded for the transfer.
1734 *
1735 * We do this even for DMA, as the transfer may have incremented
1736 * past the end of the buffer (DMA transfers are always 32bit
1737 * aligned).
1738 */
1739
Dinh Nguyen47a16852014-04-14 14:13:34 -07001740 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001741
1742 size_done = hs_ep->size_loaded - size_left;
1743 size_done += hs_ep->last_load;
1744
1745 if (hs_req->req.actual != size_done)
1746 dev_dbg(hsotg->dev, "%s: adjusting size done %d => %d\n",
1747 __func__, hs_req->req.actual, size_done);
1748
1749 hs_req->req.actual = size_done;
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02001750 dev_dbg(hsotg->dev, "req->length:%d req->actual:%d req->zero:%d\n",
1751 hs_req->req.length, hs_req->req.actual, hs_req->req.zero);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001752
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001753 if (!size_left && hs_req->req.actual < hs_req->req.length) {
1754 dev_dbg(hsotg->dev, "%s trying more for req...\n", __func__);
1755 s3c_hsotg_start_req(hsotg, hs_ep, hs_req, true);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001756 return;
1757 }
1758
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01001759 /* Zlp for all endpoints, for ep0 only in DATA IN stage */
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01001760 if (hs_ep->send_zlp) {
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01001761 s3c_hsotg_program_zlp(hsotg, hs_ep);
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01001762 hs_ep->send_zlp = 0;
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01001763 /* transfer will be completed on next complete interrupt */
1764 return;
1765 }
1766
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001767 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_DATA_IN) {
1768 /* Move to STATUS OUT */
1769 s3c_hsotg_ep0_zlp(hsotg, false);
1770 return;
1771 }
1772
1773 s3c_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001774}
1775
1776/**
1777 * s3c_hsotg_epint - handle an in/out endpoint interrupt
1778 * @hsotg: The driver state
1779 * @idx: The index for the endpoint (0..15)
1780 * @dir_in: Set if this is an IN endpoint
1781 *
1782 * Process and clear any interrupt pending for an individual endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001783 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001784static void s3c_hsotg_epint(struct dwc2_hsotg *hsotg, unsigned int idx,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001785 int dir_in)
1786{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001787 struct s3c_hsotg_ep *hs_ep = index_to_ep(hsotg, idx, dir_in);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001788 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
1789 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
1790 u32 epsiz_reg = dir_in ? DIEPTSIZ(idx) : DOEPTSIZ(idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001791 u32 ints;
Robert Baldyga1479e842013-10-09 08:41:57 +02001792 u32 ctrl;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001793
1794 ints = readl(hsotg->regs + epint_reg);
Robert Baldyga1479e842013-10-09 08:41:57 +02001795 ctrl = readl(hsotg->regs + epctl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001796
Anton Tikhomirova3395f02011-04-21 17:06:39 +09001797 /* Clear endpoint interrupts */
1798 writel(ints, hsotg->regs + epint_reg);
1799
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001800 if (!hs_ep) {
1801 dev_err(hsotg->dev, "%s:Interrupt for unconfigured ep%d(%s)\n",
1802 __func__, idx, dir_in ? "in" : "out");
1803 return;
1804 }
1805
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001806 dev_dbg(hsotg->dev, "%s: ep%d(%s) DxEPINT=0x%08x\n",
1807 __func__, idx, dir_in ? "in" : "out", ints);
1808
Mian Yousaf Kaukabb787d752015-01-09 13:38:43 +01001809 /* Don't process XferCompl interrupt if it is a setup packet */
1810 if (idx == 0 && (ints & (DXEPINT_SETUP | DXEPINT_SETUP_RCVD)))
1811 ints &= ~DXEPINT_XFERCOMPL;
1812
Dinh Nguyen47a16852014-04-14 14:13:34 -07001813 if (ints & DXEPINT_XFERCOMPL) {
Robert Baldyga1479e842013-10-09 08:41:57 +02001814 if (hs_ep->isochronous && hs_ep->interval == 1) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07001815 if (ctrl & DXEPCTL_EOFRNUM)
1816 ctrl |= DXEPCTL_SETEVENFR;
Robert Baldyga1479e842013-10-09 08:41:57 +02001817 else
Dinh Nguyen47a16852014-04-14 14:13:34 -07001818 ctrl |= DXEPCTL_SETODDFR;
Robert Baldyga1479e842013-10-09 08:41:57 +02001819 writel(ctrl, hsotg->regs + epctl_reg);
1820 }
1821
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001822 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -07001823 "%s: XferCompl: DxEPCTL=0x%08x, DXEPTSIZ=%08x\n",
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001824 __func__, readl(hsotg->regs + epctl_reg),
1825 readl(hsotg->regs + epsiz_reg));
1826
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001827 /*
1828 * we get OutDone from the FIFO, so we only need to look
1829 * at completing IN requests here
1830 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001831 if (dir_in) {
1832 s3c_hsotg_complete_in(hsotg, hs_ep);
1833
Ben Dooksc9a64ea2010-07-19 09:40:46 +01001834 if (idx == 0 && !hs_ep->req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001835 s3c_hsotg_enqueue_setup(hsotg);
1836 } else if (using_dma(hsotg)) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001837 /*
1838 * We're using DMA, we need to fire an OutDone here
1839 * as we ignore the RXFIFO.
1840 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001841
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001842 s3c_hsotg_handle_outdone(hsotg, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001843 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001844 }
1845
Dinh Nguyen47a16852014-04-14 14:13:34 -07001846 if (ints & DXEPINT_EPDISBLD) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001847 dev_dbg(hsotg->dev, "%s: EPDisbld\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001848
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001849 if (dir_in) {
1850 int epctl = readl(hsotg->regs + epctl_reg);
1851
Robert Baldygab203d0a2014-09-09 10:44:56 +02001852 s3c_hsotg_txfifo_flush(hsotg, hs_ep->fifo_index);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001853
Dinh Nguyen47a16852014-04-14 14:13:34 -07001854 if ((epctl & DXEPCTL_STALL) &&
1855 (epctl & DXEPCTL_EPTYPE_BULK)) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001856 int dctl = readl(hsotg->regs + DCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001857
Dinh Nguyen47a16852014-04-14 14:13:34 -07001858 dctl |= DCTL_CGNPINNAK;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001859 writel(dctl, hsotg->regs + DCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001860 }
1861 }
1862 }
1863
Dinh Nguyen47a16852014-04-14 14:13:34 -07001864 if (ints & DXEPINT_AHBERR)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001865 dev_dbg(hsotg->dev, "%s: AHBErr\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001866
Dinh Nguyen47a16852014-04-14 14:13:34 -07001867 if (ints & DXEPINT_SETUP) { /* Setup or Timeout */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001868 dev_dbg(hsotg->dev, "%s: Setup/Timeout\n", __func__);
1869
1870 if (using_dma(hsotg) && idx == 0) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001871 /*
1872 * this is the notification we've received a
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001873 * setup packet. In non-DMA mode we'd get this
1874 * from the RXFIFO, instead we need to process
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001875 * the setup here.
1876 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001877
1878 if (dir_in)
1879 WARN_ON_ONCE(1);
1880 else
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001881 s3c_hsotg_handle_outdone(hsotg, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001882 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001883 }
1884
Dinh Nguyen47a16852014-04-14 14:13:34 -07001885 if (ints & DXEPINT_BACK2BACKSETUP)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001886 dev_dbg(hsotg->dev, "%s: B2BSetup/INEPNakEff\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001887
Robert Baldyga1479e842013-10-09 08:41:57 +02001888 if (dir_in && !hs_ep->isochronous) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001889 /* not sure if this is important, but we'll clear it anyway */
Dinh Nguyen47a16852014-04-14 14:13:34 -07001890 if (ints & DIEPMSK_INTKNTXFEMPMSK) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001891 dev_dbg(hsotg->dev, "%s: ep%d: INTknTXFEmpMsk\n",
1892 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001893 }
1894
1895 /* this probably means something bad is happening */
Dinh Nguyen47a16852014-04-14 14:13:34 -07001896 if (ints & DIEPMSK_INTKNEPMISMSK) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001897 dev_warn(hsotg->dev, "%s: ep%d: INTknEP\n",
1898 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001899 }
Ben Dooks10aebc72010-07-19 09:40:44 +01001900
1901 /* FIFO has space or is empty (see GAHBCFG) */
1902 if (hsotg->dedicated_fifos &&
Dinh Nguyen47a16852014-04-14 14:13:34 -07001903 ints & DIEPMSK_TXFIFOEMPTY) {
Ben Dooks10aebc72010-07-19 09:40:44 +01001904 dev_dbg(hsotg->dev, "%s: ep%d: TxFIFOEmpty\n",
1905 __func__, idx);
Anton Tikhomirov70fa0302012-03-06 14:08:29 +09001906 if (!using_dma(hsotg))
1907 s3c_hsotg_trytx(hsotg, hs_ep);
Ben Dooks10aebc72010-07-19 09:40:44 +01001908 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001909 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001910}
1911
1912/**
1913 * s3c_hsotg_irq_enumdone - Handle EnumDone interrupt (enumeration done)
1914 * @hsotg: The device state.
1915 *
1916 * Handle updating the device settings after the enumeration phase has
1917 * been completed.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001918 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001919static void s3c_hsotg_irq_enumdone(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001920{
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001921 u32 dsts = readl(hsotg->regs + DSTS);
Jingoo Han9b2667f2014-08-20 12:04:09 +09001922 int ep0_mps = 0, ep_mps = 8;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001923
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001924 /*
1925 * This should signal the finish of the enumeration phase
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001926 * of the USB handshaking, so we should now know what rate
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001927 * we connected at.
1928 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001929
1930 dev_dbg(hsotg->dev, "EnumDone (DSTS=0x%08x)\n", dsts);
1931
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001932 /*
1933 * note, since we're limited by the size of transfer on EP0, and
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001934 * it seems IN transfers must be a even number of packets we do
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001935 * not advertise a 64byte MPS on EP0.
1936 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001937
1938 /* catch both EnumSpd_FS and EnumSpd_FS48 */
Dinh Nguyen47a16852014-04-14 14:13:34 -07001939 switch (dsts & DSTS_ENUMSPD_MASK) {
1940 case DSTS_ENUMSPD_FS:
1941 case DSTS_ENUMSPD_FS48:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001942 hsotg->gadget.speed = USB_SPEED_FULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001943 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01001944 ep_mps = 1023;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001945 break;
1946
Dinh Nguyen47a16852014-04-14 14:13:34 -07001947 case DSTS_ENUMSPD_HS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001948 hsotg->gadget.speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001949 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01001950 ep_mps = 1024;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001951 break;
1952
Dinh Nguyen47a16852014-04-14 14:13:34 -07001953 case DSTS_ENUMSPD_LS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001954 hsotg->gadget.speed = USB_SPEED_LOW;
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001955 /*
1956 * note, we don't actually support LS in this driver at the
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001957 * moment, and the documentation seems to imply that it isn't
1958 * supported by the PHYs on some of the devices.
1959 */
1960 break;
1961 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02001962 dev_info(hsotg->dev, "new device is %s\n",
1963 usb_speed_string(hsotg->gadget.speed));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001964
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001965 /*
1966 * we should now know the maximum packet size for an
1967 * endpoint, so set the endpoints to a default value.
1968 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001969
1970 if (ep0_mps) {
1971 int i;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001972 /* Initialize ep0 for both in and out directions */
1973 s3c_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 1);
1974 s3c_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 0);
1975 for (i = 1; i < hsotg->num_of_eps; i++) {
1976 if (hsotg->eps_in[i])
1977 s3c_hsotg_set_ep_maxpacket(hsotg, i, ep_mps, 1);
1978 if (hsotg->eps_out[i])
1979 s3c_hsotg_set_ep_maxpacket(hsotg, i, ep_mps, 0);
1980 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001981 }
1982
1983 /* ensure after enumeration our EP0 is active */
1984
1985 s3c_hsotg_enqueue_setup(hsotg);
1986
1987 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001988 readl(hsotg->regs + DIEPCTL0),
1989 readl(hsotg->regs + DOEPCTL0));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001990}
1991
1992/**
1993 * kill_all_requests - remove all requests from the endpoint's queue
1994 * @hsotg: The device state.
1995 * @ep: The endpoint the requests may be on.
1996 * @result: The result code to use.
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001997 *
1998 * Go through the requests on the given endpoint and mark them
1999 * completed with the given result code.
2000 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002001static void kill_all_requests(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002002 struct s3c_hsotg_ep *ep,
Robert Baldyga6b448af2014-12-16 11:51:44 +01002003 int result)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002004{
2005 struct s3c_hsotg_req *req, *treq;
Robert Baldygab203d0a2014-09-09 10:44:56 +02002006 unsigned size;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002007
Robert Baldyga6b448af2014-12-16 11:51:44 +01002008 ep->req = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002009
Robert Baldyga6b448af2014-12-16 11:51:44 +01002010 list_for_each_entry_safe(req, treq, &ep->queue, queue)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002011 s3c_hsotg_complete_request(hsotg, ep, req,
2012 result);
Robert Baldyga6b448af2014-12-16 11:51:44 +01002013
Robert Baldygab203d0a2014-09-09 10:44:56 +02002014 if (!hsotg->dedicated_fifos)
2015 return;
2016 size = (readl(hsotg->regs + DTXFSTS(ep->index)) & 0xffff) * 4;
2017 if (size < ep->fifo_size)
2018 s3c_hsotg_txfifo_flush(hsotg, ep->fifo_index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002019}
2020
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002021/**
Lukasz Majewski5e891342012-05-04 14:17:07 +02002022 * s3c_hsotg_disconnect - disconnect service
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002023 * @hsotg: The device state.
2024 *
Lukasz Majewski5e891342012-05-04 14:17:07 +02002025 * The device has been disconnected. Remove all current
2026 * transactions and signal the gadget driver that this
2027 * has happened.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002028 */
Marek Szyprowski4ace06e2014-11-21 15:14:47 +01002029void s3c_hsotg_disconnect(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002030{
2031 unsigned ep;
2032
Marek Szyprowski4ace06e2014-11-21 15:14:47 +01002033 if (!hsotg->connected)
2034 return;
2035
2036 hsotg->connected = 0;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002037
2038 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
2039 if (hsotg->eps_in[ep])
2040 kill_all_requests(hsotg, hsotg->eps_in[ep],
2041 -ESHUTDOWN);
2042 if (hsotg->eps_out[ep])
2043 kill_all_requests(hsotg, hsotg->eps_out[ep],
2044 -ESHUTDOWN);
2045 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002046
2047 call_gadget(hsotg, disconnect);
2048}
Marek Szyprowski4ace06e2014-11-21 15:14:47 +01002049EXPORT_SYMBOL_GPL(s3c_hsotg_disconnect);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002050
2051/**
2052 * s3c_hsotg_irq_fifoempty - TX FIFO empty interrupt handler
2053 * @hsotg: The device state:
2054 * @periodic: True if this is a periodic FIFO interrupt
2055 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002056static void s3c_hsotg_irq_fifoempty(struct dwc2_hsotg *hsotg, bool periodic)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002057{
2058 struct s3c_hsotg_ep *ep;
2059 int epno, ret;
2060
2061 /* look through for any more data to transmit */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002062 for (epno = 0; epno < hsotg->num_of_eps; epno++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002063 ep = index_to_ep(hsotg, epno, 1);
2064
2065 if (!ep)
2066 continue;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002067
2068 if (!ep->dir_in)
2069 continue;
2070
2071 if ((periodic && !ep->periodic) ||
2072 (!periodic && ep->periodic))
2073 continue;
2074
2075 ret = s3c_hsotg_trytx(hsotg, ep);
2076 if (ret < 0)
2077 break;
2078 }
2079}
2080
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002081/* IRQ flags which will trigger a retry around the IRQ loop */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002082#define IRQ_RETRY_MASK (GINTSTS_NPTXFEMP | \
2083 GINTSTS_PTXFEMP | \
2084 GINTSTS_RXFLVL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002085
2086/**
Lukasz Majewski308d7342012-05-04 14:17:05 +02002087 * s3c_hsotg_corereset - issue softreset to the core
2088 * @hsotg: The device state
2089 *
2090 * Issue a soft reset to the core, and await the core finishing it.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002091 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002092static int s3c_hsotg_corereset(struct dwc2_hsotg *hsotg)
Lukasz Majewski308d7342012-05-04 14:17:05 +02002093{
2094 int timeout;
2095 u32 grstctl;
2096
2097 dev_dbg(hsotg->dev, "resetting core\n");
2098
2099 /* issue soft reset */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002100 writel(GRSTCTL_CSFTRST, hsotg->regs + GRSTCTL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002101
Du, Changbin2868fea2012-07-24 08:19:25 +08002102 timeout = 10000;
Lukasz Majewski308d7342012-05-04 14:17:05 +02002103 do {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002104 grstctl = readl(hsotg->regs + GRSTCTL);
Dinh Nguyen47a16852014-04-14 14:13:34 -07002105 } while ((grstctl & GRSTCTL_CSFTRST) && timeout-- > 0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002106
Dinh Nguyen47a16852014-04-14 14:13:34 -07002107 if (grstctl & GRSTCTL_CSFTRST) {
Lukasz Majewski308d7342012-05-04 14:17:05 +02002108 dev_err(hsotg->dev, "Failed to get CSftRst asserted\n");
2109 return -EINVAL;
2110 }
2111
Du, Changbin2868fea2012-07-24 08:19:25 +08002112 timeout = 10000;
Lukasz Majewski308d7342012-05-04 14:17:05 +02002113
2114 while (1) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002115 u32 grstctl = readl(hsotg->regs + GRSTCTL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002116
2117 if (timeout-- < 0) {
2118 dev_info(hsotg->dev,
2119 "%s: reset failed, GRSTCTL=%08x\n",
2120 __func__, grstctl);
2121 return -ETIMEDOUT;
2122 }
2123
Dinh Nguyen47a16852014-04-14 14:13:34 -07002124 if (!(grstctl & GRSTCTL_AHBIDLE))
Lukasz Majewski308d7342012-05-04 14:17:05 +02002125 continue;
2126
2127 break; /* reset done */
2128 }
2129
2130 dev_dbg(hsotg->dev, "reset successful\n");
2131 return 0;
2132}
2133
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002134/**
2135 * s3c_hsotg_core_init - issue softreset to the core
2136 * @hsotg: The device state
2137 *
2138 * Issue a soft reset to the core, and await the core finishing it.
2139 */
Dinh Nguyen510ffaa2014-11-11 11:13:36 -06002140void s3c_hsotg_core_init_disconnected(struct dwc2_hsotg *hsotg)
Lukasz Majewski308d7342012-05-04 14:17:05 +02002141{
2142 s3c_hsotg_corereset(hsotg);
2143
2144 /*
2145 * we must now enable ep0 ready for host detection and then
2146 * set configuration.
2147 */
2148
2149 /* set the PLL on, remove the HNP/SRP and set the PHY */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002150 writel(hsotg->phyif | GUSBCFG_TOUTCAL(7) |
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002151 (0x5 << 10), hsotg->regs + GUSBCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002152
2153 s3c_hsotg_init_fifo(hsotg);
2154
Dinh Nguyen47a16852014-04-14 14:13:34 -07002155 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002156
Dinh Nguyen47a16852014-04-14 14:13:34 -07002157 writel(1 << 18 | DCFG_DEVSPD_HS, hsotg->regs + DCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002158
2159 /* Clear any pending OTG interrupts */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002160 writel(0xffffffff, hsotg->regs + GOTGINT);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002161
2162 /* Clear any pending interrupts */
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002163 writel(0xffffffff, hsotg->regs + GINTSTS);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002164
Dinh Nguyen47a16852014-04-14 14:13:34 -07002165 writel(GINTSTS_ERLYSUSP | GINTSTS_SESSREQINT |
2166 GINTSTS_GOUTNAKEFF | GINTSTS_GINNAKEFF |
2167 GINTSTS_CONIDSTSCHNG | GINTSTS_USBRST |
2168 GINTSTS_ENUMDONE | GINTSTS_OTGINT |
2169 GINTSTS_USBSUSP | GINTSTS_WKUPINT,
2170 hsotg->regs + GINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002171
2172 if (using_dma(hsotg))
Dinh Nguyen47a16852014-04-14 14:13:34 -07002173 writel(GAHBCFG_GLBL_INTR_EN | GAHBCFG_DMA_EN |
Gregory Herrero5f050482015-01-09 13:38:46 +01002174 (GAHBCFG_HBSTLEN_INCR4 << GAHBCFG_HBSTLEN_SHIFT),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002175 hsotg->regs + GAHBCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002176 else
Dinh Nguyen47a16852014-04-14 14:13:34 -07002177 writel(((hsotg->dedicated_fifos) ? (GAHBCFG_NP_TXF_EMP_LVL |
2178 GAHBCFG_P_TXF_EMP_LVL) : 0) |
2179 GAHBCFG_GLBL_INTR_EN,
Robert Baldyga8acc8292013-09-19 11:50:23 +02002180 hsotg->regs + GAHBCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002181
2182 /*
Robert Baldyga8acc8292013-09-19 11:50:23 +02002183 * If INTknTXFEmpMsk is enabled, it's important to disable ep interrupts
2184 * when we have no data to transfer. Otherwise we get being flooded by
2185 * interrupts.
Lukasz Majewski308d7342012-05-04 14:17:05 +02002186 */
2187
Mian Yousaf Kaukab6ff2e832015-01-09 13:38:42 +01002188 writel(((hsotg->dedicated_fifos && !using_dma(hsotg)) ?
2189 DIEPMSK_TXFIFOEMPTY | DIEPMSK_INTKNTXFEMPMSK : 0) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07002190 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK |
2191 DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK |
2192 DIEPMSK_INTKNEPMISMSK,
2193 hsotg->regs + DIEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002194
2195 /*
2196 * don't need XferCompl, we get that from RXFIFO in slave mode. In
2197 * DMA mode we may need this.
2198 */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002199 writel((using_dma(hsotg) ? (DIEPMSK_XFERCOMPLMSK |
2200 DIEPMSK_TIMEOUTMSK) : 0) |
2201 DOEPMSK_EPDISBLDMSK | DOEPMSK_AHBERRMSK |
2202 DOEPMSK_SETUPMSK,
2203 hsotg->regs + DOEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002204
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002205 writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002206
2207 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002208 readl(hsotg->regs + DIEPCTL0),
2209 readl(hsotg->regs + DOEPCTL0));
Lukasz Majewski308d7342012-05-04 14:17:05 +02002210
2211 /* enable in and out endpoint interrupts */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002212 s3c_hsotg_en_gsint(hsotg, GINTSTS_OEPINT | GINTSTS_IEPINT);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002213
2214 /*
2215 * Enable the RXFIFO when in slave mode, as this is how we collect
2216 * the data. In DMA mode, we get events from the FIFO but also
2217 * things we cannot process, so do not use it.
2218 */
2219 if (!using_dma(hsotg))
Dinh Nguyen47a16852014-04-14 14:13:34 -07002220 s3c_hsotg_en_gsint(hsotg, GINTSTS_RXFLVL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002221
2222 /* Enable interrupts for EP0 in and out */
2223 s3c_hsotg_ctrl_epint(hsotg, 0, 0, 1);
2224 s3c_hsotg_ctrl_epint(hsotg, 0, 1, 1);
2225
Dinh Nguyen47a16852014-04-14 14:13:34 -07002226 __orr32(hsotg->regs + DCTL, DCTL_PWRONPRGDONE);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002227 udelay(10); /* see openiboot */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002228 __bic32(hsotg->regs + DCTL, DCTL_PWRONPRGDONE);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002229
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002230 dev_dbg(hsotg->dev, "DCTL=0x%08x\n", readl(hsotg->regs + DCTL));
Lukasz Majewski308d7342012-05-04 14:17:05 +02002231
2232 /*
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002233 * DxEPCTL_USBActEp says RO in manual, but seems to be set by
Lukasz Majewski308d7342012-05-04 14:17:05 +02002234 * writing to the EPCTL register..
2235 */
2236
2237 /* set to read 1 8byte packet */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002238 writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
2239 DXEPTSIZ_XFERSIZE(8), hsotg->regs + DOEPTSIZ0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002240
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002241 writel(s3c_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07002242 DXEPCTL_CNAK | DXEPCTL_EPENA |
2243 DXEPCTL_USBACTEP,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002244 hsotg->regs + DOEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002245
2246 /* enable, but don't activate EP0in */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002247 writel(s3c_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07002248 DXEPCTL_USBACTEP, hsotg->regs + DIEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002249
2250 s3c_hsotg_enqueue_setup(hsotg);
2251
2252 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002253 readl(hsotg->regs + DIEPCTL0),
2254 readl(hsotg->regs + DOEPCTL0));
Lukasz Majewski308d7342012-05-04 14:17:05 +02002255
2256 /* clear global NAKs */
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02002257 writel(DCTL_CGOUTNAK | DCTL_CGNPINNAK | DCTL_SFTDISCON,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002258 hsotg->regs + DCTL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002259
2260 /* must be at-least 3ms to allow bus to see disconnect */
2261 mdelay(3);
2262
Marek Szyprowskiac3c81f2014-10-20 12:45:35 +02002263 hsotg->last_rst = jiffies;
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02002264}
Marek Szyprowskiac3c81f2014-10-20 12:45:35 +02002265
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002266static void s3c_hsotg_core_disconnect(struct dwc2_hsotg *hsotg)
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02002267{
2268 /* set the soft-disconnect bit */
2269 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
2270}
2271
Dinh Nguyen510ffaa2014-11-11 11:13:36 -06002272void s3c_hsotg_core_connect(struct dwc2_hsotg *hsotg)
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02002273{
Lukasz Majewski308d7342012-05-04 14:17:05 +02002274 /* remove the soft-disconnect and let's go */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002275 __bic32(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewski308d7342012-05-04 14:17:05 +02002276}
2277
2278/**
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002279 * s3c_hsotg_irq - handle device interrupt
2280 * @irq: The IRQ number triggered
2281 * @pw: The pw value when registered the handler.
2282 */
2283static irqreturn_t s3c_hsotg_irq(int irq, void *pw)
2284{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002285 struct dwc2_hsotg *hsotg = pw;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002286 int retry_count = 8;
2287 u32 gintsts;
2288 u32 gintmsk;
2289
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002290 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002291irq_retry:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002292 gintsts = readl(hsotg->regs + GINTSTS);
2293 gintmsk = readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002294
2295 dev_dbg(hsotg->dev, "%s: %08x %08x (%08x) retry %d\n",
2296 __func__, gintsts, gintsts & gintmsk, gintmsk, retry_count);
2297
2298 gintsts &= gintmsk;
2299
Dinh Nguyen47a16852014-04-14 14:13:34 -07002300 if (gintsts & GINTSTS_ENUMDONE) {
2301 writel(GINTSTS_ENUMDONE, hsotg->regs + GINTSTS);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002302
2303 s3c_hsotg_irq_enumdone(hsotg);
Marek Szyprowski4ace06e2014-11-21 15:14:47 +01002304 hsotg->connected = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002305 }
2306
Dinh Nguyen47a16852014-04-14 14:13:34 -07002307 if (gintsts & (GINTSTS_OEPINT | GINTSTS_IEPINT)) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002308 u32 daint = readl(hsotg->regs + DAINT);
Robert Baldyga7e804652013-09-19 11:50:20 +02002309 u32 daintmsk = readl(hsotg->regs + DAINTMSK);
2310 u32 daint_out, daint_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002311 int ep;
2312
Robert Baldyga7e804652013-09-19 11:50:20 +02002313 daint &= daintmsk;
Dinh Nguyen47a16852014-04-14 14:13:34 -07002314 daint_out = daint >> DAINT_OUTEP_SHIFT;
2315 daint_in = daint & ~(daint_out << DAINT_OUTEP_SHIFT);
Robert Baldyga7e804652013-09-19 11:50:20 +02002316
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002317 dev_dbg(hsotg->dev, "%s: daint=%08x\n", __func__, daint);
2318
Mian Yousaf Kaukabcec87f12015-01-09 13:38:51 +01002319 for (ep = 0; ep < hsotg->num_of_eps && daint_out;
2320 ep++, daint_out >>= 1) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002321 if (daint_out & 1)
2322 s3c_hsotg_epint(hsotg, ep, 0);
2323 }
2324
Mian Yousaf Kaukabcec87f12015-01-09 13:38:51 +01002325 for (ep = 0; ep < hsotg->num_of_eps && daint_in;
2326 ep++, daint_in >>= 1) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002327 if (daint_in & 1)
2328 s3c_hsotg_epint(hsotg, ep, 1);
2329 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002330 }
2331
Dinh Nguyen47a16852014-04-14 14:13:34 -07002332 if (gintsts & GINTSTS_USBRST) {
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002333
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002334 u32 usb_status = readl(hsotg->regs + GOTGCTL);
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002335
Marek Szyprowski95998152014-10-20 12:45:32 +02002336 dev_dbg(hsotg->dev, "%s: USBRst\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002337 dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002338 readl(hsotg->regs + GNPTXSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002339
Dinh Nguyen47a16852014-04-14 14:13:34 -07002340 writel(GINTSTS_USBRST, hsotg->regs + GINTSTS);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002341
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002342 if (usb_status & GOTGCTL_BSESVLD) {
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002343 if (time_after(jiffies, hsotg->last_rst +
2344 msecs_to_jiffies(200))) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002345
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002346 kill_all_requests(hsotg, hsotg->eps_out[0],
Robert Baldyga6b448af2014-12-16 11:51:44 +01002347 -ECONNRESET);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002348
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02002349 s3c_hsotg_core_init_disconnected(hsotg);
2350 s3c_hsotg_core_connect(hsotg);
Lukasz Majewski12a1f4d2012-05-04 14:17:08 +02002351 }
2352 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002353 }
2354
2355 /* check both FIFOs */
2356
Dinh Nguyen47a16852014-04-14 14:13:34 -07002357 if (gintsts & GINTSTS_NPTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002358 dev_dbg(hsotg->dev, "NPTxFEmp\n");
2359
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002360 /*
2361 * Disable the interrupt to stop it happening again
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002362 * unless one of these endpoint routines decides that
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002363 * it needs re-enabling
2364 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002365
Dinh Nguyen47a16852014-04-14 14:13:34 -07002366 s3c_hsotg_disable_gsint(hsotg, GINTSTS_NPTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002367 s3c_hsotg_irq_fifoempty(hsotg, false);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002368 }
2369
Dinh Nguyen47a16852014-04-14 14:13:34 -07002370 if (gintsts & GINTSTS_PTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002371 dev_dbg(hsotg->dev, "PTxFEmp\n");
2372
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002373 /* See note in GINTSTS_NPTxFEmp */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002374
Dinh Nguyen47a16852014-04-14 14:13:34 -07002375 s3c_hsotg_disable_gsint(hsotg, GINTSTS_PTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002376 s3c_hsotg_irq_fifoempty(hsotg, true);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002377 }
2378
Dinh Nguyen47a16852014-04-14 14:13:34 -07002379 if (gintsts & GINTSTS_RXFLVL) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002380 /*
2381 * note, since GINTSTS_RxFLvl doubles as FIFO-not-empty,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002382 * we need to retry s3c_hsotg_handle_rx if this is still
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002383 * set.
2384 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002385
2386 s3c_hsotg_handle_rx(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002387 }
2388
Dinh Nguyen47a16852014-04-14 14:13:34 -07002389 if (gintsts & GINTSTS_ERLYSUSP) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002390 dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n");
Dinh Nguyen47a16852014-04-14 14:13:34 -07002391 writel(GINTSTS_ERLYSUSP, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002392 }
2393
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002394 /*
2395 * these next two seem to crop-up occasionally causing the core
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002396 * to shutdown the USB transfer, so try clearing them and logging
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002397 * the occurrence.
2398 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002399
Dinh Nguyen47a16852014-04-14 14:13:34 -07002400 if (gintsts & GINTSTS_GOUTNAKEFF) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002401 dev_info(hsotg->dev, "GOUTNakEff triggered\n");
2402
Dinh Nguyen47a16852014-04-14 14:13:34 -07002403 writel(DCTL_CGOUTNAK, hsotg->regs + DCTL);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002404
2405 s3c_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002406 }
2407
Dinh Nguyen47a16852014-04-14 14:13:34 -07002408 if (gintsts & GINTSTS_GINNAKEFF) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002409 dev_info(hsotg->dev, "GINNakEff triggered\n");
2410
Dinh Nguyen47a16852014-04-14 14:13:34 -07002411 writel(DCTL_CGNPINNAK, hsotg->regs + DCTL);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002412
2413 s3c_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002414 }
2415
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002416 /*
2417 * if we've had fifo events, we should try and go around the
2418 * loop again to see if there's any point in returning yet.
2419 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002420
2421 if (gintsts & IRQ_RETRY_MASK && --retry_count > 0)
2422 goto irq_retry;
2423
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002424 spin_unlock(&hsotg->lock);
2425
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002426 return IRQ_HANDLED;
2427}
2428
2429/**
2430 * s3c_hsotg_ep_enable - enable the given endpoint
2431 * @ep: The USB endpint to configure
2432 * @desc: The USB endpoint descriptor to configure with.
2433 *
2434 * This is called from the USB gadget code's usb_ep_enable().
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002435 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002436static int s3c_hsotg_ep_enable(struct usb_ep *ep,
2437 const struct usb_endpoint_descriptor *desc)
2438{
2439 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002440 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002441 unsigned long flags;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002442 unsigned int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002443 u32 epctrl_reg;
2444 u32 epctrl;
2445 u32 mps;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002446 unsigned int dir_in;
2447 unsigned int i, val, size;
Julia Lawall19c190f2010-03-29 17:36:44 +02002448 int ret = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002449
2450 dev_dbg(hsotg->dev,
2451 "%s: ep %s: a 0x%02x, attr 0x%02x, mps 0x%04x, intr %d\n",
2452 __func__, ep->name, desc->bEndpointAddress, desc->bmAttributes,
2453 desc->wMaxPacketSize, desc->bInterval);
2454
2455 /* not to be called for EP0 */
2456 WARN_ON(index == 0);
2457
2458 dir_in = (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? 1 : 0;
2459 if (dir_in != hs_ep->dir_in) {
2460 dev_err(hsotg->dev, "%s: direction mismatch!\n", __func__);
2461 return -EINVAL;
2462 }
2463
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002464 mps = usb_endpoint_maxp(desc);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002465
2466 /* note, we handle this here instead of s3c_hsotg_set_ep_maxpacket */
2467
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002468 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002469 epctrl = readl(hsotg->regs + epctrl_reg);
2470
2471 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x from 0x%08x\n",
2472 __func__, epctrl, epctrl_reg);
2473
Lukasz Majewski22258f42012-06-14 10:02:24 +02002474 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002475
Dinh Nguyen47a16852014-04-14 14:13:34 -07002476 epctrl &= ~(DXEPCTL_EPTYPE_MASK | DXEPCTL_MPS_MASK);
2477 epctrl |= DXEPCTL_MPS(mps);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002478
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002479 /*
2480 * mark the endpoint as active, otherwise the core may ignore
2481 * transactions entirely for this endpoint
2482 */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002483 epctrl |= DXEPCTL_USBACTEP;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002484
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002485 /*
2486 * set the NAK status on the endpoint, otherwise we might try and
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002487 * do something with data that we've yet got a request to process
2488 * since the RXFIFO will take data for an endpoint even if the
2489 * size register hasn't been set.
2490 */
2491
Dinh Nguyen47a16852014-04-14 14:13:34 -07002492 epctrl |= DXEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002493
2494 /* update the endpoint state */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002495 s3c_hsotg_set_ep_maxpacket(hsotg, hs_ep->index, mps, dir_in);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002496
2497 /* default, set to non-periodic */
Robert Baldyga1479e842013-10-09 08:41:57 +02002498 hs_ep->isochronous = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002499 hs_ep->periodic = 0;
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02002500 hs_ep->halted = 0;
Robert Baldyga1479e842013-10-09 08:41:57 +02002501 hs_ep->interval = desc->bInterval;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002502
Robert Baldyga4fca54a2013-10-09 09:00:02 +02002503 if (hs_ep->interval > 1 && hs_ep->mc > 1)
2504 dev_err(hsotg->dev, "MC > 1 when interval is not 1\n");
2505
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002506 switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
2507 case USB_ENDPOINT_XFER_ISOC:
Dinh Nguyen47a16852014-04-14 14:13:34 -07002508 epctrl |= DXEPCTL_EPTYPE_ISO;
2509 epctrl |= DXEPCTL_SETEVENFR;
Robert Baldyga1479e842013-10-09 08:41:57 +02002510 hs_ep->isochronous = 1;
2511 if (dir_in)
2512 hs_ep->periodic = 1;
2513 break;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002514
2515 case USB_ENDPOINT_XFER_BULK:
Dinh Nguyen47a16852014-04-14 14:13:34 -07002516 epctrl |= DXEPCTL_EPTYPE_BULK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002517 break;
2518
2519 case USB_ENDPOINT_XFER_INT:
Robert Baldygab203d0a2014-09-09 10:44:56 +02002520 if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002521 hs_ep->periodic = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002522
Dinh Nguyen47a16852014-04-14 14:13:34 -07002523 epctrl |= DXEPCTL_EPTYPE_INTERRUPT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002524 break;
2525
2526 case USB_ENDPOINT_XFER_CONTROL:
Dinh Nguyen47a16852014-04-14 14:13:34 -07002527 epctrl |= DXEPCTL_EPTYPE_CONTROL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002528 break;
2529 }
2530
Mian Yousaf Kaukab4556e122015-01-09 13:39:05 +01002531 /* If fifo is already allocated for this ep */
2532 if (hs_ep->fifo_index) {
2533 size = hs_ep->ep.maxpacket * hs_ep->mc;
2534 /* If bigger fifo is required deallocate current one */
2535 if (size > hs_ep->fifo_size) {
2536 hsotg->fifo_map &= ~(1 << hs_ep->fifo_index);
2537 hs_ep->fifo_index = 0;
2538 hs_ep->fifo_size = 0;
2539 }
2540 }
2541
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002542 /*
2543 * if the hardware has dedicated fifos, we must give each IN EP
Ben Dooks10aebc72010-07-19 09:40:44 +01002544 * a unique tx-fifo even if it is non-periodic.
2545 */
Mian Yousaf Kaukab4556e122015-01-09 13:39:05 +01002546 if (dir_in && hsotg->dedicated_fifos && !hs_ep->fifo_index) {
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002547 u32 fifo_index = 0;
2548 u32 fifo_size = UINT_MAX;
Robert Baldygab203d0a2014-09-09 10:44:56 +02002549 size = hs_ep->ep.maxpacket*hs_ep->mc;
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01002550 for (i = 1; i < hsotg->num_of_eps; ++i) {
Robert Baldygab203d0a2014-09-09 10:44:56 +02002551 if (hsotg->fifo_map & (1<<i))
2552 continue;
2553 val = readl(hsotg->regs + DPTXFSIZN(i));
2554 val = (val >> FIFOSIZE_DEPTH_SHIFT)*4;
2555 if (val < size)
2556 continue;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002557 /* Search for smallest acceptable fifo */
2558 if (val < fifo_size) {
2559 fifo_size = val;
2560 fifo_index = i;
2561 }
Robert Baldygab203d0a2014-09-09 10:44:56 +02002562 }
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002563 if (!fifo_index) {
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01002564 dev_err(hsotg->dev,
2565 "%s: No suitable fifo found\n", __func__);
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05302566 ret = -ENOMEM;
2567 goto error;
2568 }
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002569 hsotg->fifo_map |= 1 << fifo_index;
2570 epctrl |= DXEPCTL_TXFNUM(fifo_index);
2571 hs_ep->fifo_index = fifo_index;
2572 hs_ep->fifo_size = fifo_size;
Robert Baldygab203d0a2014-09-09 10:44:56 +02002573 }
Ben Dooks10aebc72010-07-19 09:40:44 +01002574
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002575 /* for non control endpoints, set PID to D0 */
2576 if (index)
Dinh Nguyen47a16852014-04-14 14:13:34 -07002577 epctrl |= DXEPCTL_SETD0PID;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002578
2579 dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
2580 __func__, epctrl);
2581
2582 writel(epctrl, hsotg->regs + epctrl_reg);
2583 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
2584 __func__, readl(hsotg->regs + epctrl_reg));
2585
2586 /* enable the endpoint interrupt */
2587 s3c_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
2588
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05302589error:
Lukasz Majewski22258f42012-06-14 10:02:24 +02002590 spin_unlock_irqrestore(&hsotg->lock, flags);
Julia Lawall19c190f2010-03-29 17:36:44 +02002591 return ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002592}
2593
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002594/**
2595 * s3c_hsotg_ep_disable - disable given endpoint
2596 * @ep: The endpoint to disable.
2597 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002598static int s3c_hsotg_ep_disable(struct usb_ep *ep)
2599{
2600 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002601 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002602 int dir_in = hs_ep->dir_in;
2603 int index = hs_ep->index;
2604 unsigned long flags;
2605 u32 epctrl_reg;
2606 u32 ctrl;
2607
Marek Szyprowski1e011292014-09-09 10:44:54 +02002608 dev_dbg(hsotg->dev, "%s(ep %p)\n", __func__, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002609
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002610 if (ep == &hsotg->eps_out[0]->ep) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002611 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
2612 return -EINVAL;
2613 }
2614
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002615 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002616
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002617 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002618
Robert Baldygab203d0a2014-09-09 10:44:56 +02002619 hsotg->fifo_map &= ~(1<<hs_ep->fifo_index);
2620 hs_ep->fifo_index = 0;
2621 hs_ep->fifo_size = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002622
2623 ctrl = readl(hsotg->regs + epctrl_reg);
Dinh Nguyen47a16852014-04-14 14:13:34 -07002624 ctrl &= ~DXEPCTL_EPENA;
2625 ctrl &= ~DXEPCTL_USBACTEP;
2626 ctrl |= DXEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002627
2628 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
2629 writel(ctrl, hsotg->regs + epctrl_reg);
2630
2631 /* disable endpoint interrupts */
2632 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
2633
Mian Yousaf Kaukab1141ea02015-01-09 13:38:57 +01002634 /* terminate all requests with shutdown */
2635 kill_all_requests(hsotg, hs_ep, -ESHUTDOWN);
2636
Lukasz Majewski22258f42012-06-14 10:02:24 +02002637 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002638 return 0;
2639}
2640
2641/**
2642 * on_list - check request is on the given endpoint
2643 * @ep: The endpoint to check.
2644 * @test: The request to test if it is on the endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002645 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002646static bool on_list(struct s3c_hsotg_ep *ep, struct s3c_hsotg_req *test)
2647{
2648 struct s3c_hsotg_req *req, *treq;
2649
2650 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
2651 if (req == test)
2652 return true;
2653 }
2654
2655 return false;
2656}
2657
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002658/**
2659 * s3c_hsotg_ep_dequeue - dequeue given endpoint
2660 * @ep: The endpoint to dequeue.
2661 * @req: The request to be removed from a queue.
2662 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002663static int s3c_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
2664{
2665 struct s3c_hsotg_req *hs_req = our_req(req);
2666 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002667 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002668 unsigned long flags;
2669
Marek Szyprowski1e011292014-09-09 10:44:54 +02002670 dev_dbg(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002671
Lukasz Majewski22258f42012-06-14 10:02:24 +02002672 spin_lock_irqsave(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002673
2674 if (!on_list(hs_ep, hs_req)) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02002675 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002676 return -EINVAL;
2677 }
2678
2679 s3c_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
Lukasz Majewski22258f42012-06-14 10:02:24 +02002680 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002681
2682 return 0;
2683}
2684
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002685/**
2686 * s3c_hsotg_ep_sethalt - set halt on a given endpoint
2687 * @ep: The endpoint to set halt.
2688 * @value: Set or unset the halt.
2689 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002690static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value)
2691{
2692 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002693 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002694 int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002695 u32 epreg;
2696 u32 epctl;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002697 u32 xfertype;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002698
2699 dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
2700
Robert Baldygac9f721b2014-01-14 08:36:00 +01002701 if (index == 0) {
2702 if (value)
2703 s3c_hsotg_stall_ep0(hs);
2704 else
2705 dev_warn(hs->dev,
2706 "%s: can't clear halt on ep0\n", __func__);
2707 return 0;
2708 }
2709
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002710 if (hs_ep->dir_in) {
2711 epreg = DIEPCTL(index);
2712 epctl = readl(hs->regs + epreg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002713
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002714 if (value) {
2715 epctl |= DXEPCTL_STALL + DXEPCTL_SNAK;
2716 if (epctl & DXEPCTL_EPENA)
2717 epctl |= DXEPCTL_EPDIS;
2718 } else {
2719 epctl &= ~DXEPCTL_STALL;
2720 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
2721 if (xfertype == DXEPCTL_EPTYPE_BULK ||
2722 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
2723 epctl |= DXEPCTL_SETD0PID;
2724 }
2725 writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002726 } else {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002727
2728 epreg = DOEPCTL(index);
2729 epctl = readl(hs->regs + epreg);
2730
2731 if (value)
2732 epctl |= DXEPCTL_STALL;
2733 else {
2734 epctl &= ~DXEPCTL_STALL;
2735 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
2736 if (xfertype == DXEPCTL_EPTYPE_BULK ||
2737 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
2738 epctl |= DXEPCTL_SETD0PID;
2739 }
2740 writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002741 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002742
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02002743 hs_ep->halted = value;
2744
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002745 return 0;
2746}
2747
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002748/**
2749 * s3c_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
2750 * @ep: The endpoint to set halt.
2751 * @value: Set or unset the halt.
2752 */
2753static int s3c_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
2754{
2755 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002756 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002757 unsigned long flags = 0;
2758 int ret = 0;
2759
2760 spin_lock_irqsave(&hs->lock, flags);
2761 ret = s3c_hsotg_ep_sethalt(ep, value);
2762 spin_unlock_irqrestore(&hs->lock, flags);
2763
2764 return ret;
2765}
2766
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002767static struct usb_ep_ops s3c_hsotg_ep_ops = {
2768 .enable = s3c_hsotg_ep_enable,
2769 .disable = s3c_hsotg_ep_disable,
2770 .alloc_request = s3c_hsotg_ep_alloc_request,
2771 .free_request = s3c_hsotg_ep_free_request,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002772 .queue = s3c_hsotg_ep_queue_lock,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002773 .dequeue = s3c_hsotg_ep_dequeue,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002774 .set_halt = s3c_hsotg_ep_sethalt_lock,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002775 /* note, don't believe we have any call for the fifo routines */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002776};
2777
2778/**
Lukasz Majewski41188782012-05-04 14:17:01 +02002779 * s3c_hsotg_phy_enable - enable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002780 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002781 *
2782 * A wrapper for platform code responsible for controlling
2783 * low-level USB code
2784 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002785static void s3c_hsotg_phy_enable(struct dwc2_hsotg *hsotg)
Lukasz Majewski41188782012-05-04 14:17:01 +02002786{
2787 struct platform_device *pdev = to_platform_device(hsotg->dev);
2788
2789 dev_dbg(hsotg->dev, "pdev 0x%p\n", pdev);
Praveen Panerib2e587d2012-11-14 15:57:16 +05302790
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002791 if (hsotg->uphy)
2792 usb_phy_init(hsotg->uphy);
2793 else if (hsotg->plat && hsotg->plat->phy_init)
2794 hsotg->plat->phy_init(pdev, hsotg->plat->phy_type);
2795 else {
Matt Porter74084842013-12-19 09:23:06 -05002796 phy_init(hsotg->phy);
2797 phy_power_on(hsotg->phy);
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002798 }
Lukasz Majewski41188782012-05-04 14:17:01 +02002799}
2800
2801/**
2802 * s3c_hsotg_phy_disable - disable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002803 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002804 *
2805 * A wrapper for platform code responsible for controlling
2806 * low-level USB code
2807 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002808static void s3c_hsotg_phy_disable(struct dwc2_hsotg *hsotg)
Lukasz Majewski41188782012-05-04 14:17:01 +02002809{
2810 struct platform_device *pdev = to_platform_device(hsotg->dev);
2811
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002812 if (hsotg->uphy)
2813 usb_phy_shutdown(hsotg->uphy);
2814 else if (hsotg->plat && hsotg->plat->phy_exit)
2815 hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type);
2816 else {
Matt Porter74084842013-12-19 09:23:06 -05002817 phy_power_off(hsotg->phy);
2818 phy_exit(hsotg->phy);
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002819 }
Lukasz Majewski41188782012-05-04 14:17:01 +02002820}
2821
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002822/**
2823 * s3c_hsotg_init - initalize the usb core
2824 * @hsotg: The driver state
2825 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002826static void s3c_hsotg_init(struct dwc2_hsotg *hsotg)
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002827{
2828 /* unmask subset of endpoint interrupts */
2829
Dinh Nguyen47a16852014-04-14 14:13:34 -07002830 writel(DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK |
2831 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK,
2832 hsotg->regs + DIEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002833
Dinh Nguyen47a16852014-04-14 14:13:34 -07002834 writel(DOEPMSK_SETUPMSK | DOEPMSK_AHBERRMSK |
2835 DOEPMSK_EPDISBLDMSK | DOEPMSK_XFERCOMPLMSK,
2836 hsotg->regs + DOEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002837
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002838 writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002839
2840 /* Be in disconnected state until gadget is registered */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002841 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002842
2843 if (0) {
2844 /* post global nak until we're ready */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002845 writel(DCTL_SGNPINNAK | DCTL_SGOUTNAK,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002846 hsotg->regs + DCTL);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002847 }
2848
2849 /* setup fifos */
2850
2851 dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002852 readl(hsotg->regs + GRXFSIZ),
2853 readl(hsotg->regs + GNPTXFSIZ));
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002854
2855 s3c_hsotg_init_fifo(hsotg);
2856
2857 /* set the PLL on, remove the HNP/SRP and set the PHY */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002858 writel(GUSBCFG_PHYIF16 | GUSBCFG_TOUTCAL(7) | (0x5 << 10),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002859 hsotg->regs + GUSBCFG);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002860
Gregory Herrerof5090042015-01-09 13:38:47 +01002861 if (using_dma(hsotg))
2862 __orr32(hsotg->regs + GAHBCFG, GAHBCFG_DMA_EN);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002863}
2864
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002865/**
2866 * s3c_hsotg_udc_start - prepare the udc for work
2867 * @gadget: The usb gadget state
2868 * @driver: The usb gadget driver
2869 *
2870 * Perform initialization to prepare udc device and driver
2871 * to work.
2872 */
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002873static int s3c_hsotg_udc_start(struct usb_gadget *gadget,
2874 struct usb_gadget_driver *driver)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002875{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002876 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002877 unsigned long flags;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002878 int ret;
2879
2880 if (!hsotg) {
Pavel Macheka023da32013-09-30 14:56:02 +02002881 pr_err("%s: called with no device\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002882 return -ENODEV;
2883 }
2884
2885 if (!driver) {
2886 dev_err(hsotg->dev, "%s: no driver\n", __func__);
2887 return -EINVAL;
2888 }
2889
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01002890 if (driver->max_speed < USB_SPEED_FULL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002891 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002892
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002893 if (!driver->setup) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002894 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
2895 return -EINVAL;
2896 }
2897
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002898 mutex_lock(&hsotg->init_mutex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002899 WARN_ON(hsotg->driver);
2900
2901 driver->driver.bus = NULL;
2902 hsotg->driver = driver;
Alexandre Pereira da Silva7d7b2292012-06-26 11:27:10 -03002903 hsotg->gadget.dev.of_node = hsotg->dev->of_node;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002904 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
2905
Robert Baldygad00b4142014-09-09 10:44:57 +02002906 clk_enable(hsotg->clk);
2907
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002908 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
2909 hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002910 if (ret) {
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002911 dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002912 goto err;
2913 }
2914
Marek Szyprowskic816c472014-10-20 12:45:37 +02002915 s3c_hsotg_phy_enable(hsotg);
Gregory Herrerof6c01592015-01-09 13:38:41 +01002916 if (!IS_ERR_OR_NULL(hsotg->uphy))
2917 otg_set_peripheral(hsotg->uphy->otg, &hsotg->gadget);
Marek Szyprowskic816c472014-10-20 12:45:37 +02002918
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002919 spin_lock_irqsave(&hsotg->lock, flags);
2920 s3c_hsotg_init(hsotg);
2921 s3c_hsotg_core_init_disconnected(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01002922 hsotg->enabled = 0;
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002923 spin_unlock_irqrestore(&hsotg->lock, flags);
2924
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002925 dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002926
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002927 mutex_unlock(&hsotg->init_mutex);
2928
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002929 return 0;
2930
2931err:
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002932 mutex_unlock(&hsotg->init_mutex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002933 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002934 return ret;
2935}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002936
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002937/**
2938 * s3c_hsotg_udc_stop - stop the udc
2939 * @gadget: The usb gadget state
2940 * @driver: The usb gadget driver
2941 *
2942 * Stop udc hw block and stay tunned for future transmissions
2943 */
Felipe Balbi22835b82014-10-17 12:05:12 -05002944static int s3c_hsotg_udc_stop(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002945{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002946 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002947 unsigned long flags = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002948 int ep;
2949
2950 if (!hsotg)
2951 return -ENODEV;
2952
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002953 mutex_lock(&hsotg->init_mutex);
2954
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002955 /* all endpoints should be shutdown */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002956 for (ep = 1; ep < hsotg->num_of_eps; ep++) {
2957 if (hsotg->eps_in[ep])
2958 s3c_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
2959 if (hsotg->eps_out[ep])
2960 s3c_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
2961 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002962
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002963 spin_lock_irqsave(&hsotg->lock, flags);
2964
Marek Szyprowski32805c32014-10-20 12:45:33 +02002965 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002966 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01002967 hsotg->enabled = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002968
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002969 spin_unlock_irqrestore(&hsotg->lock, flags);
2970
Gregory Herrerof6c01592015-01-09 13:38:41 +01002971 if (!IS_ERR_OR_NULL(hsotg->uphy))
2972 otg_set_peripheral(hsotg->uphy->otg, NULL);
Marek Szyprowskic816c472014-10-20 12:45:37 +02002973 s3c_hsotg_phy_disable(hsotg);
2974
Marek Szyprowskic8c10252013-09-12 16:18:48 +02002975 regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002976
Robert Baldygad00b4142014-09-09 10:44:57 +02002977 clk_disable(hsotg->clk);
2978
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002979 mutex_unlock(&hsotg->init_mutex);
2980
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002981 return 0;
2982}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002983
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002984/**
2985 * s3c_hsotg_gadget_getframe - read the frame number
2986 * @gadget: The usb gadget state
2987 *
2988 * Read the {micro} frame number
2989 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002990static int s3c_hsotg_gadget_getframe(struct usb_gadget *gadget)
2991{
2992 return s3c_hsotg_read_frameno(to_hsotg(gadget));
2993}
2994
Lukasz Majewskia188b682012-06-22 09:29:56 +02002995/**
2996 * s3c_hsotg_pullup - connect/disconnect the USB PHY
2997 * @gadget: The usb gadget state
2998 * @is_on: Current state of the USB PHY
2999 *
3000 * Connect/Disconnect the USB PHY pullup
3001 */
3002static int s3c_hsotg_pullup(struct usb_gadget *gadget, int is_on)
3003{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003004 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003005 unsigned long flags = 0;
3006
Andrzej Pietrasiewiczd784f1e2014-09-09 10:44:53 +02003007 dev_dbg(hsotg->dev, "%s: is_on: %d\n", __func__, is_on);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003008
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003009 mutex_lock(&hsotg->init_mutex);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003010 spin_lock_irqsave(&hsotg->lock, flags);
3011 if (is_on) {
Robert Baldygad00b4142014-09-09 10:44:57 +02003012 clk_enable(hsotg->clk);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003013 hsotg->enabled = 1;
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003014 s3c_hsotg_core_connect(hsotg);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003015 } else {
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02003016 s3c_hsotg_core_disconnect(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003017 hsotg->enabled = 0;
Robert Baldygad00b4142014-09-09 10:44:57 +02003018 clk_disable(hsotg->clk);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003019 }
3020
3021 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3022 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003023 mutex_unlock(&hsotg->init_mutex);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003024
3025 return 0;
3026}
3027
Gregory Herrero83d98222015-01-09 13:39:02 +01003028static int s3c_hsotg_vbus_session(struct usb_gadget *gadget, int is_active)
3029{
3030 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
3031 unsigned long flags;
3032
3033 dev_dbg(hsotg->dev, "%s: is_active: %d\n", __func__, is_active);
3034 spin_lock_irqsave(&hsotg->lock, flags);
3035
3036 if (is_active) {
3037 /* Kill any ep0 requests as controller will be reinitialized */
3038 kill_all_requests(hsotg, hsotg->eps_out[0], -ECONNRESET);
3039 s3c_hsotg_core_init_disconnected(hsotg);
3040 if (hsotg->enabled)
3041 s3c_hsotg_core_connect(hsotg);
3042 } else {
3043 s3c_hsotg_core_disconnect(hsotg);
3044 s3c_hsotg_disconnect(hsotg);
3045 }
3046
3047 spin_unlock_irqrestore(&hsotg->lock, flags);
3048 return 0;
3049}
3050
Felipe Balbieeef4582013-01-24 17:58:16 +02003051static const struct usb_gadget_ops s3c_hsotg_gadget_ops = {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003052 .get_frame = s3c_hsotg_gadget_getframe,
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003053 .udc_start = s3c_hsotg_udc_start,
3054 .udc_stop = s3c_hsotg_udc_stop,
Lukasz Majewskia188b682012-06-22 09:29:56 +02003055 .pullup = s3c_hsotg_pullup,
Gregory Herrero83d98222015-01-09 13:39:02 +01003056 .vbus_session = s3c_hsotg_vbus_session,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003057};
3058
3059/**
3060 * s3c_hsotg_initep - initialise a single endpoint
3061 * @hsotg: The device state.
3062 * @hs_ep: The endpoint to be initialised.
3063 * @epnum: The endpoint number
3064 *
3065 * Initialise the given endpoint (as part of the probe and device state
3066 * creation) to give to the gadget driver. Setup the endpoint name, any
3067 * direction information and other state that may be required.
3068 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003069static void s3c_hsotg_initep(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003070 struct s3c_hsotg_ep *hs_ep,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003071 int epnum,
3072 bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003073{
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003074 char *dir;
3075
3076 if (epnum == 0)
3077 dir = "";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003078 else if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003079 dir = "in";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003080 else
3081 dir = "out";
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003082
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003083 hs_ep->dir_in = dir_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003084 hs_ep->index = epnum;
3085
3086 snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
3087
3088 INIT_LIST_HEAD(&hs_ep->queue);
3089 INIT_LIST_HEAD(&hs_ep->ep.ep_list);
3090
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003091 /* add to the list of endpoints known by the gadget driver */
3092 if (epnum)
3093 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
3094
3095 hs_ep->parent = hsotg;
3096 hs_ep->ep.name = hs_ep->name;
Robert Baldygae117e742013-12-13 12:23:38 +01003097 usb_ep_set_maxpacket_limit(&hs_ep->ep, epnum ? 1024 : EP0_MPS_LIMIT);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003098 hs_ep->ep.ops = &s3c_hsotg_ep_ops;
3099
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003100 /*
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003101 * if we're using dma, we need to set the next-endpoint pointer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003102 * to be something valid.
3103 */
3104
3105 if (using_dma(hsotg)) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003106 u32 next = DXEPCTL_NEXTEP((epnum + 1) % 15);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003107 if (dir_in)
3108 writel(next, hsotg->regs + DIEPCTL(epnum));
3109 else
3110 writel(next, hsotg->regs + DOEPCTL(epnum));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003111 }
3112}
3113
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003114/**
3115 * s3c_hsotg_hw_cfg - read HW configuration registers
3116 * @param: The device state
3117 *
3118 * Read the USB core HW configuration registers
3119 */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003120static int s3c_hsotg_hw_cfg(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003121{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003122 u32 cfg;
3123 u32 ep_type;
3124 u32 i;
3125
Ben Dooks10aebc72010-07-19 09:40:44 +01003126 /* check hardware configuration */
3127
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003128 cfg = readl(hsotg->regs + GHWCFG2);
3129 hsotg->num_of_eps = (cfg >> 10) & 0xF;
3130 /* Add ep0 */
3131 hsotg->num_of_eps++;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003132
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003133 hsotg->eps_in[0] = devm_kzalloc(hsotg->dev, sizeof(struct s3c_hsotg_ep),
3134 GFP_KERNEL);
3135 if (!hsotg->eps_in[0])
3136 return -ENOMEM;
3137 /* Same s3c_hsotg_ep is used in both directions for ep0 */
3138 hsotg->eps_out[0] = hsotg->eps_in[0];
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003139
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003140 cfg = readl(hsotg->regs + GHWCFG1);
3141 for (i = 1; i < hsotg->num_of_eps; i++, cfg >>= 2) {
3142 ep_type = cfg & 3;
3143 /* Direction in or both */
3144 if (!(ep_type & 2)) {
3145 hsotg->eps_in[i] = devm_kzalloc(hsotg->dev,
3146 sizeof(struct s3c_hsotg_ep), GFP_KERNEL);
3147 if (!hsotg->eps_in[i])
3148 return -ENOMEM;
3149 }
3150 /* Direction out or both */
3151 if (!(ep_type & 1)) {
3152 hsotg->eps_out[i] = devm_kzalloc(hsotg->dev,
3153 sizeof(struct s3c_hsotg_ep), GFP_KERNEL);
3154 if (!hsotg->eps_out[i])
3155 return -ENOMEM;
3156 }
3157 }
3158
3159 cfg = readl(hsotg->regs + GHWCFG3);
3160 hsotg->fifo_mem = (cfg >> 16);
3161
3162 cfg = readl(hsotg->regs + GHWCFG4);
3163 hsotg->dedicated_fifos = (cfg >> 25) & 1;
Ben Dooks10aebc72010-07-19 09:40:44 +01003164
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02003165 dev_info(hsotg->dev, "EPs: %d, %s fifos, %d entries in SPRAM\n",
3166 hsotg->num_of_eps,
3167 hsotg->dedicated_fifos ? "dedicated" : "shared",
3168 hsotg->fifo_mem);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003169 return 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003170}
3171
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003172/**
3173 * s3c_hsotg_dump - dump state of the udc
3174 * @param: The device state
3175 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003176static void s3c_hsotg_dump(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003177{
Mark Brown83a01802011-06-01 17:16:15 +01003178#ifdef DEBUG
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003179 struct device *dev = hsotg->dev;
3180 void __iomem *regs = hsotg->regs;
3181 u32 val;
3182 int idx;
3183
3184 dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003185 readl(regs + DCFG), readl(regs + DCTL),
3186 readl(regs + DIEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003187
3188 dev_info(dev, "GAHBCFG=0x%08x, 0x44=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003189 readl(regs + GAHBCFG), readl(regs + 0x44));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003190
3191 dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003192 readl(regs + GRXFSIZ), readl(regs + GNPTXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003193
3194 /* show periodic fifo settings */
3195
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003196 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003197 val = readl(regs + DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003198 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003199 val >> FIFOSIZE_DEPTH_SHIFT,
3200 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003201 }
3202
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003203 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003204 dev_info(dev,
3205 "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003206 readl(regs + DIEPCTL(idx)),
3207 readl(regs + DIEPTSIZ(idx)),
3208 readl(regs + DIEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003209
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003210 val = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003211 dev_info(dev,
3212 "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003213 idx, readl(regs + DOEPCTL(idx)),
3214 readl(regs + DOEPTSIZ(idx)),
3215 readl(regs + DOEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003216
3217 }
3218
3219 dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003220 readl(regs + DVBUSDIS), readl(regs + DVBUSPULSE));
Mark Brown83a01802011-06-01 17:16:15 +01003221#endif
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003222}
3223
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003224/**
3225 * state_show - debugfs: show overall driver and device state.
3226 * @seq: The seq file to write to.
3227 * @v: Unused parameter.
3228 *
3229 * This debugfs entry shows the overall state of the hardware and
3230 * some general information about each of the endpoints available
3231 * to the system.
3232 */
3233static int state_show(struct seq_file *seq, void *v)
3234{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003235 struct dwc2_hsotg *hsotg = seq->private;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003236 void __iomem *regs = hsotg->regs;
3237 int idx;
3238
3239 seq_printf(seq, "DCFG=0x%08x, DCTL=0x%08x, DSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003240 readl(regs + DCFG),
3241 readl(regs + DCTL),
3242 readl(regs + DSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003243
3244 seq_printf(seq, "DIEPMSK=0x%08x, DOEPMASK=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003245 readl(regs + DIEPMSK), readl(regs + DOEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003246
3247 seq_printf(seq, "GINTMSK=0x%08x, GINTSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003248 readl(regs + GINTMSK),
3249 readl(regs + GINTSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003250
3251 seq_printf(seq, "DAINTMSK=0x%08x, DAINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003252 readl(regs + DAINTMSK),
3253 readl(regs + DAINT));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003254
3255 seq_printf(seq, "GNPTXSTS=0x%08x, GRXSTSR=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003256 readl(regs + GNPTXSTS),
3257 readl(regs + GRXSTSR));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003258
Pavel Macheka023da32013-09-30 14:56:02 +02003259 seq_puts(seq, "\nEndpoint status:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003260
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003261 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003262 u32 in, out;
3263
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003264 in = readl(regs + DIEPCTL(idx));
3265 out = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003266
3267 seq_printf(seq, "ep%d: DIEPCTL=0x%08x, DOEPCTL=0x%08x",
3268 idx, in, out);
3269
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003270 in = readl(regs + DIEPTSIZ(idx));
3271 out = readl(regs + DOEPTSIZ(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003272
3273 seq_printf(seq, ", DIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x",
3274 in, out);
3275
Pavel Macheka023da32013-09-30 14:56:02 +02003276 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003277 }
3278
3279 return 0;
3280}
3281
3282static int state_open(struct inode *inode, struct file *file)
3283{
3284 return single_open(file, state_show, inode->i_private);
3285}
3286
3287static const struct file_operations state_fops = {
3288 .owner = THIS_MODULE,
3289 .open = state_open,
3290 .read = seq_read,
3291 .llseek = seq_lseek,
3292 .release = single_release,
3293};
3294
3295/**
3296 * fifo_show - debugfs: show the fifo information
3297 * @seq: The seq_file to write data to.
3298 * @v: Unused parameter.
3299 *
3300 * Show the FIFO information for the overall fifo and all the
3301 * periodic transmission FIFOs.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003302 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003303static int fifo_show(struct seq_file *seq, void *v)
3304{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003305 struct dwc2_hsotg *hsotg = seq->private;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003306 void __iomem *regs = hsotg->regs;
3307 u32 val;
3308 int idx;
3309
Pavel Macheka023da32013-09-30 14:56:02 +02003310 seq_puts(seq, "Non-periodic FIFOs:\n");
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003311 seq_printf(seq, "RXFIFO: Size %d\n", readl(regs + GRXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003312
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003313 val = readl(regs + GNPTXFSIZ);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003314 seq_printf(seq, "NPTXFIFO: Size %d, Start 0x%08x\n",
Dinh Nguyen47a16852014-04-14 14:13:34 -07003315 val >> FIFOSIZE_DEPTH_SHIFT,
3316 val & FIFOSIZE_DEPTH_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003317
Pavel Macheka023da32013-09-30 14:56:02 +02003318 seq_puts(seq, "\nPeriodic TXFIFOs:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003319
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003320 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003321 val = readl(regs + DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003322
3323 seq_printf(seq, "\tDPTXFIFO%2d: Size %d, Start 0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003324 val >> FIFOSIZE_DEPTH_SHIFT,
3325 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003326 }
3327
3328 return 0;
3329}
3330
3331static int fifo_open(struct inode *inode, struct file *file)
3332{
3333 return single_open(file, fifo_show, inode->i_private);
3334}
3335
3336static const struct file_operations fifo_fops = {
3337 .owner = THIS_MODULE,
3338 .open = fifo_open,
3339 .read = seq_read,
3340 .llseek = seq_lseek,
3341 .release = single_release,
3342};
3343
3344
3345static const char *decode_direction(int is_in)
3346{
3347 return is_in ? "in" : "out";
3348}
3349
3350/**
3351 * ep_show - debugfs: show the state of an endpoint.
3352 * @seq: The seq_file to write data to.
3353 * @v: Unused parameter.
3354 *
3355 * This debugfs entry shows the state of the given endpoint (one is
3356 * registered for each available).
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003357 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003358static int ep_show(struct seq_file *seq, void *v)
3359{
3360 struct s3c_hsotg_ep *ep = seq->private;
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003361 struct dwc2_hsotg *hsotg = ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003362 struct s3c_hsotg_req *req;
3363 void __iomem *regs = hsotg->regs;
3364 int index = ep->index;
3365 int show_limit = 15;
3366 unsigned long flags;
3367
3368 seq_printf(seq, "Endpoint index %d, named %s, dir %s:\n",
3369 ep->index, ep->ep.name, decode_direction(ep->dir_in));
3370
3371 /* first show the register state */
3372
3373 seq_printf(seq, "\tDIEPCTL=0x%08x, DOEPCTL=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003374 readl(regs + DIEPCTL(index)),
3375 readl(regs + DOEPCTL(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003376
3377 seq_printf(seq, "\tDIEPDMA=0x%08x, DOEPDMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003378 readl(regs + DIEPDMA(index)),
3379 readl(regs + DOEPDMA(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003380
3381 seq_printf(seq, "\tDIEPINT=0x%08x, DOEPINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003382 readl(regs + DIEPINT(index)),
3383 readl(regs + DOEPINT(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003384
3385 seq_printf(seq, "\tDIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003386 readl(regs + DIEPTSIZ(index)),
3387 readl(regs + DOEPTSIZ(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003388
Pavel Macheka023da32013-09-30 14:56:02 +02003389 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003390 seq_printf(seq, "mps %d\n", ep->ep.maxpacket);
3391 seq_printf(seq, "total_data=%ld\n", ep->total_data);
3392
3393 seq_printf(seq, "request list (%p,%p):\n",
3394 ep->queue.next, ep->queue.prev);
3395
Lukasz Majewski22258f42012-06-14 10:02:24 +02003396 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003397
3398 list_for_each_entry(req, &ep->queue, queue) {
3399 if (--show_limit < 0) {
Pavel Macheka023da32013-09-30 14:56:02 +02003400 seq_puts(seq, "not showing more requests...\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003401 break;
3402 }
3403
3404 seq_printf(seq, "%c req %p: %d bytes @%p, ",
3405 req == ep->req ? '*' : ' ',
3406 req, req->req.length, req->req.buf);
3407 seq_printf(seq, "%d done, res %d\n",
3408 req->req.actual, req->req.status);
3409 }
3410
Lukasz Majewski22258f42012-06-14 10:02:24 +02003411 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003412
3413 return 0;
3414}
3415
3416static int ep_open(struct inode *inode, struct file *file)
3417{
3418 return single_open(file, ep_show, inode->i_private);
3419}
3420
3421static const struct file_operations ep_fops = {
3422 .owner = THIS_MODULE,
3423 .open = ep_open,
3424 .read = seq_read,
3425 .llseek = seq_lseek,
3426 .release = single_release,
3427};
3428
3429/**
3430 * s3c_hsotg_create_debug - create debugfs directory and files
3431 * @hsotg: The driver state
3432 *
3433 * Create the debugfs files to allow the user to get information
3434 * about the state of the system. The directory name is created
3435 * with the same name as the device itself, in case we end up
3436 * with multiple blocks in future systems.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003437 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003438static void s3c_hsotg_create_debug(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003439{
3440 struct dentry *root;
3441 unsigned epidx;
3442
3443 root = debugfs_create_dir(dev_name(hsotg->dev), NULL);
3444 hsotg->debug_root = root;
3445 if (IS_ERR(root)) {
3446 dev_err(hsotg->dev, "cannot create debug root\n");
3447 return;
3448 }
3449
3450 /* create general state file */
3451
3452 hsotg->debug_file = debugfs_create_file("state", 0444, root,
3453 hsotg, &state_fops);
3454
3455 if (IS_ERR(hsotg->debug_file))
3456 dev_err(hsotg->dev, "%s: failed to create state\n", __func__);
3457
3458 hsotg->debug_fifo = debugfs_create_file("fifo", 0444, root,
3459 hsotg, &fifo_fops);
3460
3461 if (IS_ERR(hsotg->debug_fifo))
3462 dev_err(hsotg->dev, "%s: failed to create fifo\n", __func__);
3463
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003464 /* Create one file for each out endpoint */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003465 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003466 struct s3c_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003467
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003468 ep = hsotg->eps_out[epidx];
3469 if (ep) {
3470 ep->debugfs = debugfs_create_file(ep->name, 0444,
3471 root, ep, &ep_fops);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003472
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003473 if (IS_ERR(ep->debugfs))
3474 dev_err(hsotg->dev, "failed to create %s debug file\n",
3475 ep->name);
3476 }
3477 }
3478 /* Create one file for each in endpoint. EP0 is handled with out eps */
3479 for (epidx = 1; epidx < hsotg->num_of_eps; epidx++) {
3480 struct s3c_hsotg_ep *ep;
3481
3482 ep = hsotg->eps_in[epidx];
3483 if (ep) {
3484 ep->debugfs = debugfs_create_file(ep->name, 0444,
3485 root, ep, &ep_fops);
3486
3487 if (IS_ERR(ep->debugfs))
3488 dev_err(hsotg->dev, "failed to create %s debug file\n",
3489 ep->name);
3490 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003491 }
3492}
3493
3494/**
3495 * s3c_hsotg_delete_debug - cleanup debugfs entries
3496 * @hsotg: The driver state
3497 *
3498 * Cleanup (remove) the debugfs files for use on module exit.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003499 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003500static void s3c_hsotg_delete_debug(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003501{
3502 unsigned epidx;
3503
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003504 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003505 if (hsotg->eps_in[epidx])
3506 debugfs_remove(hsotg->eps_in[epidx]->debugfs);
3507 if (hsotg->eps_out[epidx])
3508 debugfs_remove(hsotg->eps_out[epidx]->debugfs);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003509 }
3510
3511 debugfs_remove(hsotg->debug_file);
3512 debugfs_remove(hsotg->debug_fifo);
3513 debugfs_remove(hsotg->debug_root);
3514}
3515
Gregory Herreroedd74be2015-01-09 13:38:48 +01003516#ifdef CONFIG_OF
3517static void s3c_hsotg_of_probe(struct dwc2_hsotg *hsotg)
3518{
3519 struct device_node *np = hsotg->dev->of_node;
Gregory Herrero0a176272015-01-09 13:38:52 +01003520 u32 len = 0;
3521 u32 i = 0;
Gregory Herreroedd74be2015-01-09 13:38:48 +01003522
3523 /* Enable dma if requested in device tree */
3524 hsotg->g_using_dma = of_property_read_bool(np, "g-use-dma");
Gregory Herrero0a176272015-01-09 13:38:52 +01003525
3526 /*
3527 * Register TX periodic fifo size per endpoint.
3528 * EP0 is excluded since it has no fifo configuration.
3529 */
3530 if (!of_find_property(np, "g-tx-fifo-size", &len))
3531 goto rx_fifo;
3532
3533 len /= sizeof(u32);
3534
3535 /* Read tx fifo sizes other than ep0 */
3536 if (of_property_read_u32_array(np, "g-tx-fifo-size",
3537 &hsotg->g_tx_fifo_sz[1], len))
3538 goto rx_fifo;
3539
3540 /* Add ep0 */
3541 len++;
3542
3543 /* Make remaining TX fifos unavailable */
3544 if (len < MAX_EPS_CHANNELS) {
3545 for (i = len; i < MAX_EPS_CHANNELS; i++)
3546 hsotg->g_tx_fifo_sz[i] = 0;
3547 }
3548
3549rx_fifo:
3550 /* Register RX fifo size */
3551 of_property_read_u32(np, "g-rx-fifo-size", &hsotg->g_rx_fifo_sz);
3552
3553 /* Register NPTX fifo size */
3554 of_property_read_u32(np, "g-np-tx-fifo-size",
3555 &hsotg->g_np_g_tx_fifo_sz);
Gregory Herreroedd74be2015-01-09 13:38:48 +01003556}
3557#else
3558static inline void s3c_hsotg_of_probe(struct dwc2_hsotg *hsotg) { }
3559#endif
3560
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003561/**
Dinh Nguyen117777b2014-11-11 11:13:34 -06003562 * dwc2_gadget_init - init function for gadget
3563 * @dwc2: The data structure for the DWC2 driver.
3564 * @irq: The IRQ number for the controller.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003565 */
Dinh Nguyen117777b2014-11-11 11:13:34 -06003566int dwc2_gadget_init(struct dwc2_hsotg *hsotg, int irq)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003567{
Dinh Nguyen117777b2014-11-11 11:13:34 -06003568 struct device *dev = hsotg->dev;
3569 struct s3c_hsotg_plat *plat = dev->platform_data;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003570 int epnum;
3571 int ret;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003572 int i;
Gregory Herrero0a176272015-01-09 13:38:52 +01003573 u32 p_tx_fifo[] = DWC2_G_P_LEGACY_TX_FIFO_SIZE;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003574
Kamil Debski1b59fc72014-09-09 10:44:52 +02003575 /* Set default UTMI width */
3576 hsotg->phyif = GUSBCFG_PHYIF16;
3577
Gregory Herreroedd74be2015-01-09 13:38:48 +01003578 s3c_hsotg_of_probe(hsotg);
3579
Gregory Herrero0a176272015-01-09 13:38:52 +01003580 /* Initialize to legacy fifo configuration values */
3581 hsotg->g_rx_fifo_sz = 2048;
3582 hsotg->g_np_g_tx_fifo_sz = 1024;
3583 memcpy(&hsotg->g_tx_fifo_sz[1], p_tx_fifo, sizeof(p_tx_fifo));
3584 /* Device tree specific probe */
3585 s3c_hsotg_of_probe(hsotg);
3586 /* Dump fifo information */
3587 dev_dbg(dev, "NonPeriodic TXFIFO size: %d\n",
3588 hsotg->g_np_g_tx_fifo_sz);
3589 dev_dbg(dev, "RXFIFO size: %d\n", hsotg->g_rx_fifo_sz);
3590 for (i = 0; i < MAX_EPS_CHANNELS; i++)
3591 dev_dbg(dev, "Periodic TXFIFO%2d size: %d\n", i,
3592 hsotg->g_tx_fifo_sz[i]);
Matt Porter74084842013-12-19 09:23:06 -05003593 /*
Yunzhi Li135b3c42014-12-08 17:46:26 +08003594 * If platform probe couldn't find a generic PHY or an old style
3595 * USB PHY, fall back to pdata
Matt Porter74084842013-12-19 09:23:06 -05003596 */
Yunzhi Li135b3c42014-12-08 17:46:26 +08003597 if (IS_ERR_OR_NULL(hsotg->phy) && IS_ERR_OR_NULL(hsotg->uphy)) {
3598 plat = dev_get_platdata(dev);
3599 if (!plat) {
3600 dev_err(dev,
3601 "no platform data or transceiver defined\n");
3602 return -EPROBE_DEFER;
3603 }
3604 hsotg->plat = plat;
3605 } else if (hsotg->phy) {
Kamil Debski1b59fc72014-09-09 10:44:52 +02003606 /*
3607 * If using the generic PHY framework, check if the PHY bus
3608 * width is 8-bit and set the phyif appropriately.
3609 */
Yunzhi Li135b3c42014-12-08 17:46:26 +08003610 if (phy_get_bus_width(hsotg->phy) == 8)
Kamil Debski1b59fc72014-09-09 10:44:52 +02003611 hsotg->phyif = GUSBCFG_PHYIF8;
3612 }
Praveen Panerib2e587d2012-11-14 15:57:16 +05303613
Dinh Nguyen117777b2014-11-11 11:13:34 -06003614 hsotg->clk = devm_clk_get(dev, "otg");
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003615 if (IS_ERR(hsotg->clk)) {
Dinh Nguyen8d736d82014-11-11 11:13:38 -06003616 hsotg->clk = NULL;
Dinh Nguyenf415fbd2014-11-24 11:02:11 -06003617 dev_dbg(dev, "cannot get otg clock\n");
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003618 }
3619
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01003620 hsotg->gadget.max_speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003621 hsotg->gadget.ops = &s3c_hsotg_gadget_ops;
3622 hsotg->gadget.name = dev_name(dev);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003623
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003624 /* reset the system */
3625
Dinh Nguyenf415fbd2014-11-24 11:02:11 -06003626 ret = clk_prepare_enable(hsotg->clk);
3627 if (ret) {
3628 dev_err(dev, "failed to enable otg clk\n");
3629 goto err_clk;
3630 }
3631
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003632
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003633 /* regulators */
3634
3635 for (i = 0; i < ARRAY_SIZE(hsotg->supplies); i++)
3636 hsotg->supplies[i].supply = s3c_hsotg_supply_names[i];
3637
Sachin Kamatcd762132013-01-08 14:27:00 +05303638 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(hsotg->supplies),
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003639 hsotg->supplies);
3640 if (ret) {
3641 dev_err(dev, "failed to request supplies: %d\n", ret);
Sachin Kamat338edab2012-05-18 14:33:46 +05303642 goto err_clk;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003643 }
3644
3645 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
3646 hsotg->supplies);
3647
3648 if (ret) {
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003649 dev_err(dev, "failed to enable supplies: %d\n", ret);
Mian Yousaf Kaukabc139ec22015-01-09 13:38:45 +01003650 goto err_clk;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003651 }
3652
Lukasz Majewski41188782012-05-04 14:17:01 +02003653 /* usb phy enable */
3654 s3c_hsotg_phy_enable(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003655
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003656 s3c_hsotg_corereset(hsotg);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003657 ret = s3c_hsotg_hw_cfg(hsotg);
3658 if (ret) {
3659 dev_err(hsotg->dev, "Hardware configuration failed: %d\n", ret);
3660 goto err_clk;
3661 }
3662
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02003663 s3c_hsotg_init(hsotg);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003664
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01003665 hsotg->ctrl_buff = devm_kzalloc(hsotg->dev,
3666 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
3667 if (!hsotg->ctrl_buff) {
3668 dev_err(dev, "failed to allocate ctrl request buff\n");
3669 ret = -ENOMEM;
3670 goto err_supplies;
3671 }
3672
3673 hsotg->ep0_buff = devm_kzalloc(hsotg->dev,
3674 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
3675 if (!hsotg->ep0_buff) {
3676 dev_err(dev, "failed to allocate ctrl reply buff\n");
3677 ret = -ENOMEM;
3678 goto err_supplies;
3679 }
3680
Dinh Nguyendb8178c2014-11-11 11:13:37 -06003681 ret = devm_request_irq(hsotg->dev, irq, s3c_hsotg_irq, IRQF_SHARED,
3682 dev_name(hsotg->dev), hsotg);
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02003683 if (ret < 0) {
3684 s3c_hsotg_phy_disable(hsotg);
3685 clk_disable_unprepare(hsotg->clk);
3686 regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3687 hsotg->supplies);
Dinh Nguyendb8178c2014-11-11 11:13:37 -06003688 dev_err(dev, "cannot claim IRQ for gadget\n");
Mian Yousaf Kaukabc139ec22015-01-09 13:38:45 +01003689 goto err_supplies;
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02003690 }
3691
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003692 /* hsotg->num_of_eps holds number of EPs other than ep0 */
3693
3694 if (hsotg->num_of_eps == 0) {
3695 dev_err(dev, "wrong number of EPs (zero)\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003696 ret = -EINVAL;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003697 goto err_supplies;
3698 }
3699
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003700 /* setup endpoint information */
3701
3702 INIT_LIST_HEAD(&hsotg->gadget.ep_list);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003703 hsotg->gadget.ep0 = &hsotg->eps_out[0]->ep;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003704
3705 /* allocate EP0 request */
3706
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003707 hsotg->ctrl_req = s3c_hsotg_ep_alloc_request(&hsotg->eps_out[0]->ep,
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003708 GFP_KERNEL);
3709 if (!hsotg->ctrl_req) {
3710 dev_err(dev, "failed to allocate ctrl req\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003711 ret = -ENOMEM;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003712 goto err_supplies;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003713 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003714
3715 /* initialise the endpoints now the core has been initialised */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003716 for (epnum = 0; epnum < hsotg->num_of_eps; epnum++) {
3717 if (hsotg->eps_in[epnum])
3718 s3c_hsotg_initep(hsotg, hsotg->eps_in[epnum],
3719 epnum, 1);
3720 if (hsotg->eps_out[epnum])
3721 s3c_hsotg_initep(hsotg, hsotg->eps_out[epnum],
3722 epnum, 0);
3723 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003724
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003725 /* disable power and clock */
Marek Szyprowski3a8146a2014-10-20 12:45:34 +02003726 s3c_hsotg_phy_disable(hsotg);
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003727
3728 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3729 hsotg->supplies);
3730 if (ret) {
Dinh Nguyen117777b2014-11-11 11:13:34 -06003731 dev_err(dev, "failed to disable supplies: %d\n", ret);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003732 goto err_supplies;
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003733 }
3734
Dinh Nguyen117777b2014-11-11 11:13:34 -06003735 ret = usb_add_gadget_udc(dev, &hsotg->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003736 if (ret)
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003737 goto err_supplies;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003738
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003739 s3c_hsotg_create_debug(hsotg);
3740
3741 s3c_hsotg_dump(hsotg);
3742
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003743 return 0;
3744
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003745err_supplies:
Lukasz Majewski41188782012-05-04 14:17:01 +02003746 s3c_hsotg_phy_disable(hsotg);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003747err_clk:
Lukasz Majewski1d144c62012-05-04 14:17:16 +02003748 clk_disable_unprepare(hsotg->clk);
Sachin Kamat338edab2012-05-18 14:33:46 +05303749
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003750 return ret;
3751}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003752EXPORT_SYMBOL_GPL(dwc2_gadget_init);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003753
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003754/**
3755 * s3c_hsotg_remove - remove function for hsotg driver
3756 * @pdev: The platform information for the driver
3757 */
Dinh Nguyen117777b2014-11-11 11:13:34 -06003758int s3c_hsotg_remove(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003759{
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003760 usb_del_gadget_udc(&hsotg->gadget);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003761 s3c_hsotg_delete_debug(hsotg);
Lukasz Majewski04b4a0f2012-05-04 14:17:15 +02003762 clk_disable_unprepare(hsotg->clk);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003763
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003764 return 0;
3765}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003766EXPORT_SYMBOL_GPL(s3c_hsotg_remove);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003767
Dinh Nguyen117777b2014-11-11 11:13:34 -06003768int s3c_hsotg_suspend(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003769{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003770 unsigned long flags;
3771 int ret = 0;
3772
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003773 mutex_lock(&hsotg->init_mutex);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003774
3775 if (hsotg->driver) {
3776 int ep;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003777
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003778 dev_info(hsotg->dev, "suspending usb gadget %s\n",
3779 hsotg->driver->driver.name);
3780
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003781 spin_lock_irqsave(&hsotg->lock, flags);
3782 if (hsotg->enabled)
3783 s3c_hsotg_core_disconnect(hsotg);
3784 s3c_hsotg_disconnect(hsotg);
3785 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3786 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003787
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003788 s3c_hsotg_phy_disable(hsotg);
Marek Szyprowski7b093f72014-10-20 12:45:39 +02003789
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003790 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
3791 if (hsotg->eps_in[ep])
3792 s3c_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
3793 if (hsotg->eps_out[ep])
3794 s3c_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
3795 }
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003796
3797 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3798 hsotg->supplies);
Robert Baldygad00b4142014-09-09 10:44:57 +02003799 clk_disable(hsotg->clk);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003800 }
3801
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003802 mutex_unlock(&hsotg->init_mutex);
3803
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003804 return ret;
3805}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003806EXPORT_SYMBOL_GPL(s3c_hsotg_suspend);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003807
Dinh Nguyen117777b2014-11-11 11:13:34 -06003808int s3c_hsotg_resume(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003809{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003810 unsigned long flags;
3811 int ret = 0;
3812
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003813 mutex_lock(&hsotg->init_mutex);
3814
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003815 if (hsotg->driver) {
3816 dev_info(hsotg->dev, "resuming usb gadget %s\n",
3817 hsotg->driver->driver.name);
Robert Baldygad00b4142014-09-09 10:44:57 +02003818
3819 clk_enable(hsotg->clk);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003820 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003821 hsotg->supplies);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003822
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003823 s3c_hsotg_phy_enable(hsotg);
3824
3825 spin_lock_irqsave(&hsotg->lock, flags);
3826 s3c_hsotg_core_init_disconnected(hsotg);
3827 if (hsotg->enabled)
3828 s3c_hsotg_core_connect(hsotg);
3829 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003830 }
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003831 mutex_unlock(&hsotg->init_mutex);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003832
3833 return ret;
3834}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003835EXPORT_SYMBOL_GPL(s3c_hsotg_resume);