blob: 54e6d153dfbc6de42c1a5cdc0e3a2bd44ac7b995 [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
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002531 /*
2532 * if the hardware has dedicated fifos, we must give each IN EP
Ben Dooks10aebc72010-07-19 09:40:44 +01002533 * a unique tx-fifo even if it is non-periodic.
2534 */
Robert Baldygab203d0a2014-09-09 10:44:56 +02002535 if (dir_in && hsotg->dedicated_fifos) {
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002536 u32 fifo_index = 0;
2537 u32 fifo_size = UINT_MAX;
Robert Baldygab203d0a2014-09-09 10:44:56 +02002538 size = hs_ep->ep.maxpacket*hs_ep->mc;
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01002539 for (i = 1; i < hsotg->num_of_eps; ++i) {
Robert Baldygab203d0a2014-09-09 10:44:56 +02002540 if (hsotg->fifo_map & (1<<i))
2541 continue;
2542 val = readl(hsotg->regs + DPTXFSIZN(i));
2543 val = (val >> FIFOSIZE_DEPTH_SHIFT)*4;
2544 if (val < size)
2545 continue;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002546 /* Search for smallest acceptable fifo */
2547 if (val < fifo_size) {
2548 fifo_size = val;
2549 fifo_index = i;
2550 }
Robert Baldygab203d0a2014-09-09 10:44:56 +02002551 }
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002552 if (!fifo_index) {
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01002553 dev_err(hsotg->dev,
2554 "%s: No suitable fifo found\n", __func__);
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05302555 ret = -ENOMEM;
2556 goto error;
2557 }
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01002558 hsotg->fifo_map |= 1 << fifo_index;
2559 epctrl |= DXEPCTL_TXFNUM(fifo_index);
2560 hs_ep->fifo_index = fifo_index;
2561 hs_ep->fifo_size = fifo_size;
Robert Baldygab203d0a2014-09-09 10:44:56 +02002562 }
Ben Dooks10aebc72010-07-19 09:40:44 +01002563
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002564 /* for non control endpoints, set PID to D0 */
2565 if (index)
Dinh Nguyen47a16852014-04-14 14:13:34 -07002566 epctrl |= DXEPCTL_SETD0PID;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002567
2568 dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
2569 __func__, epctrl);
2570
2571 writel(epctrl, hsotg->regs + epctrl_reg);
2572 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
2573 __func__, readl(hsotg->regs + epctrl_reg));
2574
2575 /* enable the endpoint interrupt */
2576 s3c_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
2577
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05302578error:
Lukasz Majewski22258f42012-06-14 10:02:24 +02002579 spin_unlock_irqrestore(&hsotg->lock, flags);
Julia Lawall19c190f2010-03-29 17:36:44 +02002580 return ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002581}
2582
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002583/**
2584 * s3c_hsotg_ep_disable - disable given endpoint
2585 * @ep: The endpoint to disable.
2586 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002587static int s3c_hsotg_ep_disable(struct usb_ep *ep)
2588{
2589 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002590 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002591 int dir_in = hs_ep->dir_in;
2592 int index = hs_ep->index;
2593 unsigned long flags;
2594 u32 epctrl_reg;
2595 u32 ctrl;
2596
Marek Szyprowski1e011292014-09-09 10:44:54 +02002597 dev_dbg(hsotg->dev, "%s(ep %p)\n", __func__, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002598
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002599 if (ep == &hsotg->eps_out[0]->ep) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002600 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
2601 return -EINVAL;
2602 }
2603
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002604 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002605
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002606 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002607
Robert Baldygab203d0a2014-09-09 10:44:56 +02002608 hsotg->fifo_map &= ~(1<<hs_ep->fifo_index);
2609 hs_ep->fifo_index = 0;
2610 hs_ep->fifo_size = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002611
2612 ctrl = readl(hsotg->regs + epctrl_reg);
Dinh Nguyen47a16852014-04-14 14:13:34 -07002613 ctrl &= ~DXEPCTL_EPENA;
2614 ctrl &= ~DXEPCTL_USBACTEP;
2615 ctrl |= DXEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002616
2617 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
2618 writel(ctrl, hsotg->regs + epctrl_reg);
2619
2620 /* disable endpoint interrupts */
2621 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
2622
Mian Yousaf Kaukab1141ea02015-01-09 13:38:57 +01002623 /* terminate all requests with shutdown */
2624 kill_all_requests(hsotg, hs_ep, -ESHUTDOWN);
2625
Lukasz Majewski22258f42012-06-14 10:02:24 +02002626 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002627 return 0;
2628}
2629
2630/**
2631 * on_list - check request is on the given endpoint
2632 * @ep: The endpoint to check.
2633 * @test: The request to test if it is on the endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002634 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002635static bool on_list(struct s3c_hsotg_ep *ep, struct s3c_hsotg_req *test)
2636{
2637 struct s3c_hsotg_req *req, *treq;
2638
2639 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
2640 if (req == test)
2641 return true;
2642 }
2643
2644 return false;
2645}
2646
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002647/**
2648 * s3c_hsotg_ep_dequeue - dequeue given endpoint
2649 * @ep: The endpoint to dequeue.
2650 * @req: The request to be removed from a queue.
2651 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002652static int s3c_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
2653{
2654 struct s3c_hsotg_req *hs_req = our_req(req);
2655 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002656 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002657 unsigned long flags;
2658
Marek Szyprowski1e011292014-09-09 10:44:54 +02002659 dev_dbg(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002660
Lukasz Majewski22258f42012-06-14 10:02:24 +02002661 spin_lock_irqsave(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002662
2663 if (!on_list(hs_ep, hs_req)) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02002664 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002665 return -EINVAL;
2666 }
2667
2668 s3c_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
Lukasz Majewski22258f42012-06-14 10:02:24 +02002669 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002670
2671 return 0;
2672}
2673
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002674/**
2675 * s3c_hsotg_ep_sethalt - set halt on a given endpoint
2676 * @ep: The endpoint to set halt.
2677 * @value: Set or unset the halt.
2678 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002679static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value)
2680{
2681 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002682 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002683 int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002684 u32 epreg;
2685 u32 epctl;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002686 u32 xfertype;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002687
2688 dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
2689
Robert Baldygac9f721b2014-01-14 08:36:00 +01002690 if (index == 0) {
2691 if (value)
2692 s3c_hsotg_stall_ep0(hs);
2693 else
2694 dev_warn(hs->dev,
2695 "%s: can't clear halt on ep0\n", __func__);
2696 return 0;
2697 }
2698
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002699 if (hs_ep->dir_in) {
2700 epreg = DIEPCTL(index);
2701 epctl = readl(hs->regs + epreg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002702
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002703 if (value) {
2704 epctl |= DXEPCTL_STALL + DXEPCTL_SNAK;
2705 if (epctl & DXEPCTL_EPENA)
2706 epctl |= DXEPCTL_EPDIS;
2707 } else {
2708 epctl &= ~DXEPCTL_STALL;
2709 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
2710 if (xfertype == DXEPCTL_EPTYPE_BULK ||
2711 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
2712 epctl |= DXEPCTL_SETD0PID;
2713 }
2714 writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002715 } else {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002716
2717 epreg = DOEPCTL(index);
2718 epctl = readl(hs->regs + epreg);
2719
2720 if (value)
2721 epctl |= DXEPCTL_STALL;
2722 else {
2723 epctl &= ~DXEPCTL_STALL;
2724 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
2725 if (xfertype == DXEPCTL_EPTYPE_BULK ||
2726 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
2727 epctl |= DXEPCTL_SETD0PID;
2728 }
2729 writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002730 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002731
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02002732 hs_ep->halted = value;
2733
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002734 return 0;
2735}
2736
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002737/**
2738 * s3c_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
2739 * @ep: The endpoint to set halt.
2740 * @value: Set or unset the halt.
2741 */
2742static int s3c_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
2743{
2744 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002745 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002746 unsigned long flags = 0;
2747 int ret = 0;
2748
2749 spin_lock_irqsave(&hs->lock, flags);
2750 ret = s3c_hsotg_ep_sethalt(ep, value);
2751 spin_unlock_irqrestore(&hs->lock, flags);
2752
2753 return ret;
2754}
2755
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002756static struct usb_ep_ops s3c_hsotg_ep_ops = {
2757 .enable = s3c_hsotg_ep_enable,
2758 .disable = s3c_hsotg_ep_disable,
2759 .alloc_request = s3c_hsotg_ep_alloc_request,
2760 .free_request = s3c_hsotg_ep_free_request,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002761 .queue = s3c_hsotg_ep_queue_lock,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002762 .dequeue = s3c_hsotg_ep_dequeue,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002763 .set_halt = s3c_hsotg_ep_sethalt_lock,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002764 /* note, don't believe we have any call for the fifo routines */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002765};
2766
2767/**
Lukasz Majewski41188782012-05-04 14:17:01 +02002768 * s3c_hsotg_phy_enable - enable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002769 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002770 *
2771 * A wrapper for platform code responsible for controlling
2772 * low-level USB code
2773 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002774static void s3c_hsotg_phy_enable(struct dwc2_hsotg *hsotg)
Lukasz Majewski41188782012-05-04 14:17:01 +02002775{
2776 struct platform_device *pdev = to_platform_device(hsotg->dev);
2777
2778 dev_dbg(hsotg->dev, "pdev 0x%p\n", pdev);
Praveen Panerib2e587d2012-11-14 15:57:16 +05302779
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002780 if (hsotg->uphy)
2781 usb_phy_init(hsotg->uphy);
2782 else if (hsotg->plat && hsotg->plat->phy_init)
2783 hsotg->plat->phy_init(pdev, hsotg->plat->phy_type);
2784 else {
Matt Porter74084842013-12-19 09:23:06 -05002785 phy_init(hsotg->phy);
2786 phy_power_on(hsotg->phy);
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002787 }
Lukasz Majewski41188782012-05-04 14:17:01 +02002788}
2789
2790/**
2791 * s3c_hsotg_phy_disable - disable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002792 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002793 *
2794 * A wrapper for platform code responsible for controlling
2795 * low-level USB code
2796 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002797static void s3c_hsotg_phy_disable(struct dwc2_hsotg *hsotg)
Lukasz Majewski41188782012-05-04 14:17:01 +02002798{
2799 struct platform_device *pdev = to_platform_device(hsotg->dev);
2800
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002801 if (hsotg->uphy)
2802 usb_phy_shutdown(hsotg->uphy);
2803 else if (hsotg->plat && hsotg->plat->phy_exit)
2804 hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type);
2805 else {
Matt Porter74084842013-12-19 09:23:06 -05002806 phy_power_off(hsotg->phy);
2807 phy_exit(hsotg->phy);
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002808 }
Lukasz Majewski41188782012-05-04 14:17:01 +02002809}
2810
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002811/**
2812 * s3c_hsotg_init - initalize the usb core
2813 * @hsotg: The driver state
2814 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002815static void s3c_hsotg_init(struct dwc2_hsotg *hsotg)
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002816{
2817 /* unmask subset of endpoint interrupts */
2818
Dinh Nguyen47a16852014-04-14 14:13:34 -07002819 writel(DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK |
2820 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK,
2821 hsotg->regs + DIEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002822
Dinh Nguyen47a16852014-04-14 14:13:34 -07002823 writel(DOEPMSK_SETUPMSK | DOEPMSK_AHBERRMSK |
2824 DOEPMSK_EPDISBLDMSK | DOEPMSK_XFERCOMPLMSK,
2825 hsotg->regs + DOEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002826
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002827 writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002828
2829 /* Be in disconnected state until gadget is registered */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002830 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002831
2832 if (0) {
2833 /* post global nak until we're ready */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002834 writel(DCTL_SGNPINNAK | DCTL_SGOUTNAK,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002835 hsotg->regs + DCTL);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002836 }
2837
2838 /* setup fifos */
2839
2840 dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002841 readl(hsotg->regs + GRXFSIZ),
2842 readl(hsotg->regs + GNPTXFSIZ));
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002843
2844 s3c_hsotg_init_fifo(hsotg);
2845
2846 /* set the PLL on, remove the HNP/SRP and set the PHY */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002847 writel(GUSBCFG_PHYIF16 | GUSBCFG_TOUTCAL(7) | (0x5 << 10),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002848 hsotg->regs + GUSBCFG);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002849
Gregory Herrerof5090042015-01-09 13:38:47 +01002850 if (using_dma(hsotg))
2851 __orr32(hsotg->regs + GAHBCFG, GAHBCFG_DMA_EN);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002852}
2853
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002854/**
2855 * s3c_hsotg_udc_start - prepare the udc for work
2856 * @gadget: The usb gadget state
2857 * @driver: The usb gadget driver
2858 *
2859 * Perform initialization to prepare udc device and driver
2860 * to work.
2861 */
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002862static int s3c_hsotg_udc_start(struct usb_gadget *gadget,
2863 struct usb_gadget_driver *driver)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002864{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002865 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002866 unsigned long flags;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002867 int ret;
2868
2869 if (!hsotg) {
Pavel Macheka023da32013-09-30 14:56:02 +02002870 pr_err("%s: called with no device\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002871 return -ENODEV;
2872 }
2873
2874 if (!driver) {
2875 dev_err(hsotg->dev, "%s: no driver\n", __func__);
2876 return -EINVAL;
2877 }
2878
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01002879 if (driver->max_speed < USB_SPEED_FULL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002880 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002881
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002882 if (!driver->setup) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002883 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
2884 return -EINVAL;
2885 }
2886
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002887 mutex_lock(&hsotg->init_mutex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002888 WARN_ON(hsotg->driver);
2889
2890 driver->driver.bus = NULL;
2891 hsotg->driver = driver;
Alexandre Pereira da Silva7d7b2292012-06-26 11:27:10 -03002892 hsotg->gadget.dev.of_node = hsotg->dev->of_node;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002893 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
2894
Robert Baldygad00b4142014-09-09 10:44:57 +02002895 clk_enable(hsotg->clk);
2896
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002897 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
2898 hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002899 if (ret) {
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002900 dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002901 goto err;
2902 }
2903
Marek Szyprowskic816c472014-10-20 12:45:37 +02002904 s3c_hsotg_phy_enable(hsotg);
Gregory Herrerof6c01592015-01-09 13:38:41 +01002905 if (!IS_ERR_OR_NULL(hsotg->uphy))
2906 otg_set_peripheral(hsotg->uphy->otg, &hsotg->gadget);
Marek Szyprowskic816c472014-10-20 12:45:37 +02002907
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002908 spin_lock_irqsave(&hsotg->lock, flags);
2909 s3c_hsotg_init(hsotg);
2910 s3c_hsotg_core_init_disconnected(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01002911 hsotg->enabled = 0;
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002912 spin_unlock_irqrestore(&hsotg->lock, flags);
2913
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002914 dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002915
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002916 mutex_unlock(&hsotg->init_mutex);
2917
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002918 return 0;
2919
2920err:
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002921 mutex_unlock(&hsotg->init_mutex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002922 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002923 return ret;
2924}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002925
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002926/**
2927 * s3c_hsotg_udc_stop - stop the udc
2928 * @gadget: The usb gadget state
2929 * @driver: The usb gadget driver
2930 *
2931 * Stop udc hw block and stay tunned for future transmissions
2932 */
Felipe Balbi22835b82014-10-17 12:05:12 -05002933static int s3c_hsotg_udc_stop(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002934{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002935 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002936 unsigned long flags = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002937 int ep;
2938
2939 if (!hsotg)
2940 return -ENODEV;
2941
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002942 mutex_lock(&hsotg->init_mutex);
2943
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002944 /* all endpoints should be shutdown */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002945 for (ep = 1; ep < hsotg->num_of_eps; ep++) {
2946 if (hsotg->eps_in[ep])
2947 s3c_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
2948 if (hsotg->eps_out[ep])
2949 s3c_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
2950 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002951
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002952 spin_lock_irqsave(&hsotg->lock, flags);
2953
Marek Szyprowski32805c32014-10-20 12:45:33 +02002954 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002955 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01002956 hsotg->enabled = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002957
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002958 spin_unlock_irqrestore(&hsotg->lock, flags);
2959
Gregory Herrerof6c01592015-01-09 13:38:41 +01002960 if (!IS_ERR_OR_NULL(hsotg->uphy))
2961 otg_set_peripheral(hsotg->uphy->otg, NULL);
Marek Szyprowskic816c472014-10-20 12:45:37 +02002962 s3c_hsotg_phy_disable(hsotg);
2963
Marek Szyprowskic8c10252013-09-12 16:18:48 +02002964 regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002965
Robert Baldygad00b4142014-09-09 10:44:57 +02002966 clk_disable(hsotg->clk);
2967
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002968 mutex_unlock(&hsotg->init_mutex);
2969
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002970 return 0;
2971}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002972
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002973/**
2974 * s3c_hsotg_gadget_getframe - read the frame number
2975 * @gadget: The usb gadget state
2976 *
2977 * Read the {micro} frame number
2978 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002979static int s3c_hsotg_gadget_getframe(struct usb_gadget *gadget)
2980{
2981 return s3c_hsotg_read_frameno(to_hsotg(gadget));
2982}
2983
Lukasz Majewskia188b682012-06-22 09:29:56 +02002984/**
2985 * s3c_hsotg_pullup - connect/disconnect the USB PHY
2986 * @gadget: The usb gadget state
2987 * @is_on: Current state of the USB PHY
2988 *
2989 * Connect/Disconnect the USB PHY pullup
2990 */
2991static int s3c_hsotg_pullup(struct usb_gadget *gadget, int is_on)
2992{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002993 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewskia188b682012-06-22 09:29:56 +02002994 unsigned long flags = 0;
2995
Andrzej Pietrasiewiczd784f1e2014-09-09 10:44:53 +02002996 dev_dbg(hsotg->dev, "%s: is_on: %d\n", __func__, is_on);
Lukasz Majewskia188b682012-06-22 09:29:56 +02002997
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002998 mutex_lock(&hsotg->init_mutex);
Lukasz Majewskia188b682012-06-22 09:29:56 +02002999 spin_lock_irqsave(&hsotg->lock, flags);
3000 if (is_on) {
Robert Baldygad00b4142014-09-09 10:44:57 +02003001 clk_enable(hsotg->clk);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003002 hsotg->enabled = 1;
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003003 s3c_hsotg_core_connect(hsotg);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003004 } else {
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02003005 s3c_hsotg_core_disconnect(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003006 hsotg->enabled = 0;
Robert Baldygad00b4142014-09-09 10:44:57 +02003007 clk_disable(hsotg->clk);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003008 }
3009
3010 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3011 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003012 mutex_unlock(&hsotg->init_mutex);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003013
3014 return 0;
3015}
3016
Gregory Herrero83d98222015-01-09 13:39:02 +01003017static int s3c_hsotg_vbus_session(struct usb_gadget *gadget, int is_active)
3018{
3019 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
3020 unsigned long flags;
3021
3022 dev_dbg(hsotg->dev, "%s: is_active: %d\n", __func__, is_active);
3023 spin_lock_irqsave(&hsotg->lock, flags);
3024
3025 if (is_active) {
3026 /* Kill any ep0 requests as controller will be reinitialized */
3027 kill_all_requests(hsotg, hsotg->eps_out[0], -ECONNRESET);
3028 s3c_hsotg_core_init_disconnected(hsotg);
3029 if (hsotg->enabled)
3030 s3c_hsotg_core_connect(hsotg);
3031 } else {
3032 s3c_hsotg_core_disconnect(hsotg);
3033 s3c_hsotg_disconnect(hsotg);
3034 }
3035
3036 spin_unlock_irqrestore(&hsotg->lock, flags);
3037 return 0;
3038}
3039
Felipe Balbieeef4582013-01-24 17:58:16 +02003040static const struct usb_gadget_ops s3c_hsotg_gadget_ops = {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003041 .get_frame = s3c_hsotg_gadget_getframe,
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003042 .udc_start = s3c_hsotg_udc_start,
3043 .udc_stop = s3c_hsotg_udc_stop,
Lukasz Majewskia188b682012-06-22 09:29:56 +02003044 .pullup = s3c_hsotg_pullup,
Gregory Herrero83d98222015-01-09 13:39:02 +01003045 .vbus_session = s3c_hsotg_vbus_session,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003046};
3047
3048/**
3049 * s3c_hsotg_initep - initialise a single endpoint
3050 * @hsotg: The device state.
3051 * @hs_ep: The endpoint to be initialised.
3052 * @epnum: The endpoint number
3053 *
3054 * Initialise the given endpoint (as part of the probe and device state
3055 * creation) to give to the gadget driver. Setup the endpoint name, any
3056 * direction information and other state that may be required.
3057 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003058static void s3c_hsotg_initep(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003059 struct s3c_hsotg_ep *hs_ep,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003060 int epnum,
3061 bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003062{
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003063 char *dir;
3064
3065 if (epnum == 0)
3066 dir = "";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003067 else if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003068 dir = "in";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003069 else
3070 dir = "out";
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003071
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003072 hs_ep->dir_in = dir_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003073 hs_ep->index = epnum;
3074
3075 snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
3076
3077 INIT_LIST_HEAD(&hs_ep->queue);
3078 INIT_LIST_HEAD(&hs_ep->ep.ep_list);
3079
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003080 /* add to the list of endpoints known by the gadget driver */
3081 if (epnum)
3082 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
3083
3084 hs_ep->parent = hsotg;
3085 hs_ep->ep.name = hs_ep->name;
Robert Baldygae117e742013-12-13 12:23:38 +01003086 usb_ep_set_maxpacket_limit(&hs_ep->ep, epnum ? 1024 : EP0_MPS_LIMIT);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003087 hs_ep->ep.ops = &s3c_hsotg_ep_ops;
3088
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003089 /*
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003090 * if we're using dma, we need to set the next-endpoint pointer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003091 * to be something valid.
3092 */
3093
3094 if (using_dma(hsotg)) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003095 u32 next = DXEPCTL_NEXTEP((epnum + 1) % 15);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003096 if (dir_in)
3097 writel(next, hsotg->regs + DIEPCTL(epnum));
3098 else
3099 writel(next, hsotg->regs + DOEPCTL(epnum));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003100 }
3101}
3102
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003103/**
3104 * s3c_hsotg_hw_cfg - read HW configuration registers
3105 * @param: The device state
3106 *
3107 * Read the USB core HW configuration registers
3108 */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003109static int s3c_hsotg_hw_cfg(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003110{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003111 u32 cfg;
3112 u32 ep_type;
3113 u32 i;
3114
Ben Dooks10aebc72010-07-19 09:40:44 +01003115 /* check hardware configuration */
3116
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003117 cfg = readl(hsotg->regs + GHWCFG2);
3118 hsotg->num_of_eps = (cfg >> 10) & 0xF;
3119 /* Add ep0 */
3120 hsotg->num_of_eps++;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003121
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003122 hsotg->eps_in[0] = devm_kzalloc(hsotg->dev, sizeof(struct s3c_hsotg_ep),
3123 GFP_KERNEL);
3124 if (!hsotg->eps_in[0])
3125 return -ENOMEM;
3126 /* Same s3c_hsotg_ep is used in both directions for ep0 */
3127 hsotg->eps_out[0] = hsotg->eps_in[0];
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003128
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003129 cfg = readl(hsotg->regs + GHWCFG1);
3130 for (i = 1; i < hsotg->num_of_eps; i++, cfg >>= 2) {
3131 ep_type = cfg & 3;
3132 /* Direction in or both */
3133 if (!(ep_type & 2)) {
3134 hsotg->eps_in[i] = devm_kzalloc(hsotg->dev,
3135 sizeof(struct s3c_hsotg_ep), GFP_KERNEL);
3136 if (!hsotg->eps_in[i])
3137 return -ENOMEM;
3138 }
3139 /* Direction out or both */
3140 if (!(ep_type & 1)) {
3141 hsotg->eps_out[i] = devm_kzalloc(hsotg->dev,
3142 sizeof(struct s3c_hsotg_ep), GFP_KERNEL);
3143 if (!hsotg->eps_out[i])
3144 return -ENOMEM;
3145 }
3146 }
3147
3148 cfg = readl(hsotg->regs + GHWCFG3);
3149 hsotg->fifo_mem = (cfg >> 16);
3150
3151 cfg = readl(hsotg->regs + GHWCFG4);
3152 hsotg->dedicated_fifos = (cfg >> 25) & 1;
Ben Dooks10aebc72010-07-19 09:40:44 +01003153
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02003154 dev_info(hsotg->dev, "EPs: %d, %s fifos, %d entries in SPRAM\n",
3155 hsotg->num_of_eps,
3156 hsotg->dedicated_fifos ? "dedicated" : "shared",
3157 hsotg->fifo_mem);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003158 return 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003159}
3160
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003161/**
3162 * s3c_hsotg_dump - dump state of the udc
3163 * @param: The device state
3164 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003165static void s3c_hsotg_dump(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003166{
Mark Brown83a01802011-06-01 17:16:15 +01003167#ifdef DEBUG
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003168 struct device *dev = hsotg->dev;
3169 void __iomem *regs = hsotg->regs;
3170 u32 val;
3171 int idx;
3172
3173 dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003174 readl(regs + DCFG), readl(regs + DCTL),
3175 readl(regs + DIEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003176
3177 dev_info(dev, "GAHBCFG=0x%08x, 0x44=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003178 readl(regs + GAHBCFG), readl(regs + 0x44));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003179
3180 dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003181 readl(regs + GRXFSIZ), readl(regs + GNPTXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003182
3183 /* show periodic fifo settings */
3184
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003185 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003186 val = readl(regs + DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003187 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003188 val >> FIFOSIZE_DEPTH_SHIFT,
3189 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003190 }
3191
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003192 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003193 dev_info(dev,
3194 "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003195 readl(regs + DIEPCTL(idx)),
3196 readl(regs + DIEPTSIZ(idx)),
3197 readl(regs + DIEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003198
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003199 val = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003200 dev_info(dev,
3201 "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003202 idx, readl(regs + DOEPCTL(idx)),
3203 readl(regs + DOEPTSIZ(idx)),
3204 readl(regs + DOEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003205
3206 }
3207
3208 dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003209 readl(regs + DVBUSDIS), readl(regs + DVBUSPULSE));
Mark Brown83a01802011-06-01 17:16:15 +01003210#endif
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003211}
3212
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003213/**
3214 * state_show - debugfs: show overall driver and device state.
3215 * @seq: The seq file to write to.
3216 * @v: Unused parameter.
3217 *
3218 * This debugfs entry shows the overall state of the hardware and
3219 * some general information about each of the endpoints available
3220 * to the system.
3221 */
3222static int state_show(struct seq_file *seq, void *v)
3223{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003224 struct dwc2_hsotg *hsotg = seq->private;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003225 void __iomem *regs = hsotg->regs;
3226 int idx;
3227
3228 seq_printf(seq, "DCFG=0x%08x, DCTL=0x%08x, DSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003229 readl(regs + DCFG),
3230 readl(regs + DCTL),
3231 readl(regs + DSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003232
3233 seq_printf(seq, "DIEPMSK=0x%08x, DOEPMASK=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003234 readl(regs + DIEPMSK), readl(regs + DOEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003235
3236 seq_printf(seq, "GINTMSK=0x%08x, GINTSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003237 readl(regs + GINTMSK),
3238 readl(regs + GINTSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003239
3240 seq_printf(seq, "DAINTMSK=0x%08x, DAINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003241 readl(regs + DAINTMSK),
3242 readl(regs + DAINT));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003243
3244 seq_printf(seq, "GNPTXSTS=0x%08x, GRXSTSR=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003245 readl(regs + GNPTXSTS),
3246 readl(regs + GRXSTSR));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003247
Pavel Macheka023da32013-09-30 14:56:02 +02003248 seq_puts(seq, "\nEndpoint status:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003249
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003250 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003251 u32 in, out;
3252
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003253 in = readl(regs + DIEPCTL(idx));
3254 out = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003255
3256 seq_printf(seq, "ep%d: DIEPCTL=0x%08x, DOEPCTL=0x%08x",
3257 idx, in, out);
3258
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003259 in = readl(regs + DIEPTSIZ(idx));
3260 out = readl(regs + DOEPTSIZ(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003261
3262 seq_printf(seq, ", DIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x",
3263 in, out);
3264
Pavel Macheka023da32013-09-30 14:56:02 +02003265 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003266 }
3267
3268 return 0;
3269}
3270
3271static int state_open(struct inode *inode, struct file *file)
3272{
3273 return single_open(file, state_show, inode->i_private);
3274}
3275
3276static const struct file_operations state_fops = {
3277 .owner = THIS_MODULE,
3278 .open = state_open,
3279 .read = seq_read,
3280 .llseek = seq_lseek,
3281 .release = single_release,
3282};
3283
3284/**
3285 * fifo_show - debugfs: show the fifo information
3286 * @seq: The seq_file to write data to.
3287 * @v: Unused parameter.
3288 *
3289 * Show the FIFO information for the overall fifo and all the
3290 * periodic transmission FIFOs.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003291 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003292static int fifo_show(struct seq_file *seq, void *v)
3293{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003294 struct dwc2_hsotg *hsotg = seq->private;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003295 void __iomem *regs = hsotg->regs;
3296 u32 val;
3297 int idx;
3298
Pavel Macheka023da32013-09-30 14:56:02 +02003299 seq_puts(seq, "Non-periodic FIFOs:\n");
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003300 seq_printf(seq, "RXFIFO: Size %d\n", readl(regs + GRXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003301
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003302 val = readl(regs + GNPTXFSIZ);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003303 seq_printf(seq, "NPTXFIFO: Size %d, Start 0x%08x\n",
Dinh Nguyen47a16852014-04-14 14:13:34 -07003304 val >> FIFOSIZE_DEPTH_SHIFT,
3305 val & FIFOSIZE_DEPTH_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003306
Pavel Macheka023da32013-09-30 14:56:02 +02003307 seq_puts(seq, "\nPeriodic TXFIFOs:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003308
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003309 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003310 val = readl(regs + DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003311
3312 seq_printf(seq, "\tDPTXFIFO%2d: Size %d, Start 0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003313 val >> FIFOSIZE_DEPTH_SHIFT,
3314 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003315 }
3316
3317 return 0;
3318}
3319
3320static int fifo_open(struct inode *inode, struct file *file)
3321{
3322 return single_open(file, fifo_show, inode->i_private);
3323}
3324
3325static const struct file_operations fifo_fops = {
3326 .owner = THIS_MODULE,
3327 .open = fifo_open,
3328 .read = seq_read,
3329 .llseek = seq_lseek,
3330 .release = single_release,
3331};
3332
3333
3334static const char *decode_direction(int is_in)
3335{
3336 return is_in ? "in" : "out";
3337}
3338
3339/**
3340 * ep_show - debugfs: show the state of an endpoint.
3341 * @seq: The seq_file to write data to.
3342 * @v: Unused parameter.
3343 *
3344 * This debugfs entry shows the state of the given endpoint (one is
3345 * registered for each available).
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003346 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003347static int ep_show(struct seq_file *seq, void *v)
3348{
3349 struct s3c_hsotg_ep *ep = seq->private;
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003350 struct dwc2_hsotg *hsotg = ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003351 struct s3c_hsotg_req *req;
3352 void __iomem *regs = hsotg->regs;
3353 int index = ep->index;
3354 int show_limit = 15;
3355 unsigned long flags;
3356
3357 seq_printf(seq, "Endpoint index %d, named %s, dir %s:\n",
3358 ep->index, ep->ep.name, decode_direction(ep->dir_in));
3359
3360 /* first show the register state */
3361
3362 seq_printf(seq, "\tDIEPCTL=0x%08x, DOEPCTL=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003363 readl(regs + DIEPCTL(index)),
3364 readl(regs + DOEPCTL(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003365
3366 seq_printf(seq, "\tDIEPDMA=0x%08x, DOEPDMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003367 readl(regs + DIEPDMA(index)),
3368 readl(regs + DOEPDMA(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003369
3370 seq_printf(seq, "\tDIEPINT=0x%08x, DOEPINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003371 readl(regs + DIEPINT(index)),
3372 readl(regs + DOEPINT(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003373
3374 seq_printf(seq, "\tDIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003375 readl(regs + DIEPTSIZ(index)),
3376 readl(regs + DOEPTSIZ(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003377
Pavel Macheka023da32013-09-30 14:56:02 +02003378 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003379 seq_printf(seq, "mps %d\n", ep->ep.maxpacket);
3380 seq_printf(seq, "total_data=%ld\n", ep->total_data);
3381
3382 seq_printf(seq, "request list (%p,%p):\n",
3383 ep->queue.next, ep->queue.prev);
3384
Lukasz Majewski22258f42012-06-14 10:02:24 +02003385 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003386
3387 list_for_each_entry(req, &ep->queue, queue) {
3388 if (--show_limit < 0) {
Pavel Macheka023da32013-09-30 14:56:02 +02003389 seq_puts(seq, "not showing more requests...\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003390 break;
3391 }
3392
3393 seq_printf(seq, "%c req %p: %d bytes @%p, ",
3394 req == ep->req ? '*' : ' ',
3395 req, req->req.length, req->req.buf);
3396 seq_printf(seq, "%d done, res %d\n",
3397 req->req.actual, req->req.status);
3398 }
3399
Lukasz Majewski22258f42012-06-14 10:02:24 +02003400 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003401
3402 return 0;
3403}
3404
3405static int ep_open(struct inode *inode, struct file *file)
3406{
3407 return single_open(file, ep_show, inode->i_private);
3408}
3409
3410static const struct file_operations ep_fops = {
3411 .owner = THIS_MODULE,
3412 .open = ep_open,
3413 .read = seq_read,
3414 .llseek = seq_lseek,
3415 .release = single_release,
3416};
3417
3418/**
3419 * s3c_hsotg_create_debug - create debugfs directory and files
3420 * @hsotg: The driver state
3421 *
3422 * Create the debugfs files to allow the user to get information
3423 * about the state of the system. The directory name is created
3424 * with the same name as the device itself, in case we end up
3425 * with multiple blocks in future systems.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003426 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003427static void s3c_hsotg_create_debug(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003428{
3429 struct dentry *root;
3430 unsigned epidx;
3431
3432 root = debugfs_create_dir(dev_name(hsotg->dev), NULL);
3433 hsotg->debug_root = root;
3434 if (IS_ERR(root)) {
3435 dev_err(hsotg->dev, "cannot create debug root\n");
3436 return;
3437 }
3438
3439 /* create general state file */
3440
3441 hsotg->debug_file = debugfs_create_file("state", 0444, root,
3442 hsotg, &state_fops);
3443
3444 if (IS_ERR(hsotg->debug_file))
3445 dev_err(hsotg->dev, "%s: failed to create state\n", __func__);
3446
3447 hsotg->debug_fifo = debugfs_create_file("fifo", 0444, root,
3448 hsotg, &fifo_fops);
3449
3450 if (IS_ERR(hsotg->debug_fifo))
3451 dev_err(hsotg->dev, "%s: failed to create fifo\n", __func__);
3452
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003453 /* Create one file for each out endpoint */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003454 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003455 struct s3c_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003456
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003457 ep = hsotg->eps_out[epidx];
3458 if (ep) {
3459 ep->debugfs = debugfs_create_file(ep->name, 0444,
3460 root, ep, &ep_fops);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003461
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003462 if (IS_ERR(ep->debugfs))
3463 dev_err(hsotg->dev, "failed to create %s debug file\n",
3464 ep->name);
3465 }
3466 }
3467 /* Create one file for each in endpoint. EP0 is handled with out eps */
3468 for (epidx = 1; epidx < hsotg->num_of_eps; epidx++) {
3469 struct s3c_hsotg_ep *ep;
3470
3471 ep = hsotg->eps_in[epidx];
3472 if (ep) {
3473 ep->debugfs = debugfs_create_file(ep->name, 0444,
3474 root, ep, &ep_fops);
3475
3476 if (IS_ERR(ep->debugfs))
3477 dev_err(hsotg->dev, "failed to create %s debug file\n",
3478 ep->name);
3479 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003480 }
3481}
3482
3483/**
3484 * s3c_hsotg_delete_debug - cleanup debugfs entries
3485 * @hsotg: The driver state
3486 *
3487 * Cleanup (remove) the debugfs files for use on module exit.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003488 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003489static void s3c_hsotg_delete_debug(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003490{
3491 unsigned epidx;
3492
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003493 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003494 if (hsotg->eps_in[epidx])
3495 debugfs_remove(hsotg->eps_in[epidx]->debugfs);
3496 if (hsotg->eps_out[epidx])
3497 debugfs_remove(hsotg->eps_out[epidx]->debugfs);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003498 }
3499
3500 debugfs_remove(hsotg->debug_file);
3501 debugfs_remove(hsotg->debug_fifo);
3502 debugfs_remove(hsotg->debug_root);
3503}
3504
Gregory Herreroedd74be2015-01-09 13:38:48 +01003505#ifdef CONFIG_OF
3506static void s3c_hsotg_of_probe(struct dwc2_hsotg *hsotg)
3507{
3508 struct device_node *np = hsotg->dev->of_node;
Gregory Herrero0a176272015-01-09 13:38:52 +01003509 u32 len = 0;
3510 u32 i = 0;
Gregory Herreroedd74be2015-01-09 13:38:48 +01003511
3512 /* Enable dma if requested in device tree */
3513 hsotg->g_using_dma = of_property_read_bool(np, "g-use-dma");
Gregory Herrero0a176272015-01-09 13:38:52 +01003514
3515 /*
3516 * Register TX periodic fifo size per endpoint.
3517 * EP0 is excluded since it has no fifo configuration.
3518 */
3519 if (!of_find_property(np, "g-tx-fifo-size", &len))
3520 goto rx_fifo;
3521
3522 len /= sizeof(u32);
3523
3524 /* Read tx fifo sizes other than ep0 */
3525 if (of_property_read_u32_array(np, "g-tx-fifo-size",
3526 &hsotg->g_tx_fifo_sz[1], len))
3527 goto rx_fifo;
3528
3529 /* Add ep0 */
3530 len++;
3531
3532 /* Make remaining TX fifos unavailable */
3533 if (len < MAX_EPS_CHANNELS) {
3534 for (i = len; i < MAX_EPS_CHANNELS; i++)
3535 hsotg->g_tx_fifo_sz[i] = 0;
3536 }
3537
3538rx_fifo:
3539 /* Register RX fifo size */
3540 of_property_read_u32(np, "g-rx-fifo-size", &hsotg->g_rx_fifo_sz);
3541
3542 /* Register NPTX fifo size */
3543 of_property_read_u32(np, "g-np-tx-fifo-size",
3544 &hsotg->g_np_g_tx_fifo_sz);
Gregory Herreroedd74be2015-01-09 13:38:48 +01003545}
3546#else
3547static inline void s3c_hsotg_of_probe(struct dwc2_hsotg *hsotg) { }
3548#endif
3549
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003550/**
Dinh Nguyen117777b2014-11-11 11:13:34 -06003551 * dwc2_gadget_init - init function for gadget
3552 * @dwc2: The data structure for the DWC2 driver.
3553 * @irq: The IRQ number for the controller.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003554 */
Dinh Nguyen117777b2014-11-11 11:13:34 -06003555int dwc2_gadget_init(struct dwc2_hsotg *hsotg, int irq)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003556{
Dinh Nguyen117777b2014-11-11 11:13:34 -06003557 struct device *dev = hsotg->dev;
3558 struct s3c_hsotg_plat *plat = dev->platform_data;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003559 int epnum;
3560 int ret;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003561 int i;
Gregory Herrero0a176272015-01-09 13:38:52 +01003562 u32 p_tx_fifo[] = DWC2_G_P_LEGACY_TX_FIFO_SIZE;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003563
Kamil Debski1b59fc72014-09-09 10:44:52 +02003564 /* Set default UTMI width */
3565 hsotg->phyif = GUSBCFG_PHYIF16;
3566
Gregory Herreroedd74be2015-01-09 13:38:48 +01003567 s3c_hsotg_of_probe(hsotg);
3568
Gregory Herrero0a176272015-01-09 13:38:52 +01003569 /* Initialize to legacy fifo configuration values */
3570 hsotg->g_rx_fifo_sz = 2048;
3571 hsotg->g_np_g_tx_fifo_sz = 1024;
3572 memcpy(&hsotg->g_tx_fifo_sz[1], p_tx_fifo, sizeof(p_tx_fifo));
3573 /* Device tree specific probe */
3574 s3c_hsotg_of_probe(hsotg);
3575 /* Dump fifo information */
3576 dev_dbg(dev, "NonPeriodic TXFIFO size: %d\n",
3577 hsotg->g_np_g_tx_fifo_sz);
3578 dev_dbg(dev, "RXFIFO size: %d\n", hsotg->g_rx_fifo_sz);
3579 for (i = 0; i < MAX_EPS_CHANNELS; i++)
3580 dev_dbg(dev, "Periodic TXFIFO%2d size: %d\n", i,
3581 hsotg->g_tx_fifo_sz[i]);
Matt Porter74084842013-12-19 09:23:06 -05003582 /*
Yunzhi Li135b3c42014-12-08 17:46:26 +08003583 * If platform probe couldn't find a generic PHY or an old style
3584 * USB PHY, fall back to pdata
Matt Porter74084842013-12-19 09:23:06 -05003585 */
Yunzhi Li135b3c42014-12-08 17:46:26 +08003586 if (IS_ERR_OR_NULL(hsotg->phy) && IS_ERR_OR_NULL(hsotg->uphy)) {
3587 plat = dev_get_platdata(dev);
3588 if (!plat) {
3589 dev_err(dev,
3590 "no platform data or transceiver defined\n");
3591 return -EPROBE_DEFER;
3592 }
3593 hsotg->plat = plat;
3594 } else if (hsotg->phy) {
Kamil Debski1b59fc72014-09-09 10:44:52 +02003595 /*
3596 * If using the generic PHY framework, check if the PHY bus
3597 * width is 8-bit and set the phyif appropriately.
3598 */
Yunzhi Li135b3c42014-12-08 17:46:26 +08003599 if (phy_get_bus_width(hsotg->phy) == 8)
Kamil Debski1b59fc72014-09-09 10:44:52 +02003600 hsotg->phyif = GUSBCFG_PHYIF8;
3601 }
Praveen Panerib2e587d2012-11-14 15:57:16 +05303602
Dinh Nguyen117777b2014-11-11 11:13:34 -06003603 hsotg->clk = devm_clk_get(dev, "otg");
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003604 if (IS_ERR(hsotg->clk)) {
Dinh Nguyen8d736d82014-11-11 11:13:38 -06003605 hsotg->clk = NULL;
Dinh Nguyenf415fbd2014-11-24 11:02:11 -06003606 dev_dbg(dev, "cannot get otg clock\n");
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003607 }
3608
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01003609 hsotg->gadget.max_speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003610 hsotg->gadget.ops = &s3c_hsotg_gadget_ops;
3611 hsotg->gadget.name = dev_name(dev);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003612
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003613 /* reset the system */
3614
Dinh Nguyenf415fbd2014-11-24 11:02:11 -06003615 ret = clk_prepare_enable(hsotg->clk);
3616 if (ret) {
3617 dev_err(dev, "failed to enable otg clk\n");
3618 goto err_clk;
3619 }
3620
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003621
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003622 /* regulators */
3623
3624 for (i = 0; i < ARRAY_SIZE(hsotg->supplies); i++)
3625 hsotg->supplies[i].supply = s3c_hsotg_supply_names[i];
3626
Sachin Kamatcd762132013-01-08 14:27:00 +05303627 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(hsotg->supplies),
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003628 hsotg->supplies);
3629 if (ret) {
3630 dev_err(dev, "failed to request supplies: %d\n", ret);
Sachin Kamat338edab2012-05-18 14:33:46 +05303631 goto err_clk;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003632 }
3633
3634 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
3635 hsotg->supplies);
3636
3637 if (ret) {
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003638 dev_err(dev, "failed to enable supplies: %d\n", ret);
Mian Yousaf Kaukabc139ec22015-01-09 13:38:45 +01003639 goto err_clk;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003640 }
3641
Lukasz Majewski41188782012-05-04 14:17:01 +02003642 /* usb phy enable */
3643 s3c_hsotg_phy_enable(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003644
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003645 s3c_hsotg_corereset(hsotg);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003646 ret = s3c_hsotg_hw_cfg(hsotg);
3647 if (ret) {
3648 dev_err(hsotg->dev, "Hardware configuration failed: %d\n", ret);
3649 goto err_clk;
3650 }
3651
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02003652 s3c_hsotg_init(hsotg);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003653
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01003654 hsotg->ctrl_buff = devm_kzalloc(hsotg->dev,
3655 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
3656 if (!hsotg->ctrl_buff) {
3657 dev_err(dev, "failed to allocate ctrl request buff\n");
3658 ret = -ENOMEM;
3659 goto err_supplies;
3660 }
3661
3662 hsotg->ep0_buff = devm_kzalloc(hsotg->dev,
3663 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
3664 if (!hsotg->ep0_buff) {
3665 dev_err(dev, "failed to allocate ctrl reply buff\n");
3666 ret = -ENOMEM;
3667 goto err_supplies;
3668 }
3669
Dinh Nguyendb8178c2014-11-11 11:13:37 -06003670 ret = devm_request_irq(hsotg->dev, irq, s3c_hsotg_irq, IRQF_SHARED,
3671 dev_name(hsotg->dev), hsotg);
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02003672 if (ret < 0) {
3673 s3c_hsotg_phy_disable(hsotg);
3674 clk_disable_unprepare(hsotg->clk);
3675 regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3676 hsotg->supplies);
Dinh Nguyendb8178c2014-11-11 11:13:37 -06003677 dev_err(dev, "cannot claim IRQ for gadget\n");
Mian Yousaf Kaukabc139ec22015-01-09 13:38:45 +01003678 goto err_supplies;
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02003679 }
3680
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003681 /* hsotg->num_of_eps holds number of EPs other than ep0 */
3682
3683 if (hsotg->num_of_eps == 0) {
3684 dev_err(dev, "wrong number of EPs (zero)\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003685 ret = -EINVAL;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003686 goto err_supplies;
3687 }
3688
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003689 /* setup endpoint information */
3690
3691 INIT_LIST_HEAD(&hsotg->gadget.ep_list);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003692 hsotg->gadget.ep0 = &hsotg->eps_out[0]->ep;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003693
3694 /* allocate EP0 request */
3695
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003696 hsotg->ctrl_req = s3c_hsotg_ep_alloc_request(&hsotg->eps_out[0]->ep,
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003697 GFP_KERNEL);
3698 if (!hsotg->ctrl_req) {
3699 dev_err(dev, "failed to allocate ctrl req\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003700 ret = -ENOMEM;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003701 goto err_supplies;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003702 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003703
3704 /* initialise the endpoints now the core has been initialised */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003705 for (epnum = 0; epnum < hsotg->num_of_eps; epnum++) {
3706 if (hsotg->eps_in[epnum])
3707 s3c_hsotg_initep(hsotg, hsotg->eps_in[epnum],
3708 epnum, 1);
3709 if (hsotg->eps_out[epnum])
3710 s3c_hsotg_initep(hsotg, hsotg->eps_out[epnum],
3711 epnum, 0);
3712 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003713
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003714 /* disable power and clock */
Marek Szyprowski3a8146a2014-10-20 12:45:34 +02003715 s3c_hsotg_phy_disable(hsotg);
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003716
3717 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3718 hsotg->supplies);
3719 if (ret) {
Dinh Nguyen117777b2014-11-11 11:13:34 -06003720 dev_err(dev, "failed to disable supplies: %d\n", ret);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003721 goto err_supplies;
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003722 }
3723
Dinh Nguyen117777b2014-11-11 11:13:34 -06003724 ret = usb_add_gadget_udc(dev, &hsotg->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003725 if (ret)
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003726 goto err_supplies;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003727
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003728 s3c_hsotg_create_debug(hsotg);
3729
3730 s3c_hsotg_dump(hsotg);
3731
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003732 return 0;
3733
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003734err_supplies:
Lukasz Majewski41188782012-05-04 14:17:01 +02003735 s3c_hsotg_phy_disable(hsotg);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003736err_clk:
Lukasz Majewski1d144c62012-05-04 14:17:16 +02003737 clk_disable_unprepare(hsotg->clk);
Sachin Kamat338edab2012-05-18 14:33:46 +05303738
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003739 return ret;
3740}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003741EXPORT_SYMBOL_GPL(dwc2_gadget_init);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003742
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003743/**
3744 * s3c_hsotg_remove - remove function for hsotg driver
3745 * @pdev: The platform information for the driver
3746 */
Dinh Nguyen117777b2014-11-11 11:13:34 -06003747int s3c_hsotg_remove(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003748{
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003749 usb_del_gadget_udc(&hsotg->gadget);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003750 s3c_hsotg_delete_debug(hsotg);
Lukasz Majewski04b4a0f2012-05-04 14:17:15 +02003751 clk_disable_unprepare(hsotg->clk);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003752
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003753 return 0;
3754}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003755EXPORT_SYMBOL_GPL(s3c_hsotg_remove);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003756
Dinh Nguyen117777b2014-11-11 11:13:34 -06003757int s3c_hsotg_suspend(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003758{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003759 unsigned long flags;
3760 int ret = 0;
3761
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003762 mutex_lock(&hsotg->init_mutex);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003763
3764 if (hsotg->driver) {
3765 int ep;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003766
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003767 dev_info(hsotg->dev, "suspending usb gadget %s\n",
3768 hsotg->driver->driver.name);
3769
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003770 spin_lock_irqsave(&hsotg->lock, flags);
3771 if (hsotg->enabled)
3772 s3c_hsotg_core_disconnect(hsotg);
3773 s3c_hsotg_disconnect(hsotg);
3774 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3775 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003776
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003777 s3c_hsotg_phy_disable(hsotg);
Marek Szyprowski7b093f72014-10-20 12:45:39 +02003778
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003779 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
3780 if (hsotg->eps_in[ep])
3781 s3c_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
3782 if (hsotg->eps_out[ep])
3783 s3c_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
3784 }
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003785
3786 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3787 hsotg->supplies);
Robert Baldygad00b4142014-09-09 10:44:57 +02003788 clk_disable(hsotg->clk);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003789 }
3790
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003791 mutex_unlock(&hsotg->init_mutex);
3792
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003793 return ret;
3794}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003795EXPORT_SYMBOL_GPL(s3c_hsotg_suspend);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003796
Dinh Nguyen117777b2014-11-11 11:13:34 -06003797int s3c_hsotg_resume(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003798{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003799 unsigned long flags;
3800 int ret = 0;
3801
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003802 mutex_lock(&hsotg->init_mutex);
3803
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003804 if (hsotg->driver) {
3805 dev_info(hsotg->dev, "resuming usb gadget %s\n",
3806 hsotg->driver->driver.name);
Robert Baldygad00b4142014-09-09 10:44:57 +02003807
3808 clk_enable(hsotg->clk);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003809 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003810 hsotg->supplies);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003811
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003812 s3c_hsotg_phy_enable(hsotg);
3813
3814 spin_lock_irqsave(&hsotg->lock, flags);
3815 s3c_hsotg_core_init_disconnected(hsotg);
3816 if (hsotg->enabled)
3817 s3c_hsotg_core_connect(hsotg);
3818 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003819 }
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003820 mutex_unlock(&hsotg->init_mutex);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003821
3822 return ret;
3823}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003824EXPORT_SYMBOL_GPL(s3c_hsotg_resume);