]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/usb/dwc2/gadget.c
Revert "usb: dwc2: gadget: fix TX FIFO size and address initialization"
[mirror_ubuntu-zesty-kernel.git] / drivers / usb / dwc2 / gadget.c
CommitLineData
8b9bc460 1/**
dfbc6fa3
AT
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5b7d70c6
BD
4 *
5 * 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.
8b9bc460 15 */
5b7d70c6
BD
16
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>
7ad8096e 23#include <linux/mutex.h>
5b7d70c6
BD
24#include <linux/seq_file.h>
25#include <linux/delay.h>
26#include <linux/io.h>
5a0e3ad6 27#include <linux/slab.h>
c50f056c 28#include <linux/of_platform.h>
5b7d70c6
BD
29
30#include <linux/usb/ch9.h>
31#include <linux/usb/gadget.h>
b2e587db 32#include <linux/usb/phy.h>
5b7d70c6 33
f7c0b143 34#include "core.h"
941fcce4 35#include "hw.h"
5b7d70c6
BD
36
37/* conversion functions */
1f91b4cc 38static inline struct dwc2_hsotg_req *our_req(struct usb_request *req)
5b7d70c6 39{
1f91b4cc 40 return container_of(req, struct dwc2_hsotg_req, req);
5b7d70c6
BD
41}
42
1f91b4cc 43static inline struct dwc2_hsotg_ep *our_ep(struct usb_ep *ep)
5b7d70c6 44{
1f91b4cc 45 return container_of(ep, struct dwc2_hsotg_ep, ep);
5b7d70c6
BD
46}
47
941fcce4 48static inline struct dwc2_hsotg *to_hsotg(struct usb_gadget *gadget)
5b7d70c6 49{
941fcce4 50 return container_of(gadget, struct dwc2_hsotg, gadget);
5b7d70c6
BD
51}
52
53static inline void __orr32(void __iomem *ptr, u32 val)
54{
95c8bc36 55 dwc2_writel(dwc2_readl(ptr) | val, ptr);
5b7d70c6
BD
56}
57
58static inline void __bic32(void __iomem *ptr, u32 val)
59{
95c8bc36 60 dwc2_writel(dwc2_readl(ptr) & ~val, ptr);
5b7d70c6
BD
61}
62
1f91b4cc 63static inline struct dwc2_hsotg_ep *index_to_ep(struct dwc2_hsotg *hsotg,
c6f5c050
MYK
64 u32 ep_index, u32 dir_in)
65{
66 if (dir_in)
67 return hsotg->eps_in[ep_index];
68 else
69 return hsotg->eps_out[ep_index];
70}
71
997f4f81 72/* forward declaration of functions */
1f91b4cc 73static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg);
5b7d70c6
BD
74
75/**
76 * using_dma - return the DMA status of the driver.
77 * @hsotg: The driver state.
78 *
79 * Return true if we're using DMA.
80 *
81 * Currently, we have the DMA support code worked into everywhere
82 * that needs it, but the AMBA DMA implementation in the hardware can
83 * only DMA from 32bit aligned addresses. This means that gadgets such
84 * as the CDC Ethernet cannot work as they often pass packets which are
85 * not 32bit aligned.
86 *
87 * Unfortunately the choice to use DMA or not is global to the controller
88 * and seems to be only settable when the controller is being put through
89 * a core reset. This means we either need to fix the gadgets to take
90 * account of DMA alignment, or add bounce buffers (yuerk).
91 *
edd74be8 92 * g_using_dma is set depending on dts flag.
5b7d70c6 93 */
941fcce4 94static inline bool using_dma(struct dwc2_hsotg *hsotg)
5b7d70c6 95{
edd74be8 96 return hsotg->g_using_dma;
5b7d70c6
BD
97}
98
92d1635d
VM
99/**
100 * dwc2_gadget_incr_frame_num - Increments the targeted frame number.
101 * @hs_ep: The endpoint
102 * @increment: The value to increment by
103 *
104 * This function will also check if the frame number overruns DSTS_SOFFN_LIMIT.
105 * If an overrun occurs it will wrap the value and set the frame_overrun flag.
106 */
107static inline void dwc2_gadget_incr_frame_num(struct dwc2_hsotg_ep *hs_ep)
108{
109 hs_ep->target_frame += hs_ep->interval;
110 if (hs_ep->target_frame > DSTS_SOFFN_LIMIT) {
111 hs_ep->frame_overrun = 1;
112 hs_ep->target_frame &= DSTS_SOFFN_LIMIT;
113 } else {
114 hs_ep->frame_overrun = 0;
115 }
116}
117
5b7d70c6 118/**
1f91b4cc 119 * dwc2_hsotg_en_gsint - enable one or more of the general interrupt
5b7d70c6
BD
120 * @hsotg: The device state
121 * @ints: A bitmask of the interrupts to enable
122 */
1f91b4cc 123static void dwc2_hsotg_en_gsint(struct dwc2_hsotg *hsotg, u32 ints)
5b7d70c6 124{
95c8bc36 125 u32 gsintmsk = dwc2_readl(hsotg->regs + GINTMSK);
5b7d70c6
BD
126 u32 new_gsintmsk;
127
128 new_gsintmsk = gsintmsk | ints;
129
130 if (new_gsintmsk != gsintmsk) {
131 dev_dbg(hsotg->dev, "gsintmsk now 0x%08x\n", new_gsintmsk);
95c8bc36 132 dwc2_writel(new_gsintmsk, hsotg->regs + GINTMSK);
5b7d70c6
BD
133 }
134}
135
136/**
1f91b4cc 137 * dwc2_hsotg_disable_gsint - disable one or more of the general interrupt
5b7d70c6
BD
138 * @hsotg: The device state
139 * @ints: A bitmask of the interrupts to enable
140 */
1f91b4cc 141static void dwc2_hsotg_disable_gsint(struct dwc2_hsotg *hsotg, u32 ints)
5b7d70c6 142{
95c8bc36 143 u32 gsintmsk = dwc2_readl(hsotg->regs + GINTMSK);
5b7d70c6
BD
144 u32 new_gsintmsk;
145
146 new_gsintmsk = gsintmsk & ~ints;
147
148 if (new_gsintmsk != gsintmsk)
95c8bc36 149 dwc2_writel(new_gsintmsk, hsotg->regs + GINTMSK);
5b7d70c6
BD
150}
151
152/**
1f91b4cc 153 * dwc2_hsotg_ctrl_epint - enable/disable an endpoint irq
5b7d70c6
BD
154 * @hsotg: The device state
155 * @ep: The endpoint index
156 * @dir_in: True if direction is in.
157 * @en: The enable value, true to enable
158 *
159 * Set or clear the mask for an individual endpoint's interrupt
160 * request.
161 */
1f91b4cc 162static void dwc2_hsotg_ctrl_epint(struct dwc2_hsotg *hsotg,
5b7d70c6
BD
163 unsigned int ep, unsigned int dir_in,
164 unsigned int en)
165{
166 unsigned long flags;
167 u32 bit = 1 << ep;
168 u32 daint;
169
170 if (!dir_in)
171 bit <<= 16;
172
173 local_irq_save(flags);
95c8bc36 174 daint = dwc2_readl(hsotg->regs + DAINTMSK);
5b7d70c6
BD
175 if (en)
176 daint |= bit;
177 else
178 daint &= ~bit;
95c8bc36 179 dwc2_writel(daint, hsotg->regs + DAINTMSK);
5b7d70c6
BD
180 local_irq_restore(flags);
181}
182
183/**
1f91b4cc 184 * dwc2_hsotg_init_fifo - initialise non-periodic FIFOs
5b7d70c6
BD
185 * @hsotg: The device instance.
186 */
1f91b4cc 187static void dwc2_hsotg_init_fifo(struct dwc2_hsotg *hsotg)
5b7d70c6 188{
2317eacd 189 unsigned int ep;
0f002d20 190 unsigned int addr;
1703a6d3 191 int timeout;
0f002d20
BD
192 u32 val;
193
7fcbc95c
GH
194 /* Reset fifo map if not correctly cleared during previous session */
195 WARN_ON(hsotg->fifo_map);
196 hsotg->fifo_map = 0;
197
0a176279 198 /* set RX/NPTX FIFO sizes */
95c8bc36
AS
199 dwc2_writel(hsotg->g_rx_fifo_sz, hsotg->regs + GRXFSIZ);
200 dwc2_writel((hsotg->g_rx_fifo_sz << FIFOSIZE_STARTADDR_SHIFT) |
0a176279
GH
201 (hsotg->g_np_g_tx_fifo_sz << FIFOSIZE_DEPTH_SHIFT),
202 hsotg->regs + GNPTXFSIZ);
0f002d20 203
8b9bc460
LM
204 /*
205 * arange all the rest of the TX FIFOs, as some versions of this
0f002d20
BD
206 * block have overlapping default addresses. This also ensures
207 * that if the settings have been changed, then they are set to
8b9bc460
LM
208 * known values.
209 */
0f002d20
BD
210
211 /* start at the end of the GNPTXFSIZ, rounded up */
0a176279 212 addr = hsotg->g_rx_fifo_sz + hsotg->g_np_g_tx_fifo_sz;
0f002d20 213
8b9bc460 214 /*
0a176279 215 * Configure fifos sizes from provided configuration and assign
b203d0a2
RB
216 * them to endpoints dynamically according to maxpacket size value of
217 * given endpoint.
8b9bc460 218 */
2317eacd 219 for (ep = 1; ep < MAX_EPS_CHANNELS; ep++) {
3fa95385
JY
220 if (!hsotg->g_tx_fifo_sz[ep])
221 continue;
222 val = addr;
223 val |= hsotg->g_tx_fifo_sz[ep] << FIFOSIZE_DEPTH_SHIFT;
224 WARN_ONCE(addr + hsotg->g_tx_fifo_sz[ep] > hsotg->fifo_mem,
225 "insufficient fifo memory");
226 addr += hsotg->g_tx_fifo_sz[ep];
0f002d20 227
2317eacd 228 dwc2_writel(val, hsotg->regs + DPTXFSIZN(ep));
0f002d20 229 }
1703a6d3 230
8b9bc460
LM
231 /*
232 * according to p428 of the design guide, we need to ensure that
233 * all fifos are flushed before continuing
234 */
1703a6d3 235
95c8bc36 236 dwc2_writel(GRSTCTL_TXFNUM(0x10) | GRSTCTL_TXFFLSH |
47a1685f 237 GRSTCTL_RXFFLSH, hsotg->regs + GRSTCTL);
1703a6d3
BD
238
239 /* wait until the fifos are both flushed */
240 timeout = 100;
241 while (1) {
95c8bc36 242 val = dwc2_readl(hsotg->regs + GRSTCTL);
1703a6d3 243
47a1685f 244 if ((val & (GRSTCTL_TXFFLSH | GRSTCTL_RXFFLSH)) == 0)
1703a6d3
BD
245 break;
246
247 if (--timeout == 0) {
248 dev_err(hsotg->dev,
249 "%s: timeout flushing fifos (GRSTCTL=%08x)\n",
250 __func__, val);
48b20bcb 251 break;
1703a6d3
BD
252 }
253
254 udelay(1);
255 }
256
257 dev_dbg(hsotg->dev, "FIFOs reset, timeout at %d\n", timeout);
5b7d70c6
BD
258}
259
260/**
261 * @ep: USB endpoint to allocate request for.
262 * @flags: Allocation flags
263 *
264 * Allocate a new USB request structure appropriate for the specified endpoint
265 */
1f91b4cc 266static struct usb_request *dwc2_hsotg_ep_alloc_request(struct usb_ep *ep,
0978f8c5 267 gfp_t flags)
5b7d70c6 268{
1f91b4cc 269 struct dwc2_hsotg_req *req;
5b7d70c6 270
1f91b4cc 271 req = kzalloc(sizeof(struct dwc2_hsotg_req), flags);
5b7d70c6
BD
272 if (!req)
273 return NULL;
274
275 INIT_LIST_HEAD(&req->queue);
276
5b7d70c6
BD
277 return &req->req;
278}
279
280/**
281 * is_ep_periodic - return true if the endpoint is in periodic mode.
282 * @hs_ep: The endpoint to query.
283 *
284 * Returns true if the endpoint is in periodic mode, meaning it is being
285 * used for an Interrupt or ISO transfer.
286 */
1f91b4cc 287static inline int is_ep_periodic(struct dwc2_hsotg_ep *hs_ep)
5b7d70c6
BD
288{
289 return hs_ep->periodic;
290}
291
292/**
1f91b4cc 293 * dwc2_hsotg_unmap_dma - unmap the DMA memory being used for the request
5b7d70c6
BD
294 * @hsotg: The device state.
295 * @hs_ep: The endpoint for the request
296 * @hs_req: The request being processed.
297 *
1f91b4cc 298 * This is the reverse of dwc2_hsotg_map_dma(), called for the completion
5b7d70c6 299 * of a request to ensure the buffer is ready for access by the caller.
8b9bc460 300 */
1f91b4cc
FB
301static void dwc2_hsotg_unmap_dma(struct dwc2_hsotg *hsotg,
302 struct dwc2_hsotg_ep *hs_ep,
303 struct dwc2_hsotg_req *hs_req)
5b7d70c6
BD
304{
305 struct usb_request *req = &hs_req->req;
5b7d70c6
BD
306
307 /* ignore this if we're not moving any data */
308 if (hs_req->req.length == 0)
309 return;
310
17d966a3 311 usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in);
5b7d70c6
BD
312}
313
314/**
1f91b4cc 315 * dwc2_hsotg_write_fifo - write packet Data to the TxFIFO
5b7d70c6
BD
316 * @hsotg: The controller state.
317 * @hs_ep: The endpoint we're going to write for.
318 * @hs_req: The request to write data for.
319 *
320 * This is called when the TxFIFO has some space in it to hold a new
321 * transmission and we have something to give it. The actual setup of
322 * the data size is done elsewhere, so all we have to do is to actually
323 * write the data.
324 *
325 * The return value is zero if there is more space (or nothing was done)
326 * otherwise -ENOSPC is returned if the FIFO space was used up.
327 *
328 * This routine is only needed for PIO
8b9bc460 329 */
1f91b4cc
FB
330static int dwc2_hsotg_write_fifo(struct dwc2_hsotg *hsotg,
331 struct dwc2_hsotg_ep *hs_ep,
332 struct dwc2_hsotg_req *hs_req)
5b7d70c6
BD
333{
334 bool periodic = is_ep_periodic(hs_ep);
95c8bc36 335 u32 gnptxsts = dwc2_readl(hsotg->regs + GNPTXSTS);
5b7d70c6
BD
336 int buf_pos = hs_req->req.actual;
337 int to_write = hs_ep->size_loaded;
338 void *data;
339 int can_write;
340 int pkt_round;
4fca54aa 341 int max_transfer;
5b7d70c6
BD
342
343 to_write -= (buf_pos - hs_ep->last_load);
344
345 /* if there's nothing to write, get out early */
346 if (to_write == 0)
347 return 0;
348
10aebc77 349 if (periodic && !hsotg->dedicated_fifos) {
95c8bc36 350 u32 epsize = dwc2_readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
5b7d70c6
BD
351 int size_left;
352 int size_done;
353
8b9bc460
LM
354 /*
355 * work out how much data was loaded so we can calculate
356 * how much data is left in the fifo.
357 */
5b7d70c6 358
47a1685f 359 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
5b7d70c6 360
8b9bc460
LM
361 /*
362 * if shared fifo, we cannot write anything until the
e7a9ff54
BD
363 * previous data has been completely sent.
364 */
365 if (hs_ep->fifo_load != 0) {
1f91b4cc 366 dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
e7a9ff54
BD
367 return -ENOSPC;
368 }
369
5b7d70c6
BD
370 dev_dbg(hsotg->dev, "%s: left=%d, load=%d, fifo=%d, size %d\n",
371 __func__, size_left,
372 hs_ep->size_loaded, hs_ep->fifo_load, hs_ep->fifo_size);
373
374 /* how much of the data has moved */
375 size_done = hs_ep->size_loaded - size_left;
376
377 /* how much data is left in the fifo */
378 can_write = hs_ep->fifo_load - size_done;
379 dev_dbg(hsotg->dev, "%s: => can_write1=%d\n",
380 __func__, can_write);
381
382 can_write = hs_ep->fifo_size - can_write;
383 dev_dbg(hsotg->dev, "%s: => can_write2=%d\n",
384 __func__, can_write);
385
386 if (can_write <= 0) {
1f91b4cc 387 dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
5b7d70c6
BD
388 return -ENOSPC;
389 }
10aebc77 390 } else if (hsotg->dedicated_fifos && hs_ep->index != 0) {
ad674a15
RB
391 can_write = dwc2_readl(hsotg->regs +
392 DTXFSTS(hs_ep->fifo_index));
10aebc77
BD
393
394 can_write &= 0xffff;
395 can_write *= 4;
5b7d70c6 396 } else {
47a1685f 397 if (GNPTXSTS_NP_TXQ_SPC_AVAIL_GET(gnptxsts) == 0) {
5b7d70c6
BD
398 dev_dbg(hsotg->dev,
399 "%s: no queue slots available (0x%08x)\n",
400 __func__, gnptxsts);
401
1f91b4cc 402 dwc2_hsotg_en_gsint(hsotg, GINTSTS_NPTXFEMP);
5b7d70c6
BD
403 return -ENOSPC;
404 }
405
47a1685f 406 can_write = GNPTXSTS_NP_TXF_SPC_AVAIL_GET(gnptxsts);
679f9b7c 407 can_write *= 4; /* fifo size is in 32bit quantities. */
5b7d70c6
BD
408 }
409
4fca54aa
RB
410 max_transfer = hs_ep->ep.maxpacket * hs_ep->mc;
411
412 dev_dbg(hsotg->dev, "%s: GNPTXSTS=%08x, can=%d, to=%d, max_transfer %d\n",
413 __func__, gnptxsts, can_write, to_write, max_transfer);
5b7d70c6 414
8b9bc460
LM
415 /*
416 * limit to 512 bytes of data, it seems at least on the non-periodic
5b7d70c6
BD
417 * FIFO, requests of >512 cause the endpoint to get stuck with a
418 * fragment of the end of the transfer in it.
419 */
811f3303 420 if (can_write > 512 && !periodic)
5b7d70c6
BD
421 can_write = 512;
422
8b9bc460
LM
423 /*
424 * limit the write to one max-packet size worth of data, but allow
03e10e5a 425 * the transfer to return that it did not run out of fifo space
8b9bc460
LM
426 * doing it.
427 */
4fca54aa
RB
428 if (to_write > max_transfer) {
429 to_write = max_transfer;
03e10e5a 430
5cb2ff0c
RB
431 /* it's needed only when we do not use dedicated fifos */
432 if (!hsotg->dedicated_fifos)
1f91b4cc 433 dwc2_hsotg_en_gsint(hsotg,
47a1685f
DN
434 periodic ? GINTSTS_PTXFEMP :
435 GINTSTS_NPTXFEMP);
03e10e5a
BD
436 }
437
5b7d70c6
BD
438 /* see if we can write data */
439
440 if (to_write > can_write) {
441 to_write = can_write;
4fca54aa 442 pkt_round = to_write % max_transfer;
5b7d70c6 443
8b9bc460
LM
444 /*
445 * Round the write down to an
5b7d70c6
BD
446 * exact number of packets.
447 *
448 * Note, we do not currently check to see if we can ever
449 * write a full packet or not to the FIFO.
450 */
451
452 if (pkt_round)
453 to_write -= pkt_round;
454
8b9bc460
LM
455 /*
456 * enable correct FIFO interrupt to alert us when there
457 * is more room left.
458 */
5b7d70c6 459
5cb2ff0c
RB
460 /* it's needed only when we do not use dedicated fifos */
461 if (!hsotg->dedicated_fifos)
1f91b4cc 462 dwc2_hsotg_en_gsint(hsotg,
47a1685f
DN
463 periodic ? GINTSTS_PTXFEMP :
464 GINTSTS_NPTXFEMP);
5b7d70c6
BD
465 }
466
467 dev_dbg(hsotg->dev, "write %d/%d, can_write %d, done %d\n",
468 to_write, hs_req->req.length, can_write, buf_pos);
469
470 if (to_write <= 0)
471 return -ENOSPC;
472
473 hs_req->req.actual = buf_pos + to_write;
474 hs_ep->total_data += to_write;
475
476 if (periodic)
477 hs_ep->fifo_load += to_write;
478
479 to_write = DIV_ROUND_UP(to_write, 4);
480 data = hs_req->req.buf + buf_pos;
481
1a7ed5be 482 iowrite32_rep(hsotg->regs + EPFIFO(hs_ep->index), data, to_write);
5b7d70c6
BD
483
484 return (to_write >= can_write) ? -ENOSPC : 0;
485}
486
487/**
488 * get_ep_limit - get the maximum data legnth for this endpoint
489 * @hs_ep: The endpoint
490 *
491 * Return the maximum data that can be queued in one go on a given endpoint
492 * so that transfers that are too long can be split.
493 */
1f91b4cc 494static unsigned get_ep_limit(struct dwc2_hsotg_ep *hs_ep)
5b7d70c6
BD
495{
496 int index = hs_ep->index;
497 unsigned maxsize;
498 unsigned maxpkt;
499
500 if (index != 0) {
47a1685f
DN
501 maxsize = DXEPTSIZ_XFERSIZE_LIMIT + 1;
502 maxpkt = DXEPTSIZ_PKTCNT_LIMIT + 1;
5b7d70c6 503 } else {
b05ca580 504 maxsize = 64+64;
66e5c643 505 if (hs_ep->dir_in)
47a1685f 506 maxpkt = DIEPTSIZ0_PKTCNT_LIMIT + 1;
66e5c643 507 else
5b7d70c6 508 maxpkt = 2;
5b7d70c6
BD
509 }
510
511 /* we made the constant loading easier above by using +1 */
512 maxpkt--;
513 maxsize--;
514
8b9bc460
LM
515 /*
516 * constrain by packet count if maxpkts*pktsize is greater
517 * than the length register size.
518 */
5b7d70c6
BD
519
520 if ((maxpkt * hs_ep->ep.maxpacket) < maxsize)
521 maxsize = maxpkt * hs_ep->ep.maxpacket;
522
523 return maxsize;
524}
525
381fc8f8
VM
526/**
527* dwc2_hsotg_read_frameno - read current frame number
528* @hsotg: The device instance
529*
530* Return the current frame number
531*/
532static u32 dwc2_hsotg_read_frameno(struct dwc2_hsotg *hsotg)
533{
534 u32 dsts;
535
536 dsts = dwc2_readl(hsotg->regs + DSTS);
537 dsts &= DSTS_SOFFN_MASK;
538 dsts >>= DSTS_SOFFN_SHIFT;
539
540 return dsts;
541}
542
5b7d70c6 543/**
1f91b4cc 544 * dwc2_hsotg_start_req - start a USB request from an endpoint's queue
5b7d70c6
BD
545 * @hsotg: The controller state.
546 * @hs_ep: The endpoint to process a request for
547 * @hs_req: The request to start.
548 * @continuing: True if we are doing more for the current request.
549 *
550 * Start the given request running by setting the endpoint registers
551 * appropriately, and writing any data to the FIFOs.
552 */
1f91b4cc
FB
553static void dwc2_hsotg_start_req(struct dwc2_hsotg *hsotg,
554 struct dwc2_hsotg_ep *hs_ep,
555 struct dwc2_hsotg_req *hs_req,
5b7d70c6
BD
556 bool continuing)
557{
558 struct usb_request *ureq = &hs_req->req;
559 int index = hs_ep->index;
560 int dir_in = hs_ep->dir_in;
561 u32 epctrl_reg;
562 u32 epsize_reg;
563 u32 epsize;
564 u32 ctrl;
565 unsigned length;
566 unsigned packets;
567 unsigned maxreq;
568
569 if (index != 0) {
570 if (hs_ep->req && !continuing) {
571 dev_err(hsotg->dev, "%s: active request\n", __func__);
572 WARN_ON(1);
573 return;
574 } else if (hs_ep->req != hs_req && continuing) {
575 dev_err(hsotg->dev,
576 "%s: continue different req\n", __func__);
577 WARN_ON(1);
578 return;
579 }
580 }
581
94cb8fd6
LM
582 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
583 epsize_reg = dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
5b7d70c6
BD
584
585 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x, ep %d, dir %s\n",
95c8bc36 586 __func__, dwc2_readl(hsotg->regs + epctrl_reg), index,
5b7d70c6
BD
587 hs_ep->dir_in ? "in" : "out");
588
9c39ddc6 589 /* If endpoint is stalled, we will restart request later */
95c8bc36 590 ctrl = dwc2_readl(hsotg->regs + epctrl_reg);
9c39ddc6 591
b2d4c54e 592 if (index && ctrl & DXEPCTL_STALL) {
9c39ddc6
AT
593 dev_warn(hsotg->dev, "%s: ep%d is stalled\n", __func__, index);
594 return;
595 }
596
5b7d70c6 597 length = ureq->length - ureq->actual;
71225bee
LM
598 dev_dbg(hsotg->dev, "ureq->length:%d ureq->actual:%d\n",
599 ureq->length, ureq->actual);
5b7d70c6
BD
600
601 maxreq = get_ep_limit(hs_ep);
602 if (length > maxreq) {
603 int round = maxreq % hs_ep->ep.maxpacket;
604
605 dev_dbg(hsotg->dev, "%s: length %d, max-req %d, r %d\n",
606 __func__, length, maxreq, round);
607
608 /* round down to multiple of packets */
609 if (round)
610 maxreq -= round;
611
612 length = maxreq;
613 }
614
615 if (length)
616 packets = DIV_ROUND_UP(length, hs_ep->ep.maxpacket);
617 else
618 packets = 1; /* send one packet if length is zero. */
619
4fca54aa
RB
620 if (hs_ep->isochronous && length > (hs_ep->mc * hs_ep->ep.maxpacket)) {
621 dev_err(hsotg->dev, "req length > maxpacket*mc\n");
622 return;
623 }
624
5b7d70c6 625 if (dir_in && index != 0)
4fca54aa 626 if (hs_ep->isochronous)
47a1685f 627 epsize = DXEPTSIZ_MC(packets);
4fca54aa 628 else
47a1685f 629 epsize = DXEPTSIZ_MC(1);
5b7d70c6
BD
630 else
631 epsize = 0;
632
f71b5e25
MYK
633 /*
634 * zero length packet should be programmed on its own and should not
635 * be counted in DIEPTSIZ.PktCnt with other packets.
636 */
637 if (dir_in && ureq->zero && !continuing) {
638 /* Test if zlp is actually required. */
639 if ((ureq->length >= hs_ep->ep.maxpacket) &&
640 !(ureq->length % hs_ep->ep.maxpacket))
8a20fa45 641 hs_ep->send_zlp = 1;
5b7d70c6
BD
642 }
643
47a1685f
DN
644 epsize |= DXEPTSIZ_PKTCNT(packets);
645 epsize |= DXEPTSIZ_XFERSIZE(length);
5b7d70c6
BD
646
647 dev_dbg(hsotg->dev, "%s: %d@%d/%d, 0x%08x => 0x%08x\n",
648 __func__, packets, length, ureq->length, epsize, epsize_reg);
649
650 /* store the request as the current one we're doing */
651 hs_ep->req = hs_req;
652
653 /* write size / packets */
95c8bc36 654 dwc2_writel(epsize, hsotg->regs + epsize_reg);
5b7d70c6 655
db1d8ba3 656 if (using_dma(hsotg) && !continuing) {
5b7d70c6
BD
657 unsigned int dma_reg;
658
8b9bc460
LM
659 /*
660 * write DMA address to control register, buffer already
1f91b4cc 661 * synced by dwc2_hsotg_ep_queue().
8b9bc460 662 */
5b7d70c6 663
94cb8fd6 664 dma_reg = dir_in ? DIEPDMA(index) : DOEPDMA(index);
95c8bc36 665 dwc2_writel(ureq->dma, hsotg->regs + dma_reg);
5b7d70c6 666
0cc4cf6f 667 dev_dbg(hsotg->dev, "%s: %pad => 0x%08x\n",
8b3bc14f 668 __func__, &ureq->dma, dma_reg);
5b7d70c6
BD
669 }
670
837e9f00
VM
671 if (hs_ep->isochronous && hs_ep->interval == 1) {
672 hs_ep->target_frame = dwc2_hsotg_read_frameno(hsotg);
673 dwc2_gadget_incr_frame_num(hs_ep);
674
675 if (hs_ep->target_frame & 0x1)
676 ctrl |= DXEPCTL_SETODDFR;
677 else
678 ctrl |= DXEPCTL_SETEVENFR;
679 }
680
47a1685f 681 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
71225bee 682
fe0b94ab 683 dev_dbg(hsotg->dev, "ep0 state:%d\n", hsotg->ep0_state);
71225bee
LM
684
685 /* For Setup request do not clear NAK */
fe0b94ab 686 if (!(index == 0 && hsotg->ep0_state == DWC2_EP0_SETUP))
47a1685f 687 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
71225bee 688
5b7d70c6 689 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
95c8bc36 690 dwc2_writel(ctrl, hsotg->regs + epctrl_reg);
5b7d70c6 691
8b9bc460
LM
692 /*
693 * set these, it seems that DMA support increments past the end
5b7d70c6 694 * of the packet buffer so we need to calculate the length from
8b9bc460
LM
695 * this information.
696 */
5b7d70c6
BD
697 hs_ep->size_loaded = length;
698 hs_ep->last_load = ureq->actual;
699
700 if (dir_in && !using_dma(hsotg)) {
701 /* set these anyway, we may need them for non-periodic in */
702 hs_ep->fifo_load = 0;
703
1f91b4cc 704 dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req);
5b7d70c6
BD
705 }
706
8b9bc460
LM
707 /*
708 * Note, trying to clear the NAK here causes problems with transmit
709 * on the S3C6400 ending up with the TXFIFO becoming full.
710 */
5b7d70c6
BD
711
712 /* check ep is enabled */
95c8bc36 713 if (!(dwc2_readl(hsotg->regs + epctrl_reg) & DXEPCTL_EPENA))
1a0ed863 714 dev_dbg(hsotg->dev,
47a1685f 715 "ep%d: failed to become enabled (DXEPCTL=0x%08x)?\n",
95c8bc36 716 index, dwc2_readl(hsotg->regs + epctrl_reg));
5b7d70c6 717
47a1685f 718 dev_dbg(hsotg->dev, "%s: DXEPCTL=0x%08x\n",
95c8bc36 719 __func__, dwc2_readl(hsotg->regs + epctrl_reg));
afcf4169
RB
720
721 /* enable ep interrupts */
1f91b4cc 722 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 1);
5b7d70c6
BD
723}
724
725/**
1f91b4cc 726 * dwc2_hsotg_map_dma - map the DMA memory being used for the request
5b7d70c6
BD
727 * @hsotg: The device state.
728 * @hs_ep: The endpoint the request is on.
729 * @req: The request being processed.
730 *
731 * We've been asked to queue a request, so ensure that the memory buffer
732 * is correctly setup for DMA. If we've been passed an extant DMA address
733 * then ensure the buffer has been synced to memory. If our buffer has no
734 * DMA memory, then we map the memory and mark our request to allow us to
735 * cleanup on completion.
8b9bc460 736 */
1f91b4cc
FB
737static int dwc2_hsotg_map_dma(struct dwc2_hsotg *hsotg,
738 struct dwc2_hsotg_ep *hs_ep,
5b7d70c6
BD
739 struct usb_request *req)
740{
1f91b4cc 741 struct dwc2_hsotg_req *hs_req = our_req(req);
e58ebcd1 742 int ret;
5b7d70c6
BD
743
744 /* if the length is zero, ignore the DMA data */
745 if (hs_req->req.length == 0)
746 return 0;
747
e58ebcd1
FB
748 ret = usb_gadget_map_request(&hsotg->gadget, req, hs_ep->dir_in);
749 if (ret)
750 goto dma_error;
5b7d70c6
BD
751
752 return 0;
753
754dma_error:
755 dev_err(hsotg->dev, "%s: failed to map buffer %p, %d bytes\n",
756 __func__, req->buf, req->length);
757
758 return -EIO;
759}
760
1f91b4cc
FB
761static int dwc2_hsotg_handle_unaligned_buf_start(struct dwc2_hsotg *hsotg,
762 struct dwc2_hsotg_ep *hs_ep, struct dwc2_hsotg_req *hs_req)
7d24c1b5
MYK
763{
764 void *req_buf = hs_req->req.buf;
765
766 /* If dma is not being used or buffer is aligned */
767 if (!using_dma(hsotg) || !((long)req_buf & 3))
768 return 0;
769
770 WARN_ON(hs_req->saved_req_buf);
771
772 dev_dbg(hsotg->dev, "%s: %s: buf=%p length=%d\n", __func__,
773 hs_ep->ep.name, req_buf, hs_req->req.length);
774
775 hs_req->req.buf = kmalloc(hs_req->req.length, GFP_ATOMIC);
776 if (!hs_req->req.buf) {
777 hs_req->req.buf = req_buf;
778 dev_err(hsotg->dev,
779 "%s: unable to allocate memory for bounce buffer\n",
780 __func__);
781 return -ENOMEM;
782 }
783
784 /* Save actual buffer */
785 hs_req->saved_req_buf = req_buf;
786
787 if (hs_ep->dir_in)
788 memcpy(hs_req->req.buf, req_buf, hs_req->req.length);
789 return 0;
790}
791
1f91b4cc
FB
792static void dwc2_hsotg_handle_unaligned_buf_complete(struct dwc2_hsotg *hsotg,
793 struct dwc2_hsotg_ep *hs_ep, struct dwc2_hsotg_req *hs_req)
7d24c1b5
MYK
794{
795 /* If dma is not being used or buffer was aligned */
796 if (!using_dma(hsotg) || !hs_req->saved_req_buf)
797 return;
798
799 dev_dbg(hsotg->dev, "%s: %s: status=%d actual-length=%d\n", __func__,
800 hs_ep->ep.name, hs_req->req.status, hs_req->req.actual);
801
802 /* Copy data from bounce buffer on successful out transfer */
803 if (!hs_ep->dir_in && !hs_req->req.status)
804 memcpy(hs_req->saved_req_buf, hs_req->req.buf,
805 hs_req->req.actual);
806
807 /* Free bounce buffer */
808 kfree(hs_req->req.buf);
809
810 hs_req->req.buf = hs_req->saved_req_buf;
811 hs_req->saved_req_buf = NULL;
812}
813
381fc8f8
VM
814/**
815 * dwc2_gadget_target_frame_elapsed - Checks target frame
816 * @hs_ep: The driver endpoint to check
817 *
818 * Returns 1 if targeted frame elapsed. If returned 1 then we need to drop
819 * corresponding transfer.
820 */
821static bool dwc2_gadget_target_frame_elapsed(struct dwc2_hsotg_ep *hs_ep)
822{
823 struct dwc2_hsotg *hsotg = hs_ep->parent;
824 u32 target_frame = hs_ep->target_frame;
825 u32 current_frame = dwc2_hsotg_read_frameno(hsotg);
826 bool frame_overrun = hs_ep->frame_overrun;
827
828 if (!frame_overrun && current_frame >= target_frame)
829 return true;
830
831 if (frame_overrun && current_frame >= target_frame &&
832 ((current_frame - target_frame) < DSTS_SOFFN_LIMIT / 2))
833 return true;
834
835 return false;
836}
837
1f91b4cc 838static int dwc2_hsotg_ep_queue(struct usb_ep *ep, struct usb_request *req,
5b7d70c6
BD
839 gfp_t gfp_flags)
840{
1f91b4cc
FB
841 struct dwc2_hsotg_req *hs_req = our_req(req);
842 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 843 struct dwc2_hsotg *hs = hs_ep->parent;
5b7d70c6 844 bool first;
7d24c1b5 845 int ret;
5b7d70c6
BD
846
847 dev_dbg(hs->dev, "%s: req %p: %d@%p, noi=%d, zero=%d, snok=%d\n",
848 ep->name, req, req->length, req->buf, req->no_interrupt,
849 req->zero, req->short_not_ok);
850
7ababa92
GH
851 /* Prevent new request submission when controller is suspended */
852 if (hs->lx_state == DWC2_L2) {
853 dev_dbg(hs->dev, "%s: don't submit request while suspended\n",
854 __func__);
855 return -EAGAIN;
856 }
857
5b7d70c6
BD
858 /* initialise status of the request */
859 INIT_LIST_HEAD(&hs_req->queue);
860 req->actual = 0;
861 req->status = -EINPROGRESS;
862
1f91b4cc 863 ret = dwc2_hsotg_handle_unaligned_buf_start(hs, hs_ep, hs_req);
7d24c1b5
MYK
864 if (ret)
865 return ret;
866
5b7d70c6
BD
867 /* if we're using DMA, sync the buffers as necessary */
868 if (using_dma(hs)) {
1f91b4cc 869 ret = dwc2_hsotg_map_dma(hs, hs_ep, req);
5b7d70c6
BD
870 if (ret)
871 return ret;
872 }
873
5b7d70c6
BD
874 first = list_empty(&hs_ep->queue);
875 list_add_tail(&hs_req->queue, &hs_ep->queue);
876
837e9f00
VM
877 if (first) {
878 if (!hs_ep->isochronous) {
879 dwc2_hsotg_start_req(hs, hs_ep, hs_req, false);
880 return 0;
881 }
882
883 while (dwc2_gadget_target_frame_elapsed(hs_ep))
884 dwc2_gadget_incr_frame_num(hs_ep);
5b7d70c6 885
837e9f00
VM
886 if (hs_ep->target_frame != TARGET_FRAME_INITIAL)
887 dwc2_hsotg_start_req(hs, hs_ep, hs_req, false);
888 }
5b7d70c6
BD
889 return 0;
890}
891
1f91b4cc 892static int dwc2_hsotg_ep_queue_lock(struct usb_ep *ep, struct usb_request *req,
5ad1d316
LM
893 gfp_t gfp_flags)
894{
1f91b4cc 895 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 896 struct dwc2_hsotg *hs = hs_ep->parent;
5ad1d316
LM
897 unsigned long flags = 0;
898 int ret = 0;
899
900 spin_lock_irqsave(&hs->lock, flags);
1f91b4cc 901 ret = dwc2_hsotg_ep_queue(ep, req, gfp_flags);
5ad1d316
LM
902 spin_unlock_irqrestore(&hs->lock, flags);
903
904 return ret;
905}
906
1f91b4cc 907static void dwc2_hsotg_ep_free_request(struct usb_ep *ep,
5b7d70c6
BD
908 struct usb_request *req)
909{
1f91b4cc 910 struct dwc2_hsotg_req *hs_req = our_req(req);
5b7d70c6
BD
911
912 kfree(hs_req);
913}
914
915/**
1f91b4cc 916 * dwc2_hsotg_complete_oursetup - setup completion callback
5b7d70c6
BD
917 * @ep: The endpoint the request was on.
918 * @req: The request completed.
919 *
920 * Called on completion of any requests the driver itself
921 * submitted that need cleaning up.
922 */
1f91b4cc 923static void dwc2_hsotg_complete_oursetup(struct usb_ep *ep,
5b7d70c6
BD
924 struct usb_request *req)
925{
1f91b4cc 926 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 927 struct dwc2_hsotg *hsotg = hs_ep->parent;
5b7d70c6
BD
928
929 dev_dbg(hsotg->dev, "%s: ep %p, req %p\n", __func__, ep, req);
930
1f91b4cc 931 dwc2_hsotg_ep_free_request(ep, req);
5b7d70c6
BD
932}
933
934/**
935 * ep_from_windex - convert control wIndex value to endpoint
936 * @hsotg: The driver state.
937 * @windex: The control request wIndex field (in host order).
938 *
939 * Convert the given wIndex into a pointer to an driver endpoint
940 * structure, or return NULL if it is not a valid endpoint.
8b9bc460 941 */
1f91b4cc 942static struct dwc2_hsotg_ep *ep_from_windex(struct dwc2_hsotg *hsotg,
5b7d70c6
BD
943 u32 windex)
944{
1f91b4cc 945 struct dwc2_hsotg_ep *ep;
5b7d70c6
BD
946 int dir = (windex & USB_DIR_IN) ? 1 : 0;
947 int idx = windex & 0x7F;
948
949 if (windex >= 0x100)
950 return NULL;
951
b3f489b2 952 if (idx > hsotg->num_of_eps)
5b7d70c6
BD
953 return NULL;
954
c6f5c050
MYK
955 ep = index_to_ep(hsotg, idx, dir);
956
5b7d70c6
BD
957 if (idx && ep->dir_in != dir)
958 return NULL;
959
960 return ep;
961}
962
9e14d0a5 963/**
1f91b4cc 964 * dwc2_hsotg_set_test_mode - Enable usb Test Modes
9e14d0a5
GH
965 * @hsotg: The driver state.
966 * @testmode: requested usb test mode
967 * Enable usb Test Mode requested by the Host.
968 */
1f91b4cc 969int dwc2_hsotg_set_test_mode(struct dwc2_hsotg *hsotg, int testmode)
9e14d0a5 970{
95c8bc36 971 int dctl = dwc2_readl(hsotg->regs + DCTL);
9e14d0a5
GH
972
973 dctl &= ~DCTL_TSTCTL_MASK;
974 switch (testmode) {
975 case TEST_J:
976 case TEST_K:
977 case TEST_SE0_NAK:
978 case TEST_PACKET:
979 case TEST_FORCE_EN:
980 dctl |= testmode << DCTL_TSTCTL_SHIFT;
981 break;
982 default:
983 return -EINVAL;
984 }
95c8bc36 985 dwc2_writel(dctl, hsotg->regs + DCTL);
9e14d0a5
GH
986 return 0;
987}
988
5b7d70c6 989/**
1f91b4cc 990 * dwc2_hsotg_send_reply - send reply to control request
5b7d70c6
BD
991 * @hsotg: The device state
992 * @ep: Endpoint 0
993 * @buff: Buffer for request
994 * @length: Length of reply.
995 *
996 * Create a request and queue it on the given endpoint. This is useful as
997 * an internal method of sending replies to certain control requests, etc.
998 */
1f91b4cc
FB
999static int dwc2_hsotg_send_reply(struct dwc2_hsotg *hsotg,
1000 struct dwc2_hsotg_ep *ep,
5b7d70c6
BD
1001 void *buff,
1002 int length)
1003{
1004 struct usb_request *req;
1005 int ret;
1006
1007 dev_dbg(hsotg->dev, "%s: buff %p, len %d\n", __func__, buff, length);
1008
1f91b4cc 1009 req = dwc2_hsotg_ep_alloc_request(&ep->ep, GFP_ATOMIC);
5b7d70c6
BD
1010 hsotg->ep0_reply = req;
1011 if (!req) {
1012 dev_warn(hsotg->dev, "%s: cannot alloc req\n", __func__);
1013 return -ENOMEM;
1014 }
1015
1016 req->buf = hsotg->ep0_buff;
1017 req->length = length;
f71b5e25
MYK
1018 /*
1019 * zero flag is for sending zlp in DATA IN stage. It has no impact on
1020 * STATUS stage.
1021 */
1022 req->zero = 0;
1f91b4cc 1023 req->complete = dwc2_hsotg_complete_oursetup;
5b7d70c6
BD
1024
1025 if (length)
1026 memcpy(req->buf, buff, length);
5b7d70c6 1027
1f91b4cc 1028 ret = dwc2_hsotg_ep_queue(&ep->ep, req, GFP_ATOMIC);
5b7d70c6
BD
1029 if (ret) {
1030 dev_warn(hsotg->dev, "%s: cannot queue req\n", __func__);
1031 return ret;
1032 }
1033
1034 return 0;
1035}
1036
1037/**
1f91b4cc 1038 * dwc2_hsotg_process_req_status - process request GET_STATUS
5b7d70c6
BD
1039 * @hsotg: The device state
1040 * @ctrl: USB control request
1041 */
1f91b4cc 1042static int dwc2_hsotg_process_req_status(struct dwc2_hsotg *hsotg,
5b7d70c6
BD
1043 struct usb_ctrlrequest *ctrl)
1044{
1f91b4cc
FB
1045 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
1046 struct dwc2_hsotg_ep *ep;
5b7d70c6
BD
1047 __le16 reply;
1048 int ret;
1049
1050 dev_dbg(hsotg->dev, "%s: USB_REQ_GET_STATUS\n", __func__);
1051
1052 if (!ep0->dir_in) {
1053 dev_warn(hsotg->dev, "%s: direction out?\n", __func__);
1054 return -EINVAL;
1055 }
1056
1057 switch (ctrl->bRequestType & USB_RECIP_MASK) {
1058 case USB_RECIP_DEVICE:
1059 reply = cpu_to_le16(0); /* bit 0 => self powered,
1060 * bit 1 => remote wakeup */
1061 break;
1062
1063 case USB_RECIP_INTERFACE:
1064 /* currently, the data result should be zero */
1065 reply = cpu_to_le16(0);
1066 break;
1067
1068 case USB_RECIP_ENDPOINT:
1069 ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex));
1070 if (!ep)
1071 return -ENOENT;
1072
1073 reply = cpu_to_le16(ep->halted ? 1 : 0);
1074 break;
1075
1076 default:
1077 return 0;
1078 }
1079
1080 if (le16_to_cpu(ctrl->wLength) != 2)
1081 return -EINVAL;
1082
1f91b4cc 1083 ret = dwc2_hsotg_send_reply(hsotg, ep0, &reply, 2);
5b7d70c6
BD
1084 if (ret) {
1085 dev_err(hsotg->dev, "%s: failed to send reply\n", __func__);
1086 return ret;
1087 }
1088
1089 return 1;
1090}
1091
51da43b5 1092static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now);
5b7d70c6 1093
9c39ddc6
AT
1094/**
1095 * get_ep_head - return the first request on the endpoint
1096 * @hs_ep: The controller endpoint to get
1097 *
1098 * Get the first request on the endpoint.
1099 */
1f91b4cc 1100static struct dwc2_hsotg_req *get_ep_head(struct dwc2_hsotg_ep *hs_ep)
9c39ddc6
AT
1101{
1102 if (list_empty(&hs_ep->queue))
1103 return NULL;
1104
1f91b4cc 1105 return list_first_entry(&hs_ep->queue, struct dwc2_hsotg_req, queue);
9c39ddc6
AT
1106}
1107
41cc4cd2
VM
1108/**
1109 * dwc2_gadget_start_next_request - Starts next request from ep queue
1110 * @hs_ep: Endpoint structure
1111 *
1112 * If queue is empty and EP is ISOC-OUT - unmasks OUTTKNEPDIS which is masked
1113 * in its handler. Hence we need to unmask it here to be able to do
1114 * resynchronization.
1115 */
1116static void dwc2_gadget_start_next_request(struct dwc2_hsotg_ep *hs_ep)
1117{
1118 u32 mask;
1119 struct dwc2_hsotg *hsotg = hs_ep->parent;
1120 int dir_in = hs_ep->dir_in;
1121 struct dwc2_hsotg_req *hs_req;
1122 u32 epmsk_reg = dir_in ? DIEPMSK : DOEPMSK;
1123
1124 if (!list_empty(&hs_ep->queue)) {
1125 hs_req = get_ep_head(hs_ep);
1126 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, false);
1127 return;
1128 }
1129 if (!hs_ep->isochronous)
1130 return;
1131
1132 if (dir_in) {
1133 dev_dbg(hsotg->dev, "%s: No more ISOC-IN requests\n",
1134 __func__);
1135 } else {
1136 dev_dbg(hsotg->dev, "%s: No more ISOC-OUT requests\n",
1137 __func__);
1138 mask = dwc2_readl(hsotg->regs + epmsk_reg);
1139 mask |= DOEPMSK_OUTTKNEPDISMSK;
1140 dwc2_writel(mask, hsotg->regs + epmsk_reg);
1141 }
1142}
1143
5b7d70c6 1144/**
1f91b4cc 1145 * dwc2_hsotg_process_req_feature - process request {SET,CLEAR}_FEATURE
5b7d70c6
BD
1146 * @hsotg: The device state
1147 * @ctrl: USB control request
1148 */
1f91b4cc 1149static int dwc2_hsotg_process_req_feature(struct dwc2_hsotg *hsotg,
5b7d70c6
BD
1150 struct usb_ctrlrequest *ctrl)
1151{
1f91b4cc
FB
1152 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
1153 struct dwc2_hsotg_req *hs_req;
5b7d70c6 1154 bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE);
1f91b4cc 1155 struct dwc2_hsotg_ep *ep;
26ab3d0c 1156 int ret;
bd9ef7bf 1157 bool halted;
9e14d0a5
GH
1158 u32 recip;
1159 u32 wValue;
1160 u32 wIndex;
5b7d70c6
BD
1161
1162 dev_dbg(hsotg->dev, "%s: %s_FEATURE\n",
1163 __func__, set ? "SET" : "CLEAR");
1164
9e14d0a5
GH
1165 wValue = le16_to_cpu(ctrl->wValue);
1166 wIndex = le16_to_cpu(ctrl->wIndex);
1167 recip = ctrl->bRequestType & USB_RECIP_MASK;
1168
1169 switch (recip) {
1170 case USB_RECIP_DEVICE:
1171 switch (wValue) {
1172 case USB_DEVICE_TEST_MODE:
1173 if ((wIndex & 0xff) != 0)
1174 return -EINVAL;
1175 if (!set)
1176 return -EINVAL;
1177
1178 hsotg->test_mode = wIndex >> 8;
1f91b4cc 1179 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
9e14d0a5
GH
1180 if (ret) {
1181 dev_err(hsotg->dev,
1182 "%s: failed to send reply\n", __func__);
1183 return ret;
1184 }
1185 break;
1186 default:
1187 return -ENOENT;
1188 }
1189 break;
1190
1191 case USB_RECIP_ENDPOINT:
1192 ep = ep_from_windex(hsotg, wIndex);
5b7d70c6
BD
1193 if (!ep) {
1194 dev_dbg(hsotg->dev, "%s: no endpoint for 0x%04x\n",
9e14d0a5 1195 __func__, wIndex);
5b7d70c6
BD
1196 return -ENOENT;
1197 }
1198
9e14d0a5 1199 switch (wValue) {
5b7d70c6 1200 case USB_ENDPOINT_HALT:
bd9ef7bf
RB
1201 halted = ep->halted;
1202
51da43b5 1203 dwc2_hsotg_ep_sethalt(&ep->ep, set, true);
26ab3d0c 1204
1f91b4cc 1205 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
26ab3d0c
AT
1206 if (ret) {
1207 dev_err(hsotg->dev,
1208 "%s: failed to send reply\n", __func__);
1209 return ret;
1210 }
9c39ddc6 1211
bd9ef7bf
RB
1212 /*
1213 * we have to complete all requests for ep if it was
1214 * halted, and the halt was cleared by CLEAR_FEATURE
1215 */
1216
1217 if (!set && halted) {
9c39ddc6
AT
1218 /*
1219 * If we have request in progress,
1220 * then complete it
1221 */
1222 if (ep->req) {
1223 hs_req = ep->req;
1224 ep->req = NULL;
1225 list_del_init(&hs_req->queue);
c00dd4a6
GH
1226 if (hs_req->req.complete) {
1227 spin_unlock(&hsotg->lock);
1228 usb_gadget_giveback_request(
1229 &ep->ep, &hs_req->req);
1230 spin_lock(&hsotg->lock);
1231 }
9c39ddc6
AT
1232 }
1233
1234 /* If we have pending request, then start it */
c00dd4a6 1235 if (!ep->req) {
41cc4cd2 1236 dwc2_gadget_start_next_request(ep);
9c39ddc6
AT
1237 }
1238 }
1239
5b7d70c6
BD
1240 break;
1241
1242 default:
1243 return -ENOENT;
1244 }
9e14d0a5
GH
1245 break;
1246 default:
1247 return -ENOENT;
1248 }
5b7d70c6
BD
1249 return 1;
1250}
1251
1f91b4cc 1252static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg);
ab93e014 1253
c9f721b2 1254/**
1f91b4cc 1255 * dwc2_hsotg_stall_ep0 - stall ep0
c9f721b2
RB
1256 * @hsotg: The device state
1257 *
1258 * Set stall for ep0 as response for setup request.
1259 */
1f91b4cc 1260static void dwc2_hsotg_stall_ep0(struct dwc2_hsotg *hsotg)
e9ebe7c3 1261{
1f91b4cc 1262 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
c9f721b2
RB
1263 u32 reg;
1264 u32 ctrl;
1265
1266 dev_dbg(hsotg->dev, "ep0 stall (dir=%d)\n", ep0->dir_in);
1267 reg = (ep0->dir_in) ? DIEPCTL0 : DOEPCTL0;
1268
1269 /*
1270 * DxEPCTL_Stall will be cleared by EP once it has
1271 * taken effect, so no need to clear later.
1272 */
1273
95c8bc36 1274 ctrl = dwc2_readl(hsotg->regs + reg);
47a1685f
DN
1275 ctrl |= DXEPCTL_STALL;
1276 ctrl |= DXEPCTL_CNAK;
95c8bc36 1277 dwc2_writel(ctrl, hsotg->regs + reg);
c9f721b2
RB
1278
1279 dev_dbg(hsotg->dev,
47a1685f 1280 "written DXEPCTL=0x%08x to %08x (DXEPCTL=0x%08x)\n",
95c8bc36 1281 ctrl, reg, dwc2_readl(hsotg->regs + reg));
c9f721b2
RB
1282
1283 /*
1284 * complete won't be called, so we enqueue
1285 * setup request here
1286 */
1f91b4cc 1287 dwc2_hsotg_enqueue_setup(hsotg);
c9f721b2
RB
1288}
1289
5b7d70c6 1290/**
1f91b4cc 1291 * dwc2_hsotg_process_control - process a control request
5b7d70c6
BD
1292 * @hsotg: The device state
1293 * @ctrl: The control request received
1294 *
1295 * The controller has received the SETUP phase of a control request, and
1296 * needs to work out what to do next (and whether to pass it on to the
1297 * gadget driver).
1298 */
1f91b4cc 1299static void dwc2_hsotg_process_control(struct dwc2_hsotg *hsotg,
5b7d70c6
BD
1300 struct usb_ctrlrequest *ctrl)
1301{
1f91b4cc 1302 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
5b7d70c6
BD
1303 int ret = 0;
1304 u32 dcfg;
1305
e525e743
MYK
1306 dev_dbg(hsotg->dev,
1307 "ctrl Type=%02x, Req=%02x, V=%04x, I=%04x, L=%04x\n",
1308 ctrl->bRequestType, ctrl->bRequest, ctrl->wValue,
1309 ctrl->wIndex, ctrl->wLength);
5b7d70c6 1310
fe0b94ab
MYK
1311 if (ctrl->wLength == 0) {
1312 ep0->dir_in = 1;
1313 hsotg->ep0_state = DWC2_EP0_STATUS_IN;
1314 } else if (ctrl->bRequestType & USB_DIR_IN) {
5b7d70c6 1315 ep0->dir_in = 1;
fe0b94ab
MYK
1316 hsotg->ep0_state = DWC2_EP0_DATA_IN;
1317 } else {
1318 ep0->dir_in = 0;
1319 hsotg->ep0_state = DWC2_EP0_DATA_OUT;
1320 }
5b7d70c6
BD
1321
1322 if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
1323 switch (ctrl->bRequest) {
1324 case USB_REQ_SET_ADDRESS:
6d713c15 1325 hsotg->connected = 1;
95c8bc36 1326 dcfg = dwc2_readl(hsotg->regs + DCFG);
47a1685f 1327 dcfg &= ~DCFG_DEVADDR_MASK;
d5dbd3f7
PZ
1328 dcfg |= (le16_to_cpu(ctrl->wValue) <<
1329 DCFG_DEVADDR_SHIFT) & DCFG_DEVADDR_MASK;
95c8bc36 1330 dwc2_writel(dcfg, hsotg->regs + DCFG);
5b7d70c6
BD
1331
1332 dev_info(hsotg->dev, "new address %d\n", ctrl->wValue);
1333
1f91b4cc 1334 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
5b7d70c6
BD
1335 return;
1336
1337 case USB_REQ_GET_STATUS:
1f91b4cc 1338 ret = dwc2_hsotg_process_req_status(hsotg, ctrl);
5b7d70c6
BD
1339 break;
1340
1341 case USB_REQ_CLEAR_FEATURE:
1342 case USB_REQ_SET_FEATURE:
1f91b4cc 1343 ret = dwc2_hsotg_process_req_feature(hsotg, ctrl);
5b7d70c6
BD
1344 break;
1345 }
1346 }
1347
1348 /* as a fallback, try delivering it to the driver to deal with */
1349
1350 if (ret == 0 && hsotg->driver) {
93f599f2 1351 spin_unlock(&hsotg->lock);
5b7d70c6 1352 ret = hsotg->driver->setup(&hsotg->gadget, ctrl);
93f599f2 1353 spin_lock(&hsotg->lock);
5b7d70c6
BD
1354 if (ret < 0)
1355 dev_dbg(hsotg->dev, "driver->setup() ret %d\n", ret);
1356 }
1357
8b9bc460
LM
1358 /*
1359 * the request is either unhandlable, or is not formatted correctly
5b7d70c6
BD
1360 * so respond with a STALL for the status stage to indicate failure.
1361 */
1362
c9f721b2 1363 if (ret < 0)
1f91b4cc 1364 dwc2_hsotg_stall_ep0(hsotg);
5b7d70c6
BD
1365}
1366
5b7d70c6 1367/**
1f91b4cc 1368 * dwc2_hsotg_complete_setup - completion of a setup transfer
5b7d70c6
BD
1369 * @ep: The endpoint the request was on.
1370 * @req: The request completed.
1371 *
1372 * Called on completion of any requests the driver itself submitted for
1373 * EP0 setup packets
1374 */
1f91b4cc 1375static void dwc2_hsotg_complete_setup(struct usb_ep *ep,
5b7d70c6
BD
1376 struct usb_request *req)
1377{
1f91b4cc 1378 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 1379 struct dwc2_hsotg *hsotg = hs_ep->parent;
5b7d70c6
BD
1380
1381 if (req->status < 0) {
1382 dev_dbg(hsotg->dev, "%s: failed %d\n", __func__, req->status);
1383 return;
1384 }
1385
93f599f2 1386 spin_lock(&hsotg->lock);
5b7d70c6 1387 if (req->actual == 0)
1f91b4cc 1388 dwc2_hsotg_enqueue_setup(hsotg);
5b7d70c6 1389 else
1f91b4cc 1390 dwc2_hsotg_process_control(hsotg, req->buf);
93f599f2 1391 spin_unlock(&hsotg->lock);
5b7d70c6
BD
1392}
1393
1394/**
1f91b4cc 1395 * dwc2_hsotg_enqueue_setup - start a request for EP0 packets
5b7d70c6
BD
1396 * @hsotg: The device state.
1397 *
1398 * Enqueue a request on EP0 if necessary to received any SETUP packets
1399 * received from the host.
1400 */
1f91b4cc 1401static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg)
5b7d70c6
BD
1402{
1403 struct usb_request *req = hsotg->ctrl_req;
1f91b4cc 1404 struct dwc2_hsotg_req *hs_req = our_req(req);
5b7d70c6
BD
1405 int ret;
1406
1407 dev_dbg(hsotg->dev, "%s: queueing setup request\n", __func__);
1408
1409 req->zero = 0;
1410 req->length = 8;
1411 req->buf = hsotg->ctrl_buff;
1f91b4cc 1412 req->complete = dwc2_hsotg_complete_setup;
5b7d70c6
BD
1413
1414 if (!list_empty(&hs_req->queue)) {
1415 dev_dbg(hsotg->dev, "%s already queued???\n", __func__);
1416 return;
1417 }
1418
c6f5c050 1419 hsotg->eps_out[0]->dir_in = 0;
8a20fa45 1420 hsotg->eps_out[0]->send_zlp = 0;
fe0b94ab 1421 hsotg->ep0_state = DWC2_EP0_SETUP;
5b7d70c6 1422
1f91b4cc 1423 ret = dwc2_hsotg_ep_queue(&hsotg->eps_out[0]->ep, req, GFP_ATOMIC);
5b7d70c6
BD
1424 if (ret < 0) {
1425 dev_err(hsotg->dev, "%s: failed queue (%d)\n", __func__, ret);
8b9bc460
LM
1426 /*
1427 * Don't think there's much we can do other than watch the
1428 * driver fail.
1429 */
5b7d70c6
BD
1430 }
1431}
1432
1f91b4cc
FB
1433static void dwc2_hsotg_program_zlp(struct dwc2_hsotg *hsotg,
1434 struct dwc2_hsotg_ep *hs_ep)
fe0b94ab
MYK
1435{
1436 u32 ctrl;
1437 u8 index = hs_ep->index;
1438 u32 epctl_reg = hs_ep->dir_in ? DIEPCTL(index) : DOEPCTL(index);
1439 u32 epsiz_reg = hs_ep->dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
1440
ccb34a91
MYK
1441 if (hs_ep->dir_in)
1442 dev_dbg(hsotg->dev, "Sending zero-length packet on ep%d\n",
1443 index);
1444 else
1445 dev_dbg(hsotg->dev, "Receiving zero-length packet on ep%d\n",
1446 index);
fe0b94ab 1447
95c8bc36
AS
1448 dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
1449 DXEPTSIZ_XFERSIZE(0), hsotg->regs +
1450 epsiz_reg);
fe0b94ab 1451
95c8bc36 1452 ctrl = dwc2_readl(hsotg->regs + epctl_reg);
fe0b94ab
MYK
1453 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
1454 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
1455 ctrl |= DXEPCTL_USBACTEP;
95c8bc36 1456 dwc2_writel(ctrl, hsotg->regs + epctl_reg);
fe0b94ab
MYK
1457}
1458
5b7d70c6 1459/**
1f91b4cc 1460 * dwc2_hsotg_complete_request - complete a request given to us
5b7d70c6
BD
1461 * @hsotg: The device state.
1462 * @hs_ep: The endpoint the request was on.
1463 * @hs_req: The request to complete.
1464 * @result: The result code (0 => Ok, otherwise errno)
1465 *
1466 * The given request has finished, so call the necessary completion
1467 * if it has one and then look to see if we can start a new request
1468 * on the endpoint.
1469 *
1470 * Note, expects the ep to already be locked as appropriate.
8b9bc460 1471 */
1f91b4cc
FB
1472static void dwc2_hsotg_complete_request(struct dwc2_hsotg *hsotg,
1473 struct dwc2_hsotg_ep *hs_ep,
1474 struct dwc2_hsotg_req *hs_req,
5b7d70c6
BD
1475 int result)
1476{
5b7d70c6
BD
1477
1478 if (!hs_req) {
1479 dev_dbg(hsotg->dev, "%s: nothing to complete?\n", __func__);
1480 return;
1481 }
1482
1483 dev_dbg(hsotg->dev, "complete: ep %p %s, req %p, %d => %p\n",
1484 hs_ep, hs_ep->ep.name, hs_req, result, hs_req->req.complete);
1485
8b9bc460
LM
1486 /*
1487 * only replace the status if we've not already set an error
1488 * from a previous transaction
1489 */
5b7d70c6
BD
1490
1491 if (hs_req->req.status == -EINPROGRESS)
1492 hs_req->req.status = result;
1493
44583fec
YL
1494 if (using_dma(hsotg))
1495 dwc2_hsotg_unmap_dma(hsotg, hs_ep, hs_req);
1496
1f91b4cc 1497 dwc2_hsotg_handle_unaligned_buf_complete(hsotg, hs_ep, hs_req);
7d24c1b5 1498
5b7d70c6
BD
1499 hs_ep->req = NULL;
1500 list_del_init(&hs_req->queue);
1501
8b9bc460
LM
1502 /*
1503 * call the complete request with the locks off, just in case the
1504 * request tries to queue more work for this endpoint.
1505 */
5b7d70c6
BD
1506
1507 if (hs_req->req.complete) {
22258f49 1508 spin_unlock(&hsotg->lock);
304f7e5e 1509 usb_gadget_giveback_request(&hs_ep->ep, &hs_req->req);
22258f49 1510 spin_lock(&hsotg->lock);
5b7d70c6
BD
1511 }
1512
8b9bc460
LM
1513 /*
1514 * Look to see if there is anything else to do. Note, the completion
5b7d70c6 1515 * of the previous request may have caused a new request to be started
8b9bc460
LM
1516 * so be careful when doing this.
1517 */
5b7d70c6
BD
1518
1519 if (!hs_ep->req && result >= 0) {
41cc4cd2 1520 dwc2_gadget_start_next_request(hs_ep);
5b7d70c6
BD
1521 }
1522}
1523
5b7d70c6 1524/**
1f91b4cc 1525 * dwc2_hsotg_rx_data - receive data from the FIFO for an endpoint
5b7d70c6
BD
1526 * @hsotg: The device state.
1527 * @ep_idx: The endpoint index for the data
1528 * @size: The size of data in the fifo, in bytes
1529 *
1530 * The FIFO status shows there is data to read from the FIFO for a given
1531 * endpoint, so sort out whether we need to read the data into a request
1532 * that has been made for that endpoint.
1533 */
1f91b4cc 1534static void dwc2_hsotg_rx_data(struct dwc2_hsotg *hsotg, int ep_idx, int size)
5b7d70c6 1535{
1f91b4cc
FB
1536 struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[ep_idx];
1537 struct dwc2_hsotg_req *hs_req = hs_ep->req;
94cb8fd6 1538 void __iomem *fifo = hsotg->regs + EPFIFO(ep_idx);
5b7d70c6
BD
1539 int to_read;
1540 int max_req;
1541 int read_ptr;
1542
22258f49 1543
5b7d70c6 1544 if (!hs_req) {
95c8bc36 1545 u32 epctl = dwc2_readl(hsotg->regs + DOEPCTL(ep_idx));
5b7d70c6
BD
1546 int ptr;
1547
6b448af4 1548 dev_dbg(hsotg->dev,
47a1685f 1549 "%s: FIFO %d bytes on ep%d but no req (DXEPCTl=0x%08x)\n",
5b7d70c6
BD
1550 __func__, size, ep_idx, epctl);
1551
1552 /* dump the data from the FIFO, we've nothing we can do */
1553 for (ptr = 0; ptr < size; ptr += 4)
95c8bc36 1554 (void)dwc2_readl(fifo);
5b7d70c6
BD
1555
1556 return;
1557 }
1558
5b7d70c6
BD
1559 to_read = size;
1560 read_ptr = hs_req->req.actual;
1561 max_req = hs_req->req.length - read_ptr;
1562
a33e7136
BD
1563 dev_dbg(hsotg->dev, "%s: read %d/%d, done %d/%d\n",
1564 __func__, to_read, max_req, read_ptr, hs_req->req.length);
1565
5b7d70c6 1566 if (to_read > max_req) {
8b9bc460
LM
1567 /*
1568 * more data appeared than we where willing
5b7d70c6
BD
1569 * to deal with in this request.
1570 */
1571
1572 /* currently we don't deal this */
1573 WARN_ON_ONCE(1);
1574 }
1575
5b7d70c6
BD
1576 hs_ep->total_data += to_read;
1577 hs_req->req.actual += to_read;
1578 to_read = DIV_ROUND_UP(to_read, 4);
1579
8b9bc460
LM
1580 /*
1581 * note, we might over-write the buffer end by 3 bytes depending on
1582 * alignment of the data.
1583 */
1a7ed5be 1584 ioread32_rep(fifo, hs_req->req.buf + read_ptr, to_read);
5b7d70c6
BD
1585}
1586
1587/**
1f91b4cc 1588 * dwc2_hsotg_ep0_zlp - send/receive zero-length packet on control endpoint
5b7d70c6 1589 * @hsotg: The device instance
fe0b94ab 1590 * @dir_in: If IN zlp
5b7d70c6
BD
1591 *
1592 * Generate a zero-length IN packet request for terminating a SETUP
1593 * transaction.
1594 *
1595 * Note, since we don't write any data to the TxFIFO, then it is
25985edc 1596 * currently believed that we do not need to wait for any space in
5b7d70c6
BD
1597 * the TxFIFO.
1598 */
1f91b4cc 1599static void dwc2_hsotg_ep0_zlp(struct dwc2_hsotg *hsotg, bool dir_in)
5b7d70c6 1600{
c6f5c050 1601 /* eps_out[0] is used in both directions */
fe0b94ab
MYK
1602 hsotg->eps_out[0]->dir_in = dir_in;
1603 hsotg->ep0_state = dir_in ? DWC2_EP0_STATUS_IN : DWC2_EP0_STATUS_OUT;
5b7d70c6 1604
1f91b4cc 1605 dwc2_hsotg_program_zlp(hsotg, hsotg->eps_out[0]);
5b7d70c6
BD
1606}
1607
ec1f9d9f
RB
1608static void dwc2_hsotg_change_ep_iso_parity(struct dwc2_hsotg *hsotg,
1609 u32 epctl_reg)
1610{
1611 u32 ctrl;
1612
1613 ctrl = dwc2_readl(hsotg->regs + epctl_reg);
1614 if (ctrl & DXEPCTL_EOFRNUM)
1615 ctrl |= DXEPCTL_SETEVENFR;
1616 else
1617 ctrl |= DXEPCTL_SETODDFR;
1618 dwc2_writel(ctrl, hsotg->regs + epctl_reg);
1619}
1620
5b7d70c6 1621/**
1f91b4cc 1622 * dwc2_hsotg_handle_outdone - handle receiving OutDone/SetupDone from RXFIFO
5b7d70c6
BD
1623 * @hsotg: The device instance
1624 * @epnum: The endpoint received from
5b7d70c6
BD
1625 *
1626 * The RXFIFO has delivered an OutDone event, which means that the data
1627 * transfer for an OUT endpoint has been completed, either by a short
1628 * packet or by the finish of a transfer.
8b9bc460 1629 */
1f91b4cc 1630static void dwc2_hsotg_handle_outdone(struct dwc2_hsotg *hsotg, int epnum)
5b7d70c6 1631{
95c8bc36 1632 u32 epsize = dwc2_readl(hsotg->regs + DOEPTSIZ(epnum));
1f91b4cc
FB
1633 struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[epnum];
1634 struct dwc2_hsotg_req *hs_req = hs_ep->req;
5b7d70c6 1635 struct usb_request *req = &hs_req->req;
47a1685f 1636 unsigned size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
5b7d70c6
BD
1637 int result = 0;
1638
1639 if (!hs_req) {
1640 dev_dbg(hsotg->dev, "%s: no request active\n", __func__);
1641 return;
1642 }
1643
fe0b94ab
MYK
1644 if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_OUT) {
1645 dev_dbg(hsotg->dev, "zlp packet received\n");
1f91b4cc
FB
1646 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
1647 dwc2_hsotg_enqueue_setup(hsotg);
fe0b94ab
MYK
1648 return;
1649 }
1650
5b7d70c6 1651 if (using_dma(hsotg)) {
5b7d70c6 1652 unsigned size_done;
5b7d70c6 1653
8b9bc460
LM
1654 /*
1655 * Calculate the size of the transfer by checking how much
5b7d70c6
BD
1656 * is left in the endpoint size register and then working it
1657 * out from the amount we loaded for the transfer.
1658 *
1659 * We need to do this as DMA pointers are always 32bit aligned
1660 * so may overshoot/undershoot the transfer.
1661 */
1662
5b7d70c6
BD
1663 size_done = hs_ep->size_loaded - size_left;
1664 size_done += hs_ep->last_load;
1665
1666 req->actual = size_done;
1667 }
1668
a33e7136
BD
1669 /* if there is more request to do, schedule new transfer */
1670 if (req->actual < req->length && size_left == 0) {
1f91b4cc 1671 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true);
a33e7136
BD
1672 return;
1673 }
1674
5b7d70c6
BD
1675 if (req->actual < req->length && req->short_not_ok) {
1676 dev_dbg(hsotg->dev, "%s: got %d/%d (short not ok) => error\n",
1677 __func__, req->actual, req->length);
1678
8b9bc460
LM
1679 /*
1680 * todo - what should we return here? there's no one else
1681 * even bothering to check the status.
1682 */
5b7d70c6
BD
1683 }
1684
fe0b94ab
MYK
1685 if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
1686 /* Move to STATUS IN */
1f91b4cc 1687 dwc2_hsotg_ep0_zlp(hsotg, true);
fe0b94ab 1688 return;
5b7d70c6
BD
1689 }
1690
ec1f9d9f
RB
1691 /*
1692 * Slave mode OUT transfers do not go through XferComplete so
1693 * adjust the ISOC parity here.
1694 */
1695 if (!using_dma(hsotg)) {
ec1f9d9f
RB
1696 if (hs_ep->isochronous && hs_ep->interval == 1)
1697 dwc2_hsotg_change_ep_iso_parity(hsotg, DOEPCTL(epnum));
837e9f00
VM
1698 else if (hs_ep->isochronous && hs_ep->interval > 1)
1699 dwc2_gadget_incr_frame_num(hs_ep);
ec1f9d9f
RB
1700 }
1701
1f91b4cc 1702 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, result);
5b7d70c6
BD
1703}
1704
5b7d70c6 1705/**
1f91b4cc 1706 * dwc2_hsotg_handle_rx - RX FIFO has data
5b7d70c6
BD
1707 * @hsotg: The device instance
1708 *
1709 * The IRQ handler has detected that the RX FIFO has some data in it
1710 * that requires processing, so find out what is in there and do the
1711 * appropriate read.
1712 *
25985edc 1713 * The RXFIFO is a true FIFO, the packets coming out are still in packet
5b7d70c6
BD
1714 * chunks, so if you have x packets received on an endpoint you'll get x
1715 * FIFO events delivered, each with a packet's worth of data in it.
1716 *
1717 * When using DMA, we should not be processing events from the RXFIFO
1718 * as the actual data should be sent to the memory directly and we turn
1719 * on the completion interrupts to get notifications of transfer completion.
1720 */
1f91b4cc 1721static void dwc2_hsotg_handle_rx(struct dwc2_hsotg *hsotg)
5b7d70c6 1722{
95c8bc36 1723 u32 grxstsr = dwc2_readl(hsotg->regs + GRXSTSP);
5b7d70c6
BD
1724 u32 epnum, status, size;
1725
1726 WARN_ON(using_dma(hsotg));
1727
47a1685f
DN
1728 epnum = grxstsr & GRXSTS_EPNUM_MASK;
1729 status = grxstsr & GRXSTS_PKTSTS_MASK;
5b7d70c6 1730
47a1685f
DN
1731 size = grxstsr & GRXSTS_BYTECNT_MASK;
1732 size >>= GRXSTS_BYTECNT_SHIFT;
5b7d70c6 1733
d7c747c5 1734 dev_dbg(hsotg->dev, "%s: GRXSTSP=0x%08x (%d@%d)\n",
5b7d70c6
BD
1735 __func__, grxstsr, size, epnum);
1736
47a1685f
DN
1737 switch ((status & GRXSTS_PKTSTS_MASK) >> GRXSTS_PKTSTS_SHIFT) {
1738 case GRXSTS_PKTSTS_GLOBALOUTNAK:
1739 dev_dbg(hsotg->dev, "GLOBALOUTNAK\n");
5b7d70c6
BD
1740 break;
1741
47a1685f 1742 case GRXSTS_PKTSTS_OUTDONE:
5b7d70c6 1743 dev_dbg(hsotg->dev, "OutDone (Frame=0x%08x)\n",
1f91b4cc 1744 dwc2_hsotg_read_frameno(hsotg));
5b7d70c6
BD
1745
1746 if (!using_dma(hsotg))
1f91b4cc 1747 dwc2_hsotg_handle_outdone(hsotg, epnum);
5b7d70c6
BD
1748 break;
1749
47a1685f 1750 case GRXSTS_PKTSTS_SETUPDONE:
5b7d70c6
BD
1751 dev_dbg(hsotg->dev,
1752 "SetupDone (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1f91b4cc 1753 dwc2_hsotg_read_frameno(hsotg),
95c8bc36 1754 dwc2_readl(hsotg->regs + DOEPCTL(0)));
fe0b94ab 1755 /*
1f91b4cc 1756 * Call dwc2_hsotg_handle_outdone here if it was not called from
fe0b94ab
MYK
1757 * GRXSTS_PKTSTS_OUTDONE. That is, if the core didn't
1758 * generate GRXSTS_PKTSTS_OUTDONE for setup packet.
1759 */
1760 if (hsotg->ep0_state == DWC2_EP0_SETUP)
1f91b4cc 1761 dwc2_hsotg_handle_outdone(hsotg, epnum);
5b7d70c6
BD
1762 break;
1763
47a1685f 1764 case GRXSTS_PKTSTS_OUTRX:
1f91b4cc 1765 dwc2_hsotg_rx_data(hsotg, epnum, size);
5b7d70c6
BD
1766 break;
1767
47a1685f 1768 case GRXSTS_PKTSTS_SETUPRX:
5b7d70c6
BD
1769 dev_dbg(hsotg->dev,
1770 "SetupRX (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
1f91b4cc 1771 dwc2_hsotg_read_frameno(hsotg),
95c8bc36 1772 dwc2_readl(hsotg->regs + DOEPCTL(0)));
5b7d70c6 1773
fe0b94ab
MYK
1774 WARN_ON(hsotg->ep0_state != DWC2_EP0_SETUP);
1775
1f91b4cc 1776 dwc2_hsotg_rx_data(hsotg, epnum, size);
5b7d70c6
BD
1777 break;
1778
1779 default:
1780 dev_warn(hsotg->dev, "%s: unknown status %08x\n",
1781 __func__, grxstsr);
1782
1f91b4cc 1783 dwc2_hsotg_dump(hsotg);
5b7d70c6
BD
1784 break;
1785 }
1786}
1787
1788/**
1f91b4cc 1789 * dwc2_hsotg_ep0_mps - turn max packet size into register setting
5b7d70c6 1790 * @mps: The maximum packet size in bytes.
8b9bc460 1791 */
1f91b4cc 1792static u32 dwc2_hsotg_ep0_mps(unsigned int mps)
5b7d70c6
BD
1793{
1794 switch (mps) {
1795 case 64:
94cb8fd6 1796 return D0EPCTL_MPS_64;
5b7d70c6 1797 case 32:
94cb8fd6 1798 return D0EPCTL_MPS_32;
5b7d70c6 1799 case 16:
94cb8fd6 1800 return D0EPCTL_MPS_16;
5b7d70c6 1801 case 8:
94cb8fd6 1802 return D0EPCTL_MPS_8;
5b7d70c6
BD
1803 }
1804
1805 /* bad max packet size, warn and return invalid result */
1806 WARN_ON(1);
1807 return (u32)-1;
1808}
1809
1810/**
1f91b4cc 1811 * dwc2_hsotg_set_ep_maxpacket - set endpoint's max-packet field
5b7d70c6
BD
1812 * @hsotg: The driver state.
1813 * @ep: The index number of the endpoint
1814 * @mps: The maximum packet size in bytes
1815 *
1816 * Configure the maximum packet size for the given endpoint, updating
1817 * the hardware control registers to reflect this.
1818 */
1f91b4cc 1819static void dwc2_hsotg_set_ep_maxpacket(struct dwc2_hsotg *hsotg,
c6f5c050 1820 unsigned int ep, unsigned int mps, unsigned int dir_in)
5b7d70c6 1821{
1f91b4cc 1822 struct dwc2_hsotg_ep *hs_ep;
5b7d70c6
BD
1823 void __iomem *regs = hsotg->regs;
1824 u32 mpsval;
4fca54aa 1825 u32 mcval;
5b7d70c6
BD
1826 u32 reg;
1827
c6f5c050
MYK
1828 hs_ep = index_to_ep(hsotg, ep, dir_in);
1829 if (!hs_ep)
1830 return;
1831
5b7d70c6
BD
1832 if (ep == 0) {
1833 /* EP0 is a special case */
1f91b4cc 1834 mpsval = dwc2_hsotg_ep0_mps(mps);
5b7d70c6
BD
1835 if (mpsval > 3)
1836 goto bad_mps;
e9edd199 1837 hs_ep->ep.maxpacket = mps;
4fca54aa 1838 hs_ep->mc = 1;
5b7d70c6 1839 } else {
47a1685f 1840 mpsval = mps & DXEPCTL_MPS_MASK;
e9edd199 1841 if (mpsval > 1024)
5b7d70c6 1842 goto bad_mps;
4fca54aa
RB
1843 mcval = ((mps >> 11) & 0x3) + 1;
1844 hs_ep->mc = mcval;
1845 if (mcval > 3)
1846 goto bad_mps;
e9edd199 1847 hs_ep->ep.maxpacket = mpsval;
5b7d70c6
BD
1848 }
1849
c6f5c050 1850 if (dir_in) {
95c8bc36 1851 reg = dwc2_readl(regs + DIEPCTL(ep));
c6f5c050
MYK
1852 reg &= ~DXEPCTL_MPS_MASK;
1853 reg |= mpsval;
95c8bc36 1854 dwc2_writel(reg, regs + DIEPCTL(ep));
c6f5c050 1855 } else {
95c8bc36 1856 reg = dwc2_readl(regs + DOEPCTL(ep));
47a1685f 1857 reg &= ~DXEPCTL_MPS_MASK;
659ad60c 1858 reg |= mpsval;
95c8bc36 1859 dwc2_writel(reg, regs + DOEPCTL(ep));
659ad60c 1860 }
5b7d70c6
BD
1861
1862 return;
1863
1864bad_mps:
1865 dev_err(hsotg->dev, "ep%d: bad mps of %d\n", ep, mps);
1866}
1867
9c39ddc6 1868/**
1f91b4cc 1869 * dwc2_hsotg_txfifo_flush - flush Tx FIFO
9c39ddc6
AT
1870 * @hsotg: The driver state
1871 * @idx: The index for the endpoint (0..15)
1872 */
1f91b4cc 1873static void dwc2_hsotg_txfifo_flush(struct dwc2_hsotg *hsotg, unsigned int idx)
9c39ddc6
AT
1874{
1875 int timeout;
1876 int val;
1877
95c8bc36
AS
1878 dwc2_writel(GRSTCTL_TXFNUM(idx) | GRSTCTL_TXFFLSH,
1879 hsotg->regs + GRSTCTL);
9c39ddc6
AT
1880
1881 /* wait until the fifo is flushed */
1882 timeout = 100;
1883
1884 while (1) {
95c8bc36 1885 val = dwc2_readl(hsotg->regs + GRSTCTL);
9c39ddc6 1886
47a1685f 1887 if ((val & (GRSTCTL_TXFFLSH)) == 0)
9c39ddc6
AT
1888 break;
1889
1890 if (--timeout == 0) {
1891 dev_err(hsotg->dev,
1892 "%s: timeout flushing fifo (GRSTCTL=%08x)\n",
1893 __func__, val);
e0cbe595 1894 break;
9c39ddc6
AT
1895 }
1896
1897 udelay(1);
1898 }
1899}
5b7d70c6
BD
1900
1901/**
1f91b4cc 1902 * dwc2_hsotg_trytx - check to see if anything needs transmitting
5b7d70c6
BD
1903 * @hsotg: The driver state
1904 * @hs_ep: The driver endpoint to check.
1905 *
1906 * Check to see if there is a request that has data to send, and if so
1907 * make an attempt to write data into the FIFO.
1908 */
1f91b4cc
FB
1909static int dwc2_hsotg_trytx(struct dwc2_hsotg *hsotg,
1910 struct dwc2_hsotg_ep *hs_ep)
5b7d70c6 1911{
1f91b4cc 1912 struct dwc2_hsotg_req *hs_req = hs_ep->req;
5b7d70c6 1913
afcf4169
RB
1914 if (!hs_ep->dir_in || !hs_req) {
1915 /**
1916 * if request is not enqueued, we disable interrupts
1917 * for endpoints, excepting ep0
1918 */
1919 if (hs_ep->index != 0)
1f91b4cc 1920 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index,
afcf4169 1921 hs_ep->dir_in, 0);
5b7d70c6 1922 return 0;
afcf4169 1923 }
5b7d70c6
BD
1924
1925 if (hs_req->req.actual < hs_req->req.length) {
1926 dev_dbg(hsotg->dev, "trying to write more for ep%d\n",
1927 hs_ep->index);
1f91b4cc 1928 return dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req);
5b7d70c6
BD
1929 }
1930
1931 return 0;
1932}
1933
1934/**
1f91b4cc 1935 * dwc2_hsotg_complete_in - complete IN transfer
5b7d70c6
BD
1936 * @hsotg: The device state.
1937 * @hs_ep: The endpoint that has just completed.
1938 *
1939 * An IN transfer has been completed, update the transfer's state and then
1940 * call the relevant completion routines.
1941 */
1f91b4cc
FB
1942static void dwc2_hsotg_complete_in(struct dwc2_hsotg *hsotg,
1943 struct dwc2_hsotg_ep *hs_ep)
5b7d70c6 1944{
1f91b4cc 1945 struct dwc2_hsotg_req *hs_req = hs_ep->req;
95c8bc36 1946 u32 epsize = dwc2_readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
5b7d70c6
BD
1947 int size_left, size_done;
1948
1949 if (!hs_req) {
1950 dev_dbg(hsotg->dev, "XferCompl but no req\n");
1951 return;
1952 }
1953
d3ca0259 1954 /* Finish ZLP handling for IN EP0 transactions */
fe0b94ab
MYK
1955 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_IN) {
1956 dev_dbg(hsotg->dev, "zlp packet sent\n");
1f91b4cc 1957 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
9e14d0a5
GH
1958 if (hsotg->test_mode) {
1959 int ret;
1960
1f91b4cc 1961 ret = dwc2_hsotg_set_test_mode(hsotg, hsotg->test_mode);
9e14d0a5
GH
1962 if (ret < 0) {
1963 dev_dbg(hsotg->dev, "Invalid Test #%d\n",
1964 hsotg->test_mode);
1f91b4cc 1965 dwc2_hsotg_stall_ep0(hsotg);
9e14d0a5
GH
1966 return;
1967 }
1968 }
1f91b4cc 1969 dwc2_hsotg_enqueue_setup(hsotg);
d3ca0259
LM
1970 return;
1971 }
1972
8b9bc460
LM
1973 /*
1974 * Calculate the size of the transfer by checking how much is left
5b7d70c6
BD
1975 * in the endpoint size register and then working it out from
1976 * the amount we loaded for the transfer.
1977 *
1978 * We do this even for DMA, as the transfer may have incremented
1979 * past the end of the buffer (DMA transfers are always 32bit
1980 * aligned).
1981 */
1982
47a1685f 1983 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
5b7d70c6
BD
1984
1985 size_done = hs_ep->size_loaded - size_left;
1986 size_done += hs_ep->last_load;
1987
1988 if (hs_req->req.actual != size_done)
1989 dev_dbg(hsotg->dev, "%s: adjusting size done %d => %d\n",
1990 __func__, hs_req->req.actual, size_done);
1991
1992 hs_req->req.actual = size_done;
d3ca0259
LM
1993 dev_dbg(hsotg->dev, "req->length:%d req->actual:%d req->zero:%d\n",
1994 hs_req->req.length, hs_req->req.actual, hs_req->req.zero);
1995
5b7d70c6
BD
1996 if (!size_left && hs_req->req.actual < hs_req->req.length) {
1997 dev_dbg(hsotg->dev, "%s trying more for req...\n", __func__);
1f91b4cc 1998 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true);
fe0b94ab
MYK
1999 return;
2000 }
2001
f71b5e25 2002 /* Zlp for all endpoints, for ep0 only in DATA IN stage */
8a20fa45 2003 if (hs_ep->send_zlp) {
1f91b4cc 2004 dwc2_hsotg_program_zlp(hsotg, hs_ep);
8a20fa45 2005 hs_ep->send_zlp = 0;
f71b5e25
MYK
2006 /* transfer will be completed on next complete interrupt */
2007 return;
2008 }
2009
fe0b94ab
MYK
2010 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_DATA_IN) {
2011 /* Move to STATUS OUT */
1f91b4cc 2012 dwc2_hsotg_ep0_zlp(hsotg, false);
fe0b94ab
MYK
2013 return;
2014 }
2015
1f91b4cc 2016 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
5b7d70c6
BD
2017}
2018
32601588
VM
2019/**
2020 * dwc2_gadget_read_ep_interrupts - reads interrupts for given ep
2021 * @hsotg: The device state.
2022 * @idx: Index of ep.
2023 * @dir_in: Endpoint direction 1-in 0-out.
2024 *
2025 * Reads for endpoint with given index and direction, by masking
2026 * epint_reg with coresponding mask.
2027 */
2028static u32 dwc2_gadget_read_ep_interrupts(struct dwc2_hsotg *hsotg,
2029 unsigned int idx, int dir_in)
2030{
2031 u32 epmsk_reg = dir_in ? DIEPMSK : DOEPMSK;
2032 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
2033 u32 ints;
2034 u32 mask;
2035 u32 diepempmsk;
2036
2037 mask = dwc2_readl(hsotg->regs + epmsk_reg);
2038 diepempmsk = dwc2_readl(hsotg->regs + DIEPEMPMSK);
2039 mask |= ((diepempmsk >> idx) & 0x1) ? DIEPMSK_TXFIFOEMPTY : 0;
2040 mask |= DXEPINT_SETUP_RCVD;
2041
2042 ints = dwc2_readl(hsotg->regs + epint_reg);
2043 ints &= mask;
2044 return ints;
2045}
2046
bd9971f0
VM
2047/**
2048 * dwc2_gadget_handle_ep_disabled - handle DXEPINT_EPDISBLD
2049 * @hs_ep: The endpoint on which interrupt is asserted.
2050 *
2051 * This interrupt indicates that the endpoint has been disabled per the
2052 * application's request.
2053 *
2054 * For IN endpoints flushes txfifo, in case of BULK clears DCTL_CGNPINNAK,
2055 * in case of ISOC completes current request.
2056 *
2057 * For ISOC-OUT endpoints completes expired requests. If there is remaining
2058 * request starts it.
2059 */
2060static void dwc2_gadget_handle_ep_disabled(struct dwc2_hsotg_ep *hs_ep)
2061{
2062 struct dwc2_hsotg *hsotg = hs_ep->parent;
2063 struct dwc2_hsotg_req *hs_req;
2064 unsigned char idx = hs_ep->index;
2065 int dir_in = hs_ep->dir_in;
2066 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
2067 int dctl = dwc2_readl(hsotg->regs + DCTL);
2068
2069 dev_dbg(hsotg->dev, "%s: EPDisbld\n", __func__);
2070
2071 if (dir_in) {
2072 int epctl = dwc2_readl(hsotg->regs + epctl_reg);
2073
2074 dwc2_hsotg_txfifo_flush(hsotg, hs_ep->fifo_index);
2075
2076 if (hs_ep->isochronous) {
2077 dwc2_hsotg_complete_in(hsotg, hs_ep);
2078 return;
2079 }
2080
2081 if ((epctl & DXEPCTL_STALL) && (epctl & DXEPCTL_EPTYPE_BULK)) {
2082 int dctl = dwc2_readl(hsotg->regs + DCTL);
2083
2084 dctl |= DCTL_CGNPINNAK;
2085 dwc2_writel(dctl, hsotg->regs + DCTL);
2086 }
2087 return;
2088 }
2089
2090 if (dctl & DCTL_GOUTNAKSTS) {
2091 dctl |= DCTL_CGOUTNAK;
2092 dwc2_writel(dctl, hsotg->regs + DCTL);
2093 }
2094
2095 if (!hs_ep->isochronous)
2096 return;
2097
2098 if (list_empty(&hs_ep->queue)) {
2099 dev_dbg(hsotg->dev, "%s: complete_ep 0x%p, ep->queue empty!\n",
2100 __func__, hs_ep);
2101 return;
2102 }
2103
2104 do {
2105 hs_req = get_ep_head(hs_ep);
2106 if (hs_req)
2107 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req,
2108 -ENODATA);
2109 dwc2_gadget_incr_frame_num(hs_ep);
2110 } while (dwc2_gadget_target_frame_elapsed(hs_ep));
2111
2112 dwc2_gadget_start_next_request(hs_ep);
2113}
2114
5321922c
VM
2115/**
2116 * dwc2_gadget_handle_out_token_ep_disabled - handle DXEPINT_OUTTKNEPDIS
2117 * @hs_ep: The endpoint on which interrupt is asserted.
2118 *
2119 * This is starting point for ISOC-OUT transfer, synchronization done with
2120 * first out token received from host while corresponding EP is disabled.
2121 *
2122 * Device does not know initial frame in which out token will come. For this
2123 * HW generates OUTTKNEPDIS - out token is received while EP is disabled. Upon
2124 * getting this interrupt SW starts calculation for next transfer frame.
2125 */
2126static void dwc2_gadget_handle_out_token_ep_disabled(struct dwc2_hsotg_ep *ep)
2127{
2128 struct dwc2_hsotg *hsotg = ep->parent;
2129 int dir_in = ep->dir_in;
2130 u32 doepmsk;
2131
2132 if (dir_in || !ep->isochronous)
2133 return;
2134
2135 dwc2_hsotg_complete_request(hsotg, ep, get_ep_head(ep), -ENODATA);
2136
2137 if (ep->interval > 1 &&
2138 ep->target_frame == TARGET_FRAME_INITIAL) {
2139 u32 dsts;
2140 u32 ctrl;
2141
2142 dsts = dwc2_readl(hsotg->regs + DSTS);
2143 ep->target_frame = dwc2_hsotg_read_frameno(hsotg);
2144 dwc2_gadget_incr_frame_num(ep);
2145
2146 ctrl = dwc2_readl(hsotg->regs + DOEPCTL(ep->index));
2147 if (ep->target_frame & 0x1)
2148 ctrl |= DXEPCTL_SETODDFR;
2149 else
2150 ctrl |= DXEPCTL_SETEVENFR;
2151
2152 dwc2_writel(ctrl, hsotg->regs + DOEPCTL(ep->index));
2153 }
2154
2155 dwc2_gadget_start_next_request(ep);
2156 doepmsk = dwc2_readl(hsotg->regs + DOEPMSK);
2157 doepmsk &= ~DOEPMSK_OUTTKNEPDISMSK;
2158 dwc2_writel(doepmsk, hsotg->regs + DOEPMSK);
2159}
2160
2161/**
2162* dwc2_gadget_handle_nak - handle NAK interrupt
2163* @hs_ep: The endpoint on which interrupt is asserted.
2164*
2165* This is starting point for ISOC-IN transfer, synchronization done with
2166* first IN token received from host while corresponding EP is disabled.
2167*
2168* Device does not know when first one token will arrive from host. On first
2169* token arrival HW generates 2 interrupts: 'in token received while FIFO empty'
2170* and 'NAK'. NAK interrupt for ISOC-IN means that token has arrived and ZLP was
2171* sent in response to that as there was no data in FIFO. SW is basing on this
2172* interrupt to obtain frame in which token has come and then based on the
2173* interval calculates next frame for transfer.
2174*/
2175static void dwc2_gadget_handle_nak(struct dwc2_hsotg_ep *hs_ep)
2176{
2177 struct dwc2_hsotg *hsotg = hs_ep->parent;
2178 int dir_in = hs_ep->dir_in;
2179
2180 if (!dir_in || !hs_ep->isochronous)
2181 return;
2182
2183 if (hs_ep->target_frame == TARGET_FRAME_INITIAL) {
2184 hs_ep->target_frame = dwc2_hsotg_read_frameno(hsotg);
2185 if (hs_ep->interval > 1) {
2186 u32 ctrl = dwc2_readl(hsotg->regs +
2187 DIEPCTL(hs_ep->index));
2188 if (hs_ep->target_frame & 0x1)
2189 ctrl |= DXEPCTL_SETODDFR;
2190 else
2191 ctrl |= DXEPCTL_SETEVENFR;
2192
2193 dwc2_writel(ctrl, hsotg->regs + DIEPCTL(hs_ep->index));
2194 }
2195
2196 dwc2_hsotg_complete_request(hsotg, hs_ep,
2197 get_ep_head(hs_ep), 0);
2198 }
2199
2200 dwc2_gadget_incr_frame_num(hs_ep);
2201}
2202
5b7d70c6 2203/**
1f91b4cc 2204 * dwc2_hsotg_epint - handle an in/out endpoint interrupt
5b7d70c6
BD
2205 * @hsotg: The driver state
2206 * @idx: The index for the endpoint (0..15)
2207 * @dir_in: Set if this is an IN endpoint
2208 *
2209 * Process and clear any interrupt pending for an individual endpoint
8b9bc460 2210 */
1f91b4cc 2211static void dwc2_hsotg_epint(struct dwc2_hsotg *hsotg, unsigned int idx,
5b7d70c6
BD
2212 int dir_in)
2213{
1f91b4cc 2214 struct dwc2_hsotg_ep *hs_ep = index_to_ep(hsotg, idx, dir_in);
94cb8fd6
LM
2215 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
2216 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
2217 u32 epsiz_reg = dir_in ? DIEPTSIZ(idx) : DOEPTSIZ(idx);
5b7d70c6 2218 u32 ints;
1479e841 2219 u32 ctrl;
5b7d70c6 2220
32601588 2221 ints = dwc2_gadget_read_ep_interrupts(hsotg, idx, dir_in);
95c8bc36 2222 ctrl = dwc2_readl(hsotg->regs + epctl_reg);
5b7d70c6 2223
a3395f0d 2224 /* Clear endpoint interrupts */
95c8bc36 2225 dwc2_writel(ints, hsotg->regs + epint_reg);
a3395f0d 2226
c6f5c050
MYK
2227 if (!hs_ep) {
2228 dev_err(hsotg->dev, "%s:Interrupt for unconfigured ep%d(%s)\n",
2229 __func__, idx, dir_in ? "in" : "out");
2230 return;
2231 }
2232
5b7d70c6
BD
2233 dev_dbg(hsotg->dev, "%s: ep%d(%s) DxEPINT=0x%08x\n",
2234 __func__, idx, dir_in ? "in" : "out", ints);
2235
b787d755
MYK
2236 /* Don't process XferCompl interrupt if it is a setup packet */
2237 if (idx == 0 && (ints & (DXEPINT_SETUP | DXEPINT_SETUP_RCVD)))
2238 ints &= ~DXEPINT_XFERCOMPL;
2239
837e9f00
VM
2240 if (ints & DXEPINT_STSPHSERCVD)
2241 dev_dbg(hsotg->dev, "%s: StsPhseRcvd asserted\n", __func__);
1479e841 2242
837e9f00 2243 if (ints & DXEPINT_XFERCOMPL) {
5b7d70c6 2244 dev_dbg(hsotg->dev,
47a1685f 2245 "%s: XferCompl: DxEPCTL=0x%08x, DXEPTSIZ=%08x\n",
95c8bc36
AS
2246 __func__, dwc2_readl(hsotg->regs + epctl_reg),
2247 dwc2_readl(hsotg->regs + epsiz_reg));
5b7d70c6 2248
8b9bc460
LM
2249 /*
2250 * we get OutDone from the FIFO, so we only need to look
2251 * at completing IN requests here
2252 */
5b7d70c6 2253 if (dir_in) {
837e9f00
VM
2254 if (hs_ep->isochronous && hs_ep->interval > 1)
2255 dwc2_gadget_incr_frame_num(hs_ep);
2256
1f91b4cc 2257 dwc2_hsotg_complete_in(hsotg, hs_ep);
837e9f00
VM
2258 if (ints & DXEPINT_NAKINTRPT)
2259 ints &= ~DXEPINT_NAKINTRPT;
5b7d70c6 2260
c9a64ea8 2261 if (idx == 0 && !hs_ep->req)
1f91b4cc 2262 dwc2_hsotg_enqueue_setup(hsotg);
5b7d70c6 2263 } else if (using_dma(hsotg)) {
8b9bc460
LM
2264 /*
2265 * We're using DMA, we need to fire an OutDone here
2266 * as we ignore the RXFIFO.
2267 */
837e9f00
VM
2268 if (hs_ep->isochronous && hs_ep->interval > 1)
2269 dwc2_gadget_incr_frame_num(hs_ep);
5b7d70c6 2270
1f91b4cc 2271 dwc2_hsotg_handle_outdone(hsotg, idx);
5b7d70c6 2272 }
5b7d70c6
BD
2273 }
2274
bd9971f0
VM
2275 if (ints & DXEPINT_EPDISBLD)
2276 dwc2_gadget_handle_ep_disabled(hs_ep);
9c39ddc6 2277
5321922c
VM
2278 if (ints & DXEPINT_OUTTKNEPDIS)
2279 dwc2_gadget_handle_out_token_ep_disabled(hs_ep);
2280
2281 if (ints & DXEPINT_NAKINTRPT)
2282 dwc2_gadget_handle_nak(hs_ep);
2283
47a1685f 2284 if (ints & DXEPINT_AHBERR)
5b7d70c6 2285 dev_dbg(hsotg->dev, "%s: AHBErr\n", __func__);
5b7d70c6 2286
47a1685f 2287 if (ints & DXEPINT_SETUP) { /* Setup or Timeout */
5b7d70c6
BD
2288 dev_dbg(hsotg->dev, "%s: Setup/Timeout\n", __func__);
2289
2290 if (using_dma(hsotg) && idx == 0) {
8b9bc460
LM
2291 /*
2292 * this is the notification we've received a
5b7d70c6
BD
2293 * setup packet. In non-DMA mode we'd get this
2294 * from the RXFIFO, instead we need to process
8b9bc460
LM
2295 * the setup here.
2296 */
5b7d70c6
BD
2297
2298 if (dir_in)
2299 WARN_ON_ONCE(1);
2300 else
1f91b4cc 2301 dwc2_hsotg_handle_outdone(hsotg, 0);
5b7d70c6 2302 }
5b7d70c6
BD
2303 }
2304
47a1685f 2305 if (ints & DXEPINT_BACK2BACKSETUP)
5b7d70c6 2306 dev_dbg(hsotg->dev, "%s: B2BSetup/INEPNakEff\n", __func__);
5b7d70c6 2307
1479e841 2308 if (dir_in && !hs_ep->isochronous) {
8b9bc460 2309 /* not sure if this is important, but we'll clear it anyway */
26ddef5d 2310 if (ints & DXEPINT_INTKNTXFEMP) {
5b7d70c6
BD
2311 dev_dbg(hsotg->dev, "%s: ep%d: INTknTXFEmpMsk\n",
2312 __func__, idx);
5b7d70c6
BD
2313 }
2314
2315 /* this probably means something bad is happening */
26ddef5d 2316 if (ints & DXEPINT_INTKNEPMIS) {
5b7d70c6
BD
2317 dev_warn(hsotg->dev, "%s: ep%d: INTknEP\n",
2318 __func__, idx);
5b7d70c6 2319 }
10aebc77
BD
2320
2321 /* FIFO has space or is empty (see GAHBCFG) */
2322 if (hsotg->dedicated_fifos &&
26ddef5d 2323 ints & DXEPINT_TXFEMP) {
10aebc77
BD
2324 dev_dbg(hsotg->dev, "%s: ep%d: TxFIFOEmpty\n",
2325 __func__, idx);
70fa030f 2326 if (!using_dma(hsotg))
1f91b4cc 2327 dwc2_hsotg_trytx(hsotg, hs_ep);
10aebc77 2328 }
5b7d70c6 2329 }
5b7d70c6
BD
2330}
2331
2332/**
1f91b4cc 2333 * dwc2_hsotg_irq_enumdone - Handle EnumDone interrupt (enumeration done)
5b7d70c6
BD
2334 * @hsotg: The device state.
2335 *
2336 * Handle updating the device settings after the enumeration phase has
2337 * been completed.
8b9bc460 2338 */
1f91b4cc 2339static void dwc2_hsotg_irq_enumdone(struct dwc2_hsotg *hsotg)
5b7d70c6 2340{
95c8bc36 2341 u32 dsts = dwc2_readl(hsotg->regs + DSTS);
9b2667f1 2342 int ep0_mps = 0, ep_mps = 8;
5b7d70c6 2343
8b9bc460
LM
2344 /*
2345 * This should signal the finish of the enumeration phase
5b7d70c6 2346 * of the USB handshaking, so we should now know what rate
8b9bc460
LM
2347 * we connected at.
2348 */
5b7d70c6
BD
2349
2350 dev_dbg(hsotg->dev, "EnumDone (DSTS=0x%08x)\n", dsts);
2351
8b9bc460
LM
2352 /*
2353 * note, since we're limited by the size of transfer on EP0, and
5b7d70c6 2354 * it seems IN transfers must be a even number of packets we do
8b9bc460
LM
2355 * not advertise a 64byte MPS on EP0.
2356 */
5b7d70c6
BD
2357
2358 /* catch both EnumSpd_FS and EnumSpd_FS48 */
6d76c92c 2359 switch ((dsts & DSTS_ENUMSPD_MASK) >> DSTS_ENUMSPD_SHIFT) {
47a1685f
DN
2360 case DSTS_ENUMSPD_FS:
2361 case DSTS_ENUMSPD_FS48:
5b7d70c6 2362 hsotg->gadget.speed = USB_SPEED_FULL;
5b7d70c6 2363 ep0_mps = EP0_MPS_LIMIT;
295538ff 2364 ep_mps = 1023;
5b7d70c6
BD
2365 break;
2366
47a1685f 2367 case DSTS_ENUMSPD_HS:
5b7d70c6 2368 hsotg->gadget.speed = USB_SPEED_HIGH;
5b7d70c6 2369 ep0_mps = EP0_MPS_LIMIT;
295538ff 2370 ep_mps = 1024;
5b7d70c6
BD
2371 break;
2372
47a1685f 2373 case DSTS_ENUMSPD_LS:
5b7d70c6 2374 hsotg->gadget.speed = USB_SPEED_LOW;
8b9bc460
LM
2375 /*
2376 * note, we don't actually support LS in this driver at the
5b7d70c6
BD
2377 * moment, and the documentation seems to imply that it isn't
2378 * supported by the PHYs on some of the devices.
2379 */
2380 break;
2381 }
e538dfda
MN
2382 dev_info(hsotg->dev, "new device is %s\n",
2383 usb_speed_string(hsotg->gadget.speed));
5b7d70c6 2384
8b9bc460
LM
2385 /*
2386 * we should now know the maximum packet size for an
2387 * endpoint, so set the endpoints to a default value.
2388 */
5b7d70c6
BD
2389
2390 if (ep0_mps) {
2391 int i;
c6f5c050 2392 /* Initialize ep0 for both in and out directions */
1f91b4cc
FB
2393 dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 1);
2394 dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 0);
c6f5c050
MYK
2395 for (i = 1; i < hsotg->num_of_eps; i++) {
2396 if (hsotg->eps_in[i])
1f91b4cc 2397 dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps, 1);
c6f5c050 2398 if (hsotg->eps_out[i])
1f91b4cc 2399 dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps, 0);
c6f5c050 2400 }
5b7d70c6
BD
2401 }
2402
2403 /* ensure after enumeration our EP0 is active */
2404
1f91b4cc 2405 dwc2_hsotg_enqueue_setup(hsotg);
5b7d70c6
BD
2406
2407 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
95c8bc36
AS
2408 dwc2_readl(hsotg->regs + DIEPCTL0),
2409 dwc2_readl(hsotg->regs + DOEPCTL0));
5b7d70c6
BD
2410}
2411
2412/**
2413 * kill_all_requests - remove all requests from the endpoint's queue
2414 * @hsotg: The device state.
2415 * @ep: The endpoint the requests may be on.
2416 * @result: The result code to use.
5b7d70c6
BD
2417 *
2418 * Go through the requests on the given endpoint and mark them
2419 * completed with the given result code.
2420 */
941fcce4 2421static void kill_all_requests(struct dwc2_hsotg *hsotg,
1f91b4cc 2422 struct dwc2_hsotg_ep *ep,
6b448af4 2423 int result)
5b7d70c6 2424{
1f91b4cc 2425 struct dwc2_hsotg_req *req, *treq;
b203d0a2 2426 unsigned size;
5b7d70c6 2427
6b448af4 2428 ep->req = NULL;
5b7d70c6 2429
6b448af4 2430 list_for_each_entry_safe(req, treq, &ep->queue, queue)
1f91b4cc 2431 dwc2_hsotg_complete_request(hsotg, ep, req,
5b7d70c6 2432 result);
6b448af4 2433
b203d0a2
RB
2434 if (!hsotg->dedicated_fifos)
2435 return;
ad674a15 2436 size = (dwc2_readl(hsotg->regs + DTXFSTS(ep->fifo_index)) & 0xffff) * 4;
b203d0a2 2437 if (size < ep->fifo_size)
1f91b4cc 2438 dwc2_hsotg_txfifo_flush(hsotg, ep->fifo_index);
5b7d70c6
BD
2439}
2440
5b7d70c6 2441/**
1f91b4cc 2442 * dwc2_hsotg_disconnect - disconnect service
5b7d70c6
BD
2443 * @hsotg: The device state.
2444 *
5e891342
LM
2445 * The device has been disconnected. Remove all current
2446 * transactions and signal the gadget driver that this
2447 * has happened.
8b9bc460 2448 */
1f91b4cc 2449void dwc2_hsotg_disconnect(struct dwc2_hsotg *hsotg)
5b7d70c6
BD
2450{
2451 unsigned ep;
2452
4ace06e8
MS
2453 if (!hsotg->connected)
2454 return;
2455
2456 hsotg->connected = 0;
9e14d0a5 2457 hsotg->test_mode = 0;
c6f5c050
MYK
2458
2459 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
2460 if (hsotg->eps_in[ep])
2461 kill_all_requests(hsotg, hsotg->eps_in[ep],
2462 -ESHUTDOWN);
2463 if (hsotg->eps_out[ep])
2464 kill_all_requests(hsotg, hsotg->eps_out[ep],
2465 -ESHUTDOWN);
2466 }
5b7d70c6
BD
2467
2468 call_gadget(hsotg, disconnect);
065d3931 2469 hsotg->lx_state = DWC2_L3;
5b7d70c6
BD
2470}
2471
2472/**
1f91b4cc 2473 * dwc2_hsotg_irq_fifoempty - TX FIFO empty interrupt handler
5b7d70c6
BD
2474 * @hsotg: The device state:
2475 * @periodic: True if this is a periodic FIFO interrupt
2476 */
1f91b4cc 2477static void dwc2_hsotg_irq_fifoempty(struct dwc2_hsotg *hsotg, bool periodic)
5b7d70c6 2478{
1f91b4cc 2479 struct dwc2_hsotg_ep *ep;
5b7d70c6
BD
2480 int epno, ret;
2481
2482 /* look through for any more data to transmit */
b3f489b2 2483 for (epno = 0; epno < hsotg->num_of_eps; epno++) {
c6f5c050
MYK
2484 ep = index_to_ep(hsotg, epno, 1);
2485
2486 if (!ep)
2487 continue;
5b7d70c6
BD
2488
2489 if (!ep->dir_in)
2490 continue;
2491
2492 if ((periodic && !ep->periodic) ||
2493 (!periodic && ep->periodic))
2494 continue;
2495
1f91b4cc 2496 ret = dwc2_hsotg_trytx(hsotg, ep);
5b7d70c6
BD
2497 if (ret < 0)
2498 break;
2499 }
2500}
2501
5b7d70c6 2502/* IRQ flags which will trigger a retry around the IRQ loop */
47a1685f
DN
2503#define IRQ_RETRY_MASK (GINTSTS_NPTXFEMP | \
2504 GINTSTS_PTXFEMP | \
2505 GINTSTS_RXFLVL)
5b7d70c6 2506
8b9bc460 2507/**
1f91b4cc 2508 * dwc2_hsotg_core_init - issue softreset to the core
8b9bc460
LM
2509 * @hsotg: The device state
2510 *
2511 * Issue a soft reset to the core, and await the core finishing it.
2512 */
1f91b4cc 2513void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *hsotg,
643cc4de 2514 bool is_usb_reset)
308d734e 2515{
1ee6903b 2516 u32 intmsk;
643cc4de 2517 u32 val;
ecd9a7ad 2518 u32 usbcfg;
643cc4de 2519
5390d438
MYK
2520 /* Kill any ep0 requests as controller will be reinitialized */
2521 kill_all_requests(hsotg, hsotg->eps_out[0], -ECONNRESET);
2522
643cc4de 2523 if (!is_usb_reset)
241729ba 2524 if (dwc2_core_reset(hsotg))
86de4895 2525 return;
308d734e
LM
2526
2527 /*
2528 * we must now enable ep0 ready for host detection and then
2529 * set configuration.
2530 */
2531
ecd9a7ad
PR
2532 /* keep other bits untouched (so e.g. forced modes are not lost) */
2533 usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
2534 usbcfg &= ~(GUSBCFG_TOUTCAL_MASK | GUSBCFG_PHYIF16 | GUSBCFG_SRPCAP |
2535 GUSBCFG_HNPCAP);
2536
308d734e 2537 /* set the PLL on, remove the HNP/SRP and set the PHY */
fa4a8d72 2538 val = (hsotg->phyif == GUSBCFG_PHYIF8) ? 9 : 5;
ecd9a7ad
PR
2539 usbcfg |= hsotg->phyif | GUSBCFG_TOUTCAL(7) |
2540 (val << GUSBCFG_USBTRDTIM_SHIFT);
2541 dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
308d734e 2542
1f91b4cc 2543 dwc2_hsotg_init_fifo(hsotg);
308d734e 2544
643cc4de
GH
2545 if (!is_usb_reset)
2546 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
308d734e 2547
95c8bc36 2548 dwc2_writel(DCFG_EPMISCNT(1) | DCFG_DEVSPD_HS, hsotg->regs + DCFG);
308d734e
LM
2549
2550 /* Clear any pending OTG interrupts */
95c8bc36 2551 dwc2_writel(0xffffffff, hsotg->regs + GOTGINT);
308d734e
LM
2552
2553 /* Clear any pending interrupts */
95c8bc36 2554 dwc2_writel(0xffffffff, hsotg->regs + GINTSTS);
1ee6903b 2555 intmsk = GINTSTS_ERLYSUSP | GINTSTS_SESSREQINT |
47a1685f 2556 GINTSTS_GOUTNAKEFF | GINTSTS_GINNAKEFF |
1ee6903b
GH
2557 GINTSTS_USBRST | GINTSTS_RESETDET |
2558 GINTSTS_ENUMDONE | GINTSTS_OTGINT |
ec1f9d9f
RB
2559 GINTSTS_USBSUSP | GINTSTS_WKUPINT |
2560 GINTSTS_INCOMPL_SOIN | GINTSTS_INCOMPL_SOOUT;
1ee6903b
GH
2561
2562 if (hsotg->core_params->external_id_pin_ctl <= 0)
2563 intmsk |= GINTSTS_CONIDSTSCHNG;
2564
2565 dwc2_writel(intmsk, hsotg->regs + GINTMSK);
308d734e
LM
2566
2567 if (using_dma(hsotg))
95c8bc36
AS
2568 dwc2_writel(GAHBCFG_GLBL_INTR_EN | GAHBCFG_DMA_EN |
2569 (GAHBCFG_HBSTLEN_INCR4 << GAHBCFG_HBSTLEN_SHIFT),
2570 hsotg->regs + GAHBCFG);
308d734e 2571 else
95c8bc36
AS
2572 dwc2_writel(((hsotg->dedicated_fifos) ?
2573 (GAHBCFG_NP_TXF_EMP_LVL |
2574 GAHBCFG_P_TXF_EMP_LVL) : 0) |
2575 GAHBCFG_GLBL_INTR_EN, hsotg->regs + GAHBCFG);
308d734e
LM
2576
2577 /*
8acc8296
RB
2578 * If INTknTXFEmpMsk is enabled, it's important to disable ep interrupts
2579 * when we have no data to transfer. Otherwise we get being flooded by
2580 * interrupts.
308d734e
LM
2581 */
2582
95c8bc36 2583 dwc2_writel(((hsotg->dedicated_fifos && !using_dma(hsotg)) ?
6ff2e832 2584 DIEPMSK_TXFIFOEMPTY | DIEPMSK_INTKNTXFEMPMSK : 0) |
47a1685f 2585 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK |
837e9f00 2586 DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK,
47a1685f 2587 hsotg->regs + DIEPMSK);
308d734e
LM
2588
2589 /*
2590 * don't need XferCompl, we get that from RXFIFO in slave mode. In
2591 * DMA mode we may need this.
2592 */
837e9f00 2593 dwc2_writel((using_dma(hsotg) ? (DIEPMSK_XFERCOMPLMSK) : 0) |
47a1685f 2594 DOEPMSK_EPDISBLDMSK | DOEPMSK_AHBERRMSK |
837e9f00 2595 DOEPMSK_SETUPMSK | DOEPMSK_STSPHSERCVDMSK,
47a1685f 2596 hsotg->regs + DOEPMSK);
308d734e 2597
95c8bc36 2598 dwc2_writel(0, hsotg->regs + DAINTMSK);
308d734e
LM
2599
2600 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
95c8bc36
AS
2601 dwc2_readl(hsotg->regs + DIEPCTL0),
2602 dwc2_readl(hsotg->regs + DOEPCTL0));
308d734e
LM
2603
2604 /* enable in and out endpoint interrupts */
1f91b4cc 2605 dwc2_hsotg_en_gsint(hsotg, GINTSTS_OEPINT | GINTSTS_IEPINT);
308d734e
LM
2606
2607 /*
2608 * Enable the RXFIFO when in slave mode, as this is how we collect
2609 * the data. In DMA mode, we get events from the FIFO but also
2610 * things we cannot process, so do not use it.
2611 */
2612 if (!using_dma(hsotg))
1f91b4cc 2613 dwc2_hsotg_en_gsint(hsotg, GINTSTS_RXFLVL);
308d734e
LM
2614
2615 /* Enable interrupts for EP0 in and out */
1f91b4cc
FB
2616 dwc2_hsotg_ctrl_epint(hsotg, 0, 0, 1);
2617 dwc2_hsotg_ctrl_epint(hsotg, 0, 1, 1);
308d734e 2618
643cc4de
GH
2619 if (!is_usb_reset) {
2620 __orr32(hsotg->regs + DCTL, DCTL_PWRONPRGDONE);
2621 udelay(10); /* see openiboot */
2622 __bic32(hsotg->regs + DCTL, DCTL_PWRONPRGDONE);
2623 }
308d734e 2624
95c8bc36 2625 dev_dbg(hsotg->dev, "DCTL=0x%08x\n", dwc2_readl(hsotg->regs + DCTL));
308d734e
LM
2626
2627 /*
94cb8fd6 2628 * DxEPCTL_USBActEp says RO in manual, but seems to be set by
308d734e
LM
2629 * writing to the EPCTL register..
2630 */
2631
2632 /* set to read 1 8byte packet */
95c8bc36 2633 dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
47a1685f 2634 DXEPTSIZ_XFERSIZE(8), hsotg->regs + DOEPTSIZ0);
308d734e 2635
95c8bc36 2636 dwc2_writel(dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
47a1685f
DN
2637 DXEPCTL_CNAK | DXEPCTL_EPENA |
2638 DXEPCTL_USBACTEP,
94cb8fd6 2639 hsotg->regs + DOEPCTL0);
308d734e
LM
2640
2641 /* enable, but don't activate EP0in */
95c8bc36 2642 dwc2_writel(dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
47a1685f 2643 DXEPCTL_USBACTEP, hsotg->regs + DIEPCTL0);
308d734e 2644
1f91b4cc 2645 dwc2_hsotg_enqueue_setup(hsotg);
308d734e
LM
2646
2647 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
95c8bc36
AS
2648 dwc2_readl(hsotg->regs + DIEPCTL0),
2649 dwc2_readl(hsotg->regs + DOEPCTL0));
308d734e
LM
2650
2651 /* clear global NAKs */
643cc4de
GH
2652 val = DCTL_CGOUTNAK | DCTL_CGNPINNAK;
2653 if (!is_usb_reset)
2654 val |= DCTL_SFTDISCON;
2655 __orr32(hsotg->regs + DCTL, val);
308d734e
LM
2656
2657 /* must be at-least 3ms to allow bus to see disconnect */
2658 mdelay(3);
2659
065d3931 2660 hsotg->lx_state = DWC2_L0;
ad38dc5d
MS
2661}
2662
1f91b4cc 2663static void dwc2_hsotg_core_disconnect(struct dwc2_hsotg *hsotg)
ad38dc5d
MS
2664{
2665 /* set the soft-disconnect bit */
2666 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
2667}
ac3c81f3 2668
1f91b4cc 2669void dwc2_hsotg_core_connect(struct dwc2_hsotg *hsotg)
ad38dc5d 2670{
308d734e 2671 /* remove the soft-disconnect and let's go */
47a1685f 2672 __bic32(hsotg->regs + DCTL, DCTL_SFTDISCON);
308d734e
LM
2673}
2674
381fc8f8
VM
2675/**
2676 * dwc2_gadget_handle_incomplete_isoc_in - handle incomplete ISO IN Interrupt.
2677 * @hsotg: The device state:
2678 *
2679 * This interrupt indicates one of the following conditions occurred while
2680 * transmitting an ISOC transaction.
2681 * - Corrupted IN Token for ISOC EP.
2682 * - Packet not complete in FIFO.
2683 *
2684 * The following actions will be taken:
2685 * - Determine the EP
2686 * - Disable EP; when 'Endpoint Disabled' interrupt is received Flush FIFO
2687 */
2688static void dwc2_gadget_handle_incomplete_isoc_in(struct dwc2_hsotg *hsotg)
2689{
2690 struct dwc2_hsotg_ep *hs_ep;
2691 u32 epctrl;
2692 u32 idx;
2693
2694 dev_dbg(hsotg->dev, "Incomplete isoc in interrupt received:\n");
2695
2696 for (idx = 1; idx <= hsotg->num_of_eps; idx++) {
2697 hs_ep = hsotg->eps_in[idx];
2698 epctrl = dwc2_readl(hsotg->regs + DIEPCTL(idx));
2699 if ((epctrl & DXEPCTL_EPENA) && hs_ep->isochronous &&
2700 dwc2_gadget_target_frame_elapsed(hs_ep)) {
2701 epctrl |= DXEPCTL_SNAK;
2702 epctrl |= DXEPCTL_EPDIS;
2703 dwc2_writel(epctrl, hsotg->regs + DIEPCTL(idx));
2704 }
2705 }
2706
2707 /* Clear interrupt */
2708 dwc2_writel(GINTSTS_INCOMPL_SOIN, hsotg->regs + GINTSTS);
2709}
2710
2711/**
2712 * dwc2_gadget_handle_incomplete_isoc_out - handle incomplete ISO OUT Interrupt
2713 * @hsotg: The device state:
2714 *
2715 * This interrupt indicates one of the following conditions occurred while
2716 * transmitting an ISOC transaction.
2717 * - Corrupted OUT Token for ISOC EP.
2718 * - Packet not complete in FIFO.
2719 *
2720 * The following actions will be taken:
2721 * - Determine the EP
2722 * - Set DCTL_SGOUTNAK and unmask GOUTNAKEFF if target frame elapsed.
2723 */
2724static void dwc2_gadget_handle_incomplete_isoc_out(struct dwc2_hsotg *hsotg)
2725{
2726 u32 gintsts;
2727 u32 gintmsk;
2728 u32 epctrl;
2729 struct dwc2_hsotg_ep *hs_ep;
2730 int idx;
2731
2732 dev_dbg(hsotg->dev, "%s: GINTSTS_INCOMPL_SOOUT\n", __func__);
2733
2734 for (idx = 1; idx <= hsotg->num_of_eps; idx++) {
2735 hs_ep = hsotg->eps_out[idx];
2736 epctrl = dwc2_readl(hsotg->regs + DOEPCTL(idx));
2737 if ((epctrl & DXEPCTL_EPENA) && hs_ep->isochronous &&
2738 dwc2_gadget_target_frame_elapsed(hs_ep)) {
2739 /* Unmask GOUTNAKEFF interrupt */
2740 gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
2741 gintmsk |= GINTSTS_GOUTNAKEFF;
2742 dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
2743
2744 gintsts = dwc2_readl(hsotg->regs + GINTSTS);
2745 if (!(gintsts & GINTSTS_GOUTNAKEFF))
2746 __orr32(hsotg->regs + DCTL, DCTL_SGOUTNAK);
2747 }
2748 }
2749
2750 /* Clear interrupt */
2751 dwc2_writel(GINTSTS_INCOMPL_SOOUT, hsotg->regs + GINTSTS);
2752}
2753
5b7d70c6 2754/**
1f91b4cc 2755 * dwc2_hsotg_irq - handle device interrupt
5b7d70c6
BD
2756 * @irq: The IRQ number triggered
2757 * @pw: The pw value when registered the handler.
2758 */
1f91b4cc 2759static irqreturn_t dwc2_hsotg_irq(int irq, void *pw)
5b7d70c6 2760{
941fcce4 2761 struct dwc2_hsotg *hsotg = pw;
5b7d70c6
BD
2762 int retry_count = 8;
2763 u32 gintsts;
2764 u32 gintmsk;
2765
ee3de8d7
VM
2766 if (!dwc2_is_device_mode(hsotg))
2767 return IRQ_NONE;
2768
5ad1d316 2769 spin_lock(&hsotg->lock);
5b7d70c6 2770irq_retry:
95c8bc36
AS
2771 gintsts = dwc2_readl(hsotg->regs + GINTSTS);
2772 gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
5b7d70c6
BD
2773
2774 dev_dbg(hsotg->dev, "%s: %08x %08x (%08x) retry %d\n",
2775 __func__, gintsts, gintsts & gintmsk, gintmsk, retry_count);
2776
2777 gintsts &= gintmsk;
2778
8fc37b82
MYK
2779 if (gintsts & GINTSTS_RESETDET) {
2780 dev_dbg(hsotg->dev, "%s: USBRstDet\n", __func__);
2781
2782 dwc2_writel(GINTSTS_RESETDET, hsotg->regs + GINTSTS);
2783
2784 /* This event must be used only if controller is suspended */
2785 if (hsotg->lx_state == DWC2_L2) {
2786 dwc2_exit_hibernation(hsotg, true);
2787 hsotg->lx_state = DWC2_L0;
2788 }
2789 }
2790
2791 if (gintsts & (GINTSTS_USBRST | GINTSTS_RESETDET)) {
2792
2793 u32 usb_status = dwc2_readl(hsotg->regs + GOTGCTL);
2794 u32 connected = hsotg->connected;
2795
2796 dev_dbg(hsotg->dev, "%s: USBRst\n", __func__);
2797 dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n",
2798 dwc2_readl(hsotg->regs + GNPTXSTS));
2799
2800 dwc2_writel(GINTSTS_USBRST, hsotg->regs + GINTSTS);
2801
2802 /* Report disconnection if it is not already done. */
2803 dwc2_hsotg_disconnect(hsotg);
2804
2805 if (usb_status & GOTGCTL_BSESVLD && connected)
2806 dwc2_hsotg_core_init_disconnected(hsotg, true);
2807 }
2808
47a1685f 2809 if (gintsts & GINTSTS_ENUMDONE) {
95c8bc36 2810 dwc2_writel(GINTSTS_ENUMDONE, hsotg->regs + GINTSTS);
a3395f0d 2811
1f91b4cc 2812 dwc2_hsotg_irq_enumdone(hsotg);
5b7d70c6
BD
2813 }
2814
47a1685f 2815 if (gintsts & (GINTSTS_OEPINT | GINTSTS_IEPINT)) {
95c8bc36
AS
2816 u32 daint = dwc2_readl(hsotg->regs + DAINT);
2817 u32 daintmsk = dwc2_readl(hsotg->regs + DAINTMSK);
7e804650 2818 u32 daint_out, daint_in;
5b7d70c6
BD
2819 int ep;
2820
7e804650 2821 daint &= daintmsk;
47a1685f
DN
2822 daint_out = daint >> DAINT_OUTEP_SHIFT;
2823 daint_in = daint & ~(daint_out << DAINT_OUTEP_SHIFT);
7e804650 2824
5b7d70c6
BD
2825 dev_dbg(hsotg->dev, "%s: daint=%08x\n", __func__, daint);
2826
cec87f1d
MYK
2827 for (ep = 0; ep < hsotg->num_of_eps && daint_out;
2828 ep++, daint_out >>= 1) {
5b7d70c6 2829 if (daint_out & 1)
1f91b4cc 2830 dwc2_hsotg_epint(hsotg, ep, 0);
5b7d70c6
BD
2831 }
2832
cec87f1d
MYK
2833 for (ep = 0; ep < hsotg->num_of_eps && daint_in;
2834 ep++, daint_in >>= 1) {
5b7d70c6 2835 if (daint_in & 1)
1f91b4cc 2836 dwc2_hsotg_epint(hsotg, ep, 1);
5b7d70c6 2837 }
5b7d70c6
BD
2838 }
2839
5b7d70c6
BD
2840 /* check both FIFOs */
2841
47a1685f 2842 if (gintsts & GINTSTS_NPTXFEMP) {
5b7d70c6
BD
2843 dev_dbg(hsotg->dev, "NPTxFEmp\n");
2844
8b9bc460
LM
2845 /*
2846 * Disable the interrupt to stop it happening again
5b7d70c6 2847 * unless one of these endpoint routines decides that
8b9bc460
LM
2848 * it needs re-enabling
2849 */
5b7d70c6 2850
1f91b4cc
FB
2851 dwc2_hsotg_disable_gsint(hsotg, GINTSTS_NPTXFEMP);
2852 dwc2_hsotg_irq_fifoempty(hsotg, false);
5b7d70c6
BD
2853 }
2854
47a1685f 2855 if (gintsts & GINTSTS_PTXFEMP) {
5b7d70c6
BD
2856 dev_dbg(hsotg->dev, "PTxFEmp\n");
2857
94cb8fd6 2858 /* See note in GINTSTS_NPTxFEmp */
5b7d70c6 2859
1f91b4cc
FB
2860 dwc2_hsotg_disable_gsint(hsotg, GINTSTS_PTXFEMP);
2861 dwc2_hsotg_irq_fifoempty(hsotg, true);
5b7d70c6
BD
2862 }
2863
47a1685f 2864 if (gintsts & GINTSTS_RXFLVL) {
8b9bc460
LM
2865 /*
2866 * note, since GINTSTS_RxFLvl doubles as FIFO-not-empty,
1f91b4cc 2867 * we need to retry dwc2_hsotg_handle_rx if this is still
8b9bc460
LM
2868 * set.
2869 */
5b7d70c6 2870
1f91b4cc 2871 dwc2_hsotg_handle_rx(hsotg);
5b7d70c6
BD
2872 }
2873
47a1685f 2874 if (gintsts & GINTSTS_ERLYSUSP) {
94cb8fd6 2875 dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n");
95c8bc36 2876 dwc2_writel(GINTSTS_ERLYSUSP, hsotg->regs + GINTSTS);
5b7d70c6
BD
2877 }
2878
8b9bc460
LM
2879 /*
2880 * these next two seem to crop-up occasionally causing the core
5b7d70c6 2881 * to shutdown the USB transfer, so try clearing them and logging
8b9bc460
LM
2882 * the occurrence.
2883 */
5b7d70c6 2884
47a1685f 2885 if (gintsts & GINTSTS_GOUTNAKEFF) {
837e9f00
VM
2886 u8 idx;
2887 u32 epctrl;
2888 u32 gintmsk;
2889 struct dwc2_hsotg_ep *hs_ep;
2890
2891 /* Mask this interrupt */
2892 gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
2893 gintmsk &= ~GINTSTS_GOUTNAKEFF;
2894 dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
2895
2896 dev_dbg(hsotg->dev, "GOUTNakEff triggered\n");
2897 for (idx = 1; idx <= hsotg->num_of_eps; idx++) {
2898 hs_ep = hsotg->eps_out[idx];
2899 epctrl = dwc2_readl(hsotg->regs + DOEPCTL(idx));
2900
2901 if ((epctrl & DXEPCTL_EPENA) && hs_ep->isochronous) {
2902 epctrl |= DXEPCTL_SNAK;
2903 epctrl |= DXEPCTL_EPDIS;
2904 dwc2_writel(epctrl, hsotg->regs + DOEPCTL(idx));
2905 }
2906 }
a3395f0d 2907
837e9f00 2908 /* This interrupt bit is cleared in DXEPINT_EPDISBLD handler */
5b7d70c6
BD
2909 }
2910
47a1685f 2911 if (gintsts & GINTSTS_GINNAKEFF) {
5b7d70c6
BD
2912 dev_info(hsotg->dev, "GINNakEff triggered\n");
2913
3be99cd0 2914 __orr32(hsotg->regs + DCTL, DCTL_CGNPINNAK);
a3395f0d 2915
1f91b4cc 2916 dwc2_hsotg_dump(hsotg);
5b7d70c6
BD
2917 }
2918
381fc8f8
VM
2919 if (gintsts & GINTSTS_INCOMPL_SOIN)
2920 dwc2_gadget_handle_incomplete_isoc_in(hsotg);
ec1f9d9f 2921
381fc8f8
VM
2922 if (gintsts & GINTSTS_INCOMPL_SOOUT)
2923 dwc2_gadget_handle_incomplete_isoc_out(hsotg);
ec1f9d9f 2924
8b9bc460
LM
2925 /*
2926 * if we've had fifo events, we should try and go around the
2927 * loop again to see if there's any point in returning yet.
2928 */
5b7d70c6
BD
2929
2930 if (gintsts & IRQ_RETRY_MASK && --retry_count > 0)
2931 goto irq_retry;
2932
5ad1d316
LM
2933 spin_unlock(&hsotg->lock);
2934
5b7d70c6
BD
2935 return IRQ_HANDLED;
2936}
2937
2938/**
1f91b4cc 2939 * dwc2_hsotg_ep_enable - enable the given endpoint
5b7d70c6
BD
2940 * @ep: The USB endpint to configure
2941 * @desc: The USB endpoint descriptor to configure with.
2942 *
2943 * This is called from the USB gadget code's usb_ep_enable().
8b9bc460 2944 */
1f91b4cc 2945static int dwc2_hsotg_ep_enable(struct usb_ep *ep,
5b7d70c6
BD
2946 const struct usb_endpoint_descriptor *desc)
2947{
1f91b4cc 2948 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 2949 struct dwc2_hsotg *hsotg = hs_ep->parent;
5b7d70c6 2950 unsigned long flags;
ca4c55ad 2951 unsigned int index = hs_ep->index;
5b7d70c6
BD
2952 u32 epctrl_reg;
2953 u32 epctrl;
2954 u32 mps;
837e9f00 2955 u32 mask;
ca4c55ad
MYK
2956 unsigned int dir_in;
2957 unsigned int i, val, size;
19c190f9 2958 int ret = 0;
5b7d70c6
BD
2959
2960 dev_dbg(hsotg->dev,
2961 "%s: ep %s: a 0x%02x, attr 0x%02x, mps 0x%04x, intr %d\n",
2962 __func__, ep->name, desc->bEndpointAddress, desc->bmAttributes,
2963 desc->wMaxPacketSize, desc->bInterval);
2964
2965 /* not to be called for EP0 */
8c3d6092
VA
2966 if (index == 0) {
2967 dev_err(hsotg->dev, "%s: called for EP 0\n", __func__);
2968 return -EINVAL;
2969 }
5b7d70c6
BD
2970
2971 dir_in = (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? 1 : 0;
2972 if (dir_in != hs_ep->dir_in) {
2973 dev_err(hsotg->dev, "%s: direction mismatch!\n", __func__);
2974 return -EINVAL;
2975 }
2976
29cc8897 2977 mps = usb_endpoint_maxp(desc);
5b7d70c6 2978
1f91b4cc 2979 /* note, we handle this here instead of dwc2_hsotg_set_ep_maxpacket */
5b7d70c6 2980
94cb8fd6 2981 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
95c8bc36 2982 epctrl = dwc2_readl(hsotg->regs + epctrl_reg);
5b7d70c6
BD
2983
2984 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x from 0x%08x\n",
2985 __func__, epctrl, epctrl_reg);
2986
22258f49 2987 spin_lock_irqsave(&hsotg->lock, flags);
5b7d70c6 2988
47a1685f
DN
2989 epctrl &= ~(DXEPCTL_EPTYPE_MASK | DXEPCTL_MPS_MASK);
2990 epctrl |= DXEPCTL_MPS(mps);
5b7d70c6 2991
8b9bc460
LM
2992 /*
2993 * mark the endpoint as active, otherwise the core may ignore
2994 * transactions entirely for this endpoint
2995 */
47a1685f 2996 epctrl |= DXEPCTL_USBACTEP;
5b7d70c6 2997
5b7d70c6 2998 /* update the endpoint state */
1f91b4cc 2999 dwc2_hsotg_set_ep_maxpacket(hsotg, hs_ep->index, mps, dir_in);
5b7d70c6
BD
3000
3001 /* default, set to non-periodic */
1479e841 3002 hs_ep->isochronous = 0;
5b7d70c6 3003 hs_ep->periodic = 0;
a18ed7b0 3004 hs_ep->halted = 0;
1479e841 3005 hs_ep->interval = desc->bInterval;
4fca54aa 3006
5b7d70c6
BD
3007 switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
3008 case USB_ENDPOINT_XFER_ISOC:
47a1685f
DN
3009 epctrl |= DXEPCTL_EPTYPE_ISO;
3010 epctrl |= DXEPCTL_SETEVENFR;
1479e841 3011 hs_ep->isochronous = 1;
142bd33f 3012 hs_ep->interval = 1 << (desc->bInterval - 1);
837e9f00
VM
3013 hs_ep->target_frame = TARGET_FRAME_INITIAL;
3014 if (dir_in) {
1479e841 3015 hs_ep->periodic = 1;
837e9f00
VM
3016 mask = dwc2_readl(hsotg->regs + DIEPMSK);
3017 mask |= DIEPMSK_NAKMSK;
3018 dwc2_writel(mask, hsotg->regs + DIEPMSK);
3019 } else {
3020 mask = dwc2_readl(hsotg->regs + DOEPMSK);
3021 mask |= DOEPMSK_OUTTKNEPDISMSK;
3022 dwc2_writel(mask, hsotg->regs + DOEPMSK);
3023 }
1479e841 3024 break;
5b7d70c6
BD
3025
3026 case USB_ENDPOINT_XFER_BULK:
47a1685f 3027 epctrl |= DXEPCTL_EPTYPE_BULK;
5b7d70c6
BD
3028 break;
3029
3030 case USB_ENDPOINT_XFER_INT:
b203d0a2 3031 if (dir_in)
5b7d70c6 3032 hs_ep->periodic = 1;
5b7d70c6 3033
142bd33f
VM
3034 if (hsotg->gadget.speed == USB_SPEED_HIGH)
3035 hs_ep->interval = 1 << (desc->bInterval - 1);
3036
47a1685f 3037 epctrl |= DXEPCTL_EPTYPE_INTERRUPT;
5b7d70c6
BD
3038 break;
3039
3040 case USB_ENDPOINT_XFER_CONTROL:
47a1685f 3041 epctrl |= DXEPCTL_EPTYPE_CONTROL;
5b7d70c6
BD
3042 break;
3043 }
3044
8b9bc460
LM
3045 /*
3046 * if the hardware has dedicated fifos, we must give each IN EP
10aebc77
BD
3047 * a unique tx-fifo even if it is non-periodic.
3048 */
21f3bb52 3049 if (dir_in && hsotg->dedicated_fifos) {
ca4c55ad
MYK
3050 u32 fifo_index = 0;
3051 u32 fifo_size = UINT_MAX;
b203d0a2 3052 size = hs_ep->ep.maxpacket*hs_ep->mc;
5f2196bd 3053 for (i = 1; i < hsotg->num_of_eps; ++i) {
b203d0a2
RB
3054 if (hsotg->fifo_map & (1<<i))
3055 continue;
95c8bc36 3056 val = dwc2_readl(hsotg->regs + DPTXFSIZN(i));
b203d0a2
RB
3057 val = (val >> FIFOSIZE_DEPTH_SHIFT)*4;
3058 if (val < size)
3059 continue;
ca4c55ad
MYK
3060 /* Search for smallest acceptable fifo */
3061 if (val < fifo_size) {
3062 fifo_size = val;
3063 fifo_index = i;
3064 }
b203d0a2 3065 }
ca4c55ad 3066 if (!fifo_index) {
5f2196bd
MYK
3067 dev_err(hsotg->dev,
3068 "%s: No suitable fifo found\n", __func__);
b585a48b
SM
3069 ret = -ENOMEM;
3070 goto error;
3071 }
ca4c55ad
MYK
3072 hsotg->fifo_map |= 1 << fifo_index;
3073 epctrl |= DXEPCTL_TXFNUM(fifo_index);
3074 hs_ep->fifo_index = fifo_index;
3075 hs_ep->fifo_size = fifo_size;
b203d0a2 3076 }
10aebc77 3077
5b7d70c6 3078 /* for non control endpoints, set PID to D0 */
837e9f00 3079 if (index && !hs_ep->isochronous)
47a1685f 3080 epctrl |= DXEPCTL_SETD0PID;
5b7d70c6
BD
3081
3082 dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
3083 __func__, epctrl);
3084
95c8bc36 3085 dwc2_writel(epctrl, hsotg->regs + epctrl_reg);
5b7d70c6 3086 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
95c8bc36 3087 __func__, dwc2_readl(hsotg->regs + epctrl_reg));
5b7d70c6
BD
3088
3089 /* enable the endpoint interrupt */
1f91b4cc 3090 dwc2_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
5b7d70c6 3091
b585a48b 3092error:
22258f49 3093 spin_unlock_irqrestore(&hsotg->lock, flags);
19c190f9 3094 return ret;
5b7d70c6
BD
3095}
3096
8b9bc460 3097/**
1f91b4cc 3098 * dwc2_hsotg_ep_disable - disable given endpoint
8b9bc460
LM
3099 * @ep: The endpoint to disable.
3100 */
1f91b4cc 3101static int dwc2_hsotg_ep_disable(struct usb_ep *ep)
5b7d70c6 3102{
1f91b4cc 3103 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 3104 struct dwc2_hsotg *hsotg = hs_ep->parent;
5b7d70c6
BD
3105 int dir_in = hs_ep->dir_in;
3106 int index = hs_ep->index;
3107 unsigned long flags;
3108 u32 epctrl_reg;
3109 u32 ctrl;
3110
1e011293 3111 dev_dbg(hsotg->dev, "%s(ep %p)\n", __func__, ep);
5b7d70c6 3112
c6f5c050 3113 if (ep == &hsotg->eps_out[0]->ep) {
5b7d70c6
BD
3114 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
3115 return -EINVAL;
3116 }
3117
94cb8fd6 3118 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
5b7d70c6 3119
5ad1d316 3120 spin_lock_irqsave(&hsotg->lock, flags);
5b7d70c6 3121
95c8bc36 3122 ctrl = dwc2_readl(hsotg->regs + epctrl_reg);
47a1685f
DN
3123 ctrl &= ~DXEPCTL_EPENA;
3124 ctrl &= ~DXEPCTL_USBACTEP;
3125 ctrl |= DXEPCTL_SNAK;
5b7d70c6
BD
3126
3127 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
95c8bc36 3128 dwc2_writel(ctrl, hsotg->regs + epctrl_reg);
5b7d70c6
BD
3129
3130 /* disable endpoint interrupts */
1f91b4cc 3131 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
5b7d70c6 3132
1141ea01
MYK
3133 /* terminate all requests with shutdown */
3134 kill_all_requests(hsotg, hs_ep, -ESHUTDOWN);
3135
1c07b20e
RB
3136 hsotg->fifo_map &= ~(1 << hs_ep->fifo_index);
3137 hs_ep->fifo_index = 0;
3138 hs_ep->fifo_size = 0;
3139
22258f49 3140 spin_unlock_irqrestore(&hsotg->lock, flags);
5b7d70c6
BD
3141 return 0;
3142}
3143
3144/**
3145 * on_list - check request is on the given endpoint
3146 * @ep: The endpoint to check.
3147 * @test: The request to test if it is on the endpoint.
8b9bc460 3148 */
1f91b4cc 3149static bool on_list(struct dwc2_hsotg_ep *ep, struct dwc2_hsotg_req *test)
5b7d70c6 3150{
1f91b4cc 3151 struct dwc2_hsotg_req *req, *treq;
5b7d70c6
BD
3152
3153 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
3154 if (req == test)
3155 return true;
3156 }
3157
3158 return false;
3159}
3160
c524dd5f
MYK
3161static int dwc2_hsotg_wait_bit_set(struct dwc2_hsotg *hs_otg, u32 reg,
3162 u32 bit, u32 timeout)
3163{
3164 u32 i;
3165
3166 for (i = 0; i < timeout; i++) {
3167 if (dwc2_readl(hs_otg->regs + reg) & bit)
3168 return 0;
3169 udelay(1);
3170 }
3171
3172 return -ETIMEDOUT;
3173}
3174
3175static void dwc2_hsotg_ep_stop_xfr(struct dwc2_hsotg *hsotg,
3176 struct dwc2_hsotg_ep *hs_ep)
3177{
3178 u32 epctrl_reg;
3179 u32 epint_reg;
3180
3181 epctrl_reg = hs_ep->dir_in ? DIEPCTL(hs_ep->index) :
3182 DOEPCTL(hs_ep->index);
3183 epint_reg = hs_ep->dir_in ? DIEPINT(hs_ep->index) :
3184 DOEPINT(hs_ep->index);
3185
3186 dev_dbg(hsotg->dev, "%s: stopping transfer on %s\n", __func__,
3187 hs_ep->name);
3188 if (hs_ep->dir_in) {
3189 __orr32(hsotg->regs + epctrl_reg, DXEPCTL_SNAK);
3190 /* Wait for Nak effect */
3191 if (dwc2_hsotg_wait_bit_set(hsotg, epint_reg,
3192 DXEPINT_INEPNAKEFF, 100))
3193 dev_warn(hsotg->dev,
3194 "%s: timeout DIEPINT.NAKEFF\n", __func__);
3195 } else {
6b58cb07
VM
3196 if (!(dwc2_readl(hsotg->regs + GINTSTS) & GINTSTS_GOUTNAKEFF))
3197 __orr32(hsotg->regs + DCTL, DCTL_SGOUTNAK);
c524dd5f
MYK
3198
3199 /* Wait for global nak to take effect */
3200 if (dwc2_hsotg_wait_bit_set(hsotg, GINTSTS,
0676c7e7 3201 GINTSTS_GOUTNAKEFF, 100))
c524dd5f 3202 dev_warn(hsotg->dev,
0676c7e7 3203 "%s: timeout GINTSTS.GOUTNAKEFF\n", __func__);
c524dd5f
MYK
3204 }
3205
3206 /* Disable ep */
3207 __orr32(hsotg->regs + epctrl_reg, DXEPCTL_EPDIS | DXEPCTL_SNAK);
3208
3209 /* Wait for ep to be disabled */
3210 if (dwc2_hsotg_wait_bit_set(hsotg, epint_reg, DXEPINT_EPDISBLD, 100))
3211 dev_warn(hsotg->dev,
3212 "%s: timeout DOEPCTL.EPDisable\n", __func__);
3213
3214 if (hs_ep->dir_in) {
3215 if (hsotg->dedicated_fifos) {
3216 dwc2_writel(GRSTCTL_TXFNUM(hs_ep->fifo_index) |
3217 GRSTCTL_TXFFLSH, hsotg->regs + GRSTCTL);
3218 /* Wait for fifo flush */
3219 if (dwc2_hsotg_wait_bit_set(hsotg, GRSTCTL,
3220 GRSTCTL_TXFFLSH, 100))
3221 dev_warn(hsotg->dev,
3222 "%s: timeout flushing fifos\n",
3223 __func__);
3224 }
3225 /* TODO: Flush shared tx fifo */
3226 } else {
3227 /* Remove global NAKs */
0676c7e7 3228 __bic32(hsotg->regs + DCTL, DCTL_SGOUTNAK);
c524dd5f
MYK
3229 }
3230}
3231
8b9bc460 3232/**
1f91b4cc 3233 * dwc2_hsotg_ep_dequeue - dequeue given endpoint
8b9bc460
LM
3234 * @ep: The endpoint to dequeue.
3235 * @req: The request to be removed from a queue.
3236 */
1f91b4cc 3237static int dwc2_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
5b7d70c6 3238{
1f91b4cc
FB
3239 struct dwc2_hsotg_req *hs_req = our_req(req);
3240 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 3241 struct dwc2_hsotg *hs = hs_ep->parent;
5b7d70c6
BD
3242 unsigned long flags;
3243
1e011293 3244 dev_dbg(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
5b7d70c6 3245
22258f49 3246 spin_lock_irqsave(&hs->lock, flags);
5b7d70c6
BD
3247
3248 if (!on_list(hs_ep, hs_req)) {
22258f49 3249 spin_unlock_irqrestore(&hs->lock, flags);
5b7d70c6
BD
3250 return -EINVAL;
3251 }
3252
c524dd5f
MYK
3253 /* Dequeue already started request */
3254 if (req == &hs_ep->req->req)
3255 dwc2_hsotg_ep_stop_xfr(hs, hs_ep);
3256
1f91b4cc 3257 dwc2_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
22258f49 3258 spin_unlock_irqrestore(&hs->lock, flags);
5b7d70c6
BD
3259
3260 return 0;
3261}
3262
8b9bc460 3263/**
1f91b4cc 3264 * dwc2_hsotg_ep_sethalt - set halt on a given endpoint
8b9bc460
LM
3265 * @ep: The endpoint to set halt.
3266 * @value: Set or unset the halt.
51da43b5
VA
3267 * @now: If true, stall the endpoint now. Otherwise return -EAGAIN if
3268 * the endpoint is busy processing requests.
3269 *
3270 * We need to stall the endpoint immediately if request comes from set_feature
3271 * protocol command handler.
8b9bc460 3272 */
51da43b5 3273static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now)
5b7d70c6 3274{
1f91b4cc 3275 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 3276 struct dwc2_hsotg *hs = hs_ep->parent;
5b7d70c6 3277 int index = hs_ep->index;
5b7d70c6
BD
3278 u32 epreg;
3279 u32 epctl;
9c39ddc6 3280 u32 xfertype;
5b7d70c6
BD
3281
3282 dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
3283
c9f721b2
RB
3284 if (index == 0) {
3285 if (value)
1f91b4cc 3286 dwc2_hsotg_stall_ep0(hs);
c9f721b2
RB
3287 else
3288 dev_warn(hs->dev,
3289 "%s: can't clear halt on ep0\n", __func__);
3290 return 0;
3291 }
3292
15186f10
VA
3293 if (hs_ep->isochronous) {
3294 dev_err(hs->dev, "%s is Isochronous Endpoint\n", ep->name);
3295 return -EINVAL;
3296 }
3297
51da43b5
VA
3298 if (!now && value && !list_empty(&hs_ep->queue)) {
3299 dev_dbg(hs->dev, "%s request is pending, cannot halt\n",
3300 ep->name);
3301 return -EAGAIN;
3302 }
3303
c6f5c050
MYK
3304 if (hs_ep->dir_in) {
3305 epreg = DIEPCTL(index);
95c8bc36 3306 epctl = dwc2_readl(hs->regs + epreg);
c6f5c050
MYK
3307
3308 if (value) {
5a350d53 3309 epctl |= DXEPCTL_STALL | DXEPCTL_SNAK;
c6f5c050
MYK
3310 if (epctl & DXEPCTL_EPENA)
3311 epctl |= DXEPCTL_EPDIS;
3312 } else {
3313 epctl &= ~DXEPCTL_STALL;
3314 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
3315 if (xfertype == DXEPCTL_EPTYPE_BULK ||
3316 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
3317 epctl |= DXEPCTL_SETD0PID;
3318 }
95c8bc36 3319 dwc2_writel(epctl, hs->regs + epreg);
9c39ddc6 3320 } else {
5b7d70c6 3321
c6f5c050 3322 epreg = DOEPCTL(index);
95c8bc36 3323 epctl = dwc2_readl(hs->regs + epreg);
5b7d70c6 3324
c6f5c050
MYK
3325 if (value)
3326 epctl |= DXEPCTL_STALL;
3327 else {
3328 epctl &= ~DXEPCTL_STALL;
3329 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
3330 if (xfertype == DXEPCTL_EPTYPE_BULK ||
3331 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
3332 epctl |= DXEPCTL_SETD0PID;
3333 }
95c8bc36 3334 dwc2_writel(epctl, hs->regs + epreg);
9c39ddc6 3335 }
5b7d70c6 3336
a18ed7b0
RB
3337 hs_ep->halted = value;
3338
5b7d70c6
BD
3339 return 0;
3340}
3341
5ad1d316 3342/**
1f91b4cc 3343 * dwc2_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
5ad1d316
LM
3344 * @ep: The endpoint to set halt.
3345 * @value: Set or unset the halt.
3346 */
1f91b4cc 3347static int dwc2_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
5ad1d316 3348{
1f91b4cc 3349 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
941fcce4 3350 struct dwc2_hsotg *hs = hs_ep->parent;
5ad1d316
LM
3351 unsigned long flags = 0;
3352 int ret = 0;
3353
3354 spin_lock_irqsave(&hs->lock, flags);
51da43b5 3355 ret = dwc2_hsotg_ep_sethalt(ep, value, false);
5ad1d316
LM
3356 spin_unlock_irqrestore(&hs->lock, flags);
3357
3358 return ret;
3359}
3360
1f91b4cc
FB
3361static struct usb_ep_ops dwc2_hsotg_ep_ops = {
3362 .enable = dwc2_hsotg_ep_enable,
3363 .disable = dwc2_hsotg_ep_disable,
3364 .alloc_request = dwc2_hsotg_ep_alloc_request,
3365 .free_request = dwc2_hsotg_ep_free_request,
3366 .queue = dwc2_hsotg_ep_queue_lock,
3367 .dequeue = dwc2_hsotg_ep_dequeue,
3368 .set_halt = dwc2_hsotg_ep_sethalt_lock,
25985edc 3369 /* note, don't believe we have any call for the fifo routines */
5b7d70c6
BD
3370};
3371
8b9bc460 3372/**
1f91b4cc 3373 * dwc2_hsotg_init - initalize the usb core
8b9bc460
LM
3374 * @hsotg: The driver state
3375 */
1f91b4cc 3376static void dwc2_hsotg_init(struct dwc2_hsotg *hsotg)
b3f489b2 3377{
fa4a8d72 3378 u32 trdtim;
ecd9a7ad 3379 u32 usbcfg;
b3f489b2
LM
3380 /* unmask subset of endpoint interrupts */
3381
95c8bc36
AS
3382 dwc2_writel(DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK |
3383 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK,
3384 hsotg->regs + DIEPMSK);
b3f489b2 3385
95c8bc36
AS
3386 dwc2_writel(DOEPMSK_SETUPMSK | DOEPMSK_AHBERRMSK |
3387 DOEPMSK_EPDISBLDMSK | DOEPMSK_XFERCOMPLMSK,
3388 hsotg->regs + DOEPMSK);
b3f489b2 3389
95c8bc36 3390 dwc2_writel(0, hsotg->regs + DAINTMSK);
b3f489b2
LM
3391
3392 /* Be in disconnected state until gadget is registered */
47a1685f 3393 __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON);
b3f489b2 3394
b3f489b2
LM
3395 /* setup fifos */
3396
3397 dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
95c8bc36
AS
3398 dwc2_readl(hsotg->regs + GRXFSIZ),
3399 dwc2_readl(hsotg->regs + GNPTXFSIZ));
b3f489b2 3400
1f91b4cc 3401 dwc2_hsotg_init_fifo(hsotg);
b3f489b2 3402
ecd9a7ad
PR
3403 /* keep other bits untouched (so e.g. forced modes are not lost) */
3404 usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
3405 usbcfg &= ~(GUSBCFG_TOUTCAL_MASK | GUSBCFG_PHYIF16 | GUSBCFG_SRPCAP |
3406 GUSBCFG_HNPCAP);
3407
b3f489b2 3408 /* set the PLL on, remove the HNP/SRP and set the PHY */
fa4a8d72 3409 trdtim = (hsotg->phyif == GUSBCFG_PHYIF8) ? 9 : 5;
ecd9a7ad
PR
3410 usbcfg |= hsotg->phyif | GUSBCFG_TOUTCAL(7) |
3411 (trdtim << GUSBCFG_USBTRDTIM_SHIFT);
3412 dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
b3f489b2 3413
f5090044
GH
3414 if (using_dma(hsotg))
3415 __orr32(hsotg->regs + GAHBCFG, GAHBCFG_DMA_EN);
b3f489b2
LM
3416}
3417
8b9bc460 3418/**
1f91b4cc 3419 * dwc2_hsotg_udc_start - prepare the udc for work
8b9bc460
LM
3420 * @gadget: The usb gadget state
3421 * @driver: The usb gadget driver
3422 *
3423 * Perform initialization to prepare udc device and driver
3424 * to work.
3425 */
1f91b4cc 3426static int dwc2_hsotg_udc_start(struct usb_gadget *gadget,
f65f0f10 3427 struct usb_gadget_driver *driver)
5b7d70c6 3428{
941fcce4 3429 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
5b9451f8 3430 unsigned long flags;
5b7d70c6
BD
3431 int ret;
3432
3433 if (!hsotg) {
a023da33 3434 pr_err("%s: called with no device\n", __func__);
5b7d70c6
BD
3435 return -ENODEV;
3436 }
3437
3438 if (!driver) {
3439 dev_err(hsotg->dev, "%s: no driver\n", __func__);
3440 return -EINVAL;
3441 }
3442
7177aed4 3443 if (driver->max_speed < USB_SPEED_FULL)
5b7d70c6 3444 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
5b7d70c6 3445
f65f0f10 3446 if (!driver->setup) {
5b7d70c6
BD
3447 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
3448 return -EINVAL;
3449 }
3450
3451 WARN_ON(hsotg->driver);
3452
3453 driver->driver.bus = NULL;
3454 hsotg->driver = driver;
7d7b2292 3455 hsotg->gadget.dev.of_node = hsotg->dev->of_node;
5b7d70c6
BD
3456 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3457
09a75e85
MS
3458 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) {
3459 ret = dwc2_lowlevel_hw_enable(hsotg);
3460 if (ret)
3461 goto err;
5b7d70c6
BD
3462 }
3463
f6c01592
GH
3464 if (!IS_ERR_OR_NULL(hsotg->uphy))
3465 otg_set_peripheral(hsotg->uphy->otg, &hsotg->gadget);
c816c47f 3466
5b9451f8 3467 spin_lock_irqsave(&hsotg->lock, flags);
d0f0ac56
JY
3468 if (dwc2_hw_is_device(hsotg)) {
3469 dwc2_hsotg_init(hsotg);
3470 dwc2_hsotg_core_init_disconnected(hsotg, false);
3471 }
3472
dc6e69e6 3473 hsotg->enabled = 0;
5b9451f8
MS
3474 spin_unlock_irqrestore(&hsotg->lock, flags);
3475
5b7d70c6 3476 dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
5b9451f8 3477
5b7d70c6
BD
3478 return 0;
3479
3480err:
3481 hsotg->driver = NULL;
5b7d70c6
BD
3482 return ret;
3483}
3484
8b9bc460 3485/**
1f91b4cc 3486 * dwc2_hsotg_udc_stop - stop the udc
8b9bc460
LM
3487 * @gadget: The usb gadget state
3488 * @driver: The usb gadget driver
3489 *
3490 * Stop udc hw block and stay tunned for future transmissions
3491 */
1f91b4cc 3492static int dwc2_hsotg_udc_stop(struct usb_gadget *gadget)
5b7d70c6 3493{
941fcce4 3494 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
2b19a52c 3495 unsigned long flags = 0;
5b7d70c6
BD
3496 int ep;
3497
3498 if (!hsotg)
3499 return -ENODEV;
3500
5b7d70c6 3501 /* all endpoints should be shutdown */
c6f5c050
MYK
3502 for (ep = 1; ep < hsotg->num_of_eps; ep++) {
3503 if (hsotg->eps_in[ep])
1f91b4cc 3504 dwc2_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
c6f5c050 3505 if (hsotg->eps_out[ep])
1f91b4cc 3506 dwc2_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
c6f5c050 3507 }
5b7d70c6 3508
2b19a52c
LM
3509 spin_lock_irqsave(&hsotg->lock, flags);
3510
32805c35 3511 hsotg->driver = NULL;
5b7d70c6 3512 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
dc6e69e6 3513 hsotg->enabled = 0;
5b7d70c6 3514
2b19a52c
LM
3515 spin_unlock_irqrestore(&hsotg->lock, flags);
3516
f6c01592
GH
3517 if (!IS_ERR_OR_NULL(hsotg->uphy))
3518 otg_set_peripheral(hsotg->uphy->otg, NULL);
c816c47f 3519
09a75e85
MS
3520 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)
3521 dwc2_lowlevel_hw_disable(hsotg);
5b7d70c6
BD
3522
3523 return 0;
3524}
5b7d70c6 3525
8b9bc460 3526/**
1f91b4cc 3527 * dwc2_hsotg_gadget_getframe - read the frame number
8b9bc460
LM
3528 * @gadget: The usb gadget state
3529 *
3530 * Read the {micro} frame number
3531 */
1f91b4cc 3532static int dwc2_hsotg_gadget_getframe(struct usb_gadget *gadget)
5b7d70c6 3533{
1f91b4cc 3534 return dwc2_hsotg_read_frameno(to_hsotg(gadget));
5b7d70c6
BD
3535}
3536
a188b689 3537/**
1f91b4cc 3538 * dwc2_hsotg_pullup - connect/disconnect the USB PHY
a188b689
LM
3539 * @gadget: The usb gadget state
3540 * @is_on: Current state of the USB PHY
3541 *
3542 * Connect/Disconnect the USB PHY pullup
3543 */
1f91b4cc 3544static int dwc2_hsotg_pullup(struct usb_gadget *gadget, int is_on)
a188b689 3545{
941fcce4 3546 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
a188b689
LM
3547 unsigned long flags = 0;
3548
77ba9119
GH
3549 dev_dbg(hsotg->dev, "%s: is_on: %d op_state: %d\n", __func__, is_on,
3550 hsotg->op_state);
3551
3552 /* Don't modify pullup state while in host mode */
3553 if (hsotg->op_state != OTG_STATE_B_PERIPHERAL) {
3554 hsotg->enabled = is_on;
3555 return 0;
3556 }
a188b689
LM
3557
3558 spin_lock_irqsave(&hsotg->lock, flags);
3559 if (is_on) {
dc6e69e6 3560 hsotg->enabled = 1;
1f91b4cc
FB
3561 dwc2_hsotg_core_init_disconnected(hsotg, false);
3562 dwc2_hsotg_core_connect(hsotg);
a188b689 3563 } else {
1f91b4cc
FB
3564 dwc2_hsotg_core_disconnect(hsotg);
3565 dwc2_hsotg_disconnect(hsotg);
dc6e69e6 3566 hsotg->enabled = 0;
a188b689
LM
3567 }
3568
3569 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3570 spin_unlock_irqrestore(&hsotg->lock, flags);
3571
3572 return 0;
3573}
3574
1f91b4cc 3575static int dwc2_hsotg_vbus_session(struct usb_gadget *gadget, int is_active)
83d98223
GH
3576{
3577 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
3578 unsigned long flags;
3579
3580 dev_dbg(hsotg->dev, "%s: is_active: %d\n", __func__, is_active);
3581 spin_lock_irqsave(&hsotg->lock, flags);
3582
61f7223b
GH
3583 /*
3584 * If controller is hibernated, it must exit from hibernation
3585 * before being initialized / de-initialized
3586 */
3587 if (hsotg->lx_state == DWC2_L2)
3588 dwc2_exit_hibernation(hsotg, false);
3589
83d98223 3590 if (is_active) {
cd0e641c 3591 hsotg->op_state = OTG_STATE_B_PERIPHERAL;
065d3931 3592
1f91b4cc 3593 dwc2_hsotg_core_init_disconnected(hsotg, false);
83d98223 3594 if (hsotg->enabled)
1f91b4cc 3595 dwc2_hsotg_core_connect(hsotg);
83d98223 3596 } else {
1f91b4cc
FB
3597 dwc2_hsotg_core_disconnect(hsotg);
3598 dwc2_hsotg_disconnect(hsotg);
83d98223
GH
3599 }
3600
3601 spin_unlock_irqrestore(&hsotg->lock, flags);
3602 return 0;
3603}
3604
596d696a 3605/**
1f91b4cc 3606 * dwc2_hsotg_vbus_draw - report bMaxPower field
596d696a
GH
3607 * @gadget: The usb gadget state
3608 * @mA: Amount of current
3609 *
3610 * Report how much power the device may consume to the phy.
3611 */
1f91b4cc 3612static int dwc2_hsotg_vbus_draw(struct usb_gadget *gadget, unsigned mA)
596d696a
GH
3613{
3614 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
3615
3616 if (IS_ERR_OR_NULL(hsotg->uphy))
3617 return -ENOTSUPP;
3618 return usb_phy_set_power(hsotg->uphy, mA);
3619}
3620
1f91b4cc
FB
3621static const struct usb_gadget_ops dwc2_hsotg_gadget_ops = {
3622 .get_frame = dwc2_hsotg_gadget_getframe,
3623 .udc_start = dwc2_hsotg_udc_start,
3624 .udc_stop = dwc2_hsotg_udc_stop,
3625 .pullup = dwc2_hsotg_pullup,
3626 .vbus_session = dwc2_hsotg_vbus_session,
3627 .vbus_draw = dwc2_hsotg_vbus_draw,
5b7d70c6
BD
3628};
3629
3630/**
1f91b4cc 3631 * dwc2_hsotg_initep - initialise a single endpoint
5b7d70c6
BD
3632 * @hsotg: The device state.
3633 * @hs_ep: The endpoint to be initialised.
3634 * @epnum: The endpoint number
3635 *
3636 * Initialise the given endpoint (as part of the probe and device state
3637 * creation) to give to the gadget driver. Setup the endpoint name, any
3638 * direction information and other state that may be required.
3639 */
1f91b4cc
FB
3640static void dwc2_hsotg_initep(struct dwc2_hsotg *hsotg,
3641 struct dwc2_hsotg_ep *hs_ep,
c6f5c050
MYK
3642 int epnum,
3643 bool dir_in)
5b7d70c6 3644{
5b7d70c6
BD
3645 char *dir;
3646
3647 if (epnum == 0)
3648 dir = "";
c6f5c050 3649 else if (dir_in)
5b7d70c6 3650 dir = "in";
c6f5c050
MYK
3651 else
3652 dir = "out";
5b7d70c6 3653
c6f5c050 3654 hs_ep->dir_in = dir_in;
5b7d70c6
BD
3655 hs_ep->index = epnum;
3656
3657 snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
3658
3659 INIT_LIST_HEAD(&hs_ep->queue);
3660 INIT_LIST_HEAD(&hs_ep->ep.ep_list);
3661
5b7d70c6
BD
3662 /* add to the list of endpoints known by the gadget driver */
3663 if (epnum)
3664 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
3665
3666 hs_ep->parent = hsotg;
3667 hs_ep->ep.name = hs_ep->name;
e117e742 3668 usb_ep_set_maxpacket_limit(&hs_ep->ep, epnum ? 1024 : EP0_MPS_LIMIT);
1f91b4cc 3669 hs_ep->ep.ops = &dwc2_hsotg_ep_ops;
5b7d70c6 3670
2954522f
RB
3671 if (epnum == 0) {
3672 hs_ep->ep.caps.type_control = true;
3673 } else {
3674 hs_ep->ep.caps.type_iso = true;
3675 hs_ep->ep.caps.type_bulk = true;
3676 hs_ep->ep.caps.type_int = true;
3677 }
3678
3679 if (dir_in)
3680 hs_ep->ep.caps.dir_in = true;
3681 else
3682 hs_ep->ep.caps.dir_out = true;
3683
8b9bc460
LM
3684 /*
3685 * if we're using dma, we need to set the next-endpoint pointer
5b7d70c6
BD
3686 * to be something valid.
3687 */
3688
3689 if (using_dma(hsotg)) {
47a1685f 3690 u32 next = DXEPCTL_NEXTEP((epnum + 1) % 15);
c6f5c050 3691 if (dir_in)
95c8bc36 3692 dwc2_writel(next, hsotg->regs + DIEPCTL(epnum));
c6f5c050 3693 else
95c8bc36 3694 dwc2_writel(next, hsotg->regs + DOEPCTL(epnum));
5b7d70c6
BD
3695 }
3696}
3697
b3f489b2 3698/**
1f91b4cc 3699 * dwc2_hsotg_hw_cfg - read HW configuration registers
b3f489b2
LM
3700 * @param: The device state
3701 *
3702 * Read the USB core HW configuration registers
3703 */
1f91b4cc 3704static int dwc2_hsotg_hw_cfg(struct dwc2_hsotg *hsotg)
5b7d70c6 3705{
c6f5c050
MYK
3706 u32 cfg;
3707 u32 ep_type;
3708 u32 i;
3709
b3f489b2 3710 /* check hardware configuration */
5b7d70c6 3711
43e90349
JY
3712 hsotg->num_of_eps = hsotg->hw_params.num_dev_ep;
3713
c6f5c050
MYK
3714 /* Add ep0 */
3715 hsotg->num_of_eps++;
10aebc77 3716
1f91b4cc 3717 hsotg->eps_in[0] = devm_kzalloc(hsotg->dev, sizeof(struct dwc2_hsotg_ep),
c6f5c050
MYK
3718 GFP_KERNEL);
3719 if (!hsotg->eps_in[0])
3720 return -ENOMEM;
1f91b4cc 3721 /* Same dwc2_hsotg_ep is used in both directions for ep0 */
c6f5c050
MYK
3722 hsotg->eps_out[0] = hsotg->eps_in[0];
3723
43e90349 3724 cfg = hsotg->hw_params.dev_ep_dirs;
251a17f5 3725 for (i = 1, cfg >>= 2; i < hsotg->num_of_eps; i++, cfg >>= 2) {
c6f5c050
MYK
3726 ep_type = cfg & 3;
3727 /* Direction in or both */
3728 if (!(ep_type & 2)) {
3729 hsotg->eps_in[i] = devm_kzalloc(hsotg->dev,
1f91b4cc 3730 sizeof(struct dwc2_hsotg_ep), GFP_KERNEL);
c6f5c050
MYK
3731 if (!hsotg->eps_in[i])
3732 return -ENOMEM;
3733 }
3734 /* Direction out or both */
3735 if (!(ep_type & 1)) {
3736 hsotg->eps_out[i] = devm_kzalloc(hsotg->dev,
1f91b4cc 3737 sizeof(struct dwc2_hsotg_ep), GFP_KERNEL);
c6f5c050
MYK
3738 if (!hsotg->eps_out[i])
3739 return -ENOMEM;
3740 }
3741 }
3742
43e90349
JY
3743 hsotg->fifo_mem = hsotg->hw_params.total_fifo_size;
3744 hsotg->dedicated_fifos = hsotg->hw_params.en_multiple_tx_fifo;
10aebc77 3745
cff9eb75
MS
3746 dev_info(hsotg->dev, "EPs: %d, %s fifos, %d entries in SPRAM\n",
3747 hsotg->num_of_eps,
3748 hsotg->dedicated_fifos ? "dedicated" : "shared",
3749 hsotg->fifo_mem);
c6f5c050 3750 return 0;
5b7d70c6
BD
3751}
3752
8b9bc460 3753/**
1f91b4cc 3754 * dwc2_hsotg_dump - dump state of the udc
8b9bc460
LM
3755 * @param: The device state
3756 */
1f91b4cc 3757static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg)
5b7d70c6 3758{
83a01804 3759#ifdef DEBUG
5b7d70c6
BD
3760 struct device *dev = hsotg->dev;
3761 void __iomem *regs = hsotg->regs;
3762 u32 val;
3763 int idx;
3764
3765 dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
95c8bc36
AS
3766 dwc2_readl(regs + DCFG), dwc2_readl(regs + DCTL),
3767 dwc2_readl(regs + DIEPMSK));
5b7d70c6 3768
f889f23d 3769 dev_info(dev, "GAHBCFG=0x%08x, GHWCFG1=0x%08x\n",
95c8bc36 3770 dwc2_readl(regs + GAHBCFG), dwc2_readl(regs + GHWCFG1));
5b7d70c6
BD
3771
3772 dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
95c8bc36 3773 dwc2_readl(regs + GRXFSIZ), dwc2_readl(regs + GNPTXFSIZ));
5b7d70c6
BD
3774
3775 /* show periodic fifo settings */
3776
364f8e93 3777 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
95c8bc36 3778 val = dwc2_readl(regs + DPTXFSIZN(idx));
5b7d70c6 3779 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
47a1685f
DN
3780 val >> FIFOSIZE_DEPTH_SHIFT,
3781 val & FIFOSIZE_STARTADDR_MASK);
5b7d70c6
BD
3782 }
3783
364f8e93 3784 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
5b7d70c6
BD
3785 dev_info(dev,
3786 "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
95c8bc36
AS
3787 dwc2_readl(regs + DIEPCTL(idx)),
3788 dwc2_readl(regs + DIEPTSIZ(idx)),
3789 dwc2_readl(regs + DIEPDMA(idx)));
5b7d70c6 3790
95c8bc36 3791 val = dwc2_readl(regs + DOEPCTL(idx));
5b7d70c6
BD
3792 dev_info(dev,
3793 "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
95c8bc36
AS
3794 idx, dwc2_readl(regs + DOEPCTL(idx)),
3795 dwc2_readl(regs + DOEPTSIZ(idx)),
3796 dwc2_readl(regs + DOEPDMA(idx)));
5b7d70c6
BD
3797
3798 }
3799
3800 dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
95c8bc36 3801 dwc2_readl(regs + DVBUSDIS), dwc2_readl(regs + DVBUSPULSE));
83a01804 3802#endif
5b7d70c6
BD
3803}
3804
edd74be8 3805#ifdef CONFIG_OF
1f91b4cc 3806static void dwc2_hsotg_of_probe(struct dwc2_hsotg *hsotg)
edd74be8
GH
3807{
3808 struct device_node *np = hsotg->dev->of_node;
3fa95385
JY
3809 u32 len = 0;
3810 u32 i = 0;
edd74be8
GH
3811
3812 /* Enable dma if requested in device tree */
3813 hsotg->g_using_dma = of_property_read_bool(np, "g-use-dma");
0a176279 3814
3fa95385
JY
3815 /*
3816 * Register TX periodic fifo size per endpoint.
3817 * EP0 is excluded since it has no fifo configuration.
3818 */
3819 if (!of_find_property(np, "g-tx-fifo-size", &len))
3820 goto rx_fifo;
3821
3822 len /= sizeof(u32);
3823
3824 /* Read tx fifo sizes other than ep0 */
3825 if (of_property_read_u32_array(np, "g-tx-fifo-size",
3826 &hsotg->g_tx_fifo_sz[1], len))
3827 goto rx_fifo;
3828
3829 /* Add ep0 */
3830 len++;
3831
3832 /* Make remaining TX fifos unavailable */
3833 if (len < MAX_EPS_CHANNELS) {
3834 for (i = len; i < MAX_EPS_CHANNELS; i++)
3835 hsotg->g_tx_fifo_sz[i] = 0;
3836 }
3837
3838rx_fifo:
0a176279
GH
3839 /* Register RX fifo size */
3840 of_property_read_u32(np, "g-rx-fifo-size", &hsotg->g_rx_fifo_sz);
3841
3842 /* Register NPTX fifo size */
3843 of_property_read_u32(np, "g-np-tx-fifo-size",
3844 &hsotg->g_np_g_tx_fifo_sz);
edd74be8
GH
3845}
3846#else
1f91b4cc 3847static inline void dwc2_hsotg_of_probe(struct dwc2_hsotg *hsotg) { }
edd74be8
GH
3848#endif
3849
8b9bc460 3850/**
117777b2
DN
3851 * dwc2_gadget_init - init function for gadget
3852 * @dwc2: The data structure for the DWC2 driver.
3853 * @irq: The IRQ number for the controller.
8b9bc460 3854 */
117777b2 3855int dwc2_gadget_init(struct dwc2_hsotg *hsotg, int irq)
5b7d70c6 3856{
117777b2 3857 struct device *dev = hsotg->dev;
5b7d70c6
BD
3858 int epnum;
3859 int ret;
3fa95385
JY
3860 int i;
3861 u32 p_tx_fifo[] = DWC2_G_P_LEGACY_TX_FIFO_SIZE;
5b7d70c6 3862
0a176279
GH
3863 /* Initialize to legacy fifo configuration values */
3864 hsotg->g_rx_fifo_sz = 2048;
3865 hsotg->g_np_g_tx_fifo_sz = 1024;
3fa95385 3866 memcpy(&hsotg->g_tx_fifo_sz[1], p_tx_fifo, sizeof(p_tx_fifo));
0a176279 3867 /* Device tree specific probe */
1f91b4cc 3868 dwc2_hsotg_of_probe(hsotg);
43e90349
JY
3869
3870 /* Check against largest possible value. */
3871 if (hsotg->g_np_g_tx_fifo_sz >
3872 hsotg->hw_params.dev_nperio_tx_fifo_size) {
3873 dev_warn(dev, "Specified GNPTXFDEP=%d > %d\n",
3874 hsotg->g_np_g_tx_fifo_sz,
3875 hsotg->hw_params.dev_nperio_tx_fifo_size);
3876 hsotg->g_np_g_tx_fifo_sz =
3877 hsotg->hw_params.dev_nperio_tx_fifo_size;
3878 }
3879
0a176279
GH
3880 /* Dump fifo information */
3881 dev_dbg(dev, "NonPeriodic TXFIFO size: %d\n",
3882 hsotg->g_np_g_tx_fifo_sz);
3883 dev_dbg(dev, "RXFIFO size: %d\n", hsotg->g_rx_fifo_sz);
3fa95385
JY
3884 for (i = 0; i < MAX_EPS_CHANNELS; i++)
3885 dev_dbg(dev, "Periodic TXFIFO%2d size: %d\n", i,
3886 hsotg->g_tx_fifo_sz[i]);
5b7d70c6 3887
d327ab5b 3888 hsotg->gadget.max_speed = USB_SPEED_HIGH;
1f91b4cc 3889 hsotg->gadget.ops = &dwc2_hsotg_gadget_ops;
5b7d70c6 3890 hsotg->gadget.name = dev_name(dev);
097ee662
GH
3891 if (hsotg->dr_mode == USB_DR_MODE_OTG)
3892 hsotg->gadget.is_otg = 1;
ec4cc657
MYK
3893 else if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)
3894 hsotg->op_state = OTG_STATE_B_PERIPHERAL;
5b7d70c6 3895
1f91b4cc 3896 ret = dwc2_hsotg_hw_cfg(hsotg);
c6f5c050
MYK
3897 if (ret) {
3898 dev_err(hsotg->dev, "Hardware configuration failed: %d\n", ret);
09a75e85 3899 return ret;
c6f5c050
MYK
3900 }
3901
3f95001d
MYK
3902 hsotg->ctrl_buff = devm_kzalloc(hsotg->dev,
3903 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
8bae0f8c 3904 if (!hsotg->ctrl_buff)
09a75e85 3905 return -ENOMEM;
3f95001d
MYK
3906
3907 hsotg->ep0_buff = devm_kzalloc(hsotg->dev,
3908 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
8bae0f8c 3909 if (!hsotg->ep0_buff)
09a75e85 3910 return -ENOMEM;
3f95001d 3911
1f91b4cc 3912 ret = devm_request_irq(hsotg->dev, irq, dwc2_hsotg_irq, IRQF_SHARED,
db8178c3 3913 dev_name(hsotg->dev), hsotg);
eb3c56c5 3914 if (ret < 0) {
db8178c3 3915 dev_err(dev, "cannot claim IRQ for gadget\n");
09a75e85 3916 return ret;
eb3c56c5
MS
3917 }
3918
b3f489b2
LM
3919 /* hsotg->num_of_eps holds number of EPs other than ep0 */
3920
3921 if (hsotg->num_of_eps == 0) {
3922 dev_err(dev, "wrong number of EPs (zero)\n");
09a75e85 3923 return -EINVAL;
b3f489b2
LM
3924 }
3925
b3f489b2
LM
3926 /* setup endpoint information */
3927
3928 INIT_LIST_HEAD(&hsotg->gadget.ep_list);
c6f5c050 3929 hsotg->gadget.ep0 = &hsotg->eps_out[0]->ep;
b3f489b2
LM
3930
3931 /* allocate EP0 request */
3932
1f91b4cc 3933 hsotg->ctrl_req = dwc2_hsotg_ep_alloc_request(&hsotg->eps_out[0]->ep,
b3f489b2
LM
3934 GFP_KERNEL);
3935 if (!hsotg->ctrl_req) {
3936 dev_err(dev, "failed to allocate ctrl req\n");
09a75e85 3937 return -ENOMEM;
b3f489b2 3938 }
5b7d70c6
BD
3939
3940 /* initialise the endpoints now the core has been initialised */
c6f5c050
MYK
3941 for (epnum = 0; epnum < hsotg->num_of_eps; epnum++) {
3942 if (hsotg->eps_in[epnum])
1f91b4cc 3943 dwc2_hsotg_initep(hsotg, hsotg->eps_in[epnum],
c6f5c050
MYK
3944 epnum, 1);
3945 if (hsotg->eps_out[epnum])
1f91b4cc 3946 dwc2_hsotg_initep(hsotg, hsotg->eps_out[epnum],
c6f5c050
MYK
3947 epnum, 0);
3948 }
5b7d70c6 3949
117777b2 3950 ret = usb_add_gadget_udc(dev, &hsotg->gadget);
0f91349b 3951 if (ret)
09a75e85 3952 return ret;
0f91349b 3953
1f91b4cc 3954 dwc2_hsotg_dump(hsotg);
5b7d70c6 3955
5b7d70c6 3956 return 0;
5b7d70c6
BD
3957}
3958
8b9bc460 3959/**
1f91b4cc 3960 * dwc2_hsotg_remove - remove function for hsotg driver
8b9bc460
LM
3961 * @pdev: The platform information for the driver
3962 */
1f91b4cc 3963int dwc2_hsotg_remove(struct dwc2_hsotg *hsotg)
5b7d70c6 3964{
0f91349b 3965 usb_del_gadget_udc(&hsotg->gadget);
31ee04de 3966
5b7d70c6
BD
3967 return 0;
3968}
3969
1f91b4cc 3970int dwc2_hsotg_suspend(struct dwc2_hsotg *hsotg)
b83e333a 3971{
b83e333a 3972 unsigned long flags;
b83e333a 3973
9e779778 3974 if (hsotg->lx_state != DWC2_L0)
09a75e85 3975 return 0;
9e779778 3976
dc6e69e6
MS
3977 if (hsotg->driver) {
3978 int ep;
3979
b83e333a
MS
3980 dev_info(hsotg->dev, "suspending usb gadget %s\n",
3981 hsotg->driver->driver.name);
3982
dc6e69e6
MS
3983 spin_lock_irqsave(&hsotg->lock, flags);
3984 if (hsotg->enabled)
1f91b4cc
FB
3985 dwc2_hsotg_core_disconnect(hsotg);
3986 dwc2_hsotg_disconnect(hsotg);
dc6e69e6
MS
3987 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
3988 spin_unlock_irqrestore(&hsotg->lock, flags);
b83e333a 3989
c6f5c050
MYK
3990 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
3991 if (hsotg->eps_in[ep])
1f91b4cc 3992 dwc2_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
c6f5c050 3993 if (hsotg->eps_out[ep])
1f91b4cc 3994 dwc2_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
c6f5c050 3995 }
b83e333a
MS
3996 }
3997
09a75e85 3998 return 0;
b83e333a
MS
3999}
4000
1f91b4cc 4001int dwc2_hsotg_resume(struct dwc2_hsotg *hsotg)
b83e333a 4002{
b83e333a 4003 unsigned long flags;
b83e333a 4004
9e779778 4005 if (hsotg->lx_state == DWC2_L2)
09a75e85 4006 return 0;
9e779778 4007
b83e333a
MS
4008 if (hsotg->driver) {
4009 dev_info(hsotg->dev, "resuming usb gadget %s\n",
4010 hsotg->driver->driver.name);
d00b4142 4011
dc6e69e6 4012 spin_lock_irqsave(&hsotg->lock, flags);
1f91b4cc 4013 dwc2_hsotg_core_init_disconnected(hsotg, false);
dc6e69e6 4014 if (hsotg->enabled)
1f91b4cc 4015 dwc2_hsotg_core_connect(hsotg);
dc6e69e6
MS
4016 spin_unlock_irqrestore(&hsotg->lock, flags);
4017 }
b83e333a 4018
09a75e85 4019 return 0;
b83e333a 4020}
58e52ff6
JY
4021
4022/**
4023 * dwc2_backup_device_registers() - Backup controller device registers.
4024 * When suspending usb bus, registers needs to be backuped
4025 * if controller power is disabled once suspended.
4026 *
4027 * @hsotg: Programming view of the DWC_otg controller
4028 */
4029int dwc2_backup_device_registers(struct dwc2_hsotg *hsotg)
4030{
4031 struct dwc2_dregs_backup *dr;
4032 int i;
4033
4034 dev_dbg(hsotg->dev, "%s\n", __func__);
4035
4036 /* Backup dev regs */
4037 dr = &hsotg->dr_backup;
4038
4039 dr->dcfg = dwc2_readl(hsotg->regs + DCFG);
4040 dr->dctl = dwc2_readl(hsotg->regs + DCTL);
4041 dr->daintmsk = dwc2_readl(hsotg->regs + DAINTMSK);
4042 dr->diepmsk = dwc2_readl(hsotg->regs + DIEPMSK);
4043 dr->doepmsk = dwc2_readl(hsotg->regs + DOEPMSK);
4044
4045 for (i = 0; i < hsotg->num_of_eps; i++) {
4046 /* Backup IN EPs */
4047 dr->diepctl[i] = dwc2_readl(hsotg->regs + DIEPCTL(i));
4048
4049 /* Ensure DATA PID is correctly configured */
4050 if (dr->diepctl[i] & DXEPCTL_DPID)
4051 dr->diepctl[i] |= DXEPCTL_SETD1PID;
4052 else
4053 dr->diepctl[i] |= DXEPCTL_SETD0PID;
4054
4055 dr->dieptsiz[i] = dwc2_readl(hsotg->regs + DIEPTSIZ(i));
4056 dr->diepdma[i] = dwc2_readl(hsotg->regs + DIEPDMA(i));
4057
4058 /* Backup OUT EPs */
4059 dr->doepctl[i] = dwc2_readl(hsotg->regs + DOEPCTL(i));
4060
4061 /* Ensure DATA PID is correctly configured */
4062 if (dr->doepctl[i] & DXEPCTL_DPID)
4063 dr->doepctl[i] |= DXEPCTL_SETD1PID;
4064 else
4065 dr->doepctl[i] |= DXEPCTL_SETD0PID;
4066
4067 dr->doeptsiz[i] = dwc2_readl(hsotg->regs + DOEPTSIZ(i));
4068 dr->doepdma[i] = dwc2_readl(hsotg->regs + DOEPDMA(i));
4069 }
4070 dr->valid = true;
4071 return 0;
4072}
4073
4074/**
4075 * dwc2_restore_device_registers() - Restore controller device registers.
4076 * When resuming usb bus, device registers needs to be restored
4077 * if controller power were disabled.
4078 *
4079 * @hsotg: Programming view of the DWC_otg controller
4080 */
4081int dwc2_restore_device_registers(struct dwc2_hsotg *hsotg)
4082{
4083 struct dwc2_dregs_backup *dr;
4084 u32 dctl;
4085 int i;
4086
4087 dev_dbg(hsotg->dev, "%s\n", __func__);
4088
4089 /* Restore dev regs */
4090 dr = &hsotg->dr_backup;
4091 if (!dr->valid) {
4092 dev_err(hsotg->dev, "%s: no device registers to restore\n",
4093 __func__);
4094 return -EINVAL;
4095 }
4096 dr->valid = false;
4097
4098 dwc2_writel(dr->dcfg, hsotg->regs + DCFG);
4099 dwc2_writel(dr->dctl, hsotg->regs + DCTL);
4100 dwc2_writel(dr->daintmsk, hsotg->regs + DAINTMSK);
4101 dwc2_writel(dr->diepmsk, hsotg->regs + DIEPMSK);
4102 dwc2_writel(dr->doepmsk, hsotg->regs + DOEPMSK);
4103
4104 for (i = 0; i < hsotg->num_of_eps; i++) {
4105 /* Restore IN EPs */
4106 dwc2_writel(dr->diepctl[i], hsotg->regs + DIEPCTL(i));
4107 dwc2_writel(dr->dieptsiz[i], hsotg->regs + DIEPTSIZ(i));
4108 dwc2_writel(dr->diepdma[i], hsotg->regs + DIEPDMA(i));
4109
4110 /* Restore OUT EPs */
4111 dwc2_writel(dr->doepctl[i], hsotg->regs + DOEPCTL(i));
4112 dwc2_writel(dr->doeptsiz[i], hsotg->regs + DOEPTSIZ(i));
4113 dwc2_writel(dr->doepdma[i], hsotg->regs + DOEPDMA(i));
4114 }
4115
4116 /* Set the Power-On Programming done bit */
4117 dctl = dwc2_readl(hsotg->regs + DCTL);
4118 dctl |= DCTL_PWRONPRGDONE;
4119 dwc2_writel(dctl, hsotg->regs + DCTL);
4120
4121 return 0;
4122}