blob: a0f82cca2d9a8e70f0760acbc3b19ced08c7d7dc [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04002/*
Anton Tikhomirovdfbc6fa2011-04-21 17:06:43 +09003 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
5 *
Ben Dooks5b7d70c2009-06-02 14:58:06 +01006 * Copyright 2008 Openmoko, Inc.
7 * Copyright 2008 Simtec Electronics
8 * Ben Dooks <ben@simtec.co.uk>
9 * http://armlinux.simtec.co.uk/
10 *
11 * S3C USB2.0 High-speed / OtG driver
Lukasz Majewski8b9bc462012-05-04 14:17:11 +020012 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +010013
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/spinlock.h>
17#include <linux/interrupt.h>
18#include <linux/platform_device.h>
19#include <linux/dma-mapping.h>
Marek Szyprowski7ad80962014-11-21 15:14:48 +010020#include <linux/mutex.h>
Ben Dooks5b7d70c2009-06-02 14:58:06 +010021#include <linux/seq_file.h>
22#include <linux/delay.h>
23#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Tomasz Figac50f056c2013-06-25 17:38:23 +020025#include <linux/of_platform.h>
Ben Dooks5b7d70c2009-06-02 14:58:06 +010026
27#include <linux/usb/ch9.h>
28#include <linux/usb/gadget.h>
Praveen Panerib2e587d2012-11-14 15:57:16 +053029#include <linux/usb/phy.h>
Ben Dooks5b7d70c2009-06-02 14:58:06 +010030
Dinh Nguyenf7c0b142014-04-14 14:13:35 -070031#include "core.h"
Dinh Nguyen941fcce2014-11-11 11:13:33 -060032#include "hw.h"
Ben Dooks5b7d70c2009-06-02 14:58:06 +010033
34/* conversion functions */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050035static inline struct dwc2_hsotg_req *our_req(struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010036{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050037 return container_of(req, struct dwc2_hsotg_req, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010038}
39
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050040static inline struct dwc2_hsotg_ep *our_ep(struct usb_ep *ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010041{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050042 return container_of(ep, struct dwc2_hsotg_ep, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010043}
44
Dinh Nguyen941fcce2014-11-11 11:13:33 -060045static inline struct dwc2_hsotg *to_hsotg(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010046{
Dinh Nguyen941fcce2014-11-11 11:13:33 -060047 return container_of(gadget, struct dwc2_hsotg, gadget);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010048}
49
Razmik Karapetyanabd064a2018-01-19 14:42:08 +040050static inline void dwc2_set_bit(void __iomem *ptr, u32 val)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010051{
Antti Seppälä95c8bc32015-08-20 21:41:07 +030052 dwc2_writel(dwc2_readl(ptr) | val, ptr);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010053}
54
Razmik Karapetyanabd064a2018-01-19 14:42:08 +040055static inline void dwc2_clear_bit(void __iomem *ptr, u32 val)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010056{
Antti Seppälä95c8bc32015-08-20 21:41:07 +030057 dwc2_writel(dwc2_readl(ptr) & ~val, ptr);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010058}
59
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050060static inline struct dwc2_hsotg_ep *index_to_ep(struct dwc2_hsotg *hsotg,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +010061 u32 ep_index, u32 dir_in)
62{
63 if (dir_in)
64 return hsotg->eps_in[ep_index];
65 else
66 return hsotg->eps_out[ep_index];
67}
68
Mickael Maison997f4f82014-12-23 17:39:45 +010069/* forward declaration of functions */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050070static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010071
72/**
73 * using_dma - return the DMA status of the driver.
74 * @hsotg: The driver state.
75 *
76 * Return true if we're using DMA.
77 *
78 * Currently, we have the DMA support code worked into everywhere
79 * that needs it, but the AMBA DMA implementation in the hardware can
80 * only DMA from 32bit aligned addresses. This means that gadgets such
81 * as the CDC Ethernet cannot work as they often pass packets which are
82 * not 32bit aligned.
83 *
84 * Unfortunately the choice to use DMA or not is global to the controller
85 * and seems to be only settable when the controller is being put through
86 * a core reset. This means we either need to fix the gadgets to take
87 * account of DMA alignment, or add bounce buffers (yuerk).
88 *
Gregory Herreroedd74be2015-01-09 13:38:48 +010089 * g_using_dma is set depending on dts flag.
Ben Dooks5b7d70c2009-06-02 14:58:06 +010090 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -060091static inline bool using_dma(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010092{
John Youn05ee7992016-11-03 17:56:05 -070093 return hsotg->params.g_dma;
Ben Dooks5b7d70c2009-06-02 14:58:06 +010094}
95
Vahram Aharonyandec4b552016-11-09 19:27:48 -080096/*
97 * using_desc_dma - return the descriptor DMA status of the driver.
98 * @hsotg: The driver state.
99 *
100 * Return true if we're using descriptor DMA.
101 */
102static inline bool using_desc_dma(struct dwc2_hsotg *hsotg)
103{
104 return hsotg->params.g_dma_desc;
105}
106
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100107/**
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700108 * dwc2_gadget_incr_frame_num - Increments the targeted frame number.
109 * @hs_ep: The endpoint
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700110 *
111 * This function will also check if the frame number overruns DSTS_SOFFN_LIMIT.
112 * If an overrun occurs it will wrap the value and set the frame_overrun flag.
113 */
114static inline void dwc2_gadget_incr_frame_num(struct dwc2_hsotg_ep *hs_ep)
115{
116 hs_ep->target_frame += hs_ep->interval;
117 if (hs_ep->target_frame > DSTS_SOFFN_LIMIT) {
Gustavo A. R. Silvac1d5df62018-01-23 09:45:31 -0600118 hs_ep->frame_overrun = true;
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700119 hs_ep->target_frame &= DSTS_SOFFN_LIMIT;
120 } else {
Gustavo A. R. Silvac1d5df62018-01-23 09:45:31 -0600121 hs_ep->frame_overrun = false;
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700122 }
123}
124
125/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500126 * dwc2_hsotg_en_gsint - enable one or more of the general interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100127 * @hsotg: The device state
128 * @ints: A bitmask of the interrupts to enable
129 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500130static void dwc2_hsotg_en_gsint(struct dwc2_hsotg *hsotg, u32 ints)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100131{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300132 u32 gsintmsk = dwc2_readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100133 u32 new_gsintmsk;
134
135 new_gsintmsk = gsintmsk | ints;
136
137 if (new_gsintmsk != gsintmsk) {
138 dev_dbg(hsotg->dev, "gsintmsk now 0x%08x\n", new_gsintmsk);
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300139 dwc2_writel(new_gsintmsk, hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100140 }
141}
142
143/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500144 * dwc2_hsotg_disable_gsint - disable one or more of the general interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100145 * @hsotg: The device state
146 * @ints: A bitmask of the interrupts to enable
147 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500148static void dwc2_hsotg_disable_gsint(struct dwc2_hsotg *hsotg, u32 ints)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100149{
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300150 u32 gsintmsk = dwc2_readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100151 u32 new_gsintmsk;
152
153 new_gsintmsk = gsintmsk & ~ints;
154
155 if (new_gsintmsk != gsintmsk)
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300156 dwc2_writel(new_gsintmsk, hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100157}
158
159/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500160 * dwc2_hsotg_ctrl_epint - enable/disable an endpoint irq
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100161 * @hsotg: The device state
162 * @ep: The endpoint index
163 * @dir_in: True if direction is in.
164 * @en: The enable value, true to enable
165 *
166 * Set or clear the mask for an individual endpoint's interrupt
167 * request.
168 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500169static void dwc2_hsotg_ctrl_epint(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -0800170 unsigned int ep, unsigned int dir_in,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100171 unsigned int en)
172{
173 unsigned long flags;
174 u32 bit = 1 << ep;
175 u32 daint;
176
177 if (!dir_in)
178 bit <<= 16;
179
180 local_irq_save(flags);
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300181 daint = dwc2_readl(hsotg->regs + DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100182 if (en)
183 daint |= bit;
184 else
185 daint &= ~bit;
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300186 dwc2_writel(daint, hsotg->regs + DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100187 local_irq_restore(flags);
188}
189
190/**
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800191 * dwc2_hsotg_tx_fifo_count - return count of TX FIFOs in device mode
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400192 *
193 * @hsotg: Programming view of the DWC_otg controller
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800194 */
195int dwc2_hsotg_tx_fifo_count(struct dwc2_hsotg *hsotg)
196{
197 if (hsotg->hw_params.en_multiple_tx_fifo)
198 /* In dedicated FIFO mode we need count of IN EPs */
Minas Harutyunyan92730832017-11-30 12:16:37 +0400199 return hsotg->hw_params.num_dev_in_eps;
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800200 else
201 /* In shared FIFO mode we need count of Periodic IN EPs */
202 return hsotg->hw_params.num_dev_perio_in_ep;
203}
204
205/**
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800206 * dwc2_hsotg_tx_fifo_total_depth - return total FIFO depth available for
207 * device mode TX FIFOs
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400208 *
209 * @hsotg: Programming view of the DWC_otg controller
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800210 */
211int dwc2_hsotg_tx_fifo_total_depth(struct dwc2_hsotg *hsotg)
212{
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800213 int addr;
214 int tx_addr_max;
215 u32 np_tx_fifo_size;
216
217 np_tx_fifo_size = min_t(u32, hsotg->hw_params.dev_nperio_tx_fifo_size,
218 hsotg->params.g_np_tx_fifo_size);
219
220 /* Get Endpoint Info Control block size in DWORDs. */
Minas Harutyunyan92730832017-11-30 12:16:37 +0400221 tx_addr_max = hsotg->hw_params.total_fifo_size;
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800222
223 addr = hsotg->params.g_rx_fifo_size + np_tx_fifo_size;
224 if (tx_addr_max <= addr)
225 return 0;
226
227 return tx_addr_max - addr;
228}
229
230/**
231 * dwc2_hsotg_tx_fifo_average_depth - returns average depth of device mode
232 * TX FIFOs
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400233 *
234 * @hsotg: Programming view of the DWC_otg controller
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800235 */
236int dwc2_hsotg_tx_fifo_average_depth(struct dwc2_hsotg *hsotg)
237{
238 int tx_fifo_count;
239 int tx_fifo_depth;
240
241 tx_fifo_depth = dwc2_hsotg_tx_fifo_total_depth(hsotg);
242
243 tx_fifo_count = dwc2_hsotg_tx_fifo_count(hsotg);
244
245 if (!tx_fifo_count)
246 return tx_fifo_depth;
247 else
248 return tx_fifo_depth / tx_fifo_count;
249}
250
251/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500252 * dwc2_hsotg_init_fifo - initialise non-periodic FIFOs
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100253 * @hsotg: The device instance.
254 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500255static void dwc2_hsotg_init_fifo(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100256{
John Youn2317eac2016-10-17 17:36:23 -0700257 unsigned int ep;
Ben Dooks0f002d22010-05-25 05:36:50 +0100258 unsigned int addr;
Ben Dooks1703a6d2010-05-25 05:36:52 +0100259 int timeout;
Sevak Arakelyan79d6b8c2018-01-19 14:39:31 +0400260
Ben Dooks0f002d22010-05-25 05:36:50 +0100261 u32 val;
John Youn05ee7992016-11-03 17:56:05 -0700262 u32 *txfsz = hsotg->params.g_tx_fifo_size;
Ben Dooks0f002d22010-05-25 05:36:50 +0100263
Gregory Herrero7fcbc952015-01-09 13:39:06 +0100264 /* Reset fifo map if not correctly cleared during previous session */
265 WARN_ON(hsotg->fifo_map);
266 hsotg->fifo_map = 0;
267
Gregory Herrero0a176272015-01-09 13:38:52 +0100268 /* set RX/NPTX FIFO sizes */
John Youn05ee7992016-11-03 17:56:05 -0700269 dwc2_writel(hsotg->params.g_rx_fifo_size, hsotg->regs + GRXFSIZ);
270 dwc2_writel((hsotg->params.g_rx_fifo_size << FIFOSIZE_STARTADDR_SHIFT) |
271 (hsotg->params.g_np_tx_fifo_size << FIFOSIZE_DEPTH_SHIFT),
272 hsotg->regs + GNPTXFSIZ);
Ben Dooks0f002d22010-05-25 05:36:50 +0100273
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200274 /*
275 * arange all the rest of the TX FIFOs, as some versions of this
Ben Dooks0f002d22010-05-25 05:36:50 +0100276 * block have overlapping default addresses. This also ensures
277 * that if the settings have been changed, then they are set to
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200278 * known values.
279 */
Ben Dooks0f002d22010-05-25 05:36:50 +0100280
281 /* start at the end of the GNPTXFSIZ, rounded up */
John Youn05ee7992016-11-03 17:56:05 -0700282 addr = hsotg->params.g_rx_fifo_size + hsotg->params.g_np_tx_fifo_size;
Ben Dooks0f002d22010-05-25 05:36:50 +0100283
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200284 /*
Gregory Herrero0a176272015-01-09 13:38:52 +0100285 * Configure fifos sizes from provided configuration and assign
Robert Baldygab203d0a2014-09-09 10:44:56 +0200286 * them to endpoints dynamically according to maxpacket size value of
287 * given endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200288 */
John Youn2317eac2016-10-17 17:36:23 -0700289 for (ep = 1; ep < MAX_EPS_CHANNELS; ep++) {
John Youn05ee7992016-11-03 17:56:05 -0700290 if (!txfsz[ep])
John Youn3fa95382016-10-17 17:36:25 -0700291 continue;
292 val = addr;
John Youn05ee7992016-11-03 17:56:05 -0700293 val |= txfsz[ep] << FIFOSIZE_DEPTH_SHIFT;
294 WARN_ONCE(addr + txfsz[ep] > hsotg->fifo_mem,
John Youn3fa95382016-10-17 17:36:25 -0700295 "insufficient fifo memory");
John Youn05ee7992016-11-03 17:56:05 -0700296 addr += txfsz[ep];
Ben Dooks0f002d22010-05-25 05:36:50 +0100297
John Youn2317eac2016-10-17 17:36:23 -0700298 dwc2_writel(val, hsotg->regs + DPTXFSIZN(ep));
John Youn05ee7992016-11-03 17:56:05 -0700299 val = dwc2_readl(hsotg->regs + DPTXFSIZN(ep));
Ben Dooks0f002d22010-05-25 05:36:50 +0100300 }
Ben Dooks1703a6d2010-05-25 05:36:52 +0100301
Sevak Arakelyanf87c8422017-01-18 18:34:19 -0800302 dwc2_writel(hsotg->hw_params.total_fifo_size |
303 addr << GDFIFOCFG_EPINFOBASE_SHIFT,
304 hsotg->regs + GDFIFOCFG);
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200305 /*
306 * according to p428 of the design guide, we need to ensure that
307 * all fifos are flushed before continuing
308 */
Ben Dooks1703a6d2010-05-25 05:36:52 +0100309
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300310 dwc2_writel(GRSTCTL_TXFNUM(0x10) | GRSTCTL_TXFFLSH |
Dinh Nguyen47a16852014-04-14 14:13:34 -0700311 GRSTCTL_RXFFLSH, hsotg->regs + GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100312
313 /* wait until the fifos are both flushed */
314 timeout = 100;
315 while (1) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300316 val = dwc2_readl(hsotg->regs + GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100317
Dinh Nguyen47a16852014-04-14 14:13:34 -0700318 if ((val & (GRSTCTL_TXFFLSH | GRSTCTL_RXFFLSH)) == 0)
Ben Dooks1703a6d2010-05-25 05:36:52 +0100319 break;
320
321 if (--timeout == 0) {
322 dev_err(hsotg->dev,
323 "%s: timeout flushing fifos (GRSTCTL=%08x)\n",
324 __func__, val);
Gregory Herrero48b20bc2015-01-09 13:39:01 +0100325 break;
Ben Dooks1703a6d2010-05-25 05:36:52 +0100326 }
327
328 udelay(1);
329 }
330
331 dev_dbg(hsotg->dev, "FIFOs reset, timeout at %d\n", timeout);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100332}
333
334/**
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400335 * dwc2_hsotg_ep_alloc_request - allocate USB rerequest structure
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100336 * @ep: USB endpoint to allocate request for.
337 * @flags: Allocation flags
338 *
339 * Allocate a new USB request structure appropriate for the specified endpoint
340 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500341static struct usb_request *dwc2_hsotg_ep_alloc_request(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -0800342 gfp_t flags)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100343{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500344 struct dwc2_hsotg_req *req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100345
John Younec33efe2017-01-17 20:32:41 -0800346 req = kzalloc(sizeof(*req), flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100347 if (!req)
348 return NULL;
349
350 INIT_LIST_HEAD(&req->queue);
351
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100352 return &req->req;
353}
354
355/**
356 * is_ep_periodic - return true if the endpoint is in periodic mode.
357 * @hs_ep: The endpoint to query.
358 *
359 * Returns true if the endpoint is in periodic mode, meaning it is being
360 * used for an Interrupt or ISO transfer.
361 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500362static inline int is_ep_periodic(struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100363{
364 return hs_ep->periodic;
365}
366
367/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500368 * dwc2_hsotg_unmap_dma - unmap the DMA memory being used for the request
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100369 * @hsotg: The device state.
370 * @hs_ep: The endpoint for the request
371 * @hs_req: The request being processed.
372 *
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500373 * This is the reverse of dwc2_hsotg_map_dma(), called for the completion
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100374 * of a request to ensure the buffer is ready for access by the caller.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200375 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500376static void dwc2_hsotg_unmap_dma(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -0800377 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500378 struct dwc2_hsotg_req *hs_req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100379{
380 struct usb_request *req = &hs_req->req;
John Youn9da51972017-01-17 20:30:27 -0800381
Jingoo Han17d966a2013-05-11 21:14:00 +0900382 usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100383}
384
Vahram Aharonyan0f6b80c2016-11-09 19:27:56 -0800385/*
386 * dwc2_gadget_alloc_ctrl_desc_chains - allocate DMA descriptor chains
387 * for Control endpoint
388 * @hsotg: The device state.
389 *
390 * This function will allocate 4 descriptor chains for EP 0: 2 for
391 * Setup stage, per one for IN and OUT data/status transactions.
392 */
393static int dwc2_gadget_alloc_ctrl_desc_chains(struct dwc2_hsotg *hsotg)
394{
395 hsotg->setup_desc[0] =
396 dmam_alloc_coherent(hsotg->dev,
397 sizeof(struct dwc2_dma_desc),
398 &hsotg->setup_desc_dma[0],
399 GFP_KERNEL);
400 if (!hsotg->setup_desc[0])
401 goto fail;
402
403 hsotg->setup_desc[1] =
404 dmam_alloc_coherent(hsotg->dev,
405 sizeof(struct dwc2_dma_desc),
406 &hsotg->setup_desc_dma[1],
407 GFP_KERNEL);
408 if (!hsotg->setup_desc[1])
409 goto fail;
410
411 hsotg->ctrl_in_desc =
412 dmam_alloc_coherent(hsotg->dev,
413 sizeof(struct dwc2_dma_desc),
414 &hsotg->ctrl_in_desc_dma,
415 GFP_KERNEL);
416 if (!hsotg->ctrl_in_desc)
417 goto fail;
418
419 hsotg->ctrl_out_desc =
420 dmam_alloc_coherent(hsotg->dev,
421 sizeof(struct dwc2_dma_desc),
422 &hsotg->ctrl_out_desc_dma,
423 GFP_KERNEL);
424 if (!hsotg->ctrl_out_desc)
425 goto fail;
426
427 return 0;
428
429fail:
430 return -ENOMEM;
431}
432
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100433/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500434 * dwc2_hsotg_write_fifo - write packet Data to the TxFIFO
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100435 * @hsotg: The controller state.
436 * @hs_ep: The endpoint we're going to write for.
437 * @hs_req: The request to write data for.
438 *
439 * This is called when the TxFIFO has some space in it to hold a new
440 * transmission and we have something to give it. The actual setup of
441 * the data size is done elsewhere, so all we have to do is to actually
442 * write the data.
443 *
444 * The return value is zero if there is more space (or nothing was done)
445 * otherwise -ENOSPC is returned if the FIFO space was used up.
446 *
447 * This routine is only needed for PIO
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200448 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500449static int dwc2_hsotg_write_fifo(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -0800450 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500451 struct dwc2_hsotg_req *hs_req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100452{
453 bool periodic = is_ep_periodic(hs_ep);
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300454 u32 gnptxsts = dwc2_readl(hsotg->regs + GNPTXSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100455 int buf_pos = hs_req->req.actual;
456 int to_write = hs_ep->size_loaded;
457 void *data;
458 int can_write;
459 int pkt_round;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200460 int max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100461
462 to_write -= (buf_pos - hs_ep->last_load);
463
464 /* if there's nothing to write, get out early */
465 if (to_write == 0)
466 return 0;
467
Ben Dooks10aebc72010-07-19 09:40:44 +0100468 if (periodic && !hsotg->dedicated_fifos) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300469 u32 epsize = dwc2_readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100470 int size_left;
471 int size_done;
472
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200473 /*
474 * work out how much data was loaded so we can calculate
475 * how much data is left in the fifo.
476 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100477
Dinh Nguyen47a16852014-04-14 14:13:34 -0700478 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100479
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200480 /*
481 * if shared fifo, we cannot write anything until the
Ben Dookse7a9ff52010-07-19 09:40:42 +0100482 * previous data has been completely sent.
483 */
484 if (hs_ep->fifo_load != 0) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500485 dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
Ben Dookse7a9ff52010-07-19 09:40:42 +0100486 return -ENOSPC;
487 }
488
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100489 dev_dbg(hsotg->dev, "%s: left=%d, load=%d, fifo=%d, size %d\n",
490 __func__, size_left,
491 hs_ep->size_loaded, hs_ep->fifo_load, hs_ep->fifo_size);
492
493 /* how much of the data has moved */
494 size_done = hs_ep->size_loaded - size_left;
495
496 /* how much data is left in the fifo */
497 can_write = hs_ep->fifo_load - size_done;
498 dev_dbg(hsotg->dev, "%s: => can_write1=%d\n",
499 __func__, can_write);
500
501 can_write = hs_ep->fifo_size - can_write;
502 dev_dbg(hsotg->dev, "%s: => can_write2=%d\n",
503 __func__, can_write);
504
505 if (can_write <= 0) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500506 dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100507 return -ENOSPC;
508 }
Ben Dooks10aebc72010-07-19 09:40:44 +0100509 } else if (hsotg->dedicated_fifos && hs_ep->index != 0) {
Robert Baldygaad674a12016-08-29 13:38:50 -0700510 can_write = dwc2_readl(hsotg->regs +
511 DTXFSTS(hs_ep->fifo_index));
Ben Dooks10aebc72010-07-19 09:40:44 +0100512
513 can_write &= 0xffff;
514 can_write *= 4;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100515 } else {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700516 if (GNPTXSTS_NP_TXQ_SPC_AVAIL_GET(gnptxsts) == 0) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100517 dev_dbg(hsotg->dev,
518 "%s: no queue slots available (0x%08x)\n",
519 __func__, gnptxsts);
520
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500521 dwc2_hsotg_en_gsint(hsotg, GINTSTS_NPTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100522 return -ENOSPC;
523 }
524
Dinh Nguyen47a16852014-04-14 14:13:34 -0700525 can_write = GNPTXSTS_NP_TXF_SPC_AVAIL_GET(gnptxsts);
Ben Dooks679f9b72010-07-19 09:40:41 +0100526 can_write *= 4; /* fifo size is in 32bit quantities. */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100527 }
528
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200529 max_transfer = hs_ep->ep.maxpacket * hs_ep->mc;
530
531 dev_dbg(hsotg->dev, "%s: GNPTXSTS=%08x, can=%d, to=%d, max_transfer %d\n",
John Youn9da51972017-01-17 20:30:27 -0800532 __func__, gnptxsts, can_write, to_write, max_transfer);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100533
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200534 /*
535 * limit to 512 bytes of data, it seems at least on the non-periodic
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100536 * FIFO, requests of >512 cause the endpoint to get stuck with a
537 * fragment of the end of the transfer in it.
538 */
Robert Baldyga811f3302013-09-24 11:24:28 +0200539 if (can_write > 512 && !periodic)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100540 can_write = 512;
541
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200542 /*
543 * limit the write to one max-packet size worth of data, but allow
Ben Dooks03e10e52010-07-19 09:40:45 +0100544 * the transfer to return that it did not run out of fifo space
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200545 * doing it.
546 */
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200547 if (to_write > max_transfer) {
548 to_write = max_transfer;
Ben Dooks03e10e52010-07-19 09:40:45 +0100549
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200550 /* it's needed only when we do not use dedicated fifos */
551 if (!hsotg->dedicated_fifos)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500552 dwc2_hsotg_en_gsint(hsotg,
John Youn9da51972017-01-17 20:30:27 -0800553 periodic ? GINTSTS_PTXFEMP :
Dinh Nguyen47a16852014-04-14 14:13:34 -0700554 GINTSTS_NPTXFEMP);
Ben Dooks03e10e52010-07-19 09:40:45 +0100555 }
556
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100557 /* see if we can write data */
558
559 if (to_write > can_write) {
560 to_write = can_write;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200561 pkt_round = to_write % max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100562
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200563 /*
564 * Round the write down to an
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100565 * exact number of packets.
566 *
567 * Note, we do not currently check to see if we can ever
568 * write a full packet or not to the FIFO.
569 */
570
571 if (pkt_round)
572 to_write -= pkt_round;
573
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200574 /*
575 * enable correct FIFO interrupt to alert us when there
576 * is more room left.
577 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100578
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200579 /* it's needed only when we do not use dedicated fifos */
580 if (!hsotg->dedicated_fifos)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500581 dwc2_hsotg_en_gsint(hsotg,
John Youn9da51972017-01-17 20:30:27 -0800582 periodic ? GINTSTS_PTXFEMP :
Dinh Nguyen47a16852014-04-14 14:13:34 -0700583 GINTSTS_NPTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100584 }
585
586 dev_dbg(hsotg->dev, "write %d/%d, can_write %d, done %d\n",
John Youn9da51972017-01-17 20:30:27 -0800587 to_write, hs_req->req.length, can_write, buf_pos);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100588
589 if (to_write <= 0)
590 return -ENOSPC;
591
592 hs_req->req.actual = buf_pos + to_write;
593 hs_ep->total_data += to_write;
594
595 if (periodic)
596 hs_ep->fifo_load += to_write;
597
598 to_write = DIV_ROUND_UP(to_write, 4);
599 data = hs_req->req.buf + buf_pos;
600
Matt Porter1a7ed5b2014-02-03 10:29:09 -0500601 iowrite32_rep(hsotg->regs + EPFIFO(hs_ep->index), data, to_write);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100602
603 return (to_write >= can_write) ? -ENOSPC : 0;
604}
605
606/**
607 * get_ep_limit - get the maximum data legnth for this endpoint
608 * @hs_ep: The endpoint
609 *
610 * Return the maximum data that can be queued in one go on a given endpoint
611 * so that transfers that are too long can be split.
612 */
John Youn9da51972017-01-17 20:30:27 -0800613static unsigned int get_ep_limit(struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100614{
615 int index = hs_ep->index;
John Youn9da51972017-01-17 20:30:27 -0800616 unsigned int maxsize;
617 unsigned int maxpkt;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100618
619 if (index != 0) {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700620 maxsize = DXEPTSIZ_XFERSIZE_LIMIT + 1;
621 maxpkt = DXEPTSIZ_PKTCNT_LIMIT + 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100622 } else {
John Youn9da51972017-01-17 20:30:27 -0800623 maxsize = 64 + 64;
Jingoo Han66e5c642011-05-13 21:26:15 +0900624 if (hs_ep->dir_in)
Dinh Nguyen47a16852014-04-14 14:13:34 -0700625 maxpkt = DIEPTSIZ0_PKTCNT_LIMIT + 1;
Jingoo Han66e5c642011-05-13 21:26:15 +0900626 else
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100627 maxpkt = 2;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100628 }
629
630 /* we made the constant loading easier above by using +1 */
631 maxpkt--;
632 maxsize--;
633
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200634 /*
635 * constrain by packet count if maxpkts*pktsize is greater
636 * than the length register size.
637 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100638
639 if ((maxpkt * hs_ep->ep.maxpacket) < maxsize)
640 maxsize = maxpkt * hs_ep->ep.maxpacket;
641
642 return maxsize;
643}
644
645/**
John Youn38beaec2017-01-17 20:31:13 -0800646 * dwc2_hsotg_read_frameno - read current frame number
647 * @hsotg: The device instance
648 *
649 * Return the current frame number
650 */
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -0700651static u32 dwc2_hsotg_read_frameno(struct dwc2_hsotg *hsotg)
652{
653 u32 dsts;
654
655 dsts = dwc2_readl(hsotg->regs + DSTS);
656 dsts &= DSTS_SOFFN_MASK;
657 dsts >>= DSTS_SOFFN_SHIFT;
658
659 return dsts;
660}
661
662/**
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -0800663 * dwc2_gadget_get_chain_limit - get the maximum data payload value of the
664 * DMA descriptor chain prepared for specific endpoint
665 * @hs_ep: The endpoint
666 *
667 * Return the maximum data that can be queued in one go on a given endpoint
668 * depending on its descriptor chain capacity so that transfers that
669 * are too long can be split.
670 */
671static unsigned int dwc2_gadget_get_chain_limit(struct dwc2_hsotg_ep *hs_ep)
672{
673 int is_isoc = hs_ep->isochronous;
674 unsigned int maxsize;
675
676 if (is_isoc)
677 maxsize = hs_ep->dir_in ? DEV_DMA_ISOC_TX_NBYTES_LIMIT :
678 DEV_DMA_ISOC_RX_NBYTES_LIMIT;
679 else
680 maxsize = DEV_DMA_NBYTES_LIMIT;
681
682 /* Above size of one descriptor was chosen, multiple it */
683 maxsize *= MAX_DMA_DESC_NUM_GENERIC;
684
685 return maxsize;
686}
687
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800688/*
689 * dwc2_gadget_get_desc_params - get DMA descriptor parameters.
690 * @hs_ep: The endpoint
691 * @mask: RX/TX bytes mask to be defined
692 *
693 * Returns maximum data payload for one descriptor after analyzing endpoint
694 * characteristics.
695 * DMA descriptor transfer bytes limit depends on EP type:
696 * Control out - MPS,
697 * Isochronous - descriptor rx/tx bytes bitfield limit,
698 * Control In/Bulk/Interrupt - multiple of mps. This will allow to not
699 * have concatenations from various descriptors within one packet.
700 *
701 * Selects corresponding mask for RX/TX bytes as well.
702 */
703static u32 dwc2_gadget_get_desc_params(struct dwc2_hsotg_ep *hs_ep, u32 *mask)
704{
705 u32 mps = hs_ep->ep.maxpacket;
706 int dir_in = hs_ep->dir_in;
707 u32 desc_size = 0;
708
709 if (!hs_ep->index && !dir_in) {
710 desc_size = mps;
711 *mask = DEV_DMA_NBYTES_MASK;
712 } else if (hs_ep->isochronous) {
713 if (dir_in) {
714 desc_size = DEV_DMA_ISOC_TX_NBYTES_LIMIT;
715 *mask = DEV_DMA_ISOC_TX_NBYTES_MASK;
716 } else {
717 desc_size = DEV_DMA_ISOC_RX_NBYTES_LIMIT;
718 *mask = DEV_DMA_ISOC_RX_NBYTES_MASK;
719 }
720 } else {
721 desc_size = DEV_DMA_NBYTES_LIMIT;
722 *mask = DEV_DMA_NBYTES_MASK;
723
724 /* Round down desc_size to be mps multiple */
725 desc_size -= desc_size % mps;
726 }
727
728 return desc_size;
729}
730
731/*
732 * dwc2_gadget_config_nonisoc_xfer_ddma - prepare non ISOC DMA desc chain.
733 * @hs_ep: The endpoint
734 * @dma_buff: DMA address to use
735 * @len: Length of the transfer
736 *
737 * This function will iterate over descriptor chain and fill its entries
738 * with corresponding information based on transfer data.
739 */
740static void dwc2_gadget_config_nonisoc_xfer_ddma(struct dwc2_hsotg_ep *hs_ep,
741 dma_addr_t dma_buff,
742 unsigned int len)
743{
744 struct dwc2_hsotg *hsotg = hs_ep->parent;
745 int dir_in = hs_ep->dir_in;
746 struct dwc2_dma_desc *desc = hs_ep->desc_list;
747 u32 mps = hs_ep->ep.maxpacket;
748 u32 maxsize = 0;
749 u32 offset = 0;
750 u32 mask = 0;
751 int i;
752
753 maxsize = dwc2_gadget_get_desc_params(hs_ep, &mask);
754
755 hs_ep->desc_count = (len / maxsize) +
756 ((len % maxsize) ? 1 : 0);
757 if (len == 0)
758 hs_ep->desc_count = 1;
759
760 for (i = 0; i < hs_ep->desc_count; ++i) {
761 desc->status = 0;
762 desc->status |= (DEV_DMA_BUFF_STS_HBUSY
763 << DEV_DMA_BUFF_STS_SHIFT);
764
765 if (len > maxsize) {
766 if (!hs_ep->index && !dir_in)
767 desc->status |= (DEV_DMA_L | DEV_DMA_IOC);
768
769 desc->status |= (maxsize <<
770 DEV_DMA_NBYTES_SHIFT & mask);
771 desc->buf = dma_buff + offset;
772
773 len -= maxsize;
774 offset += maxsize;
775 } else {
776 desc->status |= (DEV_DMA_L | DEV_DMA_IOC);
777
778 if (dir_in)
779 desc->status |= (len % mps) ? DEV_DMA_SHORT :
780 ((hs_ep->send_zlp) ? DEV_DMA_SHORT : 0);
781 if (len > maxsize)
782 dev_err(hsotg->dev, "wrong len %d\n", len);
783
784 desc->status |=
785 len << DEV_DMA_NBYTES_SHIFT & mask;
786 desc->buf = dma_buff + offset;
787 }
788
789 desc->status &= ~DEV_DMA_BUFF_STS_MASK;
790 desc->status |= (DEV_DMA_BUFF_STS_HREADY
791 << DEV_DMA_BUFF_STS_SHIFT);
792 desc++;
793 }
794}
795
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800796/*
797 * dwc2_gadget_fill_isoc_desc - fills next isochronous descriptor in chain.
798 * @hs_ep: The isochronous endpoint.
799 * @dma_buff: usb requests dma buffer.
800 * @len: usb request transfer length.
801 *
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400802 * Fills next free descriptor with the data of the arrived usb request,
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800803 * frame info, sets Last and IOC bits increments next_desc. If filled
804 * descriptor is not the first one, removes L bit from the previous descriptor
805 * status.
806 */
807static int dwc2_gadget_fill_isoc_desc(struct dwc2_hsotg_ep *hs_ep,
808 dma_addr_t dma_buff, unsigned int len)
809{
810 struct dwc2_dma_desc *desc;
811 struct dwc2_hsotg *hsotg = hs_ep->parent;
812 u32 index;
813 u32 maxsize = 0;
814 u32 mask = 0;
Minas Harutyunyan1d8e5c02018-05-23 16:24:44 +0400815 u8 pid = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800816
817 maxsize = dwc2_gadget_get_desc_params(hs_ep, &mask);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800818
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400819 index = hs_ep->next_desc;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800820 desc = &hs_ep->desc_list[index];
821
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400822 /* Check if descriptor chain full */
823 if ((desc->status >> DEV_DMA_BUFF_STS_SHIFT) ==
824 DEV_DMA_BUFF_STS_HREADY) {
825 dev_dbg(hsotg->dev, "%s: desc chain full\n", __func__);
826 return 1;
827 }
828
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800829 /* Clear L bit of previous desc if more than one entries in the chain */
830 if (hs_ep->next_desc)
831 hs_ep->desc_list[index - 1].status &= ~DEV_DMA_L;
832
833 dev_dbg(hsotg->dev, "%s: Filling ep %d, dir %s isoc desc # %d\n",
834 __func__, hs_ep->index, hs_ep->dir_in ? "in" : "out", index);
835
836 desc->status = 0;
837 desc->status |= (DEV_DMA_BUFF_STS_HBUSY << DEV_DMA_BUFF_STS_SHIFT);
838
839 desc->buf = dma_buff;
840 desc->status |= (DEV_DMA_L | DEV_DMA_IOC |
841 ((len << DEV_DMA_NBYTES_SHIFT) & mask));
842
843 if (hs_ep->dir_in) {
Minas Harutyunyan1d8e5c02018-05-23 16:24:44 +0400844 if (len)
845 pid = DIV_ROUND_UP(len, hs_ep->ep.maxpacket);
846 else
847 pid = 1;
848 desc->status |= ((pid << DEV_DMA_ISOC_PID_SHIFT) &
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800849 DEV_DMA_ISOC_PID_MASK) |
850 ((len % hs_ep->ep.maxpacket) ?
851 DEV_DMA_SHORT : 0) |
852 ((hs_ep->target_frame <<
853 DEV_DMA_ISOC_FRNUM_SHIFT) &
854 DEV_DMA_ISOC_FRNUM_MASK);
855 }
856
857 desc->status &= ~DEV_DMA_BUFF_STS_MASK;
858 desc->status |= (DEV_DMA_BUFF_STS_HREADY << DEV_DMA_BUFF_STS_SHIFT);
859
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400860 /* Increment frame number by interval for IN */
861 if (hs_ep->dir_in)
862 dwc2_gadget_incr_frame_num(hs_ep);
863
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800864 /* Update index of last configured entry in the chain */
865 hs_ep->next_desc++;
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400866 if (hs_ep->next_desc >= MAX_DMA_DESC_NUM_GENERIC)
867 hs_ep->next_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800868
869 return 0;
870}
871
872/*
873 * dwc2_gadget_start_isoc_ddma - start isochronous transfer in DDMA
874 * @hs_ep: The isochronous endpoint.
875 *
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400876 * Prepare descriptor chain for isochronous endpoints. Afterwards
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800877 * write DMA address to HW and enable the endpoint.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800878 */
879static void dwc2_gadget_start_isoc_ddma(struct dwc2_hsotg_ep *hs_ep)
880{
881 struct dwc2_hsotg *hsotg = hs_ep->parent;
882 struct dwc2_hsotg_req *hs_req, *treq;
883 int index = hs_ep->index;
884 int ret;
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400885 int i;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800886 u32 dma_reg;
887 u32 depctl;
888 u32 ctrl;
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400889 struct dwc2_dma_desc *desc;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800890
891 if (list_empty(&hs_ep->queue)) {
Minas Harutyunyan1ffba902018-06-12 12:37:29 +0400892 hs_ep->target_frame = TARGET_FRAME_INITIAL;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800893 dev_dbg(hsotg->dev, "%s: No requests in queue\n", __func__);
894 return;
895 }
896
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400897 /* Initialize descriptor chain by Host Busy status */
898 for (i = 0; i < MAX_DMA_DESC_NUM_GENERIC; i++) {
899 desc = &hs_ep->desc_list[i];
900 desc->status = 0;
901 desc->status |= (DEV_DMA_BUFF_STS_HBUSY
902 << DEV_DMA_BUFF_STS_SHIFT);
903 }
904
905 hs_ep->next_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800906 list_for_each_entry_safe(hs_req, treq, &hs_ep->queue, queue) {
907 ret = dwc2_gadget_fill_isoc_desc(hs_ep, hs_req->req.dma,
908 hs_req->req.length);
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400909 if (ret)
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800910 break;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800911 }
912
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400913 hs_ep->compl_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800914 depctl = hs_ep->dir_in ? DIEPCTL(index) : DOEPCTL(index);
915 dma_reg = hs_ep->dir_in ? DIEPDMA(index) : DOEPDMA(index);
916
917 /* write descriptor chain address to control register */
918 dwc2_writel(hs_ep->desc_list_dma, hsotg->regs + dma_reg);
919
920 ctrl = dwc2_readl(hsotg->regs + depctl);
921 ctrl |= DXEPCTL_EPENA | DXEPCTL_CNAK;
922 dwc2_writel(ctrl, hsotg->regs + depctl);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800923}
924
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -0800925/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500926 * dwc2_hsotg_start_req - start a USB request from an endpoint's queue
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100927 * @hsotg: The controller state.
928 * @hs_ep: The endpoint to process a request for
929 * @hs_req: The request to start.
930 * @continuing: True if we are doing more for the current request.
931 *
932 * Start the given request running by setting the endpoint registers
933 * appropriately, and writing any data to the FIFOs.
934 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500935static void dwc2_hsotg_start_req(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -0800936 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500937 struct dwc2_hsotg_req *hs_req,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100938 bool continuing)
939{
940 struct usb_request *ureq = &hs_req->req;
941 int index = hs_ep->index;
942 int dir_in = hs_ep->dir_in;
943 u32 epctrl_reg;
944 u32 epsize_reg;
945 u32 epsize;
946 u32 ctrl;
John Youn9da51972017-01-17 20:30:27 -0800947 unsigned int length;
948 unsigned int packets;
949 unsigned int maxreq;
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -0800950 unsigned int dma_reg;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100951
952 if (index != 0) {
953 if (hs_ep->req && !continuing) {
954 dev_err(hsotg->dev, "%s: active request\n", __func__);
955 WARN_ON(1);
956 return;
957 } else if (hs_ep->req != hs_req && continuing) {
958 dev_err(hsotg->dev,
959 "%s: continue different req\n", __func__);
960 WARN_ON(1);
961 return;
962 }
963 }
964
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -0800965 dma_reg = dir_in ? DIEPDMA(index) : DOEPDMA(index);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +0200966 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
967 epsize_reg = dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100968
969 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x, ep %d, dir %s\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300970 __func__, dwc2_readl(hsotg->regs + epctrl_reg), index,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100971 hs_ep->dir_in ? "in" : "out");
972
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900973 /* If endpoint is stalled, we will restart request later */
Antti Seppälä95c8bc32015-08-20 21:41:07 +0300974 ctrl = dwc2_readl(hsotg->regs + epctrl_reg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900975
Mian Yousaf Kaukabb2d4c542015-09-29 12:08:22 +0200976 if (index && ctrl & DXEPCTL_STALL) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +0900977 dev_warn(hsotg->dev, "%s: ep%d is stalled\n", __func__, index);
978 return;
979 }
980
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100981 length = ureq->length - ureq->actual;
Lukasz Majewski71225be2012-05-04 14:17:03 +0200982 dev_dbg(hsotg->dev, "ureq->length:%d ureq->actual:%d\n",
983 ureq->length, ureq->actual);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100984
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -0800985 if (!using_desc_dma(hsotg))
986 maxreq = get_ep_limit(hs_ep);
987 else
988 maxreq = dwc2_gadget_get_chain_limit(hs_ep);
989
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100990 if (length > maxreq) {
991 int round = maxreq % hs_ep->ep.maxpacket;
992
993 dev_dbg(hsotg->dev, "%s: length %d, max-req %d, r %d\n",
994 __func__, length, maxreq, round);
995
996 /* round down to multiple of packets */
997 if (round)
998 maxreq -= round;
999
1000 length = maxreq;
1001 }
1002
1003 if (length)
1004 packets = DIV_ROUND_UP(length, hs_ep->ep.maxpacket);
1005 else
1006 packets = 1; /* send one packet if length is zero. */
1007
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001008 if (hs_ep->isochronous && length > (hs_ep->mc * hs_ep->ep.maxpacket)) {
1009 dev_err(hsotg->dev, "req length > maxpacket*mc\n");
1010 return;
1011 }
1012
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001013 if (dir_in && index != 0)
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001014 if (hs_ep->isochronous)
Dinh Nguyen47a16852014-04-14 14:13:34 -07001015 epsize = DXEPTSIZ_MC(packets);
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001016 else
Dinh Nguyen47a16852014-04-14 14:13:34 -07001017 epsize = DXEPTSIZ_MC(1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001018 else
1019 epsize = 0;
1020
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01001021 /*
1022 * zero length packet should be programmed on its own and should not
1023 * be counted in DIEPTSIZ.PktCnt with other packets.
1024 */
1025 if (dir_in && ureq->zero && !continuing) {
1026 /* Test if zlp is actually required. */
1027 if ((ureq->length >= hs_ep->ep.maxpacket) &&
John Youn9da51972017-01-17 20:30:27 -08001028 !(ureq->length % hs_ep->ep.maxpacket))
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01001029 hs_ep->send_zlp = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001030 }
1031
Dinh Nguyen47a16852014-04-14 14:13:34 -07001032 epsize |= DXEPTSIZ_PKTCNT(packets);
1033 epsize |= DXEPTSIZ_XFERSIZE(length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001034
1035 dev_dbg(hsotg->dev, "%s: %d@%d/%d, 0x%08x => 0x%08x\n",
1036 __func__, packets, length, ureq->length, epsize, epsize_reg);
1037
1038 /* store the request as the current one we're doing */
1039 hs_ep->req = hs_req;
1040
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001041 if (using_desc_dma(hsotg)) {
1042 u32 offset = 0;
1043 u32 mps = hs_ep->ep.maxpacket;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001044
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001045 /* Adjust length: EP0 - MPS, other OUT EPs - multiple of MPS */
1046 if (!dir_in) {
1047 if (!index)
1048 length = mps;
1049 else if (length % mps)
1050 length += (mps - (length % mps));
1051 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001052
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001053 /*
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001054 * If more data to send, adjust DMA for EP0 out data stage.
1055 * ureq->dma stays unchanged, hence increment it by already
1056 * passed passed data count before starting new transaction.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001057 */
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001058 if (!index && hsotg->ep0_state == DWC2_EP0_DATA_OUT &&
1059 continuing)
1060 offset = ureq->actual;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001061
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001062 /* Fill DDMA chain entries */
1063 dwc2_gadget_config_nonisoc_xfer_ddma(hs_ep, ureq->dma + offset,
1064 length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001065
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001066 /* write descriptor chain address to control register */
1067 dwc2_writel(hs_ep->desc_list_dma, hsotg->regs + dma_reg);
1068
1069 dev_dbg(hsotg->dev, "%s: %08x pad => 0x%08x\n",
1070 __func__, (u32)hs_ep->desc_list_dma, dma_reg);
1071 } else {
1072 /* write size / packets */
1073 dwc2_writel(epsize, hsotg->regs + epsize_reg);
1074
Razmik Karapetyan729e6572016-11-16 15:33:55 -08001075 if (using_dma(hsotg) && !continuing && (length != 0)) {
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001076 /*
1077 * write DMA address to control register, buffer
1078 * already synced by dwc2_hsotg_ep_queue().
1079 */
1080
1081 dwc2_writel(ureq->dma, hsotg->regs + dma_reg);
1082
1083 dev_dbg(hsotg->dev, "%s: %pad => 0x%08x\n",
1084 __func__, &ureq->dma, dma_reg);
1085 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001086 }
1087
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001088 if (hs_ep->isochronous && hs_ep->interval == 1) {
1089 hs_ep->target_frame = dwc2_hsotg_read_frameno(hsotg);
1090 dwc2_gadget_incr_frame_num(hs_ep);
1091
1092 if (hs_ep->target_frame & 0x1)
1093 ctrl |= DXEPCTL_SETODDFR;
1094 else
1095 ctrl |= DXEPCTL_SETEVENFR;
1096 }
1097
Dinh Nguyen47a16852014-04-14 14:13:34 -07001098 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
Lukasz Majewski71225be2012-05-04 14:17:03 +02001099
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001100 dev_dbg(hsotg->dev, "ep0 state:%d\n", hsotg->ep0_state);
Lukasz Majewski71225be2012-05-04 14:17:03 +02001101
1102 /* For Setup request do not clear NAK */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001103 if (!(index == 0 && hsotg->ep0_state == DWC2_EP0_SETUP))
Dinh Nguyen47a16852014-04-14 14:13:34 -07001104 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
Lukasz Majewski71225be2012-05-04 14:17:03 +02001105
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001106 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001107 dwc2_writel(ctrl, hsotg->regs + epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001108
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001109 /*
1110 * set these, it seems that DMA support increments past the end
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001111 * of the packet buffer so we need to calculate the length from
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001112 * this information.
1113 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001114 hs_ep->size_loaded = length;
1115 hs_ep->last_load = ureq->actual;
1116
1117 if (dir_in && !using_dma(hsotg)) {
1118 /* set these anyway, we may need them for non-periodic in */
1119 hs_ep->fifo_load = 0;
1120
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001121 dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001122 }
1123
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001124 /*
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001125 * Note, trying to clear the NAK here causes problems with transmit
1126 * on the S3C6400 ending up with the TXFIFO becoming full.
1127 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001128
1129 /* check ep is enabled */
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001130 if (!(dwc2_readl(hsotg->regs + epctrl_reg) & DXEPCTL_EPENA))
Mian Yousaf Kaukab1a0ed862015-01-09 13:39:00 +01001131 dev_dbg(hsotg->dev,
John Youn9da51972017-01-17 20:30:27 -08001132 "ep%d: failed to become enabled (DXEPCTL=0x%08x)?\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001133 index, dwc2_readl(hsotg->regs + epctrl_reg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001134
Dinh Nguyen47a16852014-04-14 14:13:34 -07001135 dev_dbg(hsotg->dev, "%s: DXEPCTL=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001136 __func__, dwc2_readl(hsotg->regs + epctrl_reg));
Robert Baldygaafcf4162013-09-19 11:50:19 +02001137
1138 /* enable ep interrupts */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001139 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001140}
1141
1142/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001143 * dwc2_hsotg_map_dma - map the DMA memory being used for the request
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001144 * @hsotg: The device state.
1145 * @hs_ep: The endpoint the request is on.
1146 * @req: The request being processed.
1147 *
1148 * We've been asked to queue a request, so ensure that the memory buffer
1149 * is correctly setup for DMA. If we've been passed an extant DMA address
1150 * then ensure the buffer has been synced to memory. If our buffer has no
1151 * DMA memory, then we map the memory and mark our request to allow us to
1152 * cleanup on completion.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001153 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001154static int dwc2_hsotg_map_dma(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001155 struct dwc2_hsotg_ep *hs_ep,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001156 struct usb_request *req)
1157{
Felipe Balbie58ebcd2013-01-28 14:48:36 +02001158 int ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001159
Felipe Balbie58ebcd2013-01-28 14:48:36 +02001160 ret = usb_gadget_map_request(&hsotg->gadget, req, hs_ep->dir_in);
1161 if (ret)
1162 goto dma_error;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001163
1164 return 0;
1165
1166dma_error:
1167 dev_err(hsotg->dev, "%s: failed to map buffer %p, %d bytes\n",
1168 __func__, req->buf, req->length);
1169
1170 return -EIO;
1171}
1172
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001173static int dwc2_hsotg_handle_unaligned_buf_start(struct dwc2_hsotg *hsotg,
John Younb98866c2017-01-17 20:31:58 -08001174 struct dwc2_hsotg_ep *hs_ep,
1175 struct dwc2_hsotg_req *hs_req)
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001176{
1177 void *req_buf = hs_req->req.buf;
1178
1179 /* If dma is not being used or buffer is aligned */
1180 if (!using_dma(hsotg) || !((long)req_buf & 3))
1181 return 0;
1182
1183 WARN_ON(hs_req->saved_req_buf);
1184
1185 dev_dbg(hsotg->dev, "%s: %s: buf=%p length=%d\n", __func__,
John Youn9da51972017-01-17 20:30:27 -08001186 hs_ep->ep.name, req_buf, hs_req->req.length);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001187
1188 hs_req->req.buf = kmalloc(hs_req->req.length, GFP_ATOMIC);
1189 if (!hs_req->req.buf) {
1190 hs_req->req.buf = req_buf;
1191 dev_err(hsotg->dev,
1192 "%s: unable to allocate memory for bounce buffer\n",
1193 __func__);
1194 return -ENOMEM;
1195 }
1196
1197 /* Save actual buffer */
1198 hs_req->saved_req_buf = req_buf;
1199
1200 if (hs_ep->dir_in)
1201 memcpy(hs_req->req.buf, req_buf, hs_req->req.length);
1202 return 0;
1203}
1204
John Younb98866c2017-01-17 20:31:58 -08001205static void
1206dwc2_hsotg_handle_unaligned_buf_complete(struct dwc2_hsotg *hsotg,
1207 struct dwc2_hsotg_ep *hs_ep,
1208 struct dwc2_hsotg_req *hs_req)
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001209{
1210 /* If dma is not being used or buffer was aligned */
1211 if (!using_dma(hsotg) || !hs_req->saved_req_buf)
1212 return;
1213
1214 dev_dbg(hsotg->dev, "%s: %s: status=%d actual-length=%d\n", __func__,
1215 hs_ep->ep.name, hs_req->req.status, hs_req->req.actual);
1216
1217 /* Copy data from bounce buffer on successful out transfer */
1218 if (!hs_ep->dir_in && !hs_req->req.status)
1219 memcpy(hs_req->saved_req_buf, hs_req->req.buf,
John Youn9da51972017-01-17 20:30:27 -08001220 hs_req->req.actual);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001221
1222 /* Free bounce buffer */
1223 kfree(hs_req->req.buf);
1224
1225 hs_req->req.buf = hs_req->saved_req_buf;
1226 hs_req->saved_req_buf = NULL;
1227}
1228
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07001229/**
1230 * dwc2_gadget_target_frame_elapsed - Checks target frame
1231 * @hs_ep: The driver endpoint to check
1232 *
1233 * Returns 1 if targeted frame elapsed. If returned 1 then we need to drop
1234 * corresponding transfer.
1235 */
1236static bool dwc2_gadget_target_frame_elapsed(struct dwc2_hsotg_ep *hs_ep)
1237{
1238 struct dwc2_hsotg *hsotg = hs_ep->parent;
1239 u32 target_frame = hs_ep->target_frame;
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04001240 u32 current_frame = hsotg->frame_number;
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07001241 bool frame_overrun = hs_ep->frame_overrun;
1242
1243 if (!frame_overrun && current_frame >= target_frame)
1244 return true;
1245
1246 if (frame_overrun && current_frame >= target_frame &&
1247 ((current_frame - target_frame) < DSTS_SOFFN_LIMIT / 2))
1248 return true;
1249
1250 return false;
1251}
1252
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08001253/*
1254 * dwc2_gadget_set_ep0_desc_chain - Set EP's desc chain pointers
1255 * @hsotg: The driver state
1256 * @hs_ep: the ep descriptor chain is for
1257 *
1258 * Called to update EP0 structure's pointers depend on stage of
1259 * control transfer.
1260 */
1261static int dwc2_gadget_set_ep0_desc_chain(struct dwc2_hsotg *hsotg,
1262 struct dwc2_hsotg_ep *hs_ep)
1263{
1264 switch (hsotg->ep0_state) {
1265 case DWC2_EP0_SETUP:
1266 case DWC2_EP0_STATUS_OUT:
1267 hs_ep->desc_list = hsotg->setup_desc[0];
1268 hs_ep->desc_list_dma = hsotg->setup_desc_dma[0];
1269 break;
1270 case DWC2_EP0_DATA_IN:
1271 case DWC2_EP0_STATUS_IN:
1272 hs_ep->desc_list = hsotg->ctrl_in_desc;
1273 hs_ep->desc_list_dma = hsotg->ctrl_in_desc_dma;
1274 break;
1275 case DWC2_EP0_DATA_OUT:
1276 hs_ep->desc_list = hsotg->ctrl_out_desc;
1277 hs_ep->desc_list_dma = hsotg->ctrl_out_desc_dma;
1278 break;
1279 default:
1280 dev_err(hsotg->dev, "invalid EP 0 state in queue %d\n",
1281 hsotg->ep0_state);
1282 return -EINVAL;
1283 }
1284
1285 return 0;
1286}
1287
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001288static int dwc2_hsotg_ep_queue(struct usb_ep *ep, struct usb_request *req,
John Youn9da51972017-01-17 20:30:27 -08001289 gfp_t gfp_flags)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001290{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001291 struct dwc2_hsotg_req *hs_req = our_req(req);
1292 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001293 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001294 bool first;
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001295 int ret;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001296 u32 maxsize = 0;
1297 u32 mask = 0;
1298
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001299
1300 dev_dbg(hs->dev, "%s: req %p: %d@%p, noi=%d, zero=%d, snok=%d\n",
1301 ep->name, req, req->length, req->buf, req->no_interrupt,
1302 req->zero, req->short_not_ok);
1303
Gregory Herrero7ababa92015-04-29 22:09:08 +02001304 /* Prevent new request submission when controller is suspended */
Grigor Tovmasyan88b02f22018-01-24 17:44:25 +04001305 if (hs->lx_state != DWC2_L0) {
1306 dev_dbg(hs->dev, "%s: submit request only in active state\n",
John Youn9da51972017-01-17 20:30:27 -08001307 __func__);
Gregory Herrero7ababa92015-04-29 22:09:08 +02001308 return -EAGAIN;
1309 }
1310
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001311 /* initialise status of the request */
1312 INIT_LIST_HEAD(&hs_req->queue);
1313 req->actual = 0;
1314 req->status = -EINPROGRESS;
1315
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001316 /* In DDMA mode for ISOC's don't queue request if length greater
1317 * than descriptor limits.
1318 */
1319 if (using_desc_dma(hs) && hs_ep->isochronous) {
1320 maxsize = dwc2_gadget_get_desc_params(hs_ep, &mask);
1321 if (hs_ep->dir_in && req->length > maxsize) {
1322 dev_err(hs->dev, "wrong length %d (maxsize=%d)\n",
1323 req->length, maxsize);
1324 return -EINVAL;
1325 }
1326
1327 if (!hs_ep->dir_in && req->length > hs_ep->ep.maxpacket) {
1328 dev_err(hs->dev, "ISOC OUT: wrong length %d (mps=%d)\n",
1329 req->length, hs_ep->ep.maxpacket);
1330 return -EINVAL;
1331 }
1332 }
1333
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001334 ret = dwc2_hsotg_handle_unaligned_buf_start(hs, hs_ep, hs_req);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001335 if (ret)
1336 return ret;
1337
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001338 /* if we're using DMA, sync the buffers as necessary */
1339 if (using_dma(hs)) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001340 ret = dwc2_hsotg_map_dma(hs, hs_ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001341 if (ret)
1342 return ret;
1343 }
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08001344 /* If using descriptor DMA configure EP0 descriptor chain pointers */
1345 if (using_desc_dma(hs) && !hs_ep->index) {
1346 ret = dwc2_gadget_set_ep0_desc_chain(hs, hs_ep);
1347 if (ret)
1348 return ret;
1349 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001350
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001351 first = list_empty(&hs_ep->queue);
1352 list_add_tail(&hs_req->queue, &hs_ep->queue);
1353
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08001354 /*
1355 * Handle DDMA isochronous transfers separately - just add new entry
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001356 * to the descriptor chain.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08001357 * Transfer will be started once SW gets either one of NAK or
1358 * OutTknEpDis interrupts.
1359 */
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001360 if (using_desc_dma(hs) && hs_ep->isochronous) {
1361 if (hs_ep->target_frame != TARGET_FRAME_INITIAL) {
1362 dwc2_gadget_fill_isoc_desc(hs_ep, hs_req->req.dma,
1363 hs_req->req.length);
1364 }
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08001365 return 0;
1366 }
1367
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001368 if (first) {
1369 if (!hs_ep->isochronous) {
1370 dwc2_hsotg_start_req(hs, hs_ep, hs_req, false);
1371 return 0;
1372 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001373
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04001374 /* Update current frame number value. */
1375 hs->frame_number = dwc2_hsotg_read_frameno(hs);
1376 while (dwc2_gadget_target_frame_elapsed(hs_ep)) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001377 dwc2_gadget_incr_frame_num(hs_ep);
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04001378 /* Update current frame number value once more as it
1379 * changes here.
1380 */
1381 hs->frame_number = dwc2_hsotg_read_frameno(hs);
1382 }
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001383
1384 if (hs_ep->target_frame != TARGET_FRAME_INITIAL)
1385 dwc2_hsotg_start_req(hs, hs_ep, hs_req, false);
1386 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001387 return 0;
1388}
1389
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001390static int dwc2_hsotg_ep_queue_lock(struct usb_ep *ep, struct usb_request *req,
John Youn9da51972017-01-17 20:30:27 -08001391 gfp_t gfp_flags)
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001392{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001393 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001394 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001395 unsigned long flags = 0;
1396 int ret = 0;
1397
1398 spin_lock_irqsave(&hs->lock, flags);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001399 ret = dwc2_hsotg_ep_queue(ep, req, gfp_flags);
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001400 spin_unlock_irqrestore(&hs->lock, flags);
1401
1402 return ret;
1403}
1404
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001405static void dwc2_hsotg_ep_free_request(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08001406 struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001407{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001408 struct dwc2_hsotg_req *hs_req = our_req(req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001409
1410 kfree(hs_req);
1411}
1412
1413/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001414 * dwc2_hsotg_complete_oursetup - setup completion callback
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001415 * @ep: The endpoint the request was on.
1416 * @req: The request completed.
1417 *
1418 * Called on completion of any requests the driver itself
1419 * submitted that need cleaning up.
1420 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001421static void dwc2_hsotg_complete_oursetup(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08001422 struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001423{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001424 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001425 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001426
1427 dev_dbg(hsotg->dev, "%s: ep %p, req %p\n", __func__, ep, req);
1428
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001429 dwc2_hsotg_ep_free_request(ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001430}
1431
1432/**
1433 * ep_from_windex - convert control wIndex value to endpoint
1434 * @hsotg: The driver state.
1435 * @windex: The control request wIndex field (in host order).
1436 *
1437 * Convert the given wIndex into a pointer to an driver endpoint
1438 * structure, or return NULL if it is not a valid endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001439 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001440static struct dwc2_hsotg_ep *ep_from_windex(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001441 u32 windex)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001442{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001443 struct dwc2_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001444 int dir = (windex & USB_DIR_IN) ? 1 : 0;
1445 int idx = windex & 0x7F;
1446
1447 if (windex >= 0x100)
1448 return NULL;
1449
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02001450 if (idx > hsotg->num_of_eps)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001451 return NULL;
1452
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001453 ep = index_to_ep(hsotg, idx, dir);
1454
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001455 if (idx && ep->dir_in != dir)
1456 return NULL;
1457
1458 return ep;
1459}
1460
1461/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001462 * dwc2_hsotg_set_test_mode - Enable usb Test Modes
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001463 * @hsotg: The driver state.
1464 * @testmode: requested usb test mode
1465 * Enable usb Test Mode requested by the Host.
1466 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001467int dwc2_hsotg_set_test_mode(struct dwc2_hsotg *hsotg, int testmode)
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001468{
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001469 int dctl = dwc2_readl(hsotg->regs + DCTL);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001470
1471 dctl &= ~DCTL_TSTCTL_MASK;
1472 switch (testmode) {
1473 case TEST_J:
1474 case TEST_K:
1475 case TEST_SE0_NAK:
1476 case TEST_PACKET:
1477 case TEST_FORCE_EN:
1478 dctl |= testmode << DCTL_TSTCTL_SHIFT;
1479 break;
1480 default:
1481 return -EINVAL;
1482 }
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001483 dwc2_writel(dctl, hsotg->regs + DCTL);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001484 return 0;
1485}
1486
1487/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001488 * dwc2_hsotg_send_reply - send reply to control request
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001489 * @hsotg: The device state
1490 * @ep: Endpoint 0
1491 * @buff: Buffer for request
1492 * @length: Length of reply.
1493 *
1494 * Create a request and queue it on the given endpoint. This is useful as
1495 * an internal method of sending replies to certain control requests, etc.
1496 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001497static int dwc2_hsotg_send_reply(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001498 struct dwc2_hsotg_ep *ep,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001499 void *buff,
1500 int length)
1501{
1502 struct usb_request *req;
1503 int ret;
1504
1505 dev_dbg(hsotg->dev, "%s: buff %p, len %d\n", __func__, buff, length);
1506
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001507 req = dwc2_hsotg_ep_alloc_request(&ep->ep, GFP_ATOMIC);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001508 hsotg->ep0_reply = req;
1509 if (!req) {
1510 dev_warn(hsotg->dev, "%s: cannot alloc req\n", __func__);
1511 return -ENOMEM;
1512 }
1513
1514 req->buf = hsotg->ep0_buff;
1515 req->length = length;
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01001516 /*
1517 * zero flag is for sending zlp in DATA IN stage. It has no impact on
1518 * STATUS stage.
1519 */
1520 req->zero = 0;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001521 req->complete = dwc2_hsotg_complete_oursetup;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001522
1523 if (length)
1524 memcpy(req->buf, buff, length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001525
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001526 ret = dwc2_hsotg_ep_queue(&ep->ep, req, GFP_ATOMIC);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001527 if (ret) {
1528 dev_warn(hsotg->dev, "%s: cannot queue req\n", __func__);
1529 return ret;
1530 }
1531
1532 return 0;
1533}
1534
1535/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001536 * dwc2_hsotg_process_req_status - process request GET_STATUS
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001537 * @hsotg: The device state
1538 * @ctrl: USB control request
1539 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001540static int dwc2_hsotg_process_req_status(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001541 struct usb_ctrlrequest *ctrl)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001542{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001543 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
1544 struct dwc2_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001545 __le16 reply;
1546 int ret;
1547
1548 dev_dbg(hsotg->dev, "%s: USB_REQ_GET_STATUS\n", __func__);
1549
1550 if (!ep0->dir_in) {
1551 dev_warn(hsotg->dev, "%s: direction out?\n", __func__);
1552 return -EINVAL;
1553 }
1554
1555 switch (ctrl->bRequestType & USB_RECIP_MASK) {
1556 case USB_RECIP_DEVICE:
John Youn38beaec2017-01-17 20:31:13 -08001557 /*
1558 * bit 0 => self powered
1559 * bit 1 => remote wakeup
1560 */
1561 reply = cpu_to_le16(0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001562 break;
1563
1564 case USB_RECIP_INTERFACE:
1565 /* currently, the data result should be zero */
1566 reply = cpu_to_le16(0);
1567 break;
1568
1569 case USB_RECIP_ENDPOINT:
1570 ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex));
1571 if (!ep)
1572 return -ENOENT;
1573
1574 reply = cpu_to_le16(ep->halted ? 1 : 0);
1575 break;
1576
1577 default:
1578 return 0;
1579 }
1580
1581 if (le16_to_cpu(ctrl->wLength) != 2)
1582 return -EINVAL;
1583
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001584 ret = dwc2_hsotg_send_reply(hsotg, ep0, &reply, 2);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001585 if (ret) {
1586 dev_err(hsotg->dev, "%s: failed to send reply\n", __func__);
1587 return ret;
1588 }
1589
1590 return 1;
1591}
1592
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07001593static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001594
1595/**
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001596 * get_ep_head - return the first request on the endpoint
1597 * @hs_ep: The controller endpoint to get
1598 *
1599 * Get the first request on the endpoint.
1600 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001601static struct dwc2_hsotg_req *get_ep_head(struct dwc2_hsotg_ep *hs_ep)
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001602{
Masahiro Yamadaffc4b402016-09-19 01:03:13 +09001603 return list_first_entry_or_null(&hs_ep->queue, struct dwc2_hsotg_req,
1604 queue);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001605}
1606
1607/**
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07001608 * dwc2_gadget_start_next_request - Starts next request from ep queue
1609 * @hs_ep: Endpoint structure
1610 *
1611 * If queue is empty and EP is ISOC-OUT - unmasks OUTTKNEPDIS which is masked
1612 * in its handler. Hence we need to unmask it here to be able to do
1613 * resynchronization.
1614 */
1615static void dwc2_gadget_start_next_request(struct dwc2_hsotg_ep *hs_ep)
1616{
1617 u32 mask;
1618 struct dwc2_hsotg *hsotg = hs_ep->parent;
1619 int dir_in = hs_ep->dir_in;
1620 struct dwc2_hsotg_req *hs_req;
1621 u32 epmsk_reg = dir_in ? DIEPMSK : DOEPMSK;
1622
1623 if (!list_empty(&hs_ep->queue)) {
1624 hs_req = get_ep_head(hs_ep);
1625 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, false);
1626 return;
1627 }
1628 if (!hs_ep->isochronous)
1629 return;
1630
1631 if (dir_in) {
1632 dev_dbg(hsotg->dev, "%s: No more ISOC-IN requests\n",
1633 __func__);
1634 } else {
1635 dev_dbg(hsotg->dev, "%s: No more ISOC-OUT requests\n",
1636 __func__);
1637 mask = dwc2_readl(hsotg->regs + epmsk_reg);
1638 mask |= DOEPMSK_OUTTKNEPDISMSK;
1639 dwc2_writel(mask, hsotg->regs + epmsk_reg);
1640 }
1641}
1642
1643/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001644 * dwc2_hsotg_process_req_feature - process request {SET,CLEAR}_FEATURE
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001645 * @hsotg: The device state
1646 * @ctrl: USB control request
1647 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001648static int dwc2_hsotg_process_req_feature(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001649 struct usb_ctrlrequest *ctrl)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001650{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001651 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
1652 struct dwc2_hsotg_req *hs_req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001653 bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001654 struct dwc2_hsotg_ep *ep;
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001655 int ret;
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001656 bool halted;
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001657 u32 recip;
1658 u32 wValue;
1659 u32 wIndex;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001660
1661 dev_dbg(hsotg->dev, "%s: %s_FEATURE\n",
1662 __func__, set ? "SET" : "CLEAR");
1663
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001664 wValue = le16_to_cpu(ctrl->wValue);
1665 wIndex = le16_to_cpu(ctrl->wIndex);
1666 recip = ctrl->bRequestType & USB_RECIP_MASK;
1667
1668 switch (recip) {
1669 case USB_RECIP_DEVICE:
1670 switch (wValue) {
Vardan Mikayelyanfa389a62018-02-16 14:08:53 +04001671 case USB_DEVICE_REMOTE_WAKEUP:
1672 hsotg->remote_wakeup_allowed = 1;
1673 break;
1674
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001675 case USB_DEVICE_TEST_MODE:
1676 if ((wIndex & 0xff) != 0)
1677 return -EINVAL;
1678 if (!set)
1679 return -EINVAL;
1680
1681 hsotg->test_mode = wIndex >> 8;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001682 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001683 if (ret) {
1684 dev_err(hsotg->dev,
1685 "%s: failed to send reply\n", __func__);
1686 return ret;
1687 }
1688 break;
1689 default:
1690 return -ENOENT;
1691 }
1692 break;
1693
1694 case USB_RECIP_ENDPOINT:
1695 ep = ep_from_windex(hsotg, wIndex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001696 if (!ep) {
1697 dev_dbg(hsotg->dev, "%s: no endpoint for 0x%04x\n",
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001698 __func__, wIndex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001699 return -ENOENT;
1700 }
1701
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001702 switch (wValue) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001703 case USB_ENDPOINT_HALT:
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001704 halted = ep->halted;
1705
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07001706 dwc2_hsotg_ep_sethalt(&ep->ep, set, true);
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001707
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001708 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001709 if (ret) {
1710 dev_err(hsotg->dev,
1711 "%s: failed to send reply\n", __func__);
1712 return ret;
1713 }
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001714
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001715 /*
1716 * we have to complete all requests for ep if it was
1717 * halted, and the halt was cleared by CLEAR_FEATURE
1718 */
1719
1720 if (!set && halted) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001721 /*
1722 * If we have request in progress,
1723 * then complete it
1724 */
1725 if (ep->req) {
1726 hs_req = ep->req;
1727 ep->req = NULL;
1728 list_del_init(&hs_req->queue);
Gregory Herreroc00dd4a2015-01-30 09:09:27 +01001729 if (hs_req->req.complete) {
1730 spin_unlock(&hsotg->lock);
1731 usb_gadget_giveback_request(
1732 &ep->ep, &hs_req->req);
1733 spin_lock(&hsotg->lock);
1734 }
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001735 }
1736
1737 /* If we have pending request, then start it */
John Youn34c08872017-01-17 20:31:43 -08001738 if (!ep->req)
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07001739 dwc2_gadget_start_next_request(ep);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001740 }
1741
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001742 break;
1743
1744 default:
1745 return -ENOENT;
1746 }
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001747 break;
1748 default:
1749 return -ENOENT;
1750 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001751 return 1;
1752}
1753
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001754static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg);
Robert Baldygaab93e012013-09-19 11:50:17 +02001755
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001756/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001757 * dwc2_hsotg_stall_ep0 - stall ep0
Robert Baldygac9f721b2014-01-14 08:36:00 +01001758 * @hsotg: The device state
1759 *
1760 * Set stall for ep0 as response for setup request.
1761 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001762static void dwc2_hsotg_stall_ep0(struct dwc2_hsotg *hsotg)
Jingoo Hane9ebe7c2014-06-03 22:14:56 +09001763{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001764 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
Robert Baldygac9f721b2014-01-14 08:36:00 +01001765 u32 reg;
1766 u32 ctrl;
1767
1768 dev_dbg(hsotg->dev, "ep0 stall (dir=%d)\n", ep0->dir_in);
1769 reg = (ep0->dir_in) ? DIEPCTL0 : DOEPCTL0;
1770
1771 /*
1772 * DxEPCTL_Stall will be cleared by EP once it has
1773 * taken effect, so no need to clear later.
1774 */
1775
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001776 ctrl = dwc2_readl(hsotg->regs + reg);
Dinh Nguyen47a16852014-04-14 14:13:34 -07001777 ctrl |= DXEPCTL_STALL;
1778 ctrl |= DXEPCTL_CNAK;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001779 dwc2_writel(ctrl, hsotg->regs + reg);
Robert Baldygac9f721b2014-01-14 08:36:00 +01001780
1781 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -07001782 "written DXEPCTL=0x%08x to %08x (DXEPCTL=0x%08x)\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001783 ctrl, reg, dwc2_readl(hsotg->regs + reg));
Robert Baldygac9f721b2014-01-14 08:36:00 +01001784
1785 /*
1786 * complete won't be called, so we enqueue
1787 * setup request here
1788 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001789 dwc2_hsotg_enqueue_setup(hsotg);
Robert Baldygac9f721b2014-01-14 08:36:00 +01001790}
1791
1792/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001793 * dwc2_hsotg_process_control - process a control request
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001794 * @hsotg: The device state
1795 * @ctrl: The control request received
1796 *
1797 * The controller has received the SETUP phase of a control request, and
1798 * needs to work out what to do next (and whether to pass it on to the
1799 * gadget driver).
1800 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001801static void dwc2_hsotg_process_control(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001802 struct usb_ctrlrequest *ctrl)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001803{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001804 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001805 int ret = 0;
1806 u32 dcfg;
1807
Mian Yousaf Kaukabe525e742015-09-29 12:08:23 +02001808 dev_dbg(hsotg->dev,
1809 "ctrl Type=%02x, Req=%02x, V=%04x, I=%04x, L=%04x\n",
1810 ctrl->bRequestType, ctrl->bRequest, ctrl->wValue,
1811 ctrl->wIndex, ctrl->wLength);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001812
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001813 if (ctrl->wLength == 0) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001814 ep0->dir_in = 1;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001815 hsotg->ep0_state = DWC2_EP0_STATUS_IN;
1816 } else if (ctrl->bRequestType & USB_DIR_IN) {
1817 ep0->dir_in = 1;
1818 hsotg->ep0_state = DWC2_EP0_DATA_IN;
1819 } else {
1820 ep0->dir_in = 0;
1821 hsotg->ep0_state = DWC2_EP0_DATA_OUT;
1822 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001823
1824 if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
1825 switch (ctrl->bRequest) {
1826 case USB_REQ_SET_ADDRESS:
Mian Yousaf Kaukab6d713c12015-01-09 13:39:10 +01001827 hsotg->connected = 1;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001828 dcfg = dwc2_readl(hsotg->regs + DCFG);
Dinh Nguyen47a16852014-04-14 14:13:34 -07001829 dcfg &= ~DCFG_DEVADDR_MASK;
Paul Zimmermand5dbd3f2014-04-25 14:18:13 -07001830 dcfg |= (le16_to_cpu(ctrl->wValue) <<
1831 DCFG_DEVADDR_SHIFT) & DCFG_DEVADDR_MASK;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001832 dwc2_writel(dcfg, hsotg->regs + DCFG);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001833
1834 dev_info(hsotg->dev, "new address %d\n", ctrl->wValue);
1835
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001836 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001837 return;
1838
1839 case USB_REQ_GET_STATUS:
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001840 ret = dwc2_hsotg_process_req_status(hsotg, ctrl);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001841 break;
1842
1843 case USB_REQ_CLEAR_FEATURE:
1844 case USB_REQ_SET_FEATURE:
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001845 ret = dwc2_hsotg_process_req_feature(hsotg, ctrl);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001846 break;
1847 }
1848 }
1849
1850 /* as a fallback, try delivering it to the driver to deal with */
1851
1852 if (ret == 0 && hsotg->driver) {
Robert Baldyga93f599f2013-11-21 13:49:17 +01001853 spin_unlock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001854 ret = hsotg->driver->setup(&hsotg->gadget, ctrl);
Robert Baldyga93f599f2013-11-21 13:49:17 +01001855 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001856 if (ret < 0)
1857 dev_dbg(hsotg->dev, "driver->setup() ret %d\n", ret);
1858 }
1859
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001860 /*
1861 * the request is either unhandlable, or is not formatted correctly
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001862 * so respond with a STALL for the status stage to indicate failure.
1863 */
1864
Robert Baldygac9f721b2014-01-14 08:36:00 +01001865 if (ret < 0)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001866 dwc2_hsotg_stall_ep0(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001867}
1868
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001869/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001870 * dwc2_hsotg_complete_setup - completion of a setup transfer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001871 * @ep: The endpoint the request was on.
1872 * @req: The request completed.
1873 *
1874 * Called on completion of any requests the driver itself submitted for
1875 * EP0 setup packets
1876 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001877static void dwc2_hsotg_complete_setup(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08001878 struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001879{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001880 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001881 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001882
1883 if (req->status < 0) {
1884 dev_dbg(hsotg->dev, "%s: failed %d\n", __func__, req->status);
1885 return;
1886 }
1887
Robert Baldyga93f599f2013-11-21 13:49:17 +01001888 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001889 if (req->actual == 0)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001890 dwc2_hsotg_enqueue_setup(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001891 else
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001892 dwc2_hsotg_process_control(hsotg, req->buf);
Robert Baldyga93f599f2013-11-21 13:49:17 +01001893 spin_unlock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001894}
1895
1896/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001897 * dwc2_hsotg_enqueue_setup - start a request for EP0 packets
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001898 * @hsotg: The device state.
1899 *
1900 * Enqueue a request on EP0 if necessary to received any SETUP packets
1901 * received from the host.
1902 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001903static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001904{
1905 struct usb_request *req = hsotg->ctrl_req;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001906 struct dwc2_hsotg_req *hs_req = our_req(req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001907 int ret;
1908
1909 dev_dbg(hsotg->dev, "%s: queueing setup request\n", __func__);
1910
1911 req->zero = 0;
1912 req->length = 8;
1913 req->buf = hsotg->ctrl_buff;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001914 req->complete = dwc2_hsotg_complete_setup;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001915
1916 if (!list_empty(&hs_req->queue)) {
1917 dev_dbg(hsotg->dev, "%s already queued???\n", __func__);
1918 return;
1919 }
1920
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001921 hsotg->eps_out[0]->dir_in = 0;
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01001922 hsotg->eps_out[0]->send_zlp = 0;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001923 hsotg->ep0_state = DWC2_EP0_SETUP;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001924
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001925 ret = dwc2_hsotg_ep_queue(&hsotg->eps_out[0]->ep, req, GFP_ATOMIC);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001926 if (ret < 0) {
1927 dev_err(hsotg->dev, "%s: failed queue (%d)\n", __func__, ret);
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001928 /*
1929 * Don't think there's much we can do other than watch the
1930 * driver fail.
1931 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001932 }
1933}
1934
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001935static void dwc2_hsotg_program_zlp(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001936 struct dwc2_hsotg_ep *hs_ep)
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001937{
1938 u32 ctrl;
1939 u8 index = hs_ep->index;
1940 u32 epctl_reg = hs_ep->dir_in ? DIEPCTL(index) : DOEPCTL(index);
1941 u32 epsiz_reg = hs_ep->dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
1942
Mian Yousaf Kaukabccb34a92015-01-30 09:09:34 +01001943 if (hs_ep->dir_in)
1944 dev_dbg(hsotg->dev, "Sending zero-length packet on ep%d\n",
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08001945 index);
Mian Yousaf Kaukabccb34a92015-01-30 09:09:34 +01001946 else
1947 dev_dbg(hsotg->dev, "Receiving zero-length packet on ep%d\n",
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08001948 index);
1949 if (using_desc_dma(hsotg)) {
1950 /* Not specific buffer needed for ep0 ZLP */
1951 dma_addr_t dma = hs_ep->desc_list_dma;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001952
Minas Harutyunyan201ec562018-01-16 16:03:32 +04001953 if (!index)
1954 dwc2_gadget_set_ep0_desc_chain(hsotg, hs_ep);
1955
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08001956 dwc2_gadget_config_nonisoc_xfer_ddma(hs_ep, dma, 0);
1957 } else {
1958 dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
1959 DXEPTSIZ_XFERSIZE(0), hsotg->regs +
1960 epsiz_reg);
1961 }
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001962
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001963 ctrl = dwc2_readl(hsotg->regs + epctl_reg);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001964 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
1965 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
1966 ctrl |= DXEPCTL_USBACTEP;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03001967 dwc2_writel(ctrl, hsotg->regs + epctl_reg);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001968}
1969
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001970/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001971 * dwc2_hsotg_complete_request - complete a request given to us
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001972 * @hsotg: The device state.
1973 * @hs_ep: The endpoint the request was on.
1974 * @hs_req: The request to complete.
1975 * @result: The result code (0 => Ok, otherwise errno)
1976 *
1977 * The given request has finished, so call the necessary completion
1978 * if it has one and then look to see if we can start a new request
1979 * on the endpoint.
1980 *
1981 * Note, expects the ep to already be locked as appropriate.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001982 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001983static void dwc2_hsotg_complete_request(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001984 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001985 struct dwc2_hsotg_req *hs_req,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001986 int result)
1987{
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001988 if (!hs_req) {
1989 dev_dbg(hsotg->dev, "%s: nothing to complete?\n", __func__);
1990 return;
1991 }
1992
1993 dev_dbg(hsotg->dev, "complete: ep %p %s, req %p, %d => %p\n",
1994 hs_ep, hs_ep->ep.name, hs_req, result, hs_req->req.complete);
1995
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001996 /*
1997 * only replace the status if we've not already set an error
1998 * from a previous transaction
1999 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002000
2001 if (hs_req->req.status == -EINPROGRESS)
2002 hs_req->req.status = result;
2003
Yunzhi Li44583fe2015-09-29 12:25:01 +02002004 if (using_dma(hsotg))
2005 dwc2_hsotg_unmap_dma(hsotg, hs_ep, hs_req);
2006
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002007 dwc2_hsotg_handle_unaligned_buf_complete(hsotg, hs_ep, hs_req);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01002008
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002009 hs_ep->req = NULL;
2010 list_del_init(&hs_req->queue);
2011
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002012 /*
2013 * call the complete request with the locks off, just in case the
2014 * request tries to queue more work for this endpoint.
2015 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002016
2017 if (hs_req->req.complete) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02002018 spin_unlock(&hsotg->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02002019 usb_gadget_giveback_request(&hs_ep->ep, &hs_req->req);
Lukasz Majewski22258f42012-06-14 10:02:24 +02002020 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002021 }
2022
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002023 /* In DDMA don't need to proceed to starting of next ISOC request */
2024 if (using_desc_dma(hsotg) && hs_ep->isochronous)
2025 return;
2026
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002027 /*
2028 * Look to see if there is anything else to do. Note, the completion
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002029 * of the previous request may have caused a new request to be started
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002030 * so be careful when doing this.
2031 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002032
John Youn34c08872017-01-17 20:31:43 -08002033 if (!hs_ep->req && result >= 0)
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07002034 dwc2_gadget_start_next_request(hs_ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002035}
2036
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002037/*
2038 * dwc2_gadget_complete_isoc_request_ddma - complete an isoc request in DDMA
2039 * @hs_ep: The endpoint the request was on.
2040 *
2041 * Get first request from the ep queue, determine descriptor on which complete
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002042 * happened. SW discovers which descriptor currently in use by HW, adjusts
2043 * dma_address and calculates index of completed descriptor based on the value
2044 * of DEPDMA register. Update actual length of request, giveback to gadget.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002045 */
2046static void dwc2_gadget_complete_isoc_request_ddma(struct dwc2_hsotg_ep *hs_ep)
2047{
2048 struct dwc2_hsotg *hsotg = hs_ep->parent;
2049 struct dwc2_hsotg_req *hs_req;
2050 struct usb_request *ureq;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002051 u32 desc_sts;
2052 u32 mask;
2053
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002054 desc_sts = hs_ep->desc_list[hs_ep->compl_desc].status;
2055
2056 /* Process only descriptors with buffer status set to DMA done */
2057 while ((desc_sts & DEV_DMA_BUFF_STS_MASK) >>
2058 DEV_DMA_BUFF_STS_SHIFT == DEV_DMA_BUFF_STS_DMADONE) {
2059
2060 hs_req = get_ep_head(hs_ep);
2061 if (!hs_req) {
2062 dev_warn(hsotg->dev, "%s: ISOC EP queue empty\n", __func__);
2063 return;
2064 }
2065 ureq = &hs_req->req;
2066
2067 /* Check completion status */
2068 if ((desc_sts & DEV_DMA_STS_MASK) >> DEV_DMA_STS_SHIFT ==
2069 DEV_DMA_STS_SUCC) {
2070 mask = hs_ep->dir_in ? DEV_DMA_ISOC_TX_NBYTES_MASK :
2071 DEV_DMA_ISOC_RX_NBYTES_MASK;
2072 ureq->actual = ureq->length - ((desc_sts & mask) >>
2073 DEV_DMA_ISOC_NBYTES_SHIFT);
2074
2075 /* Adjust actual len for ISOC Out if len is
2076 * not align of 4
2077 */
2078 if (!hs_ep->dir_in && ureq->length & 0x3)
2079 ureq->actual += 4 - (ureq->length & 0x3);
2080 }
2081
2082 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
2083
2084 hs_ep->compl_desc++;
2085 if (hs_ep->compl_desc > (MAX_DMA_DESC_NUM_GENERIC - 1))
2086 hs_ep->compl_desc = 0;
2087 desc_sts = hs_ep->desc_list[hs_ep->compl_desc].status;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002088 }
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002089}
2090
2091/*
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002092 * dwc2_gadget_handle_isoc_bna - handle BNA interrupt for ISOC.
2093 * @hs_ep: The isochronous endpoint.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002094 *
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002095 * If EP ISOC OUT then need to flush RX FIFO to remove source of BNA
2096 * interrupt. Reset target frame and next_desc to allow to start
2097 * ISOC's on NAK interrupt for IN direction or on OUTTKNEPDIS
2098 * interrupt for OUT direction.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002099 */
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002100static void dwc2_gadget_handle_isoc_bna(struct dwc2_hsotg_ep *hs_ep)
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002101{
2102 struct dwc2_hsotg *hsotg = hs_ep->parent;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002103
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002104 if (!hs_ep->dir_in)
2105 dwc2_flush_rx_fifo(hsotg);
2106 dwc2_hsotg_complete_request(hsotg, hs_ep, get_ep_head(hs_ep), 0);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002107
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002108 hs_ep->target_frame = TARGET_FRAME_INITIAL;
2109 hs_ep->next_desc = 0;
2110 hs_ep->compl_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002111}
2112
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002113/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002114 * dwc2_hsotg_rx_data - receive data from the FIFO for an endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002115 * @hsotg: The device state.
2116 * @ep_idx: The endpoint index for the data
2117 * @size: The size of data in the fifo, in bytes
2118 *
2119 * The FIFO status shows there is data to read from the FIFO for a given
2120 * endpoint, so sort out whether we need to read the data into a request
2121 * that has been made for that endpoint.
2122 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002123static void dwc2_hsotg_rx_data(struct dwc2_hsotg *hsotg, int ep_idx, int size)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002124{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002125 struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[ep_idx];
2126 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002127 void __iomem *fifo = hsotg->regs + EPFIFO(ep_idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002128 int to_read;
2129 int max_req;
2130 int read_ptr;
2131
2132 if (!hs_req) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002133 u32 epctl = dwc2_readl(hsotg->regs + DOEPCTL(ep_idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002134 int ptr;
2135
Robert Baldyga6b448af2014-12-16 11:51:44 +01002136 dev_dbg(hsotg->dev,
John Youn9da51972017-01-17 20:30:27 -08002137 "%s: FIFO %d bytes on ep%d but no req (DXEPCTl=0x%08x)\n",
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002138 __func__, size, ep_idx, epctl);
2139
2140 /* dump the data from the FIFO, we've nothing we can do */
2141 for (ptr = 0; ptr < size; ptr += 4)
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002142 (void)dwc2_readl(fifo);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002143
2144 return;
2145 }
2146
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002147 to_read = size;
2148 read_ptr = hs_req->req.actual;
2149 max_req = hs_req->req.length - read_ptr;
2150
Ben Dooksa33e7132010-07-19 09:40:49 +01002151 dev_dbg(hsotg->dev, "%s: read %d/%d, done %d/%d\n",
2152 __func__, to_read, max_req, read_ptr, hs_req->req.length);
2153
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002154 if (to_read > max_req) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002155 /*
2156 * more data appeared than we where willing
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002157 * to deal with in this request.
2158 */
2159
2160 /* currently we don't deal this */
2161 WARN_ON_ONCE(1);
2162 }
2163
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002164 hs_ep->total_data += to_read;
2165 hs_req->req.actual += to_read;
2166 to_read = DIV_ROUND_UP(to_read, 4);
2167
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002168 /*
2169 * note, we might over-write the buffer end by 3 bytes depending on
2170 * alignment of the data.
2171 */
Matt Porter1a7ed5b2014-02-03 10:29:09 -05002172 ioread32_rep(fifo, hs_req->req.buf + read_ptr, to_read);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002173}
2174
2175/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002176 * dwc2_hsotg_ep0_zlp - send/receive zero-length packet on control endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002177 * @hsotg: The device instance
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002178 * @dir_in: If IN zlp
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002179 *
2180 * Generate a zero-length IN packet request for terminating a SETUP
2181 * transaction.
2182 *
2183 * Note, since we don't write any data to the TxFIFO, then it is
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002184 * currently believed that we do not need to wait for any space in
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002185 * the TxFIFO.
2186 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002187static void dwc2_hsotg_ep0_zlp(struct dwc2_hsotg *hsotg, bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002188{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002189 /* eps_out[0] is used in both directions */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002190 hsotg->eps_out[0]->dir_in = dir_in;
2191 hsotg->ep0_state = dir_in ? DWC2_EP0_STATUS_IN : DWC2_EP0_STATUS_OUT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002192
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002193 dwc2_hsotg_program_zlp(hsotg, hsotg->eps_out[0]);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002194}
2195
Roman Bacikec1f9d92015-09-10 18:13:43 -07002196static void dwc2_hsotg_change_ep_iso_parity(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002197 u32 epctl_reg)
Roman Bacikec1f9d92015-09-10 18:13:43 -07002198{
2199 u32 ctrl;
2200
2201 ctrl = dwc2_readl(hsotg->regs + epctl_reg);
2202 if (ctrl & DXEPCTL_EOFRNUM)
2203 ctrl |= DXEPCTL_SETEVENFR;
2204 else
2205 ctrl |= DXEPCTL_SETODDFR;
2206 dwc2_writel(ctrl, hsotg->regs + epctl_reg);
2207}
2208
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08002209/*
2210 * dwc2_gadget_get_xfersize_ddma - get transferred bytes amount from desc
2211 * @hs_ep - The endpoint on which transfer went
2212 *
2213 * Iterate over endpoints descriptor chain and get info on bytes remained
2214 * in DMA descriptors after transfer has completed. Used for non isoc EPs.
2215 */
2216static unsigned int dwc2_gadget_get_xfersize_ddma(struct dwc2_hsotg_ep *hs_ep)
2217{
2218 struct dwc2_hsotg *hsotg = hs_ep->parent;
2219 unsigned int bytes_rem = 0;
2220 struct dwc2_dma_desc *desc = hs_ep->desc_list;
2221 int i;
2222 u32 status;
2223
2224 if (!desc)
2225 return -EINVAL;
2226
2227 for (i = 0; i < hs_ep->desc_count; ++i) {
2228 status = desc->status;
2229 bytes_rem += status & DEV_DMA_NBYTES_MASK;
2230
2231 if (status & DEV_DMA_STS_MASK)
2232 dev_err(hsotg->dev, "descriptor %d closed with %x\n",
2233 i, status & DEV_DMA_STS_MASK);
2234 }
2235
2236 return bytes_rem;
2237}
2238
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002239/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002240 * dwc2_hsotg_handle_outdone - handle receiving OutDone/SetupDone from RXFIFO
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002241 * @hsotg: The device instance
2242 * @epnum: The endpoint received from
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002243 *
2244 * The RXFIFO has delivered an OutDone event, which means that the data
2245 * transfer for an OUT endpoint has been completed, either by a short
2246 * packet or by the finish of a transfer.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002247 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002248static void dwc2_hsotg_handle_outdone(struct dwc2_hsotg *hsotg, int epnum)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002249{
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002250 u32 epsize = dwc2_readl(hsotg->regs + DOEPTSIZ(epnum));
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002251 struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[epnum];
2252 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002253 struct usb_request *req = &hs_req->req;
John Youn9da51972017-01-17 20:30:27 -08002254 unsigned int size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002255 int result = 0;
2256
2257 if (!hs_req) {
2258 dev_dbg(hsotg->dev, "%s: no request active\n", __func__);
2259 return;
2260 }
2261
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002262 if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_OUT) {
2263 dev_dbg(hsotg->dev, "zlp packet received\n");
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002264 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
2265 dwc2_hsotg_enqueue_setup(hsotg);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002266 return;
2267 }
2268
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08002269 if (using_desc_dma(hsotg))
2270 size_left = dwc2_gadget_get_xfersize_ddma(hs_ep);
2271
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002272 if (using_dma(hsotg)) {
John Youn9da51972017-01-17 20:30:27 -08002273 unsigned int size_done;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002274
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002275 /*
2276 * Calculate the size of the transfer by checking how much
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002277 * is left in the endpoint size register and then working it
2278 * out from the amount we loaded for the transfer.
2279 *
2280 * We need to do this as DMA pointers are always 32bit aligned
2281 * so may overshoot/undershoot the transfer.
2282 */
2283
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002284 size_done = hs_ep->size_loaded - size_left;
2285 size_done += hs_ep->last_load;
2286
2287 req->actual = size_done;
2288 }
2289
Ben Dooksa33e7132010-07-19 09:40:49 +01002290 /* if there is more request to do, schedule new transfer */
2291 if (req->actual < req->length && size_left == 0) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002292 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true);
Ben Dooksa33e7132010-07-19 09:40:49 +01002293 return;
2294 }
2295
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002296 if (req->actual < req->length && req->short_not_ok) {
2297 dev_dbg(hsotg->dev, "%s: got %d/%d (short not ok) => error\n",
2298 __func__, req->actual, req->length);
2299
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002300 /*
2301 * todo - what should we return here? there's no one else
2302 * even bothering to check the status.
2303 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002304 }
2305
Vahram Aharonyanef750c72016-11-14 19:16:31 -08002306 /* DDMA IN status phase will start from StsPhseRcvd interrupt */
2307 if (!using_desc_dma(hsotg) && epnum == 0 &&
2308 hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002309 /* Move to STATUS IN */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002310 dwc2_hsotg_ep0_zlp(hsotg, true);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002311 return;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002312 }
2313
Roman Bacikec1f9d92015-09-10 18:13:43 -07002314 /*
2315 * Slave mode OUT transfers do not go through XferComplete so
2316 * adjust the ISOC parity here.
2317 */
2318 if (!using_dma(hsotg)) {
Roman Bacikec1f9d92015-09-10 18:13:43 -07002319 if (hs_ep->isochronous && hs_ep->interval == 1)
2320 dwc2_hsotg_change_ep_iso_parity(hsotg, DOEPCTL(epnum));
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07002321 else if (hs_ep->isochronous && hs_ep->interval > 1)
2322 dwc2_gadget_incr_frame_num(hs_ep);
Roman Bacikec1f9d92015-09-10 18:13:43 -07002323 }
2324
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002325 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, result);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002326}
2327
2328/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002329 * dwc2_hsotg_handle_rx - RX FIFO has data
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002330 * @hsotg: The device instance
2331 *
2332 * The IRQ handler has detected that the RX FIFO has some data in it
2333 * that requires processing, so find out what is in there and do the
2334 * appropriate read.
2335 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002336 * The RXFIFO is a true FIFO, the packets coming out are still in packet
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002337 * chunks, so if you have x packets received on an endpoint you'll get x
2338 * FIFO events delivered, each with a packet's worth of data in it.
2339 *
2340 * When using DMA, we should not be processing events from the RXFIFO
2341 * as the actual data should be sent to the memory directly and we turn
2342 * on the completion interrupts to get notifications of transfer completion.
2343 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002344static void dwc2_hsotg_handle_rx(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002345{
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002346 u32 grxstsr = dwc2_readl(hsotg->regs + GRXSTSP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002347 u32 epnum, status, size;
2348
2349 WARN_ON(using_dma(hsotg));
2350
Dinh Nguyen47a16852014-04-14 14:13:34 -07002351 epnum = grxstsr & GRXSTS_EPNUM_MASK;
2352 status = grxstsr & GRXSTS_PKTSTS_MASK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002353
Dinh Nguyen47a16852014-04-14 14:13:34 -07002354 size = grxstsr & GRXSTS_BYTECNT_MASK;
2355 size >>= GRXSTS_BYTECNT_SHIFT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002356
Mian Yousaf Kaukabd7c747c2015-01-30 09:09:30 +01002357 dev_dbg(hsotg->dev, "%s: GRXSTSP=0x%08x (%d@%d)\n",
John Youn9da51972017-01-17 20:30:27 -08002358 __func__, grxstsr, size, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002359
Dinh Nguyen47a16852014-04-14 14:13:34 -07002360 switch ((status & GRXSTS_PKTSTS_MASK) >> GRXSTS_PKTSTS_SHIFT) {
2361 case GRXSTS_PKTSTS_GLOBALOUTNAK:
2362 dev_dbg(hsotg->dev, "GLOBALOUTNAK\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002363 break;
2364
Dinh Nguyen47a16852014-04-14 14:13:34 -07002365 case GRXSTS_PKTSTS_OUTDONE:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002366 dev_dbg(hsotg->dev, "OutDone (Frame=0x%08x)\n",
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002367 dwc2_hsotg_read_frameno(hsotg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002368
2369 if (!using_dma(hsotg))
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002370 dwc2_hsotg_handle_outdone(hsotg, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002371 break;
2372
Dinh Nguyen47a16852014-04-14 14:13:34 -07002373 case GRXSTS_PKTSTS_SETUPDONE:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002374 dev_dbg(hsotg->dev,
2375 "SetupDone (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002376 dwc2_hsotg_read_frameno(hsotg),
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002377 dwc2_readl(hsotg->regs + DOEPCTL(0)));
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002378 /*
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002379 * Call dwc2_hsotg_handle_outdone here if it was not called from
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002380 * GRXSTS_PKTSTS_OUTDONE. That is, if the core didn't
2381 * generate GRXSTS_PKTSTS_OUTDONE for setup packet.
2382 */
2383 if (hsotg->ep0_state == DWC2_EP0_SETUP)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002384 dwc2_hsotg_handle_outdone(hsotg, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002385 break;
2386
Dinh Nguyen47a16852014-04-14 14:13:34 -07002387 case GRXSTS_PKTSTS_OUTRX:
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002388 dwc2_hsotg_rx_data(hsotg, epnum, size);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002389 break;
2390
Dinh Nguyen47a16852014-04-14 14:13:34 -07002391 case GRXSTS_PKTSTS_SETUPRX:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002392 dev_dbg(hsotg->dev,
2393 "SetupRX (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002394 dwc2_hsotg_read_frameno(hsotg),
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002395 dwc2_readl(hsotg->regs + DOEPCTL(0)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002396
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002397 WARN_ON(hsotg->ep0_state != DWC2_EP0_SETUP);
2398
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002399 dwc2_hsotg_rx_data(hsotg, epnum, size);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002400 break;
2401
2402 default:
2403 dev_warn(hsotg->dev, "%s: unknown status %08x\n",
2404 __func__, grxstsr);
2405
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002406 dwc2_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002407 break;
2408 }
2409}
2410
2411/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002412 * dwc2_hsotg_ep0_mps - turn max packet size into register setting
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002413 * @mps: The maximum packet size in bytes.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002414 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002415static u32 dwc2_hsotg_ep0_mps(unsigned int mps)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002416{
2417 switch (mps) {
2418 case 64:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002419 return D0EPCTL_MPS_64;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002420 case 32:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002421 return D0EPCTL_MPS_32;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002422 case 16:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002423 return D0EPCTL_MPS_16;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002424 case 8:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002425 return D0EPCTL_MPS_8;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002426 }
2427
2428 /* bad max packet size, warn and return invalid result */
2429 WARN_ON(1);
2430 return (u32)-1;
2431}
2432
2433/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002434 * dwc2_hsotg_set_ep_maxpacket - set endpoint's max-packet field
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002435 * @hsotg: The driver state.
2436 * @ep: The index number of the endpoint
2437 * @mps: The maximum packet size in bytes
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002438 * @mc: The multicount value
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04002439 * @dir_in: True if direction is in.
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002440 *
2441 * Configure the maximum packet size for the given endpoint, updating
2442 * the hardware control registers to reflect this.
2443 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002444static void dwc2_hsotg_set_ep_maxpacket(struct dwc2_hsotg *hsotg,
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002445 unsigned int ep, unsigned int mps,
2446 unsigned int mc, unsigned int dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002447{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002448 struct dwc2_hsotg_ep *hs_ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002449 void __iomem *regs = hsotg->regs;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002450 u32 reg;
2451
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002452 hs_ep = index_to_ep(hsotg, ep, dir_in);
2453 if (!hs_ep)
2454 return;
2455
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002456 if (ep == 0) {
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002457 u32 mps_bytes = mps;
2458
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002459 /* EP0 is a special case */
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002460 mps = dwc2_hsotg_ep0_mps(mps_bytes);
2461 if (mps > 3)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002462 goto bad_mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002463 hs_ep->ep.maxpacket = mps_bytes;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02002464 hs_ep->mc = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002465 } else {
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002466 if (mps > 1024)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002467 goto bad_mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002468 hs_ep->mc = mc;
2469 if (mc > 3)
Robert Baldyga4fca54a2013-10-09 09:00:02 +02002470 goto bad_mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002471 hs_ep->ep.maxpacket = mps;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002472 }
2473
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002474 if (dir_in) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002475 reg = dwc2_readl(regs + DIEPCTL(ep));
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002476 reg &= ~DXEPCTL_MPS_MASK;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002477 reg |= mps;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002478 dwc2_writel(reg, regs + DIEPCTL(ep));
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002479 } else {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002480 reg = dwc2_readl(regs + DOEPCTL(ep));
Dinh Nguyen47a16852014-04-14 14:13:34 -07002481 reg &= ~DXEPCTL_MPS_MASK;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002482 reg |= mps;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002483 dwc2_writel(reg, regs + DOEPCTL(ep));
Anton Tikhomirov659ad602012-03-06 14:07:29 +09002484 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002485
2486 return;
2487
2488bad_mps:
2489 dev_err(hsotg->dev, "ep%d: bad mps of %d\n", ep, mps);
2490}
2491
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002492/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002493 * dwc2_hsotg_txfifo_flush - flush Tx FIFO
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002494 * @hsotg: The driver state
2495 * @idx: The index for the endpoint (0..15)
2496 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002497static void dwc2_hsotg_txfifo_flush(struct dwc2_hsotg *hsotg, unsigned int idx)
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002498{
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002499 dwc2_writel(GRSTCTL_TXFNUM(idx) | GRSTCTL_TXFFLSH,
2500 hsotg->regs + GRSTCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002501
2502 /* wait until the fifo is flushed */
Sevak Arakelyan79d6b8c2018-01-19 14:39:31 +04002503 if (dwc2_hsotg_wait_bit_clear(hsotg, GRSTCTL, GRSTCTL_TXFFLSH, 100))
2504 dev_warn(hsotg->dev, "%s: timeout flushing fifo GRSTCTL_TXFFLSH\n",
2505 __func__);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002506}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002507
2508/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002509 * dwc2_hsotg_trytx - check to see if anything needs transmitting
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002510 * @hsotg: The driver state
2511 * @hs_ep: The driver endpoint to check.
2512 *
2513 * Check to see if there is a request that has data to send, and if so
2514 * make an attempt to write data into the FIFO.
2515 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002516static int dwc2_hsotg_trytx(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002517 struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002518{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002519 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002520
Robert Baldygaafcf4162013-09-19 11:50:19 +02002521 if (!hs_ep->dir_in || !hs_req) {
2522 /**
2523 * if request is not enqueued, we disable interrupts
2524 * for endpoints, excepting ep0
2525 */
2526 if (hs_ep->index != 0)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002527 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index,
John Youn9da51972017-01-17 20:30:27 -08002528 hs_ep->dir_in, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002529 return 0;
Robert Baldygaafcf4162013-09-19 11:50:19 +02002530 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002531
2532 if (hs_req->req.actual < hs_req->req.length) {
2533 dev_dbg(hsotg->dev, "trying to write more for ep%d\n",
2534 hs_ep->index);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002535 return dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002536 }
2537
2538 return 0;
2539}
2540
2541/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002542 * dwc2_hsotg_complete_in - complete IN transfer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002543 * @hsotg: The device state.
2544 * @hs_ep: The endpoint that has just completed.
2545 *
2546 * An IN transfer has been completed, update the transfer's state and then
2547 * call the relevant completion routines.
2548 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002549static void dwc2_hsotg_complete_in(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002550 struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002551{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002552 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002553 u32 epsize = dwc2_readl(hsotg->regs + DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002554 int size_left, size_done;
2555
2556 if (!hs_req) {
2557 dev_dbg(hsotg->dev, "XferCompl but no req\n");
2558 return;
2559 }
2560
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02002561 /* Finish ZLP handling for IN EP0 transactions */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002562 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_IN) {
2563 dev_dbg(hsotg->dev, "zlp packet sent\n");
Razmik Karapetyanc3b22fe2016-11-16 15:33:57 -08002564
2565 /*
2566 * While send zlp for DWC2_EP0_STATUS_IN EP direction was
2567 * changed to IN. Change back to complete OUT transfer request
2568 */
2569 hs_ep->dir_in = 0;
2570
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002571 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01002572 if (hsotg->test_mode) {
2573 int ret;
2574
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002575 ret = dwc2_hsotg_set_test_mode(hsotg, hsotg->test_mode);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01002576 if (ret < 0) {
2577 dev_dbg(hsotg->dev, "Invalid Test #%d\n",
John Youn9da51972017-01-17 20:30:27 -08002578 hsotg->test_mode);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002579 dwc2_hsotg_stall_ep0(hsotg);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01002580 return;
2581 }
2582 }
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002583 dwc2_hsotg_enqueue_setup(hsotg);
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02002584 return;
2585 }
2586
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002587 /*
2588 * Calculate the size of the transfer by checking how much is left
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002589 * in the endpoint size register and then working it out from
2590 * the amount we loaded for the transfer.
2591 *
2592 * We do this even for DMA, as the transfer may have incremented
2593 * past the end of the buffer (DMA transfers are always 32bit
2594 * aligned).
2595 */
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08002596 if (using_desc_dma(hsotg)) {
2597 size_left = dwc2_gadget_get_xfersize_ddma(hs_ep);
2598 if (size_left < 0)
2599 dev_err(hsotg->dev, "error parsing DDMA results %d\n",
2600 size_left);
2601 } else {
2602 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
2603 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002604
2605 size_done = hs_ep->size_loaded - size_left;
2606 size_done += hs_ep->last_load;
2607
2608 if (hs_req->req.actual != size_done)
2609 dev_dbg(hsotg->dev, "%s: adjusting size done %d => %d\n",
2610 __func__, hs_req->req.actual, size_done);
2611
2612 hs_req->req.actual = size_done;
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02002613 dev_dbg(hsotg->dev, "req->length:%d req->actual:%d req->zero:%d\n",
2614 hs_req->req.length, hs_req->req.actual, hs_req->req.zero);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002615
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002616 if (!size_left && hs_req->req.actual < hs_req->req.length) {
2617 dev_dbg(hsotg->dev, "%s trying more for req...\n", __func__);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002618 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002619 return;
2620 }
2621
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01002622 /* Zlp for all endpoints, for ep0 only in DATA IN stage */
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01002623 if (hs_ep->send_zlp) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002624 dwc2_hsotg_program_zlp(hsotg, hs_ep);
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01002625 hs_ep->send_zlp = 0;
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01002626 /* transfer will be completed on next complete interrupt */
2627 return;
2628 }
2629
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002630 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_DATA_IN) {
2631 /* Move to STATUS OUT */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002632 dwc2_hsotg_ep0_zlp(hsotg, false);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002633 return;
2634 }
2635
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002636 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002637}
2638
2639/**
Vardan Mikayelyan32601582016-05-25 18:07:10 -07002640 * dwc2_gadget_read_ep_interrupts - reads interrupts for given ep
2641 * @hsotg: The device state.
2642 * @idx: Index of ep.
2643 * @dir_in: Endpoint direction 1-in 0-out.
2644 *
2645 * Reads for endpoint with given index and direction, by masking
2646 * epint_reg with coresponding mask.
2647 */
2648static u32 dwc2_gadget_read_ep_interrupts(struct dwc2_hsotg *hsotg,
2649 unsigned int idx, int dir_in)
2650{
2651 u32 epmsk_reg = dir_in ? DIEPMSK : DOEPMSK;
2652 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
2653 u32 ints;
2654 u32 mask;
2655 u32 diepempmsk;
2656
2657 mask = dwc2_readl(hsotg->regs + epmsk_reg);
2658 diepempmsk = dwc2_readl(hsotg->regs + DIEPEMPMSK);
2659 mask |= ((diepempmsk >> idx) & 0x1) ? DIEPMSK_TXFIFOEMPTY : 0;
2660 mask |= DXEPINT_SETUP_RCVD;
2661
2662 ints = dwc2_readl(hsotg->regs + epint_reg);
2663 ints &= mask;
2664 return ints;
2665}
2666
2667/**
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002668 * dwc2_gadget_handle_ep_disabled - handle DXEPINT_EPDISBLD
2669 * @hs_ep: The endpoint on which interrupt is asserted.
2670 *
2671 * This interrupt indicates that the endpoint has been disabled per the
2672 * application's request.
2673 *
2674 * For IN endpoints flushes txfifo, in case of BULK clears DCTL_CGNPINNAK,
2675 * in case of ISOC completes current request.
2676 *
2677 * For ISOC-OUT endpoints completes expired requests. If there is remaining
2678 * request starts it.
2679 */
2680static void dwc2_gadget_handle_ep_disabled(struct dwc2_hsotg_ep *hs_ep)
2681{
2682 struct dwc2_hsotg *hsotg = hs_ep->parent;
2683 struct dwc2_hsotg_req *hs_req;
2684 unsigned char idx = hs_ep->index;
2685 int dir_in = hs_ep->dir_in;
2686 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
2687 int dctl = dwc2_readl(hsotg->regs + DCTL);
2688
2689 dev_dbg(hsotg->dev, "%s: EPDisbld\n", __func__);
2690
2691 if (dir_in) {
2692 int epctl = dwc2_readl(hsotg->regs + epctl_reg);
2693
2694 dwc2_hsotg_txfifo_flush(hsotg, hs_ep->fifo_index);
2695
2696 if (hs_ep->isochronous) {
2697 dwc2_hsotg_complete_in(hsotg, hs_ep);
2698 return;
2699 }
2700
2701 if ((epctl & DXEPCTL_STALL) && (epctl & DXEPCTL_EPTYPE_BULK)) {
2702 int dctl = dwc2_readl(hsotg->regs + DCTL);
2703
2704 dctl |= DCTL_CGNPINNAK;
2705 dwc2_writel(dctl, hsotg->regs + DCTL);
2706 }
2707 return;
2708 }
2709
2710 if (dctl & DCTL_GOUTNAKSTS) {
2711 dctl |= DCTL_CGOUTNAK;
2712 dwc2_writel(dctl, hsotg->regs + DCTL);
2713 }
2714
2715 if (!hs_ep->isochronous)
2716 return;
2717
2718 if (list_empty(&hs_ep->queue)) {
2719 dev_dbg(hsotg->dev, "%s: complete_ep 0x%p, ep->queue empty!\n",
2720 __func__, hs_ep);
2721 return;
2722 }
2723
2724 do {
2725 hs_req = get_ep_head(hs_ep);
2726 if (hs_req)
2727 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req,
2728 -ENODATA);
2729 dwc2_gadget_incr_frame_num(hs_ep);
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04002730 /* Update current frame number value. */
2731 hsotg->frame_number = dwc2_hsotg_read_frameno(hsotg);
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002732 } while (dwc2_gadget_target_frame_elapsed(hs_ep));
2733
2734 dwc2_gadget_start_next_request(hs_ep);
2735}
2736
2737/**
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002738 * dwc2_gadget_handle_out_token_ep_disabled - handle DXEPINT_OUTTKNEPDIS
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04002739 * @ep: The endpoint on which interrupt is asserted.
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002740 *
2741 * This is starting point for ISOC-OUT transfer, synchronization done with
2742 * first out token received from host while corresponding EP is disabled.
2743 *
2744 * Device does not know initial frame in which out token will come. For this
2745 * HW generates OUTTKNEPDIS - out token is received while EP is disabled. Upon
2746 * getting this interrupt SW starts calculation for next transfer frame.
2747 */
2748static void dwc2_gadget_handle_out_token_ep_disabled(struct dwc2_hsotg_ep *ep)
2749{
2750 struct dwc2_hsotg *hsotg = ep->parent;
2751 int dir_in = ep->dir_in;
2752 u32 doepmsk;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002753 u32 tmp;
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002754
2755 if (dir_in || !ep->isochronous)
2756 return;
2757
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002758 /*
2759 * Store frame in which irq was asserted here, as
2760 * it can change while completing request below.
2761 */
2762 tmp = dwc2_hsotg_read_frameno(hsotg);
2763
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002764 if (using_desc_dma(hsotg)) {
2765 if (ep->target_frame == TARGET_FRAME_INITIAL) {
2766 /* Start first ISO Out */
2767 ep->target_frame = tmp;
2768 dwc2_gadget_start_isoc_ddma(ep);
2769 }
2770 return;
2771 }
2772
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002773 if (ep->interval > 1 &&
2774 ep->target_frame == TARGET_FRAME_INITIAL) {
2775 u32 dsts;
2776 u32 ctrl;
2777
2778 dsts = dwc2_readl(hsotg->regs + DSTS);
2779 ep->target_frame = dwc2_hsotg_read_frameno(hsotg);
2780 dwc2_gadget_incr_frame_num(ep);
2781
2782 ctrl = dwc2_readl(hsotg->regs + DOEPCTL(ep->index));
2783 if (ep->target_frame & 0x1)
2784 ctrl |= DXEPCTL_SETODDFR;
2785 else
2786 ctrl |= DXEPCTL_SETEVENFR;
2787
2788 dwc2_writel(ctrl, hsotg->regs + DOEPCTL(ep->index));
2789 }
2790
2791 dwc2_gadget_start_next_request(ep);
2792 doepmsk = dwc2_readl(hsotg->regs + DOEPMSK);
2793 doepmsk &= ~DOEPMSK_OUTTKNEPDISMSK;
2794 dwc2_writel(doepmsk, hsotg->regs + DOEPMSK);
2795}
2796
2797/**
John Youn38beaec2017-01-17 20:31:13 -08002798 * dwc2_gadget_handle_nak - handle NAK interrupt
2799 * @hs_ep: The endpoint on which interrupt is asserted.
2800 *
2801 * This is starting point for ISOC-IN transfer, synchronization done with
2802 * first IN token received from host while corresponding EP is disabled.
2803 *
2804 * Device does not know when first one token will arrive from host. On first
2805 * token arrival HW generates 2 interrupts: 'in token received while FIFO empty'
2806 * and 'NAK'. NAK interrupt for ISOC-IN means that token has arrived and ZLP was
2807 * sent in response to that as there was no data in FIFO. SW is basing on this
2808 * interrupt to obtain frame in which token has come and then based on the
2809 * interval calculates next frame for transfer.
2810 */
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002811static void dwc2_gadget_handle_nak(struct dwc2_hsotg_ep *hs_ep)
2812{
2813 struct dwc2_hsotg *hsotg = hs_ep->parent;
2814 int dir_in = hs_ep->dir_in;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002815 u32 tmp;
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002816
2817 if (!dir_in || !hs_ep->isochronous)
2818 return;
2819
2820 if (hs_ep->target_frame == TARGET_FRAME_INITIAL) {
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002821
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002822 tmp = dwc2_hsotg_read_frameno(hsotg);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002823 if (using_desc_dma(hsotg)) {
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002824 hs_ep->target_frame = tmp;
2825 dwc2_gadget_incr_frame_num(hs_ep);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002826 dwc2_gadget_start_isoc_ddma(hs_ep);
2827 return;
2828 }
2829
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002830 hs_ep->target_frame = tmp;
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002831 if (hs_ep->interval > 1) {
2832 u32 ctrl = dwc2_readl(hsotg->regs +
2833 DIEPCTL(hs_ep->index));
2834 if (hs_ep->target_frame & 0x1)
2835 ctrl |= DXEPCTL_SETODDFR;
2836 else
2837 ctrl |= DXEPCTL_SETEVENFR;
2838
2839 dwc2_writel(ctrl, hsotg->regs + DIEPCTL(hs_ep->index));
2840 }
2841
2842 dwc2_hsotg_complete_request(hsotg, hs_ep,
2843 get_ep_head(hs_ep), 0);
2844 }
2845
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002846 if (!using_desc_dma(hsotg))
2847 dwc2_gadget_incr_frame_num(hs_ep);
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002848}
2849
2850/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002851 * dwc2_hsotg_epint - handle an in/out endpoint interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002852 * @hsotg: The driver state
2853 * @idx: The index for the endpoint (0..15)
2854 * @dir_in: Set if this is an IN endpoint
2855 *
2856 * Process and clear any interrupt pending for an individual endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002857 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002858static void dwc2_hsotg_epint(struct dwc2_hsotg *hsotg, unsigned int idx,
John Youn9da51972017-01-17 20:30:27 -08002859 int dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002860{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002861 struct dwc2_hsotg_ep *hs_ep = index_to_ep(hsotg, idx, dir_in);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002862 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
2863 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
2864 u32 epsiz_reg = dir_in ? DIEPTSIZ(idx) : DOEPTSIZ(idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002865 u32 ints;
Robert Baldyga1479e842013-10-09 08:41:57 +02002866 u32 ctrl;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002867
Vardan Mikayelyan32601582016-05-25 18:07:10 -07002868 ints = dwc2_gadget_read_ep_interrupts(hsotg, idx, dir_in);
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002869 ctrl = dwc2_readl(hsotg->regs + epctl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002870
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002871 /* Clear endpoint interrupts */
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002872 dwc2_writel(ints, hsotg->regs + epint_reg);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002873
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002874 if (!hs_ep) {
2875 dev_err(hsotg->dev, "%s:Interrupt for unconfigured ep%d(%s)\n",
John Youn9da51972017-01-17 20:30:27 -08002876 __func__, idx, dir_in ? "in" : "out");
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002877 return;
2878 }
2879
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002880 dev_dbg(hsotg->dev, "%s: ep%d(%s) DxEPINT=0x%08x\n",
2881 __func__, idx, dir_in ? "in" : "out", ints);
2882
Mian Yousaf Kaukabb787d752015-01-09 13:38:43 +01002883 /* Don't process XferCompl interrupt if it is a setup packet */
2884 if (idx == 0 && (ints & (DXEPINT_SETUP | DXEPINT_SETUP_RCVD)))
2885 ints &= ~DXEPINT_XFERCOMPL;
2886
Vahram Aharonyanf0afdb42016-11-14 19:16:48 -08002887 /*
2888 * Don't process XferCompl interrupt in DDMA if EP0 is still in SETUP
2889 * stage and xfercomplete was generated without SETUP phase done
2890 * interrupt. SW should parse received setup packet only after host's
2891 * exit from setup phase of control transfer.
2892 */
2893 if (using_desc_dma(hsotg) && idx == 0 && !hs_ep->dir_in &&
2894 hsotg->ep0_state == DWC2_EP0_SETUP && !(ints & DXEPINT_SETUP))
2895 ints &= ~DXEPINT_XFERCOMPL;
2896
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07002897 if (ints & DXEPINT_XFERCOMPL) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002898 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -07002899 "%s: XferCompl: DxEPCTL=0x%08x, DXEPTSIZ=%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03002900 __func__, dwc2_readl(hsotg->regs + epctl_reg),
2901 dwc2_readl(hsotg->regs + epsiz_reg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002902
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002903 /* In DDMA handle isochronous requests separately */
2904 if (using_desc_dma(hsotg) && hs_ep->isochronous) {
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002905 /* XferCompl set along with BNA */
2906 if (!(ints & DXEPINT_BNAINTR))
2907 dwc2_gadget_complete_isoc_request_ddma(hs_ep);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002908 } else if (dir_in) {
2909 /*
2910 * We get OutDone from the FIFO, so we only
2911 * need to look at completing IN requests here
2912 * if operating slave mode
2913 */
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07002914 if (hs_ep->isochronous && hs_ep->interval > 1)
2915 dwc2_gadget_incr_frame_num(hs_ep);
2916
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002917 dwc2_hsotg_complete_in(hsotg, hs_ep);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07002918 if (ints & DXEPINT_NAKINTRPT)
2919 ints &= ~DXEPINT_NAKINTRPT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002920
Ben Dooksc9a64ea2010-07-19 09:40:46 +01002921 if (idx == 0 && !hs_ep->req)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002922 dwc2_hsotg_enqueue_setup(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002923 } else if (using_dma(hsotg)) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002924 /*
2925 * We're using DMA, we need to fire an OutDone here
2926 * as we ignore the RXFIFO.
2927 */
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07002928 if (hs_ep->isochronous && hs_ep->interval > 1)
2929 dwc2_gadget_incr_frame_num(hs_ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002930
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002931 dwc2_hsotg_handle_outdone(hsotg, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002932 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002933 }
2934
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002935 if (ints & DXEPINT_EPDISBLD)
2936 dwc2_gadget_handle_ep_disabled(hs_ep);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002937
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002938 if (ints & DXEPINT_OUTTKNEPDIS)
2939 dwc2_gadget_handle_out_token_ep_disabled(hs_ep);
2940
2941 if (ints & DXEPINT_NAKINTRPT)
2942 dwc2_gadget_handle_nak(hs_ep);
2943
Dinh Nguyen47a16852014-04-14 14:13:34 -07002944 if (ints & DXEPINT_AHBERR)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002945 dev_dbg(hsotg->dev, "%s: AHBErr\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002946
Dinh Nguyen47a16852014-04-14 14:13:34 -07002947 if (ints & DXEPINT_SETUP) { /* Setup or Timeout */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002948 dev_dbg(hsotg->dev, "%s: Setup/Timeout\n", __func__);
2949
2950 if (using_dma(hsotg) && idx == 0) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002951 /*
2952 * this is the notification we've received a
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002953 * setup packet. In non-DMA mode we'd get this
2954 * from the RXFIFO, instead we need to process
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002955 * the setup here.
2956 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002957
2958 if (dir_in)
2959 WARN_ON_ONCE(1);
2960 else
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002961 dwc2_hsotg_handle_outdone(hsotg, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002962 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002963 }
2964
Vahram Aharonyanef750c72016-11-14 19:16:31 -08002965 if (ints & DXEPINT_STSPHSERCVD) {
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08002966 dev_dbg(hsotg->dev, "%s: StsPhseRcvd\n", __func__);
2967
Minas Harutyunyan9e95a662018-01-16 16:03:58 +04002968 /* Safety check EP0 state when STSPHSERCVD asserted */
2969 if (hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
2970 /* Move to STATUS IN for DDMA */
2971 if (using_desc_dma(hsotg))
2972 dwc2_hsotg_ep0_zlp(hsotg, true);
2973 }
2974
Vahram Aharonyanef750c72016-11-14 19:16:31 -08002975 }
2976
Dinh Nguyen47a16852014-04-14 14:13:34 -07002977 if (ints & DXEPINT_BACK2BACKSETUP)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002978 dev_dbg(hsotg->dev, "%s: B2BSetup/INEPNakEff\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002979
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002980 if (ints & DXEPINT_BNAINTR) {
2981 dev_dbg(hsotg->dev, "%s: BNA interrupt\n", __func__);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002982 if (hs_ep->isochronous)
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002983 dwc2_gadget_handle_isoc_bna(hs_ep);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002984 }
2985
Robert Baldyga1479e842013-10-09 08:41:57 +02002986 if (dir_in && !hs_ep->isochronous) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002987 /* not sure if this is important, but we'll clear it anyway */
Vardan Mikayelyan26ddef52016-05-25 18:07:00 -07002988 if (ints & DXEPINT_INTKNTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002989 dev_dbg(hsotg->dev, "%s: ep%d: INTknTXFEmpMsk\n",
2990 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002991 }
2992
2993 /* this probably means something bad is happening */
Vardan Mikayelyan26ddef52016-05-25 18:07:00 -07002994 if (ints & DXEPINT_INTKNEPMIS) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002995 dev_warn(hsotg->dev, "%s: ep%d: INTknEP\n",
2996 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002997 }
Ben Dooks10aebc72010-07-19 09:40:44 +01002998
2999 /* FIFO has space or is empty (see GAHBCFG) */
3000 if (hsotg->dedicated_fifos &&
Vardan Mikayelyan26ddef52016-05-25 18:07:00 -07003001 ints & DXEPINT_TXFEMP) {
Ben Dooks10aebc72010-07-19 09:40:44 +01003002 dev_dbg(hsotg->dev, "%s: ep%d: TxFIFOEmpty\n",
3003 __func__, idx);
Anton Tikhomirov70fa0302012-03-06 14:08:29 +09003004 if (!using_dma(hsotg))
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003005 dwc2_hsotg_trytx(hsotg, hs_ep);
Ben Dooks10aebc72010-07-19 09:40:44 +01003006 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003007 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003008}
3009
3010/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003011 * dwc2_hsotg_irq_enumdone - Handle EnumDone interrupt (enumeration done)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003012 * @hsotg: The device state.
3013 *
3014 * Handle updating the device settings after the enumeration phase has
3015 * been completed.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003016 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003017static void dwc2_hsotg_irq_enumdone(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003018{
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003019 u32 dsts = dwc2_readl(hsotg->regs + DSTS);
Jingoo Han9b2667f2014-08-20 12:04:09 +09003020 int ep0_mps = 0, ep_mps = 8;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003021
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003022 /*
3023 * This should signal the finish of the enumeration phase
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003024 * of the USB handshaking, so we should now know what rate
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003025 * we connected at.
3026 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003027
3028 dev_dbg(hsotg->dev, "EnumDone (DSTS=0x%08x)\n", dsts);
3029
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003030 /*
3031 * note, since we're limited by the size of transfer on EP0, and
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003032 * it seems IN transfers must be a even number of packets we do
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003033 * not advertise a 64byte MPS on EP0.
3034 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003035
3036 /* catch both EnumSpd_FS and EnumSpd_FS48 */
Marek Vasut6d76c922015-12-18 03:26:17 +01003037 switch ((dsts & DSTS_ENUMSPD_MASK) >> DSTS_ENUMSPD_SHIFT) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003038 case DSTS_ENUMSPD_FS:
3039 case DSTS_ENUMSPD_FS48:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003040 hsotg->gadget.speed = USB_SPEED_FULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003041 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01003042 ep_mps = 1023;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003043 break;
3044
Dinh Nguyen47a16852014-04-14 14:13:34 -07003045 case DSTS_ENUMSPD_HS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003046 hsotg->gadget.speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003047 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01003048 ep_mps = 1024;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003049 break;
3050
Dinh Nguyen47a16852014-04-14 14:13:34 -07003051 case DSTS_ENUMSPD_LS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003052 hsotg->gadget.speed = USB_SPEED_LOW;
Vardan Mikayelyan552d9402016-11-14 19:17:00 -08003053 ep0_mps = 8;
3054 ep_mps = 8;
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003055 /*
3056 * note, we don't actually support LS in this driver at the
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003057 * moment, and the documentation seems to imply that it isn't
3058 * supported by the PHYs on some of the devices.
3059 */
3060 break;
3061 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003062 dev_info(hsotg->dev, "new device is %s\n",
3063 usb_speed_string(hsotg->gadget.speed));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003064
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003065 /*
3066 * we should now know the maximum packet size for an
3067 * endpoint, so set the endpoints to a default value.
3068 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003069
3070 if (ep0_mps) {
3071 int i;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003072 /* Initialize ep0 for both in and out directions */
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003073 dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 0, 1);
3074 dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 0, 0);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003075 for (i = 1; i < hsotg->num_of_eps; i++) {
3076 if (hsotg->eps_in[i])
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003077 dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps,
3078 0, 1);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003079 if (hsotg->eps_out[i])
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003080 dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps,
3081 0, 0);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003082 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003083 }
3084
3085 /* ensure after enumeration our EP0 is active */
3086
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003087 dwc2_hsotg_enqueue_setup(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003088
3089 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003090 dwc2_readl(hsotg->regs + DIEPCTL0),
3091 dwc2_readl(hsotg->regs + DOEPCTL0));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003092}
3093
3094/**
3095 * kill_all_requests - remove all requests from the endpoint's queue
3096 * @hsotg: The device state.
3097 * @ep: The endpoint the requests may be on.
3098 * @result: The result code to use.
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003099 *
3100 * Go through the requests on the given endpoint and mark them
3101 * completed with the given result code.
3102 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003103static void kill_all_requests(struct dwc2_hsotg *hsotg,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003104 struct dwc2_hsotg_ep *ep,
Robert Baldyga6b448af2014-12-16 11:51:44 +01003105 int result)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003106{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003107 struct dwc2_hsotg_req *req, *treq;
John Youn9da51972017-01-17 20:30:27 -08003108 unsigned int size;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003109
Robert Baldyga6b448af2014-12-16 11:51:44 +01003110 ep->req = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003111
Robert Baldyga6b448af2014-12-16 11:51:44 +01003112 list_for_each_entry_safe(req, treq, &ep->queue, queue)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003113 dwc2_hsotg_complete_request(hsotg, ep, req,
John Youn9da51972017-01-17 20:30:27 -08003114 result);
Robert Baldyga6b448af2014-12-16 11:51:44 +01003115
Robert Baldygab203d0a2014-09-09 10:44:56 +02003116 if (!hsotg->dedicated_fifos)
3117 return;
Robert Baldygaad674a12016-08-29 13:38:50 -07003118 size = (dwc2_readl(hsotg->regs + DTXFSTS(ep->fifo_index)) & 0xffff) * 4;
Robert Baldygab203d0a2014-09-09 10:44:56 +02003119 if (size < ep->fifo_size)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003120 dwc2_hsotg_txfifo_flush(hsotg, ep->fifo_index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003121}
3122
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003123/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003124 * dwc2_hsotg_disconnect - disconnect service
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003125 * @hsotg: The device state.
3126 *
Lukasz Majewski5e891342012-05-04 14:17:07 +02003127 * The device has been disconnected. Remove all current
3128 * transactions and signal the gadget driver that this
3129 * has happened.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003130 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003131void dwc2_hsotg_disconnect(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003132{
John Youn9da51972017-01-17 20:30:27 -08003133 unsigned int ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003134
Marek Szyprowski4ace06e2014-11-21 15:14:47 +01003135 if (!hsotg->connected)
3136 return;
3137
3138 hsotg->connected = 0;
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01003139 hsotg->test_mode = 0;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003140
3141 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
3142 if (hsotg->eps_in[ep])
3143 kill_all_requests(hsotg, hsotg->eps_in[ep],
John Youn9da51972017-01-17 20:30:27 -08003144 -ESHUTDOWN);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003145 if (hsotg->eps_out[ep])
3146 kill_all_requests(hsotg, hsotg->eps_out[ep],
John Youn9da51972017-01-17 20:30:27 -08003147 -ESHUTDOWN);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003148 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003149
3150 call_gadget(hsotg, disconnect);
Gregory Herrero065d3932015-09-22 15:16:54 +02003151 hsotg->lx_state = DWC2_L3;
John Stultzce2b21a2017-10-23 14:32:50 -07003152
3153 usb_gadget_set_state(&hsotg->gadget, USB_STATE_NOTATTACHED);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003154}
3155
3156/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003157 * dwc2_hsotg_irq_fifoempty - TX FIFO empty interrupt handler
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003158 * @hsotg: The device state:
3159 * @periodic: True if this is a periodic FIFO interrupt
3160 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003161static void dwc2_hsotg_irq_fifoempty(struct dwc2_hsotg *hsotg, bool periodic)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003162{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003163 struct dwc2_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003164 int epno, ret;
3165
3166 /* look through for any more data to transmit */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003167 for (epno = 0; epno < hsotg->num_of_eps; epno++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003168 ep = index_to_ep(hsotg, epno, 1);
3169
3170 if (!ep)
3171 continue;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003172
3173 if (!ep->dir_in)
3174 continue;
3175
3176 if ((periodic && !ep->periodic) ||
3177 (!periodic && ep->periodic))
3178 continue;
3179
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003180 ret = dwc2_hsotg_trytx(hsotg, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003181 if (ret < 0)
3182 break;
3183 }
3184}
3185
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003186/* IRQ flags which will trigger a retry around the IRQ loop */
Dinh Nguyen47a16852014-04-14 14:13:34 -07003187#define IRQ_RETRY_MASK (GINTSTS_NPTXFEMP | \
3188 GINTSTS_PTXFEMP | \
3189 GINTSTS_RXFLVL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003190
3191/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003192 * dwc2_hsotg_core_init - issue softreset to the core
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003193 * @hsotg: The device state
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04003194 * @is_usb_reset: Usb resetting flag
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003195 *
3196 * Issue a soft reset to the core, and await the core finishing it.
3197 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003198void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08003199 bool is_usb_reset)
Lukasz Majewski308d7342012-05-04 14:17:05 +02003200{
Gregory Herrero1ee69032015-09-29 12:08:27 +02003201 u32 intmsk;
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003202 u32 val;
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01003203 u32 usbcfg;
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003204 u32 dcfg = 0;
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003205
Mian Yousaf Kaukab5390d432015-09-29 12:08:25 +02003206 /* Kill any ep0 requests as controller will be reinitialized */
3207 kill_all_requests(hsotg, hsotg->eps_out[0], -ECONNRESET);
3208
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003209 if (!is_usb_reset)
John Stultz6e6360b2017-01-23 14:59:14 -08003210 if (dwc2_core_reset(hsotg, true))
Gregory Herrero86de4892015-09-29 12:08:21 +02003211 return;
Lukasz Majewski308d7342012-05-04 14:17:05 +02003212
3213 /*
3214 * we must now enable ep0 ready for host detection and then
3215 * set configuration.
3216 */
3217
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01003218 /* keep other bits untouched (so e.g. forced modes are not lost) */
3219 usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
3220 usbcfg &= ~(GUSBCFG_TOUTCAL_MASK | GUSBCFG_PHYIF16 | GUSBCFG_SRPCAP |
Amelie Delaunayca029542017-01-12 16:09:44 +01003221 GUSBCFG_HNPCAP | GUSBCFG_USBTRDTIM_MASK);
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01003222
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003223 if (hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS &&
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08003224 (hsotg->params.speed == DWC2_SPEED_PARAM_FULL ||
3225 hsotg->params.speed == DWC2_SPEED_PARAM_LOW)) {
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003226 /* FS/LS Dedicated Transceiver Interface */
3227 usbcfg |= GUSBCFG_PHYSEL;
3228 } else {
3229 /* set the PLL on, remove the HNP/SRP and set the PHY */
3230 val = (hsotg->phyif == GUSBCFG_PHYIF8) ? 9 : 5;
3231 usbcfg |= hsotg->phyif | GUSBCFG_TOUTCAL(7) |
3232 (val << GUSBCFG_USBTRDTIM_SHIFT);
3233 }
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01003234 dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003235
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003236 dwc2_hsotg_init_fifo(hsotg);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003237
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003238 if (!is_usb_reset)
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003239 dwc2_set_bit(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003240
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003241 dcfg |= DCFG_EPMISCNT(1);
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08003242
3243 switch (hsotg->params.speed) {
3244 case DWC2_SPEED_PARAM_LOW:
3245 dcfg |= DCFG_DEVSPD_LS;
3246 break;
3247 case DWC2_SPEED_PARAM_FULL:
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003248 if (hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS)
3249 dcfg |= DCFG_DEVSPD_FS48;
3250 else
3251 dcfg |= DCFG_DEVSPD_FS;
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08003252 break;
3253 default:
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003254 dcfg |= DCFG_DEVSPD_HS;
3255 }
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08003256
Grigor Tovmasyanb43ebc92018-05-05 12:17:58 +04003257 if (hsotg->params.ipg_isoc_en)
3258 dcfg |= DCFG_IPG_ISOC_SUPPORDED;
3259
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003260 dwc2_writel(dcfg, hsotg->regs + DCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003261
3262 /* Clear any pending OTG interrupts */
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003263 dwc2_writel(0xffffffff, hsotg->regs + GOTGINT);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003264
3265 /* Clear any pending interrupts */
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003266 dwc2_writel(0xffffffff, hsotg->regs + GINTSTS);
Gregory Herrero1ee69032015-09-29 12:08:27 +02003267 intmsk = GINTSTS_ERLYSUSP | GINTSTS_SESSREQINT |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003268 GINTSTS_GOUTNAKEFF | GINTSTS_GINNAKEFF |
Gregory Herrero1ee69032015-09-29 12:08:27 +02003269 GINTSTS_USBRST | GINTSTS_RESETDET |
3270 GINTSTS_ENUMDONE | GINTSTS_OTGINT |
Sevak Arakelyan376f0402018-01-24 17:43:06 +04003271 GINTSTS_USBSUSP | GINTSTS_WKUPINT |
3272 GINTSTS_LPMTRANRCVD;
Vahram Aharonyanf4736702016-11-14 19:16:38 -08003273
3274 if (!using_desc_dma(hsotg))
3275 intmsk |= GINTSTS_INCOMPL_SOIN | GINTSTS_INCOMPL_SOOUT;
Gregory Herrero1ee69032015-09-29 12:08:27 +02003276
John Youn95832c02017-01-23 14:57:26 -08003277 if (!hsotg->params.external_id_pin_ctl)
Gregory Herrero1ee69032015-09-29 12:08:27 +02003278 intmsk |= GINTSTS_CONIDSTSCHNG;
3279
3280 dwc2_writel(intmsk, hsotg->regs + GINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003281
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003282 if (using_dma(hsotg)) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003283 dwc2_writel(GAHBCFG_GLBL_INTR_EN | GAHBCFG_DMA_EN |
Razmik Karapetyand1ac8c82018-01-19 14:39:57 +04003284 hsotg->params.ahbcfg,
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003285 hsotg->regs + GAHBCFG);
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003286
3287 /* Set DDMA mode support in the core if needed */
3288 if (using_desc_dma(hsotg))
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003289 dwc2_set_bit(hsotg->regs + DCFG, DCFG_DESCDMA_EN);
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003290
3291 } else {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003292 dwc2_writel(((hsotg->dedicated_fifos) ?
3293 (GAHBCFG_NP_TXF_EMP_LVL |
3294 GAHBCFG_P_TXF_EMP_LVL) : 0) |
3295 GAHBCFG_GLBL_INTR_EN, hsotg->regs + GAHBCFG);
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003296 }
Lukasz Majewski308d7342012-05-04 14:17:05 +02003297
3298 /*
Robert Baldyga8acc8292013-09-19 11:50:23 +02003299 * If INTknTXFEmpMsk is enabled, it's important to disable ep interrupts
3300 * when we have no data to transfer. Otherwise we get being flooded by
3301 * interrupts.
Lukasz Majewski308d7342012-05-04 14:17:05 +02003302 */
3303
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003304 dwc2_writel(((hsotg->dedicated_fifos && !using_dma(hsotg)) ?
Mian Yousaf Kaukab6ff2e832015-01-09 13:38:42 +01003305 DIEPMSK_TXFIFOEMPTY | DIEPMSK_INTKNTXFEMPMSK : 0) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003306 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK |
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003307 DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003308 hsotg->regs + DIEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003309
3310 /*
3311 * don't need XferCompl, we get that from RXFIFO in slave mode. In
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08003312 * DMA mode we may need this and StsPhseRcvd.
Lukasz Majewski308d7342012-05-04 14:17:05 +02003313 */
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08003314 dwc2_writel((using_dma(hsotg) ? (DIEPMSK_XFERCOMPLMSK |
3315 DOEPMSK_STSPHSERCVDMSK) : 0) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003316 DOEPMSK_EPDISBLDMSK | DOEPMSK_AHBERRMSK |
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08003317 DOEPMSK_SETUPMSK,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003318 hsotg->regs + DOEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003319
Vahram Aharonyanec01f0b2016-11-14 19:16:43 -08003320 /* Enable BNA interrupt for DDMA */
Minas Harutyunyan37981e02018-05-03 17:25:37 +04003321 if (using_desc_dma(hsotg)) {
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003322 dwc2_set_bit(hsotg->regs + DOEPMSK, DOEPMSK_BNAMSK);
Minas Harutyunyan37981e02018-05-03 17:25:37 +04003323 dwc2_set_bit(hsotg->regs + DIEPMSK, DIEPMSK_BNAININTRMSK);
3324 }
Vahram Aharonyanec01f0b2016-11-14 19:16:43 -08003325
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003326 dwc2_writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003327
3328 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003329 dwc2_readl(hsotg->regs + DIEPCTL0),
3330 dwc2_readl(hsotg->regs + DOEPCTL0));
Lukasz Majewski308d7342012-05-04 14:17:05 +02003331
3332 /* enable in and out endpoint interrupts */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003333 dwc2_hsotg_en_gsint(hsotg, GINTSTS_OEPINT | GINTSTS_IEPINT);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003334
3335 /*
3336 * Enable the RXFIFO when in slave mode, as this is how we collect
3337 * the data. In DMA mode, we get events from the FIFO but also
3338 * things we cannot process, so do not use it.
3339 */
3340 if (!using_dma(hsotg))
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003341 dwc2_hsotg_en_gsint(hsotg, GINTSTS_RXFLVL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003342
3343 /* Enable interrupts for EP0 in and out */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003344 dwc2_hsotg_ctrl_epint(hsotg, 0, 0, 1);
3345 dwc2_hsotg_ctrl_epint(hsotg, 0, 1, 1);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003346
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003347 if (!is_usb_reset) {
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003348 dwc2_set_bit(hsotg->regs + DCTL, DCTL_PWRONPRGDONE);
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003349 udelay(10); /* see openiboot */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003350 dwc2_clear_bit(hsotg->regs + DCTL, DCTL_PWRONPRGDONE);
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003351 }
Lukasz Majewski308d7342012-05-04 14:17:05 +02003352
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003353 dev_dbg(hsotg->dev, "DCTL=0x%08x\n", dwc2_readl(hsotg->regs + DCTL));
Lukasz Majewski308d7342012-05-04 14:17:05 +02003354
3355 /*
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003356 * DxEPCTL_USBActEp says RO in manual, but seems to be set by
Lukasz Majewski308d7342012-05-04 14:17:05 +02003357 * writing to the EPCTL register..
3358 */
3359
3360 /* set to read 1 8byte packet */
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003361 dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003362 DXEPTSIZ_XFERSIZE(8), hsotg->regs + DOEPTSIZ0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003363
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003364 dwc2_writel(dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003365 DXEPCTL_CNAK | DXEPCTL_EPENA |
3366 DXEPCTL_USBACTEP,
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003367 hsotg->regs + DOEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003368
3369 /* enable, but don't activate EP0in */
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003370 dwc2_writel(dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003371 DXEPCTL_USBACTEP, hsotg->regs + DIEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003372
Lukasz Majewski308d7342012-05-04 14:17:05 +02003373 /* clear global NAKs */
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003374 val = DCTL_CGOUTNAK | DCTL_CGNPINNAK;
3375 if (!is_usb_reset)
3376 val |= DCTL_SFTDISCON;
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003377 dwc2_set_bit(hsotg->regs + DCTL, val);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003378
Sevak Arakelyan21b03402018-01-24 17:43:32 +04003379 /* configure the core to support LPM */
3380 dwc2_gadget_init_lpm(hsotg);
3381
Lukasz Majewski308d7342012-05-04 14:17:05 +02003382 /* must be at-least 3ms to allow bus to see disconnect */
3383 mdelay(3);
3384
Gregory Herrero065d3932015-09-22 15:16:54 +02003385 hsotg->lx_state = DWC2_L0;
Vardan Mikayelyan755d7392018-01-16 16:04:24 +04003386
3387 dwc2_hsotg_enqueue_setup(hsotg);
3388
3389 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
3390 dwc2_readl(hsotg->regs + DIEPCTL0),
3391 dwc2_readl(hsotg->regs + DOEPCTL0));
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003392}
Marek Szyprowskiac3c81f2014-10-20 12:45:35 +02003393
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003394static void dwc2_hsotg_core_disconnect(struct dwc2_hsotg *hsotg)
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003395{
3396 /* set the soft-disconnect bit */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003397 dwc2_set_bit(hsotg->regs + DCTL, DCTL_SFTDISCON);
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003398}
3399
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003400void dwc2_hsotg_core_connect(struct dwc2_hsotg *hsotg)
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003401{
Lukasz Majewski308d7342012-05-04 14:17:05 +02003402 /* remove the soft-disconnect and let's go */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003403 dwc2_clear_bit(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003404}
3405
3406/**
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003407 * dwc2_gadget_handle_incomplete_isoc_in - handle incomplete ISO IN Interrupt.
3408 * @hsotg: The device state:
3409 *
3410 * This interrupt indicates one of the following conditions occurred while
3411 * transmitting an ISOC transaction.
3412 * - Corrupted IN Token for ISOC EP.
3413 * - Packet not complete in FIFO.
3414 *
3415 * The following actions will be taken:
3416 * - Determine the EP
3417 * - Disable EP; when 'Endpoint Disabled' interrupt is received Flush FIFO
3418 */
3419static void dwc2_gadget_handle_incomplete_isoc_in(struct dwc2_hsotg *hsotg)
3420{
3421 struct dwc2_hsotg_ep *hs_ep;
3422 u32 epctrl;
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003423 u32 daintmsk;
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003424 u32 idx;
3425
3426 dev_dbg(hsotg->dev, "Incomplete isoc in interrupt received:\n");
3427
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003428 daintmsk = dwc2_readl(hsotg->regs + DAINTMSK);
3429
Artur Petrosyand5d5f072018-05-05 04:30:16 -04003430 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003431 hs_ep = hsotg->eps_in[idx];
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003432 /* Proceed only unmasked ISOC EPs */
3433 if (!hs_ep->isochronous || (BIT(idx) & ~daintmsk))
3434 continue;
3435
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003436 epctrl = dwc2_readl(hsotg->regs + DIEPCTL(idx));
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003437 if ((epctrl & DXEPCTL_EPENA) &&
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003438 dwc2_gadget_target_frame_elapsed(hs_ep)) {
3439 epctrl |= DXEPCTL_SNAK;
3440 epctrl |= DXEPCTL_EPDIS;
3441 dwc2_writel(epctrl, hsotg->regs + DIEPCTL(idx));
3442 }
3443 }
3444
3445 /* Clear interrupt */
3446 dwc2_writel(GINTSTS_INCOMPL_SOIN, hsotg->regs + GINTSTS);
3447}
3448
3449/**
3450 * dwc2_gadget_handle_incomplete_isoc_out - handle incomplete ISO OUT Interrupt
3451 * @hsotg: The device state:
3452 *
3453 * This interrupt indicates one of the following conditions occurred while
3454 * transmitting an ISOC transaction.
3455 * - Corrupted OUT Token for ISOC EP.
3456 * - Packet not complete in FIFO.
3457 *
3458 * The following actions will be taken:
3459 * - Determine the EP
3460 * - Set DCTL_SGOUTNAK and unmask GOUTNAKEFF if target frame elapsed.
3461 */
3462static void dwc2_gadget_handle_incomplete_isoc_out(struct dwc2_hsotg *hsotg)
3463{
3464 u32 gintsts;
3465 u32 gintmsk;
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003466 u32 daintmsk;
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003467 u32 epctrl;
3468 struct dwc2_hsotg_ep *hs_ep;
3469 int idx;
3470
3471 dev_dbg(hsotg->dev, "%s: GINTSTS_INCOMPL_SOOUT\n", __func__);
3472
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003473 daintmsk = dwc2_readl(hsotg->regs + DAINTMSK);
3474 daintmsk >>= DAINT_OUTEP_SHIFT;
3475
Artur Petrosyand5d5f072018-05-05 04:30:16 -04003476 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003477 hs_ep = hsotg->eps_out[idx];
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003478 /* Proceed only unmasked ISOC EPs */
3479 if (!hs_ep->isochronous || (BIT(idx) & ~daintmsk))
3480 continue;
3481
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003482 epctrl = dwc2_readl(hsotg->regs + DOEPCTL(idx));
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003483 if ((epctrl & DXEPCTL_EPENA) &&
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003484 dwc2_gadget_target_frame_elapsed(hs_ep)) {
3485 /* Unmask GOUTNAKEFF interrupt */
3486 gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
3487 gintmsk |= GINTSTS_GOUTNAKEFF;
3488 dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
3489
3490 gintsts = dwc2_readl(hsotg->regs + GINTSTS);
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003491 if (!(gintsts & GINTSTS_GOUTNAKEFF)) {
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003492 dwc2_set_bit(hsotg->regs + DCTL, DCTL_SGOUTNAK);
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003493 break;
3494 }
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003495 }
3496 }
3497
3498 /* Clear interrupt */
3499 dwc2_writel(GINTSTS_INCOMPL_SOOUT, hsotg->regs + GINTSTS);
3500}
3501
3502/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003503 * dwc2_hsotg_irq - handle device interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003504 * @irq: The IRQ number triggered
3505 * @pw: The pw value when registered the handler.
3506 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003507static irqreturn_t dwc2_hsotg_irq(int irq, void *pw)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003508{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003509 struct dwc2_hsotg *hsotg = pw;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003510 int retry_count = 8;
3511 u32 gintsts;
3512 u32 gintmsk;
3513
Vardan Mikayelyanee3de8d2016-04-27 20:20:48 -07003514 if (!dwc2_is_device_mode(hsotg))
3515 return IRQ_NONE;
3516
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02003517 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003518irq_retry:
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003519 gintsts = dwc2_readl(hsotg->regs + GINTSTS);
3520 gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003521
3522 dev_dbg(hsotg->dev, "%s: %08x %08x (%08x) retry %d\n",
3523 __func__, gintsts, gintsts & gintmsk, gintmsk, retry_count);
3524
3525 gintsts &= gintmsk;
3526
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003527 if (gintsts & GINTSTS_RESETDET) {
3528 dev_dbg(hsotg->dev, "%s: USBRstDet\n", __func__);
3529
3530 dwc2_writel(GINTSTS_RESETDET, hsotg->regs + GINTSTS);
3531
3532 /* This event must be used only if controller is suspended */
3533 if (hsotg->lx_state == DWC2_L2) {
Vardan Mikayelyan41ba9b92018-02-16 14:06:36 +04003534 dwc2_exit_partial_power_down(hsotg, true);
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003535 hsotg->lx_state = DWC2_L0;
3536 }
3537 }
3538
3539 if (gintsts & (GINTSTS_USBRST | GINTSTS_RESETDET)) {
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003540 u32 usb_status = dwc2_readl(hsotg->regs + GOTGCTL);
3541 u32 connected = hsotg->connected;
3542
3543 dev_dbg(hsotg->dev, "%s: USBRst\n", __func__);
3544 dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n",
3545 dwc2_readl(hsotg->regs + GNPTXSTS));
3546
3547 dwc2_writel(GINTSTS_USBRST, hsotg->regs + GINTSTS);
3548
3549 /* Report disconnection if it is not already done. */
3550 dwc2_hsotg_disconnect(hsotg);
3551
Minas Harutyunyan307bc112017-07-11 14:25:13 +04003552 /* Reset device address to zero */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003553 dwc2_clear_bit(hsotg->regs + DCFG, DCFG_DEVADDR_MASK);
Minas Harutyunyan307bc112017-07-11 14:25:13 +04003554
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003555 if (usb_status & GOTGCTL_BSESVLD && connected)
3556 dwc2_hsotg_core_init_disconnected(hsotg, true);
3557 }
3558
Dinh Nguyen47a16852014-04-14 14:13:34 -07003559 if (gintsts & GINTSTS_ENUMDONE) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003560 dwc2_writel(GINTSTS_ENUMDONE, hsotg->regs + GINTSTS);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09003561
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003562 dwc2_hsotg_irq_enumdone(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003563 }
3564
Dinh Nguyen47a16852014-04-14 14:13:34 -07003565 if (gintsts & (GINTSTS_OEPINT | GINTSTS_IEPINT)) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003566 u32 daint = dwc2_readl(hsotg->regs + DAINT);
3567 u32 daintmsk = dwc2_readl(hsotg->regs + DAINTMSK);
Robert Baldyga7e804652013-09-19 11:50:20 +02003568 u32 daint_out, daint_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003569 int ep;
3570
Robert Baldyga7e804652013-09-19 11:50:20 +02003571 daint &= daintmsk;
Dinh Nguyen47a16852014-04-14 14:13:34 -07003572 daint_out = daint >> DAINT_OUTEP_SHIFT;
3573 daint_in = daint & ~(daint_out << DAINT_OUTEP_SHIFT);
Robert Baldyga7e804652013-09-19 11:50:20 +02003574
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003575 dev_dbg(hsotg->dev, "%s: daint=%08x\n", __func__, daint);
3576
Mian Yousaf Kaukabcec87f12015-01-09 13:38:51 +01003577 for (ep = 0; ep < hsotg->num_of_eps && daint_out;
3578 ep++, daint_out >>= 1) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003579 if (daint_out & 1)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003580 dwc2_hsotg_epint(hsotg, ep, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003581 }
3582
Mian Yousaf Kaukabcec87f12015-01-09 13:38:51 +01003583 for (ep = 0; ep < hsotg->num_of_eps && daint_in;
3584 ep++, daint_in >>= 1) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003585 if (daint_in & 1)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003586 dwc2_hsotg_epint(hsotg, ep, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003587 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003588 }
3589
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003590 /* check both FIFOs */
3591
Dinh Nguyen47a16852014-04-14 14:13:34 -07003592 if (gintsts & GINTSTS_NPTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003593 dev_dbg(hsotg->dev, "NPTxFEmp\n");
3594
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003595 /*
3596 * Disable the interrupt to stop it happening again
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003597 * unless one of these endpoint routines decides that
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003598 * it needs re-enabling
3599 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003600
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003601 dwc2_hsotg_disable_gsint(hsotg, GINTSTS_NPTXFEMP);
3602 dwc2_hsotg_irq_fifoempty(hsotg, false);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003603 }
3604
Dinh Nguyen47a16852014-04-14 14:13:34 -07003605 if (gintsts & GINTSTS_PTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003606 dev_dbg(hsotg->dev, "PTxFEmp\n");
3607
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003608 /* See note in GINTSTS_NPTxFEmp */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003609
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003610 dwc2_hsotg_disable_gsint(hsotg, GINTSTS_PTXFEMP);
3611 dwc2_hsotg_irq_fifoempty(hsotg, true);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003612 }
3613
Dinh Nguyen47a16852014-04-14 14:13:34 -07003614 if (gintsts & GINTSTS_RXFLVL) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003615 /*
3616 * note, since GINTSTS_RxFLvl doubles as FIFO-not-empty,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003617 * we need to retry dwc2_hsotg_handle_rx if this is still
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003618 * set.
3619 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003620
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003621 dwc2_hsotg_handle_rx(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003622 }
3623
Dinh Nguyen47a16852014-04-14 14:13:34 -07003624 if (gintsts & GINTSTS_ERLYSUSP) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003625 dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n");
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003626 dwc2_writel(GINTSTS_ERLYSUSP, hsotg->regs + GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003627 }
3628
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003629 /*
3630 * these next two seem to crop-up occasionally causing the core
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003631 * to shutdown the USB transfer, so try clearing them and logging
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003632 * the occurrence.
3633 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003634
Dinh Nguyen47a16852014-04-14 14:13:34 -07003635 if (gintsts & GINTSTS_GOUTNAKEFF) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003636 u8 idx;
3637 u32 epctrl;
3638 u32 gintmsk;
Razmik Karapetyand8484552018-01-19 14:41:42 +04003639 u32 daintmsk;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003640 struct dwc2_hsotg_ep *hs_ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003641
Razmik Karapetyand8484552018-01-19 14:41:42 +04003642 daintmsk = dwc2_readl(hsotg->regs + DAINTMSK);
3643 daintmsk >>= DAINT_OUTEP_SHIFT;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003644 /* Mask this interrupt */
3645 gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
3646 gintmsk &= ~GINTSTS_GOUTNAKEFF;
3647 dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09003648
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003649 dev_dbg(hsotg->dev, "GOUTNakEff triggered\n");
Artur Petrosyand5d5f072018-05-05 04:30:16 -04003650 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003651 hs_ep = hsotg->eps_out[idx];
Razmik Karapetyand8484552018-01-19 14:41:42 +04003652 /* Proceed only unmasked ISOC EPs */
3653 if (!hs_ep->isochronous || (BIT(idx) & ~daintmsk))
3654 continue;
3655
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003656 epctrl = dwc2_readl(hsotg->regs + DOEPCTL(idx));
3657
Razmik Karapetyand8484552018-01-19 14:41:42 +04003658 if (epctrl & DXEPCTL_EPENA) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003659 epctrl |= DXEPCTL_SNAK;
3660 epctrl |= DXEPCTL_EPDIS;
3661 dwc2_writel(epctrl, hsotg->regs + DOEPCTL(idx));
3662 }
3663 }
3664
3665 /* This interrupt bit is cleared in DXEPINT_EPDISBLD handler */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003666 }
3667
Dinh Nguyen47a16852014-04-14 14:13:34 -07003668 if (gintsts & GINTSTS_GINNAKEFF) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003669 dev_info(hsotg->dev, "GINNakEff triggered\n");
3670
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003671 dwc2_set_bit(hsotg->regs + DCTL, DCTL_CGNPINNAK);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09003672
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003673 dwc2_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003674 }
3675
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003676 if (gintsts & GINTSTS_INCOMPL_SOIN)
3677 dwc2_gadget_handle_incomplete_isoc_in(hsotg);
Roman Bacikec1f9d92015-09-10 18:13:43 -07003678
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003679 if (gintsts & GINTSTS_INCOMPL_SOOUT)
3680 dwc2_gadget_handle_incomplete_isoc_out(hsotg);
Roman Bacikec1f9d92015-09-10 18:13:43 -07003681
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003682 /*
3683 * if we've had fifo events, we should try and go around the
3684 * loop again to see if there's any point in returning yet.
3685 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003686
3687 if (gintsts & IRQ_RETRY_MASK && --retry_count > 0)
John Youn77b62002017-01-17 20:32:12 -08003688 goto irq_retry;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003689
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02003690 spin_unlock(&hsotg->lock);
3691
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003692 return IRQ_HANDLED;
3693}
3694
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003695static void dwc2_hsotg_ep_stop_xfr(struct dwc2_hsotg *hsotg,
3696 struct dwc2_hsotg_ep *hs_ep)
3697{
3698 u32 epctrl_reg;
3699 u32 epint_reg;
3700
3701 epctrl_reg = hs_ep->dir_in ? DIEPCTL(hs_ep->index) :
3702 DOEPCTL(hs_ep->index);
3703 epint_reg = hs_ep->dir_in ? DIEPINT(hs_ep->index) :
3704 DOEPINT(hs_ep->index);
3705
3706 dev_dbg(hsotg->dev, "%s: stopping transfer on %s\n", __func__,
3707 hs_ep->name);
3708
3709 if (hs_ep->dir_in) {
3710 if (hsotg->dedicated_fifos || hs_ep->periodic) {
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003711 dwc2_set_bit(hsotg->regs + epctrl_reg, DXEPCTL_SNAK);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003712 /* Wait for Nak effect */
3713 if (dwc2_hsotg_wait_bit_set(hsotg, epint_reg,
3714 DXEPINT_INEPNAKEFF, 100))
3715 dev_warn(hsotg->dev,
3716 "%s: timeout DIEPINT.NAKEFF\n",
3717 __func__);
3718 } else {
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003719 dwc2_set_bit(hsotg->regs + DCTL, DCTL_SGNPINNAK);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003720 /* Wait for Nak effect */
3721 if (dwc2_hsotg_wait_bit_set(hsotg, GINTSTS,
3722 GINTSTS_GINNAKEFF, 100))
3723 dev_warn(hsotg->dev,
3724 "%s: timeout GINTSTS.GINNAKEFF\n",
3725 __func__);
3726 }
3727 } else {
3728 if (!(dwc2_readl(hsotg->regs + GINTSTS) & GINTSTS_GOUTNAKEFF))
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003729 dwc2_set_bit(hsotg->regs + DCTL, DCTL_SGOUTNAK);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003730
3731 /* Wait for global nak to take effect */
3732 if (dwc2_hsotg_wait_bit_set(hsotg, GINTSTS,
3733 GINTSTS_GOUTNAKEFF, 100))
3734 dev_warn(hsotg->dev, "%s: timeout GINTSTS.GOUTNAKEFF\n",
3735 __func__);
3736 }
3737
3738 /* Disable ep */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003739 dwc2_set_bit(hsotg->regs + epctrl_reg, DXEPCTL_EPDIS | DXEPCTL_SNAK);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003740
3741 /* Wait for ep to be disabled */
3742 if (dwc2_hsotg_wait_bit_set(hsotg, epint_reg, DXEPINT_EPDISBLD, 100))
3743 dev_warn(hsotg->dev,
3744 "%s: timeout DOEPCTL.EPDisable\n", __func__);
3745
3746 /* Clear EPDISBLD interrupt */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003747 dwc2_set_bit(hsotg->regs + epint_reg, DXEPINT_EPDISBLD);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003748
3749 if (hs_ep->dir_in) {
3750 unsigned short fifo_index;
3751
3752 if (hsotg->dedicated_fifos || hs_ep->periodic)
3753 fifo_index = hs_ep->fifo_index;
3754 else
3755 fifo_index = 0;
3756
3757 /* Flush TX FIFO */
3758 dwc2_flush_tx_fifo(hsotg, fifo_index);
3759
3760 /* Clear Global In NP NAK in Shared FIFO for non periodic ep */
3761 if (!hsotg->dedicated_fifos && !hs_ep->periodic)
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003762 dwc2_set_bit(hsotg->regs + DCTL, DCTL_CGNPINNAK);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003763
3764 } else {
3765 /* Remove global NAKs */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04003766 dwc2_set_bit(hsotg->regs + DCTL, DCTL_CGOUTNAK);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08003767 }
3768}
3769
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003770/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003771 * dwc2_hsotg_ep_enable - enable the given endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003772 * @ep: The USB endpint to configure
3773 * @desc: The USB endpoint descriptor to configure with.
3774 *
3775 * This is called from the USB gadget code's usb_ep_enable().
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003776 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003777static int dwc2_hsotg_ep_enable(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08003778 const struct usb_endpoint_descriptor *desc)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003779{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003780 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003781 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003782 unsigned long flags;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003783 unsigned int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003784 u32 epctrl_reg;
3785 u32 epctrl;
3786 u32 mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003787 u32 mc;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003788 u32 mask;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003789 unsigned int dir_in;
3790 unsigned int i, val, size;
Julia Lawall19c190f2010-03-29 17:36:44 +02003791 int ret = 0;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003792 unsigned char ep_type;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003793
3794 dev_dbg(hsotg->dev,
3795 "%s: ep %s: a 0x%02x, attr 0x%02x, mps 0x%04x, intr %d\n",
3796 __func__, ep->name, desc->bEndpointAddress, desc->bmAttributes,
3797 desc->wMaxPacketSize, desc->bInterval);
3798
3799 /* not to be called for EP0 */
Vahram Aharonyan8c3d6092016-04-27 20:20:46 -07003800 if (index == 0) {
3801 dev_err(hsotg->dev, "%s: called for EP 0\n", __func__);
3802 return -EINVAL;
3803 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003804
3805 dir_in = (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? 1 : 0;
3806 if (dir_in != hs_ep->dir_in) {
3807 dev_err(hsotg->dev, "%s: direction mismatch!\n", __func__);
3808 return -EINVAL;
3809 }
3810
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003811 ep_type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07003812 mps = usb_endpoint_maxp(desc);
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003813 mc = usb_endpoint_maxp_mult(desc);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003814
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003815 /* ISOC IN in DDMA supported bInterval up to 10 */
3816 if (using_desc_dma(hsotg) && ep_type == USB_ENDPOINT_XFER_ISOC &&
3817 dir_in && desc->bInterval > 10) {
3818 dev_err(hsotg->dev,
3819 "%s: ISOC IN, DDMA: bInterval>10 not supported!\n", __func__);
3820 return -EINVAL;
3821 }
3822
3823 /* High bandwidth ISOC OUT in DDMA not supported */
3824 if (using_desc_dma(hsotg) && ep_type == USB_ENDPOINT_XFER_ISOC &&
3825 !dir_in && mc > 1) {
3826 dev_err(hsotg->dev,
3827 "%s: ISOC OUT, DDMA: HB not supported!\n", __func__);
3828 return -EINVAL;
3829 }
3830
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003831 /* note, we handle this here instead of dwc2_hsotg_set_ep_maxpacket */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003832
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003833 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003834 epctrl = dwc2_readl(hsotg->regs + epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003835
3836 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x from 0x%08x\n",
3837 __func__, epctrl, epctrl_reg);
3838
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003839 /* Allocate DMA descriptor chain for non-ctrl endpoints */
Vardan Mikayelyan9383e082017-01-05 18:01:48 -08003840 if (using_desc_dma(hsotg) && !hs_ep->desc_list) {
3841 hs_ep->desc_list = dmam_alloc_coherent(hsotg->dev,
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003842 MAX_DMA_DESC_NUM_GENERIC *
3843 sizeof(struct dwc2_dma_desc),
Marek Szyprowski86e881e2016-12-01 10:02:11 +01003844 &hs_ep->desc_list_dma, GFP_ATOMIC);
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003845 if (!hs_ep->desc_list) {
3846 ret = -ENOMEM;
3847 goto error2;
3848 }
3849 }
3850
Lukasz Majewski22258f42012-06-14 10:02:24 +02003851 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003852
Dinh Nguyen47a16852014-04-14 14:13:34 -07003853 epctrl &= ~(DXEPCTL_EPTYPE_MASK | DXEPCTL_MPS_MASK);
3854 epctrl |= DXEPCTL_MPS(mps);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003855
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003856 /*
3857 * mark the endpoint as active, otherwise the core may ignore
3858 * transactions entirely for this endpoint
3859 */
Dinh Nguyen47a16852014-04-14 14:13:34 -07003860 epctrl |= DXEPCTL_USBACTEP;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003861
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003862 /* update the endpoint state */
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003863 dwc2_hsotg_set_ep_maxpacket(hsotg, hs_ep->index, mps, mc, dir_in);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003864
3865 /* default, set to non-periodic */
Robert Baldyga1479e842013-10-09 08:41:57 +02003866 hs_ep->isochronous = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003867 hs_ep->periodic = 0;
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02003868 hs_ep->halted = 0;
Robert Baldyga1479e842013-10-09 08:41:57 +02003869 hs_ep->interval = desc->bInterval;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02003870
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003871 switch (ep_type) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003872 case USB_ENDPOINT_XFER_ISOC:
Dinh Nguyen47a16852014-04-14 14:13:34 -07003873 epctrl |= DXEPCTL_EPTYPE_ISO;
3874 epctrl |= DXEPCTL_SETEVENFR;
Robert Baldyga1479e842013-10-09 08:41:57 +02003875 hs_ep->isochronous = 1;
Vardan Mikayelyan142bd332016-05-25 18:07:07 -07003876 hs_ep->interval = 1 << (desc->bInterval - 1);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003877 hs_ep->target_frame = TARGET_FRAME_INITIAL;
Vahram Aharonyanab7d2192016-11-14 19:16:36 -08003878 hs_ep->next_desc = 0;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003879 hs_ep->compl_desc = 0;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003880 if (dir_in) {
Robert Baldyga1479e842013-10-09 08:41:57 +02003881 hs_ep->periodic = 1;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003882 mask = dwc2_readl(hsotg->regs + DIEPMSK);
3883 mask |= DIEPMSK_NAKMSK;
3884 dwc2_writel(mask, hsotg->regs + DIEPMSK);
3885 } else {
3886 mask = dwc2_readl(hsotg->regs + DOEPMSK);
3887 mask |= DOEPMSK_OUTTKNEPDISMSK;
3888 dwc2_writel(mask, hsotg->regs + DOEPMSK);
3889 }
Robert Baldyga1479e842013-10-09 08:41:57 +02003890 break;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003891
3892 case USB_ENDPOINT_XFER_BULK:
Dinh Nguyen47a16852014-04-14 14:13:34 -07003893 epctrl |= DXEPCTL_EPTYPE_BULK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003894 break;
3895
3896 case USB_ENDPOINT_XFER_INT:
Robert Baldygab203d0a2014-09-09 10:44:56 +02003897 if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003898 hs_ep->periodic = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003899
Vardan Mikayelyan142bd332016-05-25 18:07:07 -07003900 if (hsotg->gadget.speed == USB_SPEED_HIGH)
3901 hs_ep->interval = 1 << (desc->bInterval - 1);
3902
Dinh Nguyen47a16852014-04-14 14:13:34 -07003903 epctrl |= DXEPCTL_EPTYPE_INTERRUPT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003904 break;
3905
3906 case USB_ENDPOINT_XFER_CONTROL:
Dinh Nguyen47a16852014-04-14 14:13:34 -07003907 epctrl |= DXEPCTL_EPTYPE_CONTROL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003908 break;
3909 }
3910
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003911 /*
3912 * if the hardware has dedicated fifos, we must give each IN EP
Ben Dooks10aebc72010-07-19 09:40:44 +01003913 * a unique tx-fifo even if it is non-periodic.
3914 */
Robert Baldyga21f3bb52016-08-29 13:38:57 -07003915 if (dir_in && hsotg->dedicated_fifos) {
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003916 u32 fifo_index = 0;
3917 u32 fifo_size = UINT_MAX;
John Youn9da51972017-01-17 20:30:27 -08003918
3919 size = hs_ep->ep.maxpacket * hs_ep->mc;
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01003920 for (i = 1; i < hsotg->num_of_eps; ++i) {
John Youn9da51972017-01-17 20:30:27 -08003921 if (hsotg->fifo_map & (1 << i))
Robert Baldygab203d0a2014-09-09 10:44:56 +02003922 continue;
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003923 val = dwc2_readl(hsotg->regs + DPTXFSIZN(i));
John Youn9da51972017-01-17 20:30:27 -08003924 val = (val >> FIFOSIZE_DEPTH_SHIFT) * 4;
Robert Baldygab203d0a2014-09-09 10:44:56 +02003925 if (val < size)
3926 continue;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003927 /* Search for smallest acceptable fifo */
3928 if (val < fifo_size) {
3929 fifo_size = val;
3930 fifo_index = i;
3931 }
Robert Baldygab203d0a2014-09-09 10:44:56 +02003932 }
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003933 if (!fifo_index) {
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01003934 dev_err(hsotg->dev,
3935 "%s: No suitable fifo found\n", __func__);
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05303936 ret = -ENOMEM;
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003937 goto error1;
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05303938 }
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003939 hsotg->fifo_map |= 1 << fifo_index;
3940 epctrl |= DXEPCTL_TXFNUM(fifo_index);
3941 hs_ep->fifo_index = fifo_index;
3942 hs_ep->fifo_size = fifo_size;
Robert Baldygab203d0a2014-09-09 10:44:56 +02003943 }
Ben Dooks10aebc72010-07-19 09:40:44 +01003944
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003945 /* for non control endpoints, set PID to D0 */
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003946 if (index && !hs_ep->isochronous)
Dinh Nguyen47a16852014-04-14 14:13:34 -07003947 epctrl |= DXEPCTL_SETD0PID;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003948
Artur Petrosyan52953222018-04-16 08:45:31 -04003949 /* WA for Full speed ISOC IN in DDMA mode.
3950 * By Clear NAK status of EP, core will send ZLP
3951 * to IN token and assert NAK interrupt relying
3952 * on TxFIFO status only
3953 */
3954
3955 if (hsotg->gadget.speed == USB_SPEED_FULL &&
3956 hs_ep->isochronous && dir_in) {
3957 /* The WA applies only to core versions from 2.72a
3958 * to 4.00a (including both). Also for FS_IOT_1.00a
3959 * and HS_IOT_1.00a.
3960 */
3961 u32 gsnpsid = dwc2_readl(hsotg->regs + GSNPSID);
3962
3963 if ((gsnpsid >= DWC2_CORE_REV_2_72a &&
3964 gsnpsid <= DWC2_CORE_REV_4_00a) ||
3965 gsnpsid == DWC2_FS_IOT_REV_1_00a ||
3966 gsnpsid == DWC2_HS_IOT_REV_1_00a)
3967 epctrl |= DXEPCTL_CNAK;
3968 }
3969
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003970 dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
3971 __func__, epctrl);
3972
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003973 dwc2_writel(epctrl, hsotg->regs + epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003974 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003975 __func__, dwc2_readl(hsotg->regs + epctrl_reg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003976
3977 /* enable the endpoint interrupt */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003978 dwc2_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003979
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003980error1:
Lukasz Majewski22258f42012-06-14 10:02:24 +02003981 spin_unlock_irqrestore(&hsotg->lock, flags);
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003982
3983error2:
3984 if (ret && using_desc_dma(hsotg) && hs_ep->desc_list) {
Vardan Mikayelyan9383e082017-01-05 18:01:48 -08003985 dmam_free_coherent(hsotg->dev, MAX_DMA_DESC_NUM_GENERIC *
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003986 sizeof(struct dwc2_dma_desc),
3987 hs_ep->desc_list, hs_ep->desc_list_dma);
3988 hs_ep->desc_list = NULL;
3989 }
3990
Julia Lawall19c190f2010-03-29 17:36:44 +02003991 return ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003992}
3993
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003994/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003995 * dwc2_hsotg_ep_disable - disable given endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003996 * @ep: The endpoint to disable.
3997 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003998static int dwc2_hsotg_ep_disable(struct usb_ep *ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003999{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004000 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004001 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004002 int dir_in = hs_ep->dir_in;
4003 int index = hs_ep->index;
4004 unsigned long flags;
4005 u32 epctrl_reg;
4006 u32 ctrl;
4007
Marek Szyprowski1e011292014-09-09 10:44:54 +02004008 dev_dbg(hsotg->dev, "%s(ep %p)\n", __func__, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004009
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004010 if (ep == &hsotg->eps_out[0]->ep) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004011 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
4012 return -EINVAL;
4013 }
4014
John Stultz9b4810922017-10-23 14:32:49 -07004015 if (hsotg->op_state != OTG_STATE_B_PERIPHERAL) {
4016 dev_err(hsotg->dev, "%s: called in host mode?\n", __func__);
4017 return -EINVAL;
4018 }
4019
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02004020 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004021
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004022 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004023
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004024 ctrl = dwc2_readl(hsotg->regs + epctrl_reg);
Vahram Aharonyana4f82772016-11-14 19:16:53 -08004025
4026 if (ctrl & DXEPCTL_EPENA)
4027 dwc2_hsotg_ep_stop_xfr(hsotg, hs_ep);
4028
Dinh Nguyen47a16852014-04-14 14:13:34 -07004029 ctrl &= ~DXEPCTL_EPENA;
4030 ctrl &= ~DXEPCTL_USBACTEP;
4031 ctrl |= DXEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004032
4033 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004034 dwc2_writel(ctrl, hsotg->regs + epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004035
4036 /* disable endpoint interrupts */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004037 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004038
Mian Yousaf Kaukab1141ea02015-01-09 13:38:57 +01004039 /* terminate all requests with shutdown */
4040 kill_all_requests(hsotg, hs_ep, -ESHUTDOWN);
4041
Robert Baldyga1c07b202016-08-29 13:39:00 -07004042 hsotg->fifo_map &= ~(1 << hs_ep->fifo_index);
4043 hs_ep->fifo_index = 0;
4044 hs_ep->fifo_size = 0;
4045
Lukasz Majewski22258f42012-06-14 10:02:24 +02004046 spin_unlock_irqrestore(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004047 return 0;
4048}
4049
4050/**
4051 * on_list - check request is on the given endpoint
4052 * @ep: The endpoint to check.
4053 * @test: The request to test if it is on the endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004054 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004055static bool on_list(struct dwc2_hsotg_ep *ep, struct dwc2_hsotg_req *test)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004056{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004057 struct dwc2_hsotg_req *req, *treq;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004058
4059 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
4060 if (req == test)
4061 return true;
4062 }
4063
4064 return false;
4065}
4066
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004067/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004068 * dwc2_hsotg_ep_dequeue - dequeue given endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004069 * @ep: The endpoint to dequeue.
4070 * @req: The request to be removed from a queue.
4071 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004072static int dwc2_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004073{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004074 struct dwc2_hsotg_req *hs_req = our_req(req);
4075 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004076 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004077 unsigned long flags;
4078
Marek Szyprowski1e011292014-09-09 10:44:54 +02004079 dev_dbg(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004080
Lukasz Majewski22258f42012-06-14 10:02:24 +02004081 spin_lock_irqsave(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004082
4083 if (!on_list(hs_ep, hs_req)) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02004084 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004085 return -EINVAL;
4086 }
4087
Mian Yousaf Kaukabc524dd52015-09-29 12:08:24 +02004088 /* Dequeue already started request */
4089 if (req == &hs_ep->req->req)
4090 dwc2_hsotg_ep_stop_xfr(hs, hs_ep);
4091
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004092 dwc2_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
Lukasz Majewski22258f42012-06-14 10:02:24 +02004093 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004094
4095 return 0;
4096}
4097
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004098/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004099 * dwc2_hsotg_ep_sethalt - set halt on a given endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004100 * @ep: The endpoint to set halt.
4101 * @value: Set or unset the halt.
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004102 * @now: If true, stall the endpoint now. Otherwise return -EAGAIN if
4103 * the endpoint is busy processing requests.
4104 *
4105 * We need to stall the endpoint immediately if request comes from set_feature
4106 * protocol command handler.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004107 */
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004108static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004109{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004110 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004111 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004112 int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004113 u32 epreg;
4114 u32 epctl;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09004115 u32 xfertype;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004116
4117 dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
4118
Robert Baldygac9f721b2014-01-14 08:36:00 +01004119 if (index == 0) {
4120 if (value)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004121 dwc2_hsotg_stall_ep0(hs);
Robert Baldygac9f721b2014-01-14 08:36:00 +01004122 else
4123 dev_warn(hs->dev,
4124 "%s: can't clear halt on ep0\n", __func__);
4125 return 0;
4126 }
4127
Vahram Aharonyan15186f12016-05-23 22:41:59 -07004128 if (hs_ep->isochronous) {
4129 dev_err(hs->dev, "%s is Isochronous Endpoint\n", ep->name);
4130 return -EINVAL;
4131 }
4132
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004133 if (!now && value && !list_empty(&hs_ep->queue)) {
4134 dev_dbg(hs->dev, "%s request is pending, cannot halt\n",
4135 ep->name);
4136 return -EAGAIN;
4137 }
4138
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004139 if (hs_ep->dir_in) {
4140 epreg = DIEPCTL(index);
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004141 epctl = dwc2_readl(hs->regs + epreg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004142
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004143 if (value) {
Felipe Balbi5a350d52015-06-29 20:17:22 -05004144 epctl |= DXEPCTL_STALL | DXEPCTL_SNAK;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004145 if (epctl & DXEPCTL_EPENA)
4146 epctl |= DXEPCTL_EPDIS;
4147 } else {
4148 epctl &= ~DXEPCTL_STALL;
4149 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
4150 if (xfertype == DXEPCTL_EPTYPE_BULK ||
John Youn9da51972017-01-17 20:30:27 -08004151 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
John Youn77b62002017-01-17 20:32:12 -08004152 epctl |= DXEPCTL_SETD0PID;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004153 }
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004154 dwc2_writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09004155 } else {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004156 epreg = DOEPCTL(index);
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004157 epctl = dwc2_readl(hs->regs + epreg);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004158
John Youn34c08872017-01-17 20:31:43 -08004159 if (value) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004160 epctl |= DXEPCTL_STALL;
John Youn34c08872017-01-17 20:31:43 -08004161 } else {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004162 epctl &= ~DXEPCTL_STALL;
4163 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
4164 if (xfertype == DXEPCTL_EPTYPE_BULK ||
John Youn9da51972017-01-17 20:30:27 -08004165 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
John Youn77b62002017-01-17 20:32:12 -08004166 epctl |= DXEPCTL_SETD0PID;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004167 }
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004168 dwc2_writel(epctl, hs->regs + epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09004169 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004170
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02004171 hs_ep->halted = value;
4172
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004173 return 0;
4174}
4175
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004176/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004177 * dwc2_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004178 * @ep: The endpoint to set halt.
4179 * @value: Set or unset the halt.
4180 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004181static int dwc2_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004182{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004183 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004184 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004185 unsigned long flags = 0;
4186 int ret = 0;
4187
4188 spin_lock_irqsave(&hs->lock, flags);
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004189 ret = dwc2_hsotg_ep_sethalt(ep, value, false);
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004190 spin_unlock_irqrestore(&hs->lock, flags);
4191
4192 return ret;
4193}
4194
Bhumika Goyalebce5612017-08-12 17:34:55 +05304195static const struct usb_ep_ops dwc2_hsotg_ep_ops = {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004196 .enable = dwc2_hsotg_ep_enable,
4197 .disable = dwc2_hsotg_ep_disable,
4198 .alloc_request = dwc2_hsotg_ep_alloc_request,
4199 .free_request = dwc2_hsotg_ep_free_request,
4200 .queue = dwc2_hsotg_ep_queue_lock,
4201 .dequeue = dwc2_hsotg_ep_dequeue,
4202 .set_halt = dwc2_hsotg_ep_sethalt_lock,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004203 /* note, don't believe we have any call for the fifo routines */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004204};
4205
4206/**
John Youn9da51972017-01-17 20:30:27 -08004207 * dwc2_hsotg_init - initialize the usb core
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004208 * @hsotg: The driver state
4209 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004210static void dwc2_hsotg_init(struct dwc2_hsotg *hsotg)
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004211{
Mian Yousaf Kaukabfa4a8d72015-01-30 09:09:35 +01004212 u32 trdtim;
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01004213 u32 usbcfg;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004214 /* unmask subset of endpoint interrupts */
4215
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004216 dwc2_writel(DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK |
4217 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK,
4218 hsotg->regs + DIEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004219
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004220 dwc2_writel(DOEPMSK_SETUPMSK | DOEPMSK_AHBERRMSK |
4221 DOEPMSK_EPDISBLDMSK | DOEPMSK_XFERCOMPLMSK,
4222 hsotg->regs + DOEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004223
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004224 dwc2_writel(0, hsotg->regs + DAINTMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004225
4226 /* Be in disconnected state until gadget is registered */
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04004227 dwc2_set_bit(hsotg->regs + DCTL, DCTL_SFTDISCON);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004228
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004229 /* setup fifos */
4230
4231 dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004232 dwc2_readl(hsotg->regs + GRXFSIZ),
4233 dwc2_readl(hsotg->regs + GNPTXFSIZ));
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004234
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004235 dwc2_hsotg_init_fifo(hsotg);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004236
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01004237 /* keep other bits untouched (so e.g. forced modes are not lost) */
4238 usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
4239 usbcfg &= ~(GUSBCFG_TOUTCAL_MASK | GUSBCFG_PHYIF16 | GUSBCFG_SRPCAP |
Amelie Delaunayca029542017-01-12 16:09:44 +01004240 GUSBCFG_HNPCAP | GUSBCFG_USBTRDTIM_MASK);
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01004241
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004242 /* set the PLL on, remove the HNP/SRP and set the PHY */
Mian Yousaf Kaukabfa4a8d72015-01-30 09:09:35 +01004243 trdtim = (hsotg->phyif == GUSBCFG_PHYIF8) ? 9 : 5;
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01004244 usbcfg |= hsotg->phyif | GUSBCFG_TOUTCAL(7) |
4245 (trdtim << GUSBCFG_USBTRDTIM_SHIFT);
4246 dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004247
Gregory Herrerof5090042015-01-09 13:38:47 +01004248 if (using_dma(hsotg))
Razmik Karapetyanabd064a2018-01-19 14:42:08 +04004249 dwc2_set_bit(hsotg->regs + GAHBCFG, GAHBCFG_DMA_EN);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004250}
4251
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004252/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004253 * dwc2_hsotg_udc_start - prepare the udc for work
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004254 * @gadget: The usb gadget state
4255 * @driver: The usb gadget driver
4256 *
4257 * Perform initialization to prepare udc device and driver
4258 * to work.
4259 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004260static int dwc2_hsotg_udc_start(struct usb_gadget *gadget,
John Youn9da51972017-01-17 20:30:27 -08004261 struct usb_gadget_driver *driver)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004262{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004263 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004264 unsigned long flags;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004265 int ret;
4266
4267 if (!hsotg) {
Pavel Macheka023da32013-09-30 14:56:02 +02004268 pr_err("%s: called with no device\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004269 return -ENODEV;
4270 }
4271
4272 if (!driver) {
4273 dev_err(hsotg->dev, "%s: no driver\n", __func__);
4274 return -EINVAL;
4275 }
4276
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01004277 if (driver->max_speed < USB_SPEED_FULL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004278 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004279
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02004280 if (!driver->setup) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004281 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
4282 return -EINVAL;
4283 }
4284
4285 WARN_ON(hsotg->driver);
4286
4287 driver->driver.bus = NULL;
4288 hsotg->driver = driver;
Alexandre Pereira da Silva7d7b2292012-06-26 11:27:10 -03004289 hsotg->gadget.dev.of_node = hsotg->dev->of_node;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004290 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
4291
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004292 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) {
4293 ret = dwc2_lowlevel_hw_enable(hsotg);
4294 if (ret)
4295 goto err;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004296 }
4297
Gregory Herrerof6c01592015-01-09 13:38:41 +01004298 if (!IS_ERR_OR_NULL(hsotg->uphy))
4299 otg_set_peripheral(hsotg->uphy->otg, &hsotg->gadget);
Marek Szyprowskic816c472014-10-20 12:45:37 +02004300
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004301 spin_lock_irqsave(&hsotg->lock, flags);
John Yound0f0ac52016-09-07 19:39:37 -07004302 if (dwc2_hw_is_device(hsotg)) {
4303 dwc2_hsotg_init(hsotg);
4304 dwc2_hsotg_core_init_disconnected(hsotg, false);
4305 }
4306
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004307 hsotg->enabled = 0;
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004308 spin_unlock_irqrestore(&hsotg->lock, flags);
4309
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004310 dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004311
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004312 return 0;
4313
4314err:
4315 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004316 return ret;
4317}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004318
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004319/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004320 * dwc2_hsotg_udc_stop - stop the udc
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004321 * @gadget: The usb gadget state
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004322 *
4323 * Stop udc hw block and stay tunned for future transmissions
4324 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004325static int dwc2_hsotg_udc_stop(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004326{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004327 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewski2b19a522012-06-14 10:02:25 +02004328 unsigned long flags = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004329 int ep;
4330
4331 if (!hsotg)
4332 return -ENODEV;
4333
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004334 /* all endpoints should be shutdown */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004335 for (ep = 1; ep < hsotg->num_of_eps; ep++) {
4336 if (hsotg->eps_in[ep])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004337 dwc2_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004338 if (hsotg->eps_out[ep])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004339 dwc2_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004340 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004341
Lukasz Majewski2b19a522012-06-14 10:02:25 +02004342 spin_lock_irqsave(&hsotg->lock, flags);
4343
Marek Szyprowski32805c32014-10-20 12:45:33 +02004344 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004345 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004346 hsotg->enabled = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004347
Lukasz Majewski2b19a522012-06-14 10:02:25 +02004348 spin_unlock_irqrestore(&hsotg->lock, flags);
4349
Gregory Herrerof6c01592015-01-09 13:38:41 +01004350 if (!IS_ERR_OR_NULL(hsotg->uphy))
4351 otg_set_peripheral(hsotg->uphy->otg, NULL);
Marek Szyprowskic816c472014-10-20 12:45:37 +02004352
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004353 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)
4354 dwc2_lowlevel_hw_disable(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004355
4356 return 0;
4357}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004358
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004359/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004360 * dwc2_hsotg_gadget_getframe - read the frame number
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004361 * @gadget: The usb gadget state
4362 *
4363 * Read the {micro} frame number
4364 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004365static int dwc2_hsotg_gadget_getframe(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004366{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004367 return dwc2_hsotg_read_frameno(to_hsotg(gadget));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004368}
4369
Lukasz Majewskia188b682012-06-22 09:29:56 +02004370/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004371 * dwc2_hsotg_pullup - connect/disconnect the USB PHY
Lukasz Majewskia188b682012-06-22 09:29:56 +02004372 * @gadget: The usb gadget state
4373 * @is_on: Current state of the USB PHY
4374 *
4375 * Connect/Disconnect the USB PHY pullup
4376 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004377static int dwc2_hsotg_pullup(struct usb_gadget *gadget, int is_on)
Lukasz Majewskia188b682012-06-22 09:29:56 +02004378{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004379 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewskia188b682012-06-22 09:29:56 +02004380 unsigned long flags = 0;
4381
Gregory Herrero77ba9112015-09-29 12:08:19 +02004382 dev_dbg(hsotg->dev, "%s: is_on: %d op_state: %d\n", __func__, is_on,
John Youn9da51972017-01-17 20:30:27 -08004383 hsotg->op_state);
Gregory Herrero77ba9112015-09-29 12:08:19 +02004384
4385 /* Don't modify pullup state while in host mode */
4386 if (hsotg->op_state != OTG_STATE_B_PERIPHERAL) {
4387 hsotg->enabled = is_on;
4388 return 0;
4389 }
Lukasz Majewskia188b682012-06-22 09:29:56 +02004390
4391 spin_lock_irqsave(&hsotg->lock, flags);
4392 if (is_on) {
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004393 hsotg->enabled = 1;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004394 dwc2_hsotg_core_init_disconnected(hsotg, false);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004395 /* Enable ACG feature in device mode,if supported */
4396 dwc2_enable_acg(hsotg);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004397 dwc2_hsotg_core_connect(hsotg);
Lukasz Majewskia188b682012-06-22 09:29:56 +02004398 } else {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004399 dwc2_hsotg_core_disconnect(hsotg);
4400 dwc2_hsotg_disconnect(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004401 hsotg->enabled = 0;
Lukasz Majewskia188b682012-06-22 09:29:56 +02004402 }
4403
4404 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
4405 spin_unlock_irqrestore(&hsotg->lock, flags);
4406
4407 return 0;
4408}
4409
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004410static int dwc2_hsotg_vbus_session(struct usb_gadget *gadget, int is_active)
Gregory Herrero83d98222015-01-09 13:39:02 +01004411{
4412 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
4413 unsigned long flags;
4414
4415 dev_dbg(hsotg->dev, "%s: is_active: %d\n", __func__, is_active);
4416 spin_lock_irqsave(&hsotg->lock, flags);
4417
Gregory Herrero61f72232015-09-29 12:08:28 +02004418 /*
Vardan Mikayelyan41ba9b92018-02-16 14:06:36 +04004419 * If controller is hibernated, it must exit from power_down
Gregory Herrero61f72232015-09-29 12:08:28 +02004420 * before being initialized / de-initialized
4421 */
4422 if (hsotg->lx_state == DWC2_L2)
Vardan Mikayelyan41ba9b92018-02-16 14:06:36 +04004423 dwc2_exit_partial_power_down(hsotg, false);
Gregory Herrero61f72232015-09-29 12:08:28 +02004424
Gregory Herrero83d98222015-01-09 13:39:02 +01004425 if (is_active) {
Gregory Herrerocd0e6412015-09-29 12:08:20 +02004426 hsotg->op_state = OTG_STATE_B_PERIPHERAL;
Gregory Herrero065d3932015-09-22 15:16:54 +02004427
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004428 dwc2_hsotg_core_init_disconnected(hsotg, false);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004429 if (hsotg->enabled) {
4430 /* Enable ACG feature in device mode,if supported */
4431 dwc2_enable_acg(hsotg);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004432 dwc2_hsotg_core_connect(hsotg);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004433 }
Gregory Herrero83d98222015-01-09 13:39:02 +01004434 } else {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004435 dwc2_hsotg_core_disconnect(hsotg);
4436 dwc2_hsotg_disconnect(hsotg);
Gregory Herrero83d98222015-01-09 13:39:02 +01004437 }
4438
4439 spin_unlock_irqrestore(&hsotg->lock, flags);
4440 return 0;
4441}
4442
Gregory Herrero596d6962015-01-09 13:39:08 +01004443/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004444 * dwc2_hsotg_vbus_draw - report bMaxPower field
Gregory Herrero596d6962015-01-09 13:39:08 +01004445 * @gadget: The usb gadget state
4446 * @mA: Amount of current
4447 *
4448 * Report how much power the device may consume to the phy.
4449 */
John Youn9da51972017-01-17 20:30:27 -08004450static int dwc2_hsotg_vbus_draw(struct usb_gadget *gadget, unsigned int mA)
Gregory Herrero596d6962015-01-09 13:39:08 +01004451{
4452 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
4453
4454 if (IS_ERR_OR_NULL(hsotg->uphy))
4455 return -ENOTSUPP;
4456 return usb_phy_set_power(hsotg->uphy, mA);
4457}
4458
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004459static const struct usb_gadget_ops dwc2_hsotg_gadget_ops = {
4460 .get_frame = dwc2_hsotg_gadget_getframe,
4461 .udc_start = dwc2_hsotg_udc_start,
4462 .udc_stop = dwc2_hsotg_udc_stop,
4463 .pullup = dwc2_hsotg_pullup,
4464 .vbus_session = dwc2_hsotg_vbus_session,
4465 .vbus_draw = dwc2_hsotg_vbus_draw,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004466};
4467
4468/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004469 * dwc2_hsotg_initep - initialise a single endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004470 * @hsotg: The device state.
4471 * @hs_ep: The endpoint to be initialised.
4472 * @epnum: The endpoint number
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004473 * @dir_in: True if direction is in.
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004474 *
4475 * Initialise the given endpoint (as part of the probe and device state
4476 * creation) to give to the gadget driver. Setup the endpoint name, any
4477 * direction information and other state that may be required.
4478 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004479static void dwc2_hsotg_initep(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08004480 struct dwc2_hsotg_ep *hs_ep,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004481 int epnum,
4482 bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004483{
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004484 char *dir;
4485
4486 if (epnum == 0)
4487 dir = "";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004488 else if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004489 dir = "in";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004490 else
4491 dir = "out";
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004492
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004493 hs_ep->dir_in = dir_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004494 hs_ep->index = epnum;
4495
4496 snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
4497
4498 INIT_LIST_HEAD(&hs_ep->queue);
4499 INIT_LIST_HEAD(&hs_ep->ep.ep_list);
4500
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004501 /* add to the list of endpoints known by the gadget driver */
4502 if (epnum)
4503 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
4504
4505 hs_ep->parent = hsotg;
4506 hs_ep->ep.name = hs_ep->name;
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08004507
4508 if (hsotg->params.speed == DWC2_SPEED_PARAM_LOW)
4509 usb_ep_set_maxpacket_limit(&hs_ep->ep, 8);
4510 else
4511 usb_ep_set_maxpacket_limit(&hs_ep->ep,
4512 epnum ? 1024 : EP0_MPS_LIMIT);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004513 hs_ep->ep.ops = &dwc2_hsotg_ep_ops;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004514
Robert Baldyga29545222015-07-31 16:00:18 +02004515 if (epnum == 0) {
4516 hs_ep->ep.caps.type_control = true;
4517 } else {
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08004518 if (hsotg->params.speed != DWC2_SPEED_PARAM_LOW) {
4519 hs_ep->ep.caps.type_iso = true;
4520 hs_ep->ep.caps.type_bulk = true;
4521 }
Robert Baldyga29545222015-07-31 16:00:18 +02004522 hs_ep->ep.caps.type_int = true;
4523 }
4524
4525 if (dir_in)
4526 hs_ep->ep.caps.dir_in = true;
4527 else
4528 hs_ep->ep.caps.dir_out = true;
4529
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004530 /*
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004531 * if we're using dma, we need to set the next-endpoint pointer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004532 * to be something valid.
4533 */
4534
4535 if (using_dma(hsotg)) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07004536 u32 next = DXEPCTL_NEXTEP((epnum + 1) % 15);
John Youn9da51972017-01-17 20:30:27 -08004537
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004538 if (dir_in)
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004539 dwc2_writel(next, hsotg->regs + DIEPCTL(epnum));
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004540 else
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004541 dwc2_writel(next, hsotg->regs + DOEPCTL(epnum));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004542 }
4543}
4544
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004545/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004546 * dwc2_hsotg_hw_cfg - read HW configuration registers
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004547 * @hsotg: Programming view of the DWC_otg controller
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004548 *
4549 * Read the USB core HW configuration registers
4550 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004551static int dwc2_hsotg_hw_cfg(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004552{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004553 u32 cfg;
4554 u32 ep_type;
4555 u32 i;
4556
Ben Dooks10aebc72010-07-19 09:40:44 +01004557 /* check hardware configuration */
4558
John Youn43e90342015-12-17 11:17:45 -08004559 hsotg->num_of_eps = hsotg->hw_params.num_dev_ep;
4560
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004561 /* Add ep0 */
4562 hsotg->num_of_eps++;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004563
John Younb98866c2017-01-17 20:31:58 -08004564 hsotg->eps_in[0] = devm_kzalloc(hsotg->dev,
4565 sizeof(struct dwc2_hsotg_ep),
4566 GFP_KERNEL);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004567 if (!hsotg->eps_in[0])
4568 return -ENOMEM;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004569 /* Same dwc2_hsotg_ep is used in both directions for ep0 */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004570 hsotg->eps_out[0] = hsotg->eps_in[0];
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004571
John Youn43e90342015-12-17 11:17:45 -08004572 cfg = hsotg->hw_params.dev_ep_dirs;
Roshan Pius251a17f2015-02-02 14:55:38 -08004573 for (i = 1, cfg >>= 2; i < hsotg->num_of_eps; i++, cfg >>= 2) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004574 ep_type = cfg & 3;
4575 /* Direction in or both */
4576 if (!(ep_type & 2)) {
4577 hsotg->eps_in[i] = devm_kzalloc(hsotg->dev,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004578 sizeof(struct dwc2_hsotg_ep), GFP_KERNEL);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004579 if (!hsotg->eps_in[i])
4580 return -ENOMEM;
4581 }
4582 /* Direction out or both */
4583 if (!(ep_type & 1)) {
4584 hsotg->eps_out[i] = devm_kzalloc(hsotg->dev,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004585 sizeof(struct dwc2_hsotg_ep), GFP_KERNEL);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004586 if (!hsotg->eps_out[i])
4587 return -ENOMEM;
4588 }
4589 }
4590
John Youn43e90342015-12-17 11:17:45 -08004591 hsotg->fifo_mem = hsotg->hw_params.total_fifo_size;
4592 hsotg->dedicated_fifos = hsotg->hw_params.en_multiple_tx_fifo;
Ben Dooks10aebc72010-07-19 09:40:44 +01004593
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02004594 dev_info(hsotg->dev, "EPs: %d, %s fifos, %d entries in SPRAM\n",
4595 hsotg->num_of_eps,
4596 hsotg->dedicated_fifos ? "dedicated" : "shared",
4597 hsotg->fifo_mem);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004598 return 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004599}
4600
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004601/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004602 * dwc2_hsotg_dump - dump state of the udc
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004603 * @hsotg: Programming view of the DWC_otg controller
4604 *
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004605 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004606static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004607{
Mark Brown83a01802011-06-01 17:16:15 +01004608#ifdef DEBUG
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004609 struct device *dev = hsotg->dev;
4610 void __iomem *regs = hsotg->regs;
4611 u32 val;
4612 int idx;
4613
4614 dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004615 dwc2_readl(regs + DCFG), dwc2_readl(regs + DCTL),
4616 dwc2_readl(regs + DIEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004617
Mian Yousaf Kaukabf889f232015-01-30 09:09:36 +01004618 dev_info(dev, "GAHBCFG=0x%08x, GHWCFG1=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004619 dwc2_readl(regs + GAHBCFG), dwc2_readl(regs + GHWCFG1));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004620
4621 dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004622 dwc2_readl(regs + GRXFSIZ), dwc2_readl(regs + GNPTXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004623
4624 /* show periodic fifo settings */
4625
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01004626 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004627 val = dwc2_readl(regs + DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004628 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07004629 val >> FIFOSIZE_DEPTH_SHIFT,
4630 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004631 }
4632
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01004633 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004634 dev_info(dev,
4635 "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004636 dwc2_readl(regs + DIEPCTL(idx)),
4637 dwc2_readl(regs + DIEPTSIZ(idx)),
4638 dwc2_readl(regs + DIEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004639
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004640 val = dwc2_readl(regs + DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004641 dev_info(dev,
4642 "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004643 idx, dwc2_readl(regs + DOEPCTL(idx)),
4644 dwc2_readl(regs + DOEPTSIZ(idx)),
4645 dwc2_readl(regs + DOEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004646 }
4647
4648 dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004649 dwc2_readl(regs + DVBUSDIS), dwc2_readl(regs + DVBUSPULSE));
Mark Brown83a01802011-06-01 17:16:15 +01004650#endif
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004651}
4652
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004653/**
Dinh Nguyen117777b2014-11-11 11:13:34 -06004654 * dwc2_gadget_init - init function for gadget
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004655 * @hsotg: Programming view of the DWC_otg controller
4656 *
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004657 */
Vardan Mikayelyanf3768992017-12-25 15:17:45 +04004658int dwc2_gadget_init(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004659{
Dinh Nguyen117777b2014-11-11 11:13:34 -06004660 struct device *dev = hsotg->dev;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004661 int epnum;
4662 int ret;
John Youn43e90342015-12-17 11:17:45 -08004663
Gregory Herrero0a176272015-01-09 13:38:52 +01004664 /* Dump fifo information */
4665 dev_dbg(dev, "NonPeriodic TXFIFO size: %d\n",
John Youn05ee7992016-11-03 17:56:05 -07004666 hsotg->params.g_np_tx_fifo_size);
4667 dev_dbg(dev, "RXFIFO size: %d\n", hsotg->params.g_rx_fifo_size);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02004668
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01004669 hsotg->gadget.max_speed = USB_SPEED_HIGH;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004670 hsotg->gadget.ops = &dwc2_hsotg_gadget_ops;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004671 hsotg->gadget.name = dev_name(dev);
Vardan Mikayelyanfa389a62018-02-16 14:08:53 +04004672 hsotg->remote_wakeup_allowed = 0;
John Youn7455f8b2018-01-24 17:44:51 +04004673
4674 if (hsotg->params.lpm)
4675 hsotg->gadget.lpm_capable = true;
4676
Gregory Herrero097ee662015-04-29 22:09:10 +02004677 if (hsotg->dr_mode == USB_DR_MODE_OTG)
4678 hsotg->gadget.is_otg = 1;
Mian Yousaf Kaukabec4cc652015-09-22 15:16:55 +02004679 else if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)
4680 hsotg->op_state = OTG_STATE_B_PERIPHERAL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004681
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004682 ret = dwc2_hsotg_hw_cfg(hsotg);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004683 if (ret) {
4684 dev_err(hsotg->dev, "Hardware configuration failed: %d\n", ret);
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004685 return ret;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004686 }
4687
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01004688 hsotg->ctrl_buff = devm_kzalloc(hsotg->dev,
4689 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
Wolfram Sang8bae0f82016-08-25 19:39:02 +02004690 if (!hsotg->ctrl_buff)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004691 return -ENOMEM;
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01004692
4693 hsotg->ep0_buff = devm_kzalloc(hsotg->dev,
4694 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
Wolfram Sang8bae0f82016-08-25 19:39:02 +02004695 if (!hsotg->ep0_buff)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004696 return -ENOMEM;
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01004697
Vahram Aharonyan0f6b80c2016-11-09 19:27:56 -08004698 if (using_desc_dma(hsotg)) {
4699 ret = dwc2_gadget_alloc_ctrl_desc_chains(hsotg);
4700 if (ret < 0)
4701 return ret;
4702 }
4703
Vardan Mikayelyanf3768992017-12-25 15:17:45 +04004704 ret = devm_request_irq(hsotg->dev, hsotg->irq, dwc2_hsotg_irq,
4705 IRQF_SHARED, dev_name(hsotg->dev), hsotg);
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02004706 if (ret < 0) {
Dinh Nguyendb8178c2014-11-11 11:13:37 -06004707 dev_err(dev, "cannot claim IRQ for gadget\n");
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004708 return ret;
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02004709 }
4710
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004711 /* hsotg->num_of_eps holds number of EPs other than ep0 */
4712
4713 if (hsotg->num_of_eps == 0) {
4714 dev_err(dev, "wrong number of EPs (zero)\n");
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004715 return -EINVAL;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004716 }
4717
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004718 /* setup endpoint information */
4719
4720 INIT_LIST_HEAD(&hsotg->gadget.ep_list);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004721 hsotg->gadget.ep0 = &hsotg->eps_out[0]->ep;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004722
4723 /* allocate EP0 request */
4724
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004725 hsotg->ctrl_req = dwc2_hsotg_ep_alloc_request(&hsotg->eps_out[0]->ep,
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004726 GFP_KERNEL);
4727 if (!hsotg->ctrl_req) {
4728 dev_err(dev, "failed to allocate ctrl req\n");
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004729 return -ENOMEM;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004730 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004731
4732 /* initialise the endpoints now the core has been initialised */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004733 for (epnum = 0; epnum < hsotg->num_of_eps; epnum++) {
4734 if (hsotg->eps_in[epnum])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004735 dwc2_hsotg_initep(hsotg, hsotg->eps_in[epnum],
John Youn9da51972017-01-17 20:30:27 -08004736 epnum, 1);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004737 if (hsotg->eps_out[epnum])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004738 dwc2_hsotg_initep(hsotg, hsotg->eps_out[epnum],
John Youn9da51972017-01-17 20:30:27 -08004739 epnum, 0);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004740 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004741
Dinh Nguyen117777b2014-11-11 11:13:34 -06004742 ret = usb_add_gadget_udc(dev, &hsotg->gadget);
Grigor Tovmasyan9bb073a2018-05-24 18:22:30 +04004743 if (ret) {
4744 dwc2_hsotg_ep_free_request(&hsotg->eps_out[0]->ep,
4745 hsotg->ctrl_req);
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004746 return ret;
Grigor Tovmasyan9bb073a2018-05-24 18:22:30 +04004747 }
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004748 dwc2_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004749
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004750 return 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004751}
4752
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004753/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004754 * dwc2_hsotg_remove - remove function for hsotg driver
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004755 * @hsotg: Programming view of the DWC_otg controller
4756 *
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004757 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004758int dwc2_hsotg_remove(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004759{
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03004760 usb_del_gadget_udc(&hsotg->gadget);
Grigor Tovmasyan9bb073a2018-05-24 18:22:30 +04004761 dwc2_hsotg_ep_free_request(&hsotg->eps_out[0]->ep, hsotg->ctrl_req);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02004762
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004763 return 0;
4764}
4765
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004766int dwc2_hsotg_suspend(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004767{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004768 unsigned long flags;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004769
Gregory Herrero9e779772015-04-29 22:09:07 +02004770 if (hsotg->lx_state != DWC2_L0)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004771 return 0;
Gregory Herrero9e779772015-04-29 22:09:07 +02004772
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004773 if (hsotg->driver) {
4774 int ep;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004775
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004776 dev_info(hsotg->dev, "suspending usb gadget %s\n",
4777 hsotg->driver->driver.name);
4778
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004779 spin_lock_irqsave(&hsotg->lock, flags);
4780 if (hsotg->enabled)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004781 dwc2_hsotg_core_disconnect(hsotg);
4782 dwc2_hsotg_disconnect(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004783 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
4784 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004785
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004786 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
4787 if (hsotg->eps_in[ep])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004788 dwc2_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004789 if (hsotg->eps_out[ep])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004790 dwc2_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004791 }
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004792 }
4793
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004794 return 0;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004795}
4796
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004797int dwc2_hsotg_resume(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004798{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004799 unsigned long flags;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004800
Gregory Herrero9e779772015-04-29 22:09:07 +02004801 if (hsotg->lx_state == DWC2_L2)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004802 return 0;
Gregory Herrero9e779772015-04-29 22:09:07 +02004803
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004804 if (hsotg->driver) {
4805 dev_info(hsotg->dev, "resuming usb gadget %s\n",
4806 hsotg->driver->driver.name);
Robert Baldygad00b4142014-09-09 10:44:57 +02004807
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004808 spin_lock_irqsave(&hsotg->lock, flags);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004809 dwc2_hsotg_core_init_disconnected(hsotg, false);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004810 if (hsotg->enabled) {
4811 /* Enable ACG feature in device mode,if supported */
4812 dwc2_enable_acg(hsotg);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004813 dwc2_hsotg_core_connect(hsotg);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004814 }
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004815 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004816 }
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004817
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004818 return 0;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004819}
John Youn58e52ff6a2016-02-23 19:54:57 -08004820
4821/**
4822 * dwc2_backup_device_registers() - Backup controller device registers.
4823 * When suspending usb bus, registers needs to be backuped
4824 * if controller power is disabled once suspended.
4825 *
4826 * @hsotg: Programming view of the DWC_otg controller
4827 */
4828int dwc2_backup_device_registers(struct dwc2_hsotg *hsotg)
4829{
4830 struct dwc2_dregs_backup *dr;
4831 int i;
4832
4833 dev_dbg(hsotg->dev, "%s\n", __func__);
4834
4835 /* Backup dev regs */
4836 dr = &hsotg->dr_backup;
4837
4838 dr->dcfg = dwc2_readl(hsotg->regs + DCFG);
4839 dr->dctl = dwc2_readl(hsotg->regs + DCTL);
4840 dr->daintmsk = dwc2_readl(hsotg->regs + DAINTMSK);
4841 dr->diepmsk = dwc2_readl(hsotg->regs + DIEPMSK);
4842 dr->doepmsk = dwc2_readl(hsotg->regs + DOEPMSK);
4843
4844 for (i = 0; i < hsotg->num_of_eps; i++) {
4845 /* Backup IN EPs */
4846 dr->diepctl[i] = dwc2_readl(hsotg->regs + DIEPCTL(i));
4847
4848 /* Ensure DATA PID is correctly configured */
4849 if (dr->diepctl[i] & DXEPCTL_DPID)
4850 dr->diepctl[i] |= DXEPCTL_SETD1PID;
4851 else
4852 dr->diepctl[i] |= DXEPCTL_SETD0PID;
4853
4854 dr->dieptsiz[i] = dwc2_readl(hsotg->regs + DIEPTSIZ(i));
4855 dr->diepdma[i] = dwc2_readl(hsotg->regs + DIEPDMA(i));
4856
4857 /* Backup OUT EPs */
4858 dr->doepctl[i] = dwc2_readl(hsotg->regs + DOEPCTL(i));
4859
4860 /* Ensure DATA PID is correctly configured */
4861 if (dr->doepctl[i] & DXEPCTL_DPID)
4862 dr->doepctl[i] |= DXEPCTL_SETD1PID;
4863 else
4864 dr->doepctl[i] |= DXEPCTL_SETD0PID;
4865
4866 dr->doeptsiz[i] = dwc2_readl(hsotg->regs + DOEPTSIZ(i));
4867 dr->doepdma[i] = dwc2_readl(hsotg->regs + DOEPDMA(i));
Vardan Mikayelyanaf7c2bd2018-02-16 14:07:33 +04004868 dr->dtxfsiz[i] = dwc2_readl(hsotg->regs + DPTXFSIZN(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08004869 }
4870 dr->valid = true;
4871 return 0;
4872}
4873
4874/**
4875 * dwc2_restore_device_registers() - Restore controller device registers.
4876 * When resuming usb bus, device registers needs to be restored
4877 * if controller power were disabled.
4878 *
4879 * @hsotg: Programming view of the DWC_otg controller
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04004880 * @remote_wakeup: Indicates whether resume is initiated by Device or Host.
4881 *
4882 * Return: 0 if successful, negative error code otherwise
John Youn58e52ff6a2016-02-23 19:54:57 -08004883 */
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04004884int dwc2_restore_device_registers(struct dwc2_hsotg *hsotg, int remote_wakeup)
John Youn58e52ff6a2016-02-23 19:54:57 -08004885{
4886 struct dwc2_dregs_backup *dr;
John Youn58e52ff6a2016-02-23 19:54:57 -08004887 int i;
4888
4889 dev_dbg(hsotg->dev, "%s\n", __func__);
4890
4891 /* Restore dev regs */
4892 dr = &hsotg->dr_backup;
4893 if (!dr->valid) {
4894 dev_err(hsotg->dev, "%s: no device registers to restore\n",
4895 __func__);
4896 return -EINVAL;
4897 }
4898 dr->valid = false;
4899
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04004900 if (!remote_wakeup)
4901 dwc2_writel(dr->dctl, hsotg->regs + DCTL);
4902
John Youn58e52ff6a2016-02-23 19:54:57 -08004903 dwc2_writel(dr->daintmsk, hsotg->regs + DAINTMSK);
4904 dwc2_writel(dr->diepmsk, hsotg->regs + DIEPMSK);
4905 dwc2_writel(dr->doepmsk, hsotg->regs + DOEPMSK);
4906
4907 for (i = 0; i < hsotg->num_of_eps; i++) {
4908 /* Restore IN EPs */
John Youn58e52ff6a2016-02-23 19:54:57 -08004909 dwc2_writel(dr->dieptsiz[i], hsotg->regs + DIEPTSIZ(i));
4910 dwc2_writel(dr->diepdma[i], hsotg->regs + DIEPDMA(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08004911 dwc2_writel(dr->doeptsiz[i], hsotg->regs + DOEPTSIZ(i));
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04004912 /** WA for enabled EPx's IN in DDMA mode. On entering to
4913 * hibernation wrong value read and saved from DIEPDMAx,
4914 * as result BNA interrupt asserted on hibernation exit
4915 * by restoring from saved area.
4916 */
4917 if (hsotg->params.g_dma_desc &&
4918 (dr->diepctl[i] & DXEPCTL_EPENA))
4919 dr->diepdma[i] = hsotg->eps_in[i]->desc_list_dma;
4920 dwc2_writel(dr->dtxfsiz[i], hsotg->regs + DPTXFSIZN(i));
4921 dwc2_writel(dr->diepctl[i], hsotg->regs + DIEPCTL(i));
4922 /* Restore OUT EPs */
4923 dwc2_writel(dr->doeptsiz[i], hsotg->regs + DOEPTSIZ(i));
4924 /* WA for enabled EPx's OUT in DDMA mode. On entering to
4925 * hibernation wrong value read and saved from DOEPDMAx,
4926 * as result BNA interrupt asserted on hibernation exit
4927 * by restoring from saved area.
4928 */
4929 if (hsotg->params.g_dma_desc &&
4930 (dr->doepctl[i] & DXEPCTL_EPENA))
4931 dr->doepdma[i] = hsotg->eps_out[i]->desc_list_dma;
John Youn58e52ff6a2016-02-23 19:54:57 -08004932 dwc2_writel(dr->doepdma[i], hsotg->regs + DOEPDMA(i));
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04004933 dwc2_writel(dr->doepctl[i], hsotg->regs + DOEPCTL(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08004934 }
4935
John Youn58e52ff6a2016-02-23 19:54:57 -08004936 return 0;
4937}
Sevak Arakelyan21b03402018-01-24 17:43:32 +04004938
4939/**
4940 * dwc2_gadget_init_lpm - Configure the core to support LPM in device mode
4941 *
4942 * @hsotg: Programming view of DWC_otg controller
4943 *
4944 */
4945void dwc2_gadget_init_lpm(struct dwc2_hsotg *hsotg)
4946{
4947 u32 val;
4948
4949 if (!hsotg->params.lpm)
4950 return;
4951
4952 val = GLPMCFG_LPMCAP | GLPMCFG_APPL1RES;
4953 val |= hsotg->params.hird_threshold_en ? GLPMCFG_HIRD_THRES_EN : 0;
4954 val |= hsotg->params.lpm_clock_gating ? GLPMCFG_ENBLSLPM : 0;
4955 val |= hsotg->params.hird_threshold << GLPMCFG_HIRD_THRES_SHIFT;
4956 val |= hsotg->params.besl ? GLPMCFG_ENBESL : 0;
4957 dwc2_writel(val, hsotg->regs + GLPMCFG);
4958 dev_dbg(hsotg->dev, "GLPMCFG=0x%08x\n", dwc2_readl(hsotg->regs
4959 + GLPMCFG));
4960}
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04004961
4962/**
4963 * dwc2_gadget_enter_hibernation() - Put controller in Hibernation.
4964 *
4965 * @hsotg: Programming view of the DWC_otg controller
4966 *
4967 * Return non-zero if failed to enter to hibernation.
4968 */
4969int dwc2_gadget_enter_hibernation(struct dwc2_hsotg *hsotg)
4970{
4971 u32 gpwrdn;
4972 int ret = 0;
4973
4974 /* Change to L2(suspend) state */
4975 hsotg->lx_state = DWC2_L2;
4976 dev_dbg(hsotg->dev, "Start of hibernation completed\n");
4977 ret = dwc2_backup_global_registers(hsotg);
4978 if (ret) {
4979 dev_err(hsotg->dev, "%s: failed to backup global registers\n",
4980 __func__);
4981 return ret;
4982 }
4983 ret = dwc2_backup_device_registers(hsotg);
4984 if (ret) {
4985 dev_err(hsotg->dev, "%s: failed to backup device registers\n",
4986 __func__);
4987 return ret;
4988 }
4989
4990 gpwrdn = GPWRDN_PWRDNRSTN;
4991 gpwrdn |= GPWRDN_PMUACTV;
4992 dwc2_writel(gpwrdn, hsotg->regs + GPWRDN);
4993 udelay(10);
4994
4995 /* Set flag to indicate that we are in hibernation */
4996 hsotg->hibernated = 1;
4997
4998 /* Enable interrupts from wake up logic */
4999 gpwrdn = dwc2_readl(hsotg->regs + GPWRDN);
5000 gpwrdn |= GPWRDN_PMUINTSEL;
5001 dwc2_writel(gpwrdn, hsotg->regs + GPWRDN);
5002 udelay(10);
5003
5004 /* Unmask device mode interrupts in GPWRDN */
5005 gpwrdn = dwc2_readl(hsotg->regs + GPWRDN);
5006 gpwrdn |= GPWRDN_RST_DET_MSK;
5007 gpwrdn |= GPWRDN_LNSTSCHG_MSK;
5008 gpwrdn |= GPWRDN_STS_CHGINT_MSK;
5009 dwc2_writel(gpwrdn, hsotg->regs + GPWRDN);
5010 udelay(10);
5011
5012 /* Enable Power Down Clamp */
5013 gpwrdn = dwc2_readl(hsotg->regs + GPWRDN);
5014 gpwrdn |= GPWRDN_PWRDNCLMP;
5015 dwc2_writel(gpwrdn, hsotg->regs + GPWRDN);
5016 udelay(10);
5017
5018 /* Switch off VDD */
5019 gpwrdn = dwc2_readl(hsotg->regs + GPWRDN);
5020 gpwrdn |= GPWRDN_PWRDNSWTCH;
5021 dwc2_writel(gpwrdn, hsotg->regs + GPWRDN);
5022 udelay(10);
5023
5024 /* Save gpwrdn register for further usage if stschng interrupt */
5025 hsotg->gr_backup.gpwrdn = dwc2_readl(hsotg->regs + GPWRDN);
5026 dev_dbg(hsotg->dev, "Hibernation completed\n");
5027
5028 return ret;
5029}
5030
5031/**
5032 * dwc2_gadget_exit_hibernation()
5033 * This function is for exiting from Device mode hibernation by host initiated
5034 * resume/reset and device initiated remote-wakeup.
5035 *
5036 * @hsotg: Programming view of the DWC_otg controller
5037 * @rem_wakeup: indicates whether resume is initiated by Device or Host.
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04005038 * @reset: indicates whether resume is initiated by Reset.
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005039 *
5040 * Return non-zero if failed to exit from hibernation.
5041 */
5042int dwc2_gadget_exit_hibernation(struct dwc2_hsotg *hsotg,
5043 int rem_wakeup, int reset)
5044{
5045 u32 pcgcctl;
5046 u32 gpwrdn;
5047 u32 dctl;
5048 int ret = 0;
5049 struct dwc2_gregs_backup *gr;
5050 struct dwc2_dregs_backup *dr;
5051
5052 gr = &hsotg->gr_backup;
5053 dr = &hsotg->dr_backup;
5054
5055 if (!hsotg->hibernated) {
5056 dev_dbg(hsotg->dev, "Already exited from Hibernation\n");
5057 return 1;
5058 }
5059 dev_dbg(hsotg->dev,
5060 "%s: called with rem_wakeup = %d reset = %d\n",
5061 __func__, rem_wakeup, reset);
5062
5063 dwc2_hib_restore_common(hsotg, rem_wakeup, 0);
5064
5065 if (!reset) {
5066 /* Clear all pending interupts */
5067 dwc2_writel(0xffffffff, hsotg->regs + GINTSTS);
5068 }
5069
5070 /* De-assert Restore */
5071 gpwrdn = dwc2_readl(hsotg->regs + GPWRDN);
5072 gpwrdn &= ~GPWRDN_RESTORE;
5073 dwc2_writel(gpwrdn, hsotg->regs + GPWRDN);
5074 udelay(10);
5075
5076 if (!rem_wakeup) {
5077 pcgcctl = dwc2_readl(hsotg->regs + PCGCTL);
5078 pcgcctl &= ~PCGCTL_RSTPDWNMODULE;
5079 dwc2_writel(pcgcctl, hsotg->regs + PCGCTL);
5080 }
5081
5082 /* Restore GUSBCFG, DCFG and DCTL */
5083 dwc2_writel(gr->gusbcfg, hsotg->regs + GUSBCFG);
5084 dwc2_writel(dr->dcfg, hsotg->regs + DCFG);
5085 dwc2_writel(dr->dctl, hsotg->regs + DCTL);
5086
5087 /* De-assert Wakeup Logic */
5088 gpwrdn = dwc2_readl(hsotg->regs + GPWRDN);
5089 gpwrdn &= ~GPWRDN_PMUACTV;
5090 dwc2_writel(gpwrdn, hsotg->regs + GPWRDN);
5091
5092 if (rem_wakeup) {
5093 udelay(10);
5094 /* Start Remote Wakeup Signaling */
5095 dwc2_writel(dr->dctl | DCTL_RMTWKUPSIG, hsotg->regs + DCTL);
5096 } else {
5097 udelay(50);
5098 /* Set Device programming done bit */
5099 dctl = dwc2_readl(hsotg->regs + DCTL);
5100 dctl |= DCTL_PWRONPRGDONE;
5101 dwc2_writel(dctl, hsotg->regs + DCTL);
5102 }
5103 /* Wait for interrupts which must be cleared */
5104 mdelay(2);
5105 /* Clear all pending interupts */
5106 dwc2_writel(0xffffffff, hsotg->regs + GINTSTS);
5107
5108 /* Restore global registers */
5109 ret = dwc2_restore_global_registers(hsotg);
5110 if (ret) {
5111 dev_err(hsotg->dev, "%s: failed to restore registers\n",
5112 __func__);
5113 return ret;
5114 }
5115
5116 /* Restore device registers */
5117 ret = dwc2_restore_device_registers(hsotg, rem_wakeup);
5118 if (ret) {
5119 dev_err(hsotg->dev, "%s: failed to restore device registers\n",
5120 __func__);
5121 return ret;
5122 }
5123
5124 if (rem_wakeup) {
5125 mdelay(10);
5126 dctl = dwc2_readl(hsotg->regs + DCTL);
5127 dctl &= ~DCTL_RMTWKUPSIG;
5128 dwc2_writel(dctl, hsotg->regs + DCTL);
5129 }
5130
5131 hsotg->hibernated = 0;
5132 hsotg->lx_state = DWC2_L0;
5133 dev_dbg(hsotg->dev, "Hibernation recovery completes here\n");
5134
5135 return ret;
5136}