blob: e3bb525ae54da3ee655136f790bd830d7f0d7b50 [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))
610 hs_ep->sent_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 Kaukabfe0b94a2015-01-09 13:38:58 +01001196 hsotg->eps_out[0]->sent_zlp = 0;
1197 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 */
1760 if (hs_ep->sent_zlp) {
1761 s3c_hsotg_program_zlp(hsotg, hs_ep);
1762 hs_ep->sent_zlp = 0;
1763 /* 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;
2442 int index = hs_ep->index;
2443 u32 epctrl_reg;
2444 u32 epctrl;
2445 u32 mps;
2446 int dir_in;
Robert Baldygab203d0a2014-09-09 10:44:56 +02002447 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) {
2536 size = hs_ep->ep.maxpacket*hs_ep->mc;
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01002537 for (i = 1; i < hsotg->num_of_eps; ++i) {
Robert Baldygab203d0a2014-09-09 10:44:56 +02002538 if (hsotg->fifo_map & (1<<i))
2539 continue;
2540 val = readl(hsotg->regs + DPTXFSIZN(i));
2541 val = (val >> FIFOSIZE_DEPTH_SHIFT)*4;
2542 if (val < size)
2543 continue;
2544 hsotg->fifo_map |= 1<<i;
2545
2546 epctrl |= DXEPCTL_TXFNUM(i);
2547 hs_ep->fifo_index = i;
2548 hs_ep->fifo_size = val;
2549 break;
2550 }
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01002551 if (i == hsotg->num_of_eps) {
2552 dev_err(hsotg->dev,
2553 "%s: No suitable fifo found\n", __func__);
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05302554 ret = -ENOMEM;
2555 goto error;
2556 }
Robert Baldygab203d0a2014-09-09 10:44:56 +02002557 }
Ben Dooks10aebc72010-07-19 09:40:44 +01002558
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002559 /* for non control endpoints, set PID to D0 */
2560 if (index)
Dinh Nguyen47a16852014-04-14 14:13:34 -07002561 epctrl |= DXEPCTL_SETD0PID;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002562
2563 dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
2564 __func__, epctrl);
2565
2566 writel(epctrl, hsotg->regs + epctrl_reg);
2567 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
2568 __func__, readl(hsotg->regs + epctrl_reg));
2569
2570 /* enable the endpoint interrupt */
2571 s3c_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
2572
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05302573error:
Lukasz Majewski22258f42012-06-14 10:02:24 +02002574 spin_unlock_irqrestore(&hsotg->lock, flags);
Julia Lawall19c190f2010-03-29 17:36:44 +02002575 return ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002576}
2577
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002578/**
2579 * s3c_hsotg_ep_disable - disable given endpoint
2580 * @ep: The endpoint to disable.
2581 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002582static int s3c_hsotg_ep_disable(struct usb_ep *ep)
2583{
2584 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002585 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002586 int dir_in = hs_ep->dir_in;
2587 int index = hs_ep->index;
2588 unsigned long flags;
2589 u32 epctrl_reg;
2590 u32 ctrl;
2591
Marek Szyprowski1e011292014-09-09 10:44:54 +02002592 dev_dbg(hsotg->dev, "%s(ep %p)\n", __func__, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002593
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002594 if (ep == &hsotg->eps_out[0]->ep) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002595 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
2596 return -EINVAL;
2597 }
2598
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002599 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002600
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002601 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002602
Robert Baldygab203d0a2014-09-09 10:44:56 +02002603 hsotg->fifo_map &= ~(1<<hs_ep->fifo_index);
2604 hs_ep->fifo_index = 0;
2605 hs_ep->fifo_size = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002606
2607 ctrl = readl(hsotg->regs + epctrl_reg);
Dinh Nguyen47a16852014-04-14 14:13:34 -07002608 ctrl &= ~DXEPCTL_EPENA;
2609 ctrl &= ~DXEPCTL_USBACTEP;
2610 ctrl |= DXEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002611
2612 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
2613 writel(ctrl, hsotg->regs + epctrl_reg);
2614
2615 /* disable endpoint interrupts */
2616 s3c_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
2617
Mian Yousaf Kaukab1141ea02015-01-09 13:38:57 +01002618 /* terminate all requests with shutdown */
2619 kill_all_requests(hsotg, hs_ep, -ESHUTDOWN);
2620
Lukasz Majewski22258f42012-06-14 10:02:24 +02002621 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002622 return 0;
2623}
2624
2625/**
2626 * on_list - check request is on the given endpoint
2627 * @ep: The endpoint to check.
2628 * @test: The request to test if it is on the endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002629 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002630static bool on_list(struct s3c_hsotg_ep *ep, struct s3c_hsotg_req *test)
2631{
2632 struct s3c_hsotg_req *req, *treq;
2633
2634 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
2635 if (req == test)
2636 return true;
2637 }
2638
2639 return false;
2640}
2641
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002642/**
2643 * s3c_hsotg_ep_dequeue - dequeue given endpoint
2644 * @ep: The endpoint to dequeue.
2645 * @req: The request to be removed from a queue.
2646 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002647static int s3c_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
2648{
2649 struct s3c_hsotg_req *hs_req = our_req(req);
2650 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002651 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002652 unsigned long flags;
2653
Marek Szyprowski1e011292014-09-09 10:44:54 +02002654 dev_dbg(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002655
Lukasz Majewski22258f42012-06-14 10:02:24 +02002656 spin_lock_irqsave(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002657
2658 if (!on_list(hs_ep, hs_req)) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02002659 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002660 return -EINVAL;
2661 }
2662
2663 s3c_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
Lukasz Majewski22258f42012-06-14 10:02:24 +02002664 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002665
2666 return 0;
2667}
2668
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002669/**
2670 * s3c_hsotg_ep_sethalt - set halt on a given endpoint
2671 * @ep: The endpoint to set halt.
2672 * @value: Set or unset the halt.
2673 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002674static int s3c_hsotg_ep_sethalt(struct usb_ep *ep, int value)
2675{
2676 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002677 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002678 int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002679 u32 epreg;
2680 u32 epctl;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002681 u32 xfertype;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002682
2683 dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
2684
Robert Baldygac9f721b2014-01-14 08:36:00 +01002685 if (index == 0) {
2686 if (value)
2687 s3c_hsotg_stall_ep0(hs);
2688 else
2689 dev_warn(hs->dev,
2690 "%s: can't clear halt on ep0\n", __func__);
2691 return 0;
2692 }
2693
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002694 if (hs_ep->dir_in) {
2695 epreg = DIEPCTL(index);
2696 epctl = readl(hs->regs + epreg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002697
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002698 if (value) {
2699 epctl |= DXEPCTL_STALL + DXEPCTL_SNAK;
2700 if (epctl & DXEPCTL_EPENA)
2701 epctl |= DXEPCTL_EPDIS;
2702 } else {
2703 epctl &= ~DXEPCTL_STALL;
2704 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
2705 if (xfertype == DXEPCTL_EPTYPE_BULK ||
2706 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
2707 epctl |= DXEPCTL_SETD0PID;
2708 }
2709 writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002710 } else {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002711
2712 epreg = DOEPCTL(index);
2713 epctl = readl(hs->regs + epreg);
2714
2715 if (value)
2716 epctl |= DXEPCTL_STALL;
2717 else {
2718 epctl &= ~DXEPCTL_STALL;
2719 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
2720 if (xfertype == DXEPCTL_EPTYPE_BULK ||
2721 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
2722 epctl |= DXEPCTL_SETD0PID;
2723 }
2724 writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002725 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002726
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02002727 hs_ep->halted = value;
2728
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002729 return 0;
2730}
2731
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002732/**
2733 * s3c_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
2734 * @ep: The endpoint to set halt.
2735 * @value: Set or unset the halt.
2736 */
2737static int s3c_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
2738{
2739 struct s3c_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002740 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002741 unsigned long flags = 0;
2742 int ret = 0;
2743
2744 spin_lock_irqsave(&hs->lock, flags);
2745 ret = s3c_hsotg_ep_sethalt(ep, value);
2746 spin_unlock_irqrestore(&hs->lock, flags);
2747
2748 return ret;
2749}
2750
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002751static struct usb_ep_ops s3c_hsotg_ep_ops = {
2752 .enable = s3c_hsotg_ep_enable,
2753 .disable = s3c_hsotg_ep_disable,
2754 .alloc_request = s3c_hsotg_ep_alloc_request,
2755 .free_request = s3c_hsotg_ep_free_request,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002756 .queue = s3c_hsotg_ep_queue_lock,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002757 .dequeue = s3c_hsotg_ep_dequeue,
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02002758 .set_halt = s3c_hsotg_ep_sethalt_lock,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002759 /* note, don't believe we have any call for the fifo routines */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002760};
2761
2762/**
Lukasz Majewski41188782012-05-04 14:17:01 +02002763 * s3c_hsotg_phy_enable - enable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002764 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002765 *
2766 * A wrapper for platform code responsible for controlling
2767 * low-level USB code
2768 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002769static void s3c_hsotg_phy_enable(struct dwc2_hsotg *hsotg)
Lukasz Majewski41188782012-05-04 14:17:01 +02002770{
2771 struct platform_device *pdev = to_platform_device(hsotg->dev);
2772
2773 dev_dbg(hsotg->dev, "pdev 0x%p\n", pdev);
Praveen Panerib2e587d2012-11-14 15:57:16 +05302774
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002775 if (hsotg->uphy)
2776 usb_phy_init(hsotg->uphy);
2777 else if (hsotg->plat && hsotg->plat->phy_init)
2778 hsotg->plat->phy_init(pdev, hsotg->plat->phy_type);
2779 else {
Matt Porter74084842013-12-19 09:23:06 -05002780 phy_init(hsotg->phy);
2781 phy_power_on(hsotg->phy);
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002782 }
Lukasz Majewski41188782012-05-04 14:17:01 +02002783}
2784
2785/**
2786 * s3c_hsotg_phy_disable - disable platform phy dev
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002787 * @hsotg: The driver state
Lukasz Majewski41188782012-05-04 14:17:01 +02002788 *
2789 * A wrapper for platform code responsible for controlling
2790 * low-level USB code
2791 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002792static void s3c_hsotg_phy_disable(struct dwc2_hsotg *hsotg)
Lukasz Majewski41188782012-05-04 14:17:01 +02002793{
2794 struct platform_device *pdev = to_platform_device(hsotg->dev);
2795
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002796 if (hsotg->uphy)
2797 usb_phy_shutdown(hsotg->uphy);
2798 else if (hsotg->plat && hsotg->plat->phy_exit)
2799 hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type);
2800 else {
Matt Porter74084842013-12-19 09:23:06 -05002801 phy_power_off(hsotg->phy);
2802 phy_exit(hsotg->phy);
Kamil Debskica2c5ba2014-09-09 10:44:09 +02002803 }
Lukasz Majewski41188782012-05-04 14:17:01 +02002804}
2805
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002806/**
2807 * s3c_hsotg_init - initalize the usb core
2808 * @hsotg: The driver state
2809 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002810static void s3c_hsotg_init(struct dwc2_hsotg *hsotg)
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002811{
2812 /* unmask subset of endpoint interrupts */
2813
Dinh Nguyen47a16852014-04-14 14:13:34 -07002814 writel(DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK |
2815 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK,
2816 hsotg->regs + DIEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002817
Dinh Nguyen47a16852014-04-14 14:13:34 -07002818 writel(DOEPMSK_SETUPMSK | DOEPMSK_AHBERRMSK |
2819 DOEPMSK_EPDISBLDMSK | DOEPMSK_XFERCOMPLMSK,
2820 hsotg->regs + DOEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002821
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002822 writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002823
2824 /* Be in disconnected state until gadget is registered */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002825 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002826
2827 if (0) {
2828 /* post global nak until we're ready */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002829 writel(DCTL_SGNPINNAK | DCTL_SGOUTNAK,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002830 hsotg->regs + DCTL);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002831 }
2832
2833 /* setup fifos */
2834
2835 dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002836 readl(hsotg->regs + GRXFSIZ),
2837 readl(hsotg->regs + GNPTXFSIZ));
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002838
2839 s3c_hsotg_init_fifo(hsotg);
2840
2841 /* set the PLL on, remove the HNP/SRP and set the PHY */
Dinh Nguyen47a16852014-04-14 14:13:34 -07002842 writel(GUSBCFG_PHYIF16 | GUSBCFG_TOUTCAL(7) | (0x5 << 10),
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002843 hsotg->regs + GUSBCFG);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002844
Gregory Herrerof5090042015-01-09 13:38:47 +01002845 if (using_dma(hsotg))
2846 __orr32(hsotg->regs + GAHBCFG, GAHBCFG_DMA_EN);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02002847}
2848
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002849/**
2850 * s3c_hsotg_udc_start - prepare the udc for work
2851 * @gadget: The usb gadget state
2852 * @driver: The usb gadget driver
2853 *
2854 * Perform initialization to prepare udc device and driver
2855 * to work.
2856 */
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002857static int s3c_hsotg_udc_start(struct usb_gadget *gadget,
2858 struct usb_gadget_driver *driver)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002859{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002860 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002861 unsigned long flags;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002862 int ret;
2863
2864 if (!hsotg) {
Pavel Macheka023da32013-09-30 14:56:02 +02002865 pr_err("%s: called with no device\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002866 return -ENODEV;
2867 }
2868
2869 if (!driver) {
2870 dev_err(hsotg->dev, "%s: no driver\n", __func__);
2871 return -EINVAL;
2872 }
2873
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01002874 if (driver->max_speed < USB_SPEED_FULL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002875 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002876
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002877 if (!driver->setup) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002878 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
2879 return -EINVAL;
2880 }
2881
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002882 mutex_lock(&hsotg->init_mutex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002883 WARN_ON(hsotg->driver);
2884
2885 driver->driver.bus = NULL;
2886 hsotg->driver = driver;
Alexandre Pereira da Silva7d7b2292012-06-26 11:27:10 -03002887 hsotg->gadget.dev.of_node = hsotg->dev->of_node;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002888 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
2889
Robert Baldygad00b4142014-09-09 10:44:57 +02002890 clk_enable(hsotg->clk);
2891
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002892 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
2893 hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002894 if (ret) {
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02002895 dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002896 goto err;
2897 }
2898
Marek Szyprowskic816c472014-10-20 12:45:37 +02002899 s3c_hsotg_phy_enable(hsotg);
Gregory Herrerof6c01592015-01-09 13:38:41 +01002900 if (!IS_ERR_OR_NULL(hsotg->uphy))
2901 otg_set_peripheral(hsotg->uphy->otg, &hsotg->gadget);
Marek Szyprowskic816c472014-10-20 12:45:37 +02002902
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002903 spin_lock_irqsave(&hsotg->lock, flags);
2904 s3c_hsotg_init(hsotg);
2905 s3c_hsotg_core_init_disconnected(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01002906 hsotg->enabled = 0;
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002907 spin_unlock_irqrestore(&hsotg->lock, flags);
2908
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002909 dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02002910
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002911 mutex_unlock(&hsotg->init_mutex);
2912
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002913 return 0;
2914
2915err:
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002916 mutex_unlock(&hsotg->init_mutex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002917 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002918 return ret;
2919}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002920
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002921/**
2922 * s3c_hsotg_udc_stop - stop the udc
2923 * @gadget: The usb gadget state
2924 * @driver: The usb gadget driver
2925 *
2926 * Stop udc hw block and stay tunned for future transmissions
2927 */
Felipe Balbi22835b82014-10-17 12:05:12 -05002928static int s3c_hsotg_udc_stop(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002929{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002930 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002931 unsigned long flags = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002932 int ep;
2933
2934 if (!hsotg)
2935 return -ENODEV;
2936
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002937 mutex_lock(&hsotg->init_mutex);
2938
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002939 /* all endpoints should be shutdown */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002940 for (ep = 1; ep < hsotg->num_of_eps; ep++) {
2941 if (hsotg->eps_in[ep])
2942 s3c_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
2943 if (hsotg->eps_out[ep])
2944 s3c_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
2945 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002946
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002947 spin_lock_irqsave(&hsotg->lock, flags);
2948
Marek Szyprowski32805c32014-10-20 12:45:33 +02002949 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002950 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01002951 hsotg->enabled = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002952
Lukasz Majewski2b19a522012-06-14 10:02:25 +02002953 spin_unlock_irqrestore(&hsotg->lock, flags);
2954
Gregory Herrerof6c01592015-01-09 13:38:41 +01002955 if (!IS_ERR_OR_NULL(hsotg->uphy))
2956 otg_set_peripheral(hsotg->uphy->otg, NULL);
Marek Szyprowskic816c472014-10-20 12:45:37 +02002957 s3c_hsotg_phy_disable(hsotg);
2958
Marek Szyprowskic8c10252013-09-12 16:18:48 +02002959 regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002960
Robert Baldygad00b4142014-09-09 10:44:57 +02002961 clk_disable(hsotg->clk);
2962
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002963 mutex_unlock(&hsotg->init_mutex);
2964
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002965 return 0;
2966}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002967
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002968/**
2969 * s3c_hsotg_gadget_getframe - read the frame number
2970 * @gadget: The usb gadget state
2971 *
2972 * Read the {micro} frame number
2973 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002974static int s3c_hsotg_gadget_getframe(struct usb_gadget *gadget)
2975{
2976 return s3c_hsotg_read_frameno(to_hsotg(gadget));
2977}
2978
Lukasz Majewskia188b682012-06-22 09:29:56 +02002979/**
2980 * s3c_hsotg_pullup - connect/disconnect the USB PHY
2981 * @gadget: The usb gadget state
2982 * @is_on: Current state of the USB PHY
2983 *
2984 * Connect/Disconnect the USB PHY pullup
2985 */
2986static int s3c_hsotg_pullup(struct usb_gadget *gadget, int is_on)
2987{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06002988 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewskia188b682012-06-22 09:29:56 +02002989 unsigned long flags = 0;
2990
Andrzej Pietrasiewiczd784f1e2014-09-09 10:44:53 +02002991 dev_dbg(hsotg->dev, "%s: is_on: %d\n", __func__, is_on);
Lukasz Majewskia188b682012-06-22 09:29:56 +02002992
Marek Szyprowski7ad80962014-11-21 15:14:48 +01002993 mutex_lock(&hsotg->init_mutex);
Lukasz Majewskia188b682012-06-22 09:29:56 +02002994 spin_lock_irqsave(&hsotg->lock, flags);
2995 if (is_on) {
Robert Baldygad00b4142014-09-09 10:44:57 +02002996 clk_enable(hsotg->clk);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01002997 hsotg->enabled = 1;
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02002998 s3c_hsotg_core_connect(hsotg);
Lukasz Majewskia188b682012-06-22 09:29:56 +02002999 } else {
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02003000 s3c_hsotg_core_disconnect(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003001 hsotg->enabled = 0;
Robert Baldygad00b4142014-09-09 10:44:57 +02003002 clk_disable(hsotg->clk);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003003 }
3004
3005 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3006 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003007 mutex_unlock(&hsotg->init_mutex);
Lukasz Majewskia188b682012-06-22 09:29:56 +02003008
3009 return 0;
3010}
3011
Felipe Balbieeef4582013-01-24 17:58:16 +02003012static const struct usb_gadget_ops s3c_hsotg_gadget_ops = {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003013 .get_frame = s3c_hsotg_gadget_getframe,
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003014 .udc_start = s3c_hsotg_udc_start,
3015 .udc_stop = s3c_hsotg_udc_stop,
Lukasz Majewskia188b682012-06-22 09:29:56 +02003016 .pullup = s3c_hsotg_pullup,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003017};
3018
3019/**
3020 * s3c_hsotg_initep - initialise a single endpoint
3021 * @hsotg: The device state.
3022 * @hs_ep: The endpoint to be initialised.
3023 * @epnum: The endpoint number
3024 *
3025 * Initialise the given endpoint (as part of the probe and device state
3026 * creation) to give to the gadget driver. Setup the endpoint name, any
3027 * direction information and other state that may be required.
3028 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003029static void s3c_hsotg_initep(struct dwc2_hsotg *hsotg,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003030 struct s3c_hsotg_ep *hs_ep,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003031 int epnum,
3032 bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003033{
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003034 char *dir;
3035
3036 if (epnum == 0)
3037 dir = "";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003038 else if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003039 dir = "in";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003040 else
3041 dir = "out";
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003042
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003043 hs_ep->dir_in = dir_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003044 hs_ep->index = epnum;
3045
3046 snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
3047
3048 INIT_LIST_HEAD(&hs_ep->queue);
3049 INIT_LIST_HEAD(&hs_ep->ep.ep_list);
3050
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003051 /* add to the list of endpoints known by the gadget driver */
3052 if (epnum)
3053 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
3054
3055 hs_ep->parent = hsotg;
3056 hs_ep->ep.name = hs_ep->name;
Robert Baldygae117e742013-12-13 12:23:38 +01003057 usb_ep_set_maxpacket_limit(&hs_ep->ep, epnum ? 1024 : EP0_MPS_LIMIT);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003058 hs_ep->ep.ops = &s3c_hsotg_ep_ops;
3059
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003060 /*
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003061 * if we're using dma, we need to set the next-endpoint pointer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003062 * to be something valid.
3063 */
3064
3065 if (using_dma(hsotg)) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003066 u32 next = DXEPCTL_NEXTEP((epnum + 1) % 15);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003067 if (dir_in)
3068 writel(next, hsotg->regs + DIEPCTL(epnum));
3069 else
3070 writel(next, hsotg->regs + DOEPCTL(epnum));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003071 }
3072}
3073
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003074/**
3075 * s3c_hsotg_hw_cfg - read HW configuration registers
3076 * @param: The device state
3077 *
3078 * Read the USB core HW configuration registers
3079 */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003080static int s3c_hsotg_hw_cfg(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003081{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003082 u32 cfg;
3083 u32 ep_type;
3084 u32 i;
3085
Ben Dooks10aebc72010-07-19 09:40:44 +01003086 /* check hardware configuration */
3087
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003088 cfg = readl(hsotg->regs + GHWCFG2);
3089 hsotg->num_of_eps = (cfg >> 10) & 0xF;
3090 /* Add ep0 */
3091 hsotg->num_of_eps++;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003092
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003093 hsotg->eps_in[0] = devm_kzalloc(hsotg->dev, sizeof(struct s3c_hsotg_ep),
3094 GFP_KERNEL);
3095 if (!hsotg->eps_in[0])
3096 return -ENOMEM;
3097 /* Same s3c_hsotg_ep is used in both directions for ep0 */
3098 hsotg->eps_out[0] = hsotg->eps_in[0];
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003099
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003100 cfg = readl(hsotg->regs + GHWCFG1);
3101 for (i = 1; i < hsotg->num_of_eps; i++, cfg >>= 2) {
3102 ep_type = cfg & 3;
3103 /* Direction in or both */
3104 if (!(ep_type & 2)) {
3105 hsotg->eps_in[i] = devm_kzalloc(hsotg->dev,
3106 sizeof(struct s3c_hsotg_ep), GFP_KERNEL);
3107 if (!hsotg->eps_in[i])
3108 return -ENOMEM;
3109 }
3110 /* Direction out or both */
3111 if (!(ep_type & 1)) {
3112 hsotg->eps_out[i] = devm_kzalloc(hsotg->dev,
3113 sizeof(struct s3c_hsotg_ep), GFP_KERNEL);
3114 if (!hsotg->eps_out[i])
3115 return -ENOMEM;
3116 }
3117 }
3118
3119 cfg = readl(hsotg->regs + GHWCFG3);
3120 hsotg->fifo_mem = (cfg >> 16);
3121
3122 cfg = readl(hsotg->regs + GHWCFG4);
3123 hsotg->dedicated_fifos = (cfg >> 25) & 1;
Ben Dooks10aebc72010-07-19 09:40:44 +01003124
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02003125 dev_info(hsotg->dev, "EPs: %d, %s fifos, %d entries in SPRAM\n",
3126 hsotg->num_of_eps,
3127 hsotg->dedicated_fifos ? "dedicated" : "shared",
3128 hsotg->fifo_mem);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003129 return 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003130}
3131
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003132/**
3133 * s3c_hsotg_dump - dump state of the udc
3134 * @param: The device state
3135 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003136static void s3c_hsotg_dump(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003137{
Mark Brown83a01802011-06-01 17:16:15 +01003138#ifdef DEBUG
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003139 struct device *dev = hsotg->dev;
3140 void __iomem *regs = hsotg->regs;
3141 u32 val;
3142 int idx;
3143
3144 dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003145 readl(regs + DCFG), readl(regs + DCTL),
3146 readl(regs + DIEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003147
3148 dev_info(dev, "GAHBCFG=0x%08x, 0x44=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003149 readl(regs + GAHBCFG), readl(regs + 0x44));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003150
3151 dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003152 readl(regs + GRXFSIZ), readl(regs + GNPTXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003153
3154 /* show periodic fifo settings */
3155
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003156 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003157 val = readl(regs + DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003158 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003159 val >> FIFOSIZE_DEPTH_SHIFT,
3160 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003161 }
3162
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003163 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003164 dev_info(dev,
3165 "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003166 readl(regs + DIEPCTL(idx)),
3167 readl(regs + DIEPTSIZ(idx)),
3168 readl(regs + DIEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003169
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003170 val = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003171 dev_info(dev,
3172 "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003173 idx, readl(regs + DOEPCTL(idx)),
3174 readl(regs + DOEPTSIZ(idx)),
3175 readl(regs + DOEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003176
3177 }
3178
3179 dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003180 readl(regs + DVBUSDIS), readl(regs + DVBUSPULSE));
Mark Brown83a01802011-06-01 17:16:15 +01003181#endif
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003182}
3183
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003184/**
3185 * state_show - debugfs: show overall driver and device state.
3186 * @seq: The seq file to write to.
3187 * @v: Unused parameter.
3188 *
3189 * This debugfs entry shows the overall state of the hardware and
3190 * some general information about each of the endpoints available
3191 * to the system.
3192 */
3193static int state_show(struct seq_file *seq, void *v)
3194{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003195 struct dwc2_hsotg *hsotg = seq->private;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003196 void __iomem *regs = hsotg->regs;
3197 int idx;
3198
3199 seq_printf(seq, "DCFG=0x%08x, DCTL=0x%08x, DSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003200 readl(regs + DCFG),
3201 readl(regs + DCTL),
3202 readl(regs + DSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003203
3204 seq_printf(seq, "DIEPMSK=0x%08x, DOEPMASK=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003205 readl(regs + DIEPMSK), readl(regs + DOEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003206
3207 seq_printf(seq, "GINTMSK=0x%08x, GINTSTS=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003208 readl(regs + GINTMSK),
3209 readl(regs + GINTSTS));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003210
3211 seq_printf(seq, "DAINTMSK=0x%08x, DAINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003212 readl(regs + DAINTMSK),
3213 readl(regs + DAINT));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003214
3215 seq_printf(seq, "GNPTXSTS=0x%08x, GRXSTSR=%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003216 readl(regs + GNPTXSTS),
3217 readl(regs + GRXSTSR));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003218
Pavel Macheka023da32013-09-30 14:56:02 +02003219 seq_puts(seq, "\nEndpoint status:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003220
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003221 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003222 u32 in, out;
3223
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003224 in = readl(regs + DIEPCTL(idx));
3225 out = readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003226
3227 seq_printf(seq, "ep%d: DIEPCTL=0x%08x, DOEPCTL=0x%08x",
3228 idx, in, out);
3229
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003230 in = readl(regs + DIEPTSIZ(idx));
3231 out = readl(regs + DOEPTSIZ(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003232
3233 seq_printf(seq, ", DIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x",
3234 in, out);
3235
Pavel Macheka023da32013-09-30 14:56:02 +02003236 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003237 }
3238
3239 return 0;
3240}
3241
3242static int state_open(struct inode *inode, struct file *file)
3243{
3244 return single_open(file, state_show, inode->i_private);
3245}
3246
3247static const struct file_operations state_fops = {
3248 .owner = THIS_MODULE,
3249 .open = state_open,
3250 .read = seq_read,
3251 .llseek = seq_lseek,
3252 .release = single_release,
3253};
3254
3255/**
3256 * fifo_show - debugfs: show the fifo information
3257 * @seq: The seq_file to write data to.
3258 * @v: Unused parameter.
3259 *
3260 * Show the FIFO information for the overall fifo and all the
3261 * periodic transmission FIFOs.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003262 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003263static int fifo_show(struct seq_file *seq, void *v)
3264{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003265 struct dwc2_hsotg *hsotg = seq->private;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003266 void __iomem *regs = hsotg->regs;
3267 u32 val;
3268 int idx;
3269
Pavel Macheka023da32013-09-30 14:56:02 +02003270 seq_puts(seq, "Non-periodic FIFOs:\n");
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003271 seq_printf(seq, "RXFIFO: Size %d\n", readl(regs + GRXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003272
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003273 val = readl(regs + GNPTXFSIZ);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003274 seq_printf(seq, "NPTXFIFO: Size %d, Start 0x%08x\n",
Dinh Nguyen47a16852014-04-14 14:13:34 -07003275 val >> FIFOSIZE_DEPTH_SHIFT,
3276 val & FIFOSIZE_DEPTH_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003277
Pavel Macheka023da32013-09-30 14:56:02 +02003278 seq_puts(seq, "\nPeriodic TXFIFOs:\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003279
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01003280 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003281 val = readl(regs + DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003282
3283 seq_printf(seq, "\tDPTXFIFO%2d: Size %d, Start 0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003284 val >> FIFOSIZE_DEPTH_SHIFT,
3285 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003286 }
3287
3288 return 0;
3289}
3290
3291static int fifo_open(struct inode *inode, struct file *file)
3292{
3293 return single_open(file, fifo_show, inode->i_private);
3294}
3295
3296static const struct file_operations fifo_fops = {
3297 .owner = THIS_MODULE,
3298 .open = fifo_open,
3299 .read = seq_read,
3300 .llseek = seq_lseek,
3301 .release = single_release,
3302};
3303
3304
3305static const char *decode_direction(int is_in)
3306{
3307 return is_in ? "in" : "out";
3308}
3309
3310/**
3311 * ep_show - debugfs: show the state of an endpoint.
3312 * @seq: The seq_file to write data to.
3313 * @v: Unused parameter.
3314 *
3315 * This debugfs entry shows the state of the given endpoint (one is
3316 * registered for each available).
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003317 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003318static int ep_show(struct seq_file *seq, void *v)
3319{
3320 struct s3c_hsotg_ep *ep = seq->private;
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003321 struct dwc2_hsotg *hsotg = ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003322 struct s3c_hsotg_req *req;
3323 void __iomem *regs = hsotg->regs;
3324 int index = ep->index;
3325 int show_limit = 15;
3326 unsigned long flags;
3327
3328 seq_printf(seq, "Endpoint index %d, named %s, dir %s:\n",
3329 ep->index, ep->ep.name, decode_direction(ep->dir_in));
3330
3331 /* first show the register state */
3332
3333 seq_printf(seq, "\tDIEPCTL=0x%08x, DOEPCTL=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003334 readl(regs + DIEPCTL(index)),
3335 readl(regs + DOEPCTL(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003336
3337 seq_printf(seq, "\tDIEPDMA=0x%08x, DOEPDMA=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003338 readl(regs + DIEPDMA(index)),
3339 readl(regs + DOEPDMA(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003340
3341 seq_printf(seq, "\tDIEPINT=0x%08x, DOEPINT=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003342 readl(regs + DIEPINT(index)),
3343 readl(regs + DOEPINT(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003344
3345 seq_printf(seq, "\tDIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x\n",
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003346 readl(regs + DIEPTSIZ(index)),
3347 readl(regs + DOEPTSIZ(index)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003348
Pavel Macheka023da32013-09-30 14:56:02 +02003349 seq_puts(seq, "\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003350 seq_printf(seq, "mps %d\n", ep->ep.maxpacket);
3351 seq_printf(seq, "total_data=%ld\n", ep->total_data);
3352
3353 seq_printf(seq, "request list (%p,%p):\n",
3354 ep->queue.next, ep->queue.prev);
3355
Lukasz Majewski22258f42012-06-14 10:02:24 +02003356 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003357
3358 list_for_each_entry(req, &ep->queue, queue) {
3359 if (--show_limit < 0) {
Pavel Macheka023da32013-09-30 14:56:02 +02003360 seq_puts(seq, "not showing more requests...\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003361 break;
3362 }
3363
3364 seq_printf(seq, "%c req %p: %d bytes @%p, ",
3365 req == ep->req ? '*' : ' ',
3366 req, req->req.length, req->req.buf);
3367 seq_printf(seq, "%d done, res %d\n",
3368 req->req.actual, req->req.status);
3369 }
3370
Lukasz Majewski22258f42012-06-14 10:02:24 +02003371 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003372
3373 return 0;
3374}
3375
3376static int ep_open(struct inode *inode, struct file *file)
3377{
3378 return single_open(file, ep_show, inode->i_private);
3379}
3380
3381static const struct file_operations ep_fops = {
3382 .owner = THIS_MODULE,
3383 .open = ep_open,
3384 .read = seq_read,
3385 .llseek = seq_lseek,
3386 .release = single_release,
3387};
3388
3389/**
3390 * s3c_hsotg_create_debug - create debugfs directory and files
3391 * @hsotg: The driver state
3392 *
3393 * Create the debugfs files to allow the user to get information
3394 * about the state of the system. The directory name is created
3395 * with the same name as the device itself, in case we end up
3396 * with multiple blocks in future systems.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003397 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003398static void s3c_hsotg_create_debug(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003399{
3400 struct dentry *root;
3401 unsigned epidx;
3402
3403 root = debugfs_create_dir(dev_name(hsotg->dev), NULL);
3404 hsotg->debug_root = root;
3405 if (IS_ERR(root)) {
3406 dev_err(hsotg->dev, "cannot create debug root\n");
3407 return;
3408 }
3409
3410 /* create general state file */
3411
3412 hsotg->debug_file = debugfs_create_file("state", 0444, root,
3413 hsotg, &state_fops);
3414
3415 if (IS_ERR(hsotg->debug_file))
3416 dev_err(hsotg->dev, "%s: failed to create state\n", __func__);
3417
3418 hsotg->debug_fifo = debugfs_create_file("fifo", 0444, root,
3419 hsotg, &fifo_fops);
3420
3421 if (IS_ERR(hsotg->debug_fifo))
3422 dev_err(hsotg->dev, "%s: failed to create fifo\n", __func__);
3423
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003424 /* Create one file for each out endpoint */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003425 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003426 struct s3c_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003427
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003428 ep = hsotg->eps_out[epidx];
3429 if (ep) {
3430 ep->debugfs = debugfs_create_file(ep->name, 0444,
3431 root, ep, &ep_fops);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003432
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003433 if (IS_ERR(ep->debugfs))
3434 dev_err(hsotg->dev, "failed to create %s debug file\n",
3435 ep->name);
3436 }
3437 }
3438 /* Create one file for each in endpoint. EP0 is handled with out eps */
3439 for (epidx = 1; epidx < hsotg->num_of_eps; epidx++) {
3440 struct s3c_hsotg_ep *ep;
3441
3442 ep = hsotg->eps_in[epidx];
3443 if (ep) {
3444 ep->debugfs = debugfs_create_file(ep->name, 0444,
3445 root, ep, &ep_fops);
3446
3447 if (IS_ERR(ep->debugfs))
3448 dev_err(hsotg->dev, "failed to create %s debug file\n",
3449 ep->name);
3450 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003451 }
3452}
3453
3454/**
3455 * s3c_hsotg_delete_debug - cleanup debugfs entries
3456 * @hsotg: The driver state
3457 *
3458 * Cleanup (remove) the debugfs files for use on module exit.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003459 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003460static void s3c_hsotg_delete_debug(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003461{
3462 unsigned epidx;
3463
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003464 for (epidx = 0; epidx < hsotg->num_of_eps; epidx++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003465 if (hsotg->eps_in[epidx])
3466 debugfs_remove(hsotg->eps_in[epidx]->debugfs);
3467 if (hsotg->eps_out[epidx])
3468 debugfs_remove(hsotg->eps_out[epidx]->debugfs);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003469 }
3470
3471 debugfs_remove(hsotg->debug_file);
3472 debugfs_remove(hsotg->debug_fifo);
3473 debugfs_remove(hsotg->debug_root);
3474}
3475
Gregory Herreroedd74be2015-01-09 13:38:48 +01003476#ifdef CONFIG_OF
3477static void s3c_hsotg_of_probe(struct dwc2_hsotg *hsotg)
3478{
3479 struct device_node *np = hsotg->dev->of_node;
Gregory Herrero0a176272015-01-09 13:38:52 +01003480 u32 len = 0;
3481 u32 i = 0;
Gregory Herreroedd74be2015-01-09 13:38:48 +01003482
3483 /* Enable dma if requested in device tree */
3484 hsotg->g_using_dma = of_property_read_bool(np, "g-use-dma");
Gregory Herrero0a176272015-01-09 13:38:52 +01003485
3486 /*
3487 * Register TX periodic fifo size per endpoint.
3488 * EP0 is excluded since it has no fifo configuration.
3489 */
3490 if (!of_find_property(np, "g-tx-fifo-size", &len))
3491 goto rx_fifo;
3492
3493 len /= sizeof(u32);
3494
3495 /* Read tx fifo sizes other than ep0 */
3496 if (of_property_read_u32_array(np, "g-tx-fifo-size",
3497 &hsotg->g_tx_fifo_sz[1], len))
3498 goto rx_fifo;
3499
3500 /* Add ep0 */
3501 len++;
3502
3503 /* Make remaining TX fifos unavailable */
3504 if (len < MAX_EPS_CHANNELS) {
3505 for (i = len; i < MAX_EPS_CHANNELS; i++)
3506 hsotg->g_tx_fifo_sz[i] = 0;
3507 }
3508
3509rx_fifo:
3510 /* Register RX fifo size */
3511 of_property_read_u32(np, "g-rx-fifo-size", &hsotg->g_rx_fifo_sz);
3512
3513 /* Register NPTX fifo size */
3514 of_property_read_u32(np, "g-np-tx-fifo-size",
3515 &hsotg->g_np_g_tx_fifo_sz);
Gregory Herreroedd74be2015-01-09 13:38:48 +01003516}
3517#else
3518static inline void s3c_hsotg_of_probe(struct dwc2_hsotg *hsotg) { }
3519#endif
3520
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003521/**
Dinh Nguyen117777b2014-11-11 11:13:34 -06003522 * dwc2_gadget_init - init function for gadget
3523 * @dwc2: The data structure for the DWC2 driver.
3524 * @irq: The IRQ number for the controller.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003525 */
Dinh Nguyen117777b2014-11-11 11:13:34 -06003526int dwc2_gadget_init(struct dwc2_hsotg *hsotg, int irq)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003527{
Dinh Nguyen117777b2014-11-11 11:13:34 -06003528 struct device *dev = hsotg->dev;
3529 struct s3c_hsotg_plat *plat = dev->platform_data;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003530 int epnum;
3531 int ret;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003532 int i;
Gregory Herrero0a176272015-01-09 13:38:52 +01003533 u32 p_tx_fifo[] = DWC2_G_P_LEGACY_TX_FIFO_SIZE;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003534
Kamil Debski1b59fc72014-09-09 10:44:52 +02003535 /* Set default UTMI width */
3536 hsotg->phyif = GUSBCFG_PHYIF16;
3537
Gregory Herreroedd74be2015-01-09 13:38:48 +01003538 s3c_hsotg_of_probe(hsotg);
3539
Gregory Herrero0a176272015-01-09 13:38:52 +01003540 /* Initialize to legacy fifo configuration values */
3541 hsotg->g_rx_fifo_sz = 2048;
3542 hsotg->g_np_g_tx_fifo_sz = 1024;
3543 memcpy(&hsotg->g_tx_fifo_sz[1], p_tx_fifo, sizeof(p_tx_fifo));
3544 /* Device tree specific probe */
3545 s3c_hsotg_of_probe(hsotg);
3546 /* Dump fifo information */
3547 dev_dbg(dev, "NonPeriodic TXFIFO size: %d\n",
3548 hsotg->g_np_g_tx_fifo_sz);
3549 dev_dbg(dev, "RXFIFO size: %d\n", hsotg->g_rx_fifo_sz);
3550 for (i = 0; i < MAX_EPS_CHANNELS; i++)
3551 dev_dbg(dev, "Periodic TXFIFO%2d size: %d\n", i,
3552 hsotg->g_tx_fifo_sz[i]);
Matt Porter74084842013-12-19 09:23:06 -05003553 /*
Yunzhi Li135b3c42014-12-08 17:46:26 +08003554 * If platform probe couldn't find a generic PHY or an old style
3555 * USB PHY, fall back to pdata
Matt Porter74084842013-12-19 09:23:06 -05003556 */
Yunzhi Li135b3c42014-12-08 17:46:26 +08003557 if (IS_ERR_OR_NULL(hsotg->phy) && IS_ERR_OR_NULL(hsotg->uphy)) {
3558 plat = dev_get_platdata(dev);
3559 if (!plat) {
3560 dev_err(dev,
3561 "no platform data or transceiver defined\n");
3562 return -EPROBE_DEFER;
3563 }
3564 hsotg->plat = plat;
3565 } else if (hsotg->phy) {
Kamil Debski1b59fc72014-09-09 10:44:52 +02003566 /*
3567 * If using the generic PHY framework, check if the PHY bus
3568 * width is 8-bit and set the phyif appropriately.
3569 */
Yunzhi Li135b3c42014-12-08 17:46:26 +08003570 if (phy_get_bus_width(hsotg->phy) == 8)
Kamil Debski1b59fc72014-09-09 10:44:52 +02003571 hsotg->phyif = GUSBCFG_PHYIF8;
3572 }
Praveen Panerib2e587d2012-11-14 15:57:16 +05303573
Dinh Nguyen117777b2014-11-11 11:13:34 -06003574 hsotg->clk = devm_clk_get(dev, "otg");
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003575 if (IS_ERR(hsotg->clk)) {
Dinh Nguyen8d736d82014-11-11 11:13:38 -06003576 hsotg->clk = NULL;
Dinh Nguyenf415fbd2014-11-24 11:02:11 -06003577 dev_dbg(dev, "cannot get otg clock\n");
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003578 }
3579
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01003580 hsotg->gadget.max_speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003581 hsotg->gadget.ops = &s3c_hsotg_gadget_ops;
3582 hsotg->gadget.name = dev_name(dev);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003583
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003584 /* reset the system */
3585
Dinh Nguyenf415fbd2014-11-24 11:02:11 -06003586 ret = clk_prepare_enable(hsotg->clk);
3587 if (ret) {
3588 dev_err(dev, "failed to enable otg clk\n");
3589 goto err_clk;
3590 }
3591
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003592
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003593 /* regulators */
3594
3595 for (i = 0; i < ARRAY_SIZE(hsotg->supplies); i++)
3596 hsotg->supplies[i].supply = s3c_hsotg_supply_names[i];
3597
Sachin Kamatcd762132013-01-08 14:27:00 +05303598 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(hsotg->supplies),
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003599 hsotg->supplies);
3600 if (ret) {
3601 dev_err(dev, "failed to request supplies: %d\n", ret);
Sachin Kamat338edab2012-05-18 14:33:46 +05303602 goto err_clk;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003603 }
3604
3605 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
3606 hsotg->supplies);
3607
3608 if (ret) {
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003609 dev_err(dev, "failed to enable supplies: %d\n", ret);
Mian Yousaf Kaukabc139ec22015-01-09 13:38:45 +01003610 goto err_clk;
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003611 }
3612
Lukasz Majewski41188782012-05-04 14:17:01 +02003613 /* usb phy enable */
3614 s3c_hsotg_phy_enable(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003615
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003616 s3c_hsotg_corereset(hsotg);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003617 ret = s3c_hsotg_hw_cfg(hsotg);
3618 if (ret) {
3619 dev_err(hsotg->dev, "Hardware configuration failed: %d\n", ret);
3620 goto err_clk;
3621 }
3622
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02003623 s3c_hsotg_init(hsotg);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003624
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01003625 hsotg->ctrl_buff = devm_kzalloc(hsotg->dev,
3626 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
3627 if (!hsotg->ctrl_buff) {
3628 dev_err(dev, "failed to allocate ctrl request buff\n");
3629 ret = -ENOMEM;
3630 goto err_supplies;
3631 }
3632
3633 hsotg->ep0_buff = devm_kzalloc(hsotg->dev,
3634 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
3635 if (!hsotg->ep0_buff) {
3636 dev_err(dev, "failed to allocate ctrl reply buff\n");
3637 ret = -ENOMEM;
3638 goto err_supplies;
3639 }
3640
Dinh Nguyendb8178c2014-11-11 11:13:37 -06003641 ret = devm_request_irq(hsotg->dev, irq, s3c_hsotg_irq, IRQF_SHARED,
3642 dev_name(hsotg->dev), hsotg);
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02003643 if (ret < 0) {
3644 s3c_hsotg_phy_disable(hsotg);
3645 clk_disable_unprepare(hsotg->clk);
3646 regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3647 hsotg->supplies);
Dinh Nguyendb8178c2014-11-11 11:13:37 -06003648 dev_err(dev, "cannot claim IRQ for gadget\n");
Mian Yousaf Kaukabc139ec22015-01-09 13:38:45 +01003649 goto err_supplies;
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02003650 }
3651
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003652 /* hsotg->num_of_eps holds number of EPs other than ep0 */
3653
3654 if (hsotg->num_of_eps == 0) {
3655 dev_err(dev, "wrong number of EPs (zero)\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003656 ret = -EINVAL;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003657 goto err_supplies;
3658 }
3659
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003660 /* setup endpoint information */
3661
3662 INIT_LIST_HEAD(&hsotg->gadget.ep_list);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003663 hsotg->gadget.ep0 = &hsotg->eps_out[0]->ep;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003664
3665 /* allocate EP0 request */
3666
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003667 hsotg->ctrl_req = s3c_hsotg_ep_alloc_request(&hsotg->eps_out[0]->ep,
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003668 GFP_KERNEL);
3669 if (!hsotg->ctrl_req) {
3670 dev_err(dev, "failed to allocate ctrl req\n");
Julia Lawalldfdda5a2012-08-14 08:47:34 +02003671 ret = -ENOMEM;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003672 goto err_supplies;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003673 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003674
3675 /* initialise the endpoints now the core has been initialised */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003676 for (epnum = 0; epnum < hsotg->num_of_eps; epnum++) {
3677 if (hsotg->eps_in[epnum])
3678 s3c_hsotg_initep(hsotg, hsotg->eps_in[epnum],
3679 epnum, 1);
3680 if (hsotg->eps_out[epnum])
3681 s3c_hsotg_initep(hsotg, hsotg->eps_out[epnum],
3682 epnum, 0);
3683 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003684
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003685 /* disable power and clock */
Marek Szyprowski3a8146a2014-10-20 12:45:34 +02003686 s3c_hsotg_phy_disable(hsotg);
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003687
3688 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3689 hsotg->supplies);
3690 if (ret) {
Dinh Nguyen117777b2014-11-11 11:13:34 -06003691 dev_err(dev, "failed to disable supplies: %d\n", ret);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003692 goto err_supplies;
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02003693 }
3694
Dinh Nguyen117777b2014-11-11 11:13:34 -06003695 ret = usb_add_gadget_udc(dev, &hsotg->gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003696 if (ret)
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003697 goto err_supplies;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003698
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003699 s3c_hsotg_create_debug(hsotg);
3700
3701 s3c_hsotg_dump(hsotg);
3702
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003703 return 0;
3704
Lukasz Majewskifc9a7312012-05-04 14:17:02 +02003705err_supplies:
Lukasz Majewski41188782012-05-04 14:17:01 +02003706 s3c_hsotg_phy_disable(hsotg);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003707err_clk:
Lukasz Majewski1d144c62012-05-04 14:17:16 +02003708 clk_disable_unprepare(hsotg->clk);
Sachin Kamat338edab2012-05-18 14:33:46 +05303709
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003710 return ret;
3711}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003712EXPORT_SYMBOL_GPL(dwc2_gadget_init);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003713
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003714/**
3715 * s3c_hsotg_remove - remove function for hsotg driver
3716 * @pdev: The platform information for the driver
3717 */
Dinh Nguyen117777b2014-11-11 11:13:34 -06003718int s3c_hsotg_remove(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003719{
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003720 usb_del_gadget_udc(&hsotg->gadget);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003721 s3c_hsotg_delete_debug(hsotg);
Lukasz Majewski04b4a0f2012-05-04 14:17:15 +02003722 clk_disable_unprepare(hsotg->clk);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02003723
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003724 return 0;
3725}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003726EXPORT_SYMBOL_GPL(s3c_hsotg_remove);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003727
Dinh Nguyen117777b2014-11-11 11:13:34 -06003728int s3c_hsotg_suspend(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003729{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003730 unsigned long flags;
3731 int ret = 0;
3732
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003733 mutex_lock(&hsotg->init_mutex);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003734
3735 if (hsotg->driver) {
3736 int ep;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003737
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003738 dev_info(hsotg->dev, "suspending usb gadget %s\n",
3739 hsotg->driver->driver.name);
3740
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003741 spin_lock_irqsave(&hsotg->lock, flags);
3742 if (hsotg->enabled)
3743 s3c_hsotg_core_disconnect(hsotg);
3744 s3c_hsotg_disconnect(hsotg);
3745 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3746 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003747
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003748 s3c_hsotg_phy_disable(hsotg);
Marek Szyprowski7b093f72014-10-20 12:45:39 +02003749
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003750 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
3751 if (hsotg->eps_in[ep])
3752 s3c_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
3753 if (hsotg->eps_out[ep])
3754 s3c_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
3755 }
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003756
3757 ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies),
3758 hsotg->supplies);
Robert Baldygad00b4142014-09-09 10:44:57 +02003759 clk_disable(hsotg->clk);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003760 }
3761
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003762 mutex_unlock(&hsotg->init_mutex);
3763
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003764 return ret;
3765}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003766EXPORT_SYMBOL_GPL(s3c_hsotg_suspend);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003767
Dinh Nguyen117777b2014-11-11 11:13:34 -06003768int s3c_hsotg_resume(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003769{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003770 unsigned long flags;
3771 int ret = 0;
3772
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003773 mutex_lock(&hsotg->init_mutex);
3774
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003775 if (hsotg->driver) {
3776 dev_info(hsotg->dev, "resuming usb gadget %s\n",
3777 hsotg->driver->driver.name);
Robert Baldygad00b4142014-09-09 10:44:57 +02003778
3779 clk_enable(hsotg->clk);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003780 ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies),
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003781 hsotg->supplies);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003782
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01003783 s3c_hsotg_phy_enable(hsotg);
3784
3785 spin_lock_irqsave(&hsotg->lock, flags);
3786 s3c_hsotg_core_init_disconnected(hsotg);
3787 if (hsotg->enabled)
3788 s3c_hsotg_core_connect(hsotg);
3789 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003790 }
Marek Szyprowski7ad80962014-11-21 15:14:48 +01003791 mutex_unlock(&hsotg->init_mutex);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01003792
3793 return ret;
3794}
Dinh Nguyen117777b2014-11-11 11:13:34 -06003795EXPORT_SYMBOL_GPL(s3c_hsotg_resume);