blob: 6be10e496e10579198fcd683bdb66de34f058850 [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>
Minas Harutyunyanb4c53b42019-03-12 11:45:12 +040030#include <linux/usb/composite.h>
31
Ben Dooks5b7d70c2009-06-02 14:58:06 +010032
Dinh Nguyenf7c0b142014-04-14 14:13:35 -070033#include "core.h"
Dinh Nguyen941fcce2014-11-11 11:13:33 -060034#include "hw.h"
Ben Dooks5b7d70c2009-06-02 14:58:06 +010035
36/* conversion functions */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050037static inline struct dwc2_hsotg_req *our_req(struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010038{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050039 return container_of(req, struct dwc2_hsotg_req, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010040}
41
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050042static inline struct dwc2_hsotg_ep *our_ep(struct usb_ep *ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010043{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050044 return container_of(ep, struct dwc2_hsotg_ep, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010045}
46
Dinh Nguyen941fcce2014-11-11 11:13:33 -060047static inline struct dwc2_hsotg *to_hsotg(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010048{
Dinh Nguyen941fcce2014-11-11 11:13:33 -060049 return container_of(gadget, struct dwc2_hsotg, gadget);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010050}
51
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +040052static inline void dwc2_set_bit(struct dwc2_hsotg *hsotg, u32 offset, u32 val)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010053{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +040054 dwc2_writel(hsotg, dwc2_readl(hsotg, offset) | val, offset);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010055}
56
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +040057static inline void dwc2_clear_bit(struct dwc2_hsotg *hsotg, u32 offset, u32 val)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010058{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +040059 dwc2_writel(hsotg, dwc2_readl(hsotg, offset) & ~val, offset);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010060}
61
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050062static inline struct dwc2_hsotg_ep *index_to_ep(struct dwc2_hsotg *hsotg,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +010063 u32 ep_index, u32 dir_in)
64{
65 if (dir_in)
66 return hsotg->eps_in[ep_index];
67 else
68 return hsotg->eps_out[ep_index];
69}
70
Mickael Maison997f4f82014-12-23 17:39:45 +010071/* forward declaration of functions */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -050072static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +010073
74/**
75 * using_dma - return the DMA status of the driver.
76 * @hsotg: The driver state.
77 *
78 * Return true if we're using DMA.
79 *
80 * Currently, we have the DMA support code worked into everywhere
81 * that needs it, but the AMBA DMA implementation in the hardware can
82 * only DMA from 32bit aligned addresses. This means that gadgets such
83 * as the CDC Ethernet cannot work as they often pass packets which are
84 * not 32bit aligned.
85 *
86 * Unfortunately the choice to use DMA or not is global to the controller
87 * and seems to be only settable when the controller is being put through
88 * a core reset. This means we either need to fix the gadgets to take
89 * account of DMA alignment, or add bounce buffers (yuerk).
90 *
Gregory Herreroedd74be2015-01-09 13:38:48 +010091 * g_using_dma is set depending on dts flag.
Ben Dooks5b7d70c2009-06-02 14:58:06 +010092 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -060093static inline bool using_dma(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +010094{
John Youn05ee7992016-11-03 17:56:05 -070095 return hsotg->params.g_dma;
Ben Dooks5b7d70c2009-06-02 14:58:06 +010096}
97
Vahram Aharonyandec4b552016-11-09 19:27:48 -080098/*
99 * using_desc_dma - return the descriptor DMA status of the driver.
100 * @hsotg: The driver state.
101 *
102 * Return true if we're using descriptor DMA.
103 */
104static inline bool using_desc_dma(struct dwc2_hsotg *hsotg)
105{
106 return hsotg->params.g_dma_desc;
107}
108
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100109/**
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700110 * dwc2_gadget_incr_frame_num - Increments the targeted frame number.
111 * @hs_ep: The endpoint
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700112 *
113 * This function will also check if the frame number overruns DSTS_SOFFN_LIMIT.
114 * If an overrun occurs it will wrap the value and set the frame_overrun flag.
115 */
116static inline void dwc2_gadget_incr_frame_num(struct dwc2_hsotg_ep *hs_ep)
117{
118 hs_ep->target_frame += hs_ep->interval;
119 if (hs_ep->target_frame > DSTS_SOFFN_LIMIT) {
Gustavo A. R. Silvac1d5df62018-01-23 09:45:31 -0600120 hs_ep->frame_overrun = true;
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700121 hs_ep->target_frame &= DSTS_SOFFN_LIMIT;
122 } else {
Gustavo A. R. Silvac1d5df62018-01-23 09:45:31 -0600123 hs_ep->frame_overrun = false;
Vardan Mikayelyan92d16352016-05-25 18:07:05 -0700124 }
125}
126
127/**
Grigor Tovmasyan9d630b92018-08-29 21:00:03 +0400128 * dwc2_gadget_dec_frame_num_by_one - Decrements the targeted frame number
129 * by one.
130 * @hs_ep: The endpoint.
131 *
132 * This function used in service interval based scheduling flow to calculate
133 * descriptor frame number filed value. For service interval mode frame
134 * number in descriptor should point to last (u)frame in the interval.
135 *
136 */
137static inline void dwc2_gadget_dec_frame_num_by_one(struct dwc2_hsotg_ep *hs_ep)
138{
139 if (hs_ep->target_frame)
140 hs_ep->target_frame -= 1;
141 else
142 hs_ep->target_frame = DSTS_SOFFN_LIMIT;
143}
144
145/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500146 * dwc2_hsotg_en_gsint - enable one or more of the general interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100147 * @hsotg: The device state
148 * @ints: A bitmask of the interrupts to enable
149 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500150static void dwc2_hsotg_en_gsint(struct dwc2_hsotg *hsotg, u32 ints)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100151{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400152 u32 gsintmsk = dwc2_readl(hsotg, GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100153 u32 new_gsintmsk;
154
155 new_gsintmsk = gsintmsk | ints;
156
157 if (new_gsintmsk != gsintmsk) {
158 dev_dbg(hsotg->dev, "gsintmsk now 0x%08x\n", new_gsintmsk);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400159 dwc2_writel(hsotg, new_gsintmsk, GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100160 }
161}
162
163/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500164 * dwc2_hsotg_disable_gsint - disable one or more of the general interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100165 * @hsotg: The device state
166 * @ints: A bitmask of the interrupts to enable
167 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500168static void dwc2_hsotg_disable_gsint(struct dwc2_hsotg *hsotg, u32 ints)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100169{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400170 u32 gsintmsk = dwc2_readl(hsotg, GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100171 u32 new_gsintmsk;
172
173 new_gsintmsk = gsintmsk & ~ints;
174
175 if (new_gsintmsk != gsintmsk)
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400176 dwc2_writel(hsotg, new_gsintmsk, GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100177}
178
179/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500180 * dwc2_hsotg_ctrl_epint - enable/disable an endpoint irq
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100181 * @hsotg: The device state
182 * @ep: The endpoint index
183 * @dir_in: True if direction is in.
184 * @en: The enable value, true to enable
185 *
186 * Set or clear the mask for an individual endpoint's interrupt
187 * request.
188 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500189static void dwc2_hsotg_ctrl_epint(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -0800190 unsigned int ep, unsigned int dir_in,
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100191 unsigned int en)
192{
193 unsigned long flags;
194 u32 bit = 1 << ep;
195 u32 daint;
196
197 if (!dir_in)
198 bit <<= 16;
199
200 local_irq_save(flags);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400201 daint = dwc2_readl(hsotg, DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100202 if (en)
203 daint |= bit;
204 else
205 daint &= ~bit;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400206 dwc2_writel(hsotg, daint, DAINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100207 local_irq_restore(flags);
208}
209
210/**
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800211 * dwc2_hsotg_tx_fifo_count - return count of TX FIFOs in device mode
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400212 *
213 * @hsotg: Programming view of the DWC_otg controller
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800214 */
215int dwc2_hsotg_tx_fifo_count(struct dwc2_hsotg *hsotg)
216{
217 if (hsotg->hw_params.en_multiple_tx_fifo)
218 /* In dedicated FIFO mode we need count of IN EPs */
Minas Harutyunyan92730832017-11-30 12:16:37 +0400219 return hsotg->hw_params.num_dev_in_eps;
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800220 else
221 /* In shared FIFO mode we need count of Periodic IN EPs */
222 return hsotg->hw_params.num_dev_perio_in_ep;
223}
224
225/**
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800226 * dwc2_hsotg_tx_fifo_total_depth - return total FIFO depth available for
227 * device mode TX FIFOs
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400228 *
229 * @hsotg: Programming view of the DWC_otg controller
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800230 */
231int dwc2_hsotg_tx_fifo_total_depth(struct dwc2_hsotg *hsotg)
232{
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800233 int addr;
234 int tx_addr_max;
235 u32 np_tx_fifo_size;
236
237 np_tx_fifo_size = min_t(u32, hsotg->hw_params.dev_nperio_tx_fifo_size,
238 hsotg->params.g_np_tx_fifo_size);
239
240 /* Get Endpoint Info Control block size in DWORDs. */
Minas Harutyunyan92730832017-11-30 12:16:37 +0400241 tx_addr_max = hsotg->hw_params.total_fifo_size;
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800242
243 addr = hsotg->params.g_rx_fifo_size + np_tx_fifo_size;
244 if (tx_addr_max <= addr)
245 return 0;
246
247 return tx_addr_max - addr;
248}
249
250/**
Grigor Tovmasyan187c5292018-08-29 21:02:57 +0400251 * dwc2_gadget_wkup_alert_handler - Handler for WKUP_ALERT interrupt
252 *
253 * @hsotg: Programming view of the DWC_otg controller
254 *
255 */
256static void dwc2_gadget_wkup_alert_handler(struct dwc2_hsotg *hsotg)
257{
258 u32 gintsts2;
259 u32 gintmsk2;
260
261 gintsts2 = dwc2_readl(hsotg, GINTSTS2);
262 gintmsk2 = dwc2_readl(hsotg, GINTMSK2);
263
264 if (gintsts2 & GINTSTS2_WKUP_ALERT_INT) {
265 dev_dbg(hsotg->dev, "%s: Wkup_Alert_Int\n", __func__);
Minas Harutyunyan87b6d2c2018-12-12 16:44:32 +0400266 dwc2_set_bit(hsotg, GINTSTS2, GINTSTS2_WKUP_ALERT_INT);
Artur Petrosyand64bc8e2018-11-02 11:29:48 -0400267 dwc2_set_bit(hsotg, DCTL, DCTL_RMTWKUPSIG);
Grigor Tovmasyan187c5292018-08-29 21:02:57 +0400268 }
269}
270
271/**
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800272 * dwc2_hsotg_tx_fifo_average_depth - returns average depth of device mode
273 * TX FIFOs
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400274 *
275 * @hsotg: Programming view of the DWC_otg controller
Sevak Arakelyanc138ecf2017-01-23 15:01:23 -0800276 */
277int dwc2_hsotg_tx_fifo_average_depth(struct dwc2_hsotg *hsotg)
278{
279 int tx_fifo_count;
280 int tx_fifo_depth;
281
282 tx_fifo_depth = dwc2_hsotg_tx_fifo_total_depth(hsotg);
283
284 tx_fifo_count = dwc2_hsotg_tx_fifo_count(hsotg);
285
286 if (!tx_fifo_count)
287 return tx_fifo_depth;
288 else
289 return tx_fifo_depth / tx_fifo_count;
290}
291
292/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500293 * dwc2_hsotg_init_fifo - initialise non-periodic FIFOs
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100294 * @hsotg: The device instance.
295 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500296static void dwc2_hsotg_init_fifo(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100297{
John Youn2317eac2016-10-17 17:36:23 -0700298 unsigned int ep;
Ben Dooks0f002d22010-05-25 05:36:50 +0100299 unsigned int addr;
Ben Dooks1703a6d2010-05-25 05:36:52 +0100300 int timeout;
Sevak Arakelyan79d6b8c2018-01-19 14:39:31 +0400301
Ben Dooks0f002d22010-05-25 05:36:50 +0100302 u32 val;
John Youn05ee7992016-11-03 17:56:05 -0700303 u32 *txfsz = hsotg->params.g_tx_fifo_size;
Ben Dooks0f002d22010-05-25 05:36:50 +0100304
Gregory Herrero7fcbc952015-01-09 13:39:06 +0100305 /* Reset fifo map if not correctly cleared during previous session */
306 WARN_ON(hsotg->fifo_map);
307 hsotg->fifo_map = 0;
308
Gregory Herrero0a176272015-01-09 13:38:52 +0100309 /* set RX/NPTX FIFO sizes */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400310 dwc2_writel(hsotg, hsotg->params.g_rx_fifo_size, GRXFSIZ);
311 dwc2_writel(hsotg, (hsotg->params.g_rx_fifo_size <<
312 FIFOSIZE_STARTADDR_SHIFT) |
John Youn05ee7992016-11-03 17:56:05 -0700313 (hsotg->params.g_np_tx_fifo_size << FIFOSIZE_DEPTH_SHIFT),
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400314 GNPTXFSIZ);
Ben Dooks0f002d22010-05-25 05:36:50 +0100315
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200316 /*
317 * arange all the rest of the TX FIFOs, as some versions of this
Ben Dooks0f002d22010-05-25 05:36:50 +0100318 * block have overlapping default addresses. This also ensures
319 * that if the settings have been changed, then they are set to
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200320 * known values.
321 */
Ben Dooks0f002d22010-05-25 05:36:50 +0100322
323 /* start at the end of the GNPTXFSIZ, rounded up */
John Youn05ee7992016-11-03 17:56:05 -0700324 addr = hsotg->params.g_rx_fifo_size + hsotg->params.g_np_tx_fifo_size;
Ben Dooks0f002d22010-05-25 05:36:50 +0100325
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200326 /*
Gregory Herrero0a176272015-01-09 13:38:52 +0100327 * Configure fifos sizes from provided configuration and assign
Robert Baldygab203d0a2014-09-09 10:44:56 +0200328 * them to endpoints dynamically according to maxpacket size value of
329 * given endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200330 */
John Youn2317eac2016-10-17 17:36:23 -0700331 for (ep = 1; ep < MAX_EPS_CHANNELS; ep++) {
John Youn05ee7992016-11-03 17:56:05 -0700332 if (!txfsz[ep])
John Youn3fa95382016-10-17 17:36:25 -0700333 continue;
334 val = addr;
John Youn05ee7992016-11-03 17:56:05 -0700335 val |= txfsz[ep] << FIFOSIZE_DEPTH_SHIFT;
336 WARN_ONCE(addr + txfsz[ep] > hsotg->fifo_mem,
John Youn3fa95382016-10-17 17:36:25 -0700337 "insufficient fifo memory");
John Youn05ee7992016-11-03 17:56:05 -0700338 addr += txfsz[ep];
Ben Dooks0f002d22010-05-25 05:36:50 +0100339
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400340 dwc2_writel(hsotg, val, DPTXFSIZN(ep));
341 val = dwc2_readl(hsotg, DPTXFSIZN(ep));
Ben Dooks0f002d22010-05-25 05:36:50 +0100342 }
Ben Dooks1703a6d2010-05-25 05:36:52 +0100343
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400344 dwc2_writel(hsotg, hsotg->hw_params.total_fifo_size |
Sevak Arakelyanf87c8422017-01-18 18:34:19 -0800345 addr << GDFIFOCFG_EPINFOBASE_SHIFT,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400346 GDFIFOCFG);
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200347 /*
348 * according to p428 of the design guide, we need to ensure that
349 * all fifos are flushed before continuing
350 */
Ben Dooks1703a6d2010-05-25 05:36:52 +0100351
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400352 dwc2_writel(hsotg, GRSTCTL_TXFNUM(0x10) | GRSTCTL_TXFFLSH |
353 GRSTCTL_RXFFLSH, GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100354
355 /* wait until the fifos are both flushed */
356 timeout = 100;
357 while (1) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400358 val = dwc2_readl(hsotg, GRSTCTL);
Ben Dooks1703a6d2010-05-25 05:36:52 +0100359
Dinh Nguyen47a16852014-04-14 14:13:34 -0700360 if ((val & (GRSTCTL_TXFFLSH | GRSTCTL_RXFFLSH)) == 0)
Ben Dooks1703a6d2010-05-25 05:36:52 +0100361 break;
362
363 if (--timeout == 0) {
364 dev_err(hsotg->dev,
365 "%s: timeout flushing fifos (GRSTCTL=%08x)\n",
366 __func__, val);
Gregory Herrero48b20bc2015-01-09 13:39:01 +0100367 break;
Ben Dooks1703a6d2010-05-25 05:36:52 +0100368 }
369
370 udelay(1);
371 }
372
373 dev_dbg(hsotg->dev, "FIFOs reset, timeout at %d\n", timeout);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100374}
375
376/**
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +0400377 * dwc2_hsotg_ep_alloc_request - allocate USB rerequest structure
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100378 * @ep: USB endpoint to allocate request for.
379 * @flags: Allocation flags
380 *
381 * Allocate a new USB request structure appropriate for the specified endpoint
382 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500383static struct usb_request *dwc2_hsotg_ep_alloc_request(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -0800384 gfp_t flags)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100385{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500386 struct dwc2_hsotg_req *req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100387
John Younec33efe2017-01-17 20:32:41 -0800388 req = kzalloc(sizeof(*req), flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100389 if (!req)
390 return NULL;
391
392 INIT_LIST_HEAD(&req->queue);
393
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100394 return &req->req;
395}
396
397/**
398 * is_ep_periodic - return true if the endpoint is in periodic mode.
399 * @hs_ep: The endpoint to query.
400 *
401 * Returns true if the endpoint is in periodic mode, meaning it is being
402 * used for an Interrupt or ISO transfer.
403 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500404static inline int is_ep_periodic(struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100405{
406 return hs_ep->periodic;
407}
408
409/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500410 * dwc2_hsotg_unmap_dma - unmap the DMA memory being used for the request
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100411 * @hsotg: The device state.
412 * @hs_ep: The endpoint for the request
413 * @hs_req: The request being processed.
414 *
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500415 * This is the reverse of dwc2_hsotg_map_dma(), called for the completion
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100416 * of a request to ensure the buffer is ready for access by the caller.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200417 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500418static void dwc2_hsotg_unmap_dma(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -0800419 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500420 struct dwc2_hsotg_req *hs_req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100421{
422 struct usb_request *req = &hs_req->req;
John Youn9da51972017-01-17 20:30:27 -0800423
Jingoo Han17d966a2013-05-11 21:14:00 +0900424 usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100425}
426
Vahram Aharonyan0f6b80c2016-11-09 19:27:56 -0800427/*
428 * dwc2_gadget_alloc_ctrl_desc_chains - allocate DMA descriptor chains
429 * for Control endpoint
430 * @hsotg: The device state.
431 *
432 * This function will allocate 4 descriptor chains for EP 0: 2 for
433 * Setup stage, per one for IN and OUT data/status transactions.
434 */
435static int dwc2_gadget_alloc_ctrl_desc_chains(struct dwc2_hsotg *hsotg)
436{
437 hsotg->setup_desc[0] =
438 dmam_alloc_coherent(hsotg->dev,
439 sizeof(struct dwc2_dma_desc),
440 &hsotg->setup_desc_dma[0],
441 GFP_KERNEL);
442 if (!hsotg->setup_desc[0])
443 goto fail;
444
445 hsotg->setup_desc[1] =
446 dmam_alloc_coherent(hsotg->dev,
447 sizeof(struct dwc2_dma_desc),
448 &hsotg->setup_desc_dma[1],
449 GFP_KERNEL);
450 if (!hsotg->setup_desc[1])
451 goto fail;
452
453 hsotg->ctrl_in_desc =
454 dmam_alloc_coherent(hsotg->dev,
455 sizeof(struct dwc2_dma_desc),
456 &hsotg->ctrl_in_desc_dma,
457 GFP_KERNEL);
458 if (!hsotg->ctrl_in_desc)
459 goto fail;
460
461 hsotg->ctrl_out_desc =
462 dmam_alloc_coherent(hsotg->dev,
463 sizeof(struct dwc2_dma_desc),
464 &hsotg->ctrl_out_desc_dma,
465 GFP_KERNEL);
466 if (!hsotg->ctrl_out_desc)
467 goto fail;
468
469 return 0;
470
471fail:
472 return -ENOMEM;
473}
474
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100475/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500476 * dwc2_hsotg_write_fifo - write packet Data to the TxFIFO
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100477 * @hsotg: The controller state.
478 * @hs_ep: The endpoint we're going to write for.
479 * @hs_req: The request to write data for.
480 *
481 * This is called when the TxFIFO has some space in it to hold a new
482 * transmission and we have something to give it. The actual setup of
483 * the data size is done elsewhere, so all we have to do is to actually
484 * write the data.
485 *
486 * The return value is zero if there is more space (or nothing was done)
487 * otherwise -ENOSPC is returned if the FIFO space was used up.
488 *
489 * This routine is only needed for PIO
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200490 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500491static int dwc2_hsotg_write_fifo(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -0800492 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500493 struct dwc2_hsotg_req *hs_req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100494{
495 bool periodic = is_ep_periodic(hs_ep);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400496 u32 gnptxsts = dwc2_readl(hsotg, GNPTXSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100497 int buf_pos = hs_req->req.actual;
498 int to_write = hs_ep->size_loaded;
499 void *data;
500 int can_write;
501 int pkt_round;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200502 int max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100503
504 to_write -= (buf_pos - hs_ep->last_load);
505
506 /* if there's nothing to write, get out early */
507 if (to_write == 0)
508 return 0;
509
Ben Dooks10aebc72010-07-19 09:40:44 +0100510 if (periodic && !hsotg->dedicated_fifos) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400511 u32 epsize = dwc2_readl(hsotg, DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100512 int size_left;
513 int size_done;
514
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200515 /*
516 * work out how much data was loaded so we can calculate
517 * how much data is left in the fifo.
518 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100519
Dinh Nguyen47a16852014-04-14 14:13:34 -0700520 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100521
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200522 /*
523 * if shared fifo, we cannot write anything until the
Ben Dookse7a9ff52010-07-19 09:40:42 +0100524 * previous data has been completely sent.
525 */
526 if (hs_ep->fifo_load != 0) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500527 dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
Ben Dookse7a9ff52010-07-19 09:40:42 +0100528 return -ENOSPC;
529 }
530
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100531 dev_dbg(hsotg->dev, "%s: left=%d, load=%d, fifo=%d, size %d\n",
532 __func__, size_left,
533 hs_ep->size_loaded, hs_ep->fifo_load, hs_ep->fifo_size);
534
535 /* how much of the data has moved */
536 size_done = hs_ep->size_loaded - size_left;
537
538 /* how much data is left in the fifo */
539 can_write = hs_ep->fifo_load - size_done;
540 dev_dbg(hsotg->dev, "%s: => can_write1=%d\n",
541 __func__, can_write);
542
543 can_write = hs_ep->fifo_size - can_write;
544 dev_dbg(hsotg->dev, "%s: => can_write2=%d\n",
545 __func__, can_write);
546
547 if (can_write <= 0) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500548 dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100549 return -ENOSPC;
550 }
Ben Dooks10aebc72010-07-19 09:40:44 +0100551 } else if (hsotg->dedicated_fifos && hs_ep->index != 0) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400552 can_write = dwc2_readl(hsotg,
553 DTXFSTS(hs_ep->fifo_index));
Ben Dooks10aebc72010-07-19 09:40:44 +0100554
555 can_write &= 0xffff;
556 can_write *= 4;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100557 } else {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700558 if (GNPTXSTS_NP_TXQ_SPC_AVAIL_GET(gnptxsts) == 0) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100559 dev_dbg(hsotg->dev,
560 "%s: no queue slots available (0x%08x)\n",
561 __func__, gnptxsts);
562
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500563 dwc2_hsotg_en_gsint(hsotg, GINTSTS_NPTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100564 return -ENOSPC;
565 }
566
Dinh Nguyen47a16852014-04-14 14:13:34 -0700567 can_write = GNPTXSTS_NP_TXF_SPC_AVAIL_GET(gnptxsts);
Ben Dooks679f9b72010-07-19 09:40:41 +0100568 can_write *= 4; /* fifo size is in 32bit quantities. */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100569 }
570
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200571 max_transfer = hs_ep->ep.maxpacket * hs_ep->mc;
572
573 dev_dbg(hsotg->dev, "%s: GNPTXSTS=%08x, can=%d, to=%d, max_transfer %d\n",
John Youn9da51972017-01-17 20:30:27 -0800574 __func__, gnptxsts, can_write, to_write, max_transfer);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100575
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200576 /*
577 * limit to 512 bytes of data, it seems at least on the non-periodic
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100578 * FIFO, requests of >512 cause the endpoint to get stuck with a
579 * fragment of the end of the transfer in it.
580 */
Robert Baldyga811f3302013-09-24 11:24:28 +0200581 if (can_write > 512 && !periodic)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100582 can_write = 512;
583
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200584 /*
585 * limit the write to one max-packet size worth of data, but allow
Ben Dooks03e10e52010-07-19 09:40:45 +0100586 * the transfer to return that it did not run out of fifo space
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200587 * doing it.
588 */
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200589 if (to_write > max_transfer) {
590 to_write = max_transfer;
Ben Dooks03e10e52010-07-19 09:40:45 +0100591
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200592 /* it's needed only when we do not use dedicated fifos */
593 if (!hsotg->dedicated_fifos)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500594 dwc2_hsotg_en_gsint(hsotg,
John Youn9da51972017-01-17 20:30:27 -0800595 periodic ? GINTSTS_PTXFEMP :
Dinh Nguyen47a16852014-04-14 14:13:34 -0700596 GINTSTS_NPTXFEMP);
Ben Dooks03e10e52010-07-19 09:40:45 +0100597 }
598
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100599 /* see if we can write data */
600
601 if (to_write > can_write) {
602 to_write = can_write;
Robert Baldyga4fca54a2013-10-09 09:00:02 +0200603 pkt_round = to_write % max_transfer;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100604
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200605 /*
606 * Round the write down to an
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100607 * exact number of packets.
608 *
609 * Note, we do not currently check to see if we can ever
610 * write a full packet or not to the FIFO.
611 */
612
613 if (pkt_round)
614 to_write -= pkt_round;
615
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200616 /*
617 * enable correct FIFO interrupt to alert us when there
618 * is more room left.
619 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100620
Robert Baldyga5cb2ff02013-09-19 11:50:18 +0200621 /* it's needed only when we do not use dedicated fifos */
622 if (!hsotg->dedicated_fifos)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -0500623 dwc2_hsotg_en_gsint(hsotg,
John Youn9da51972017-01-17 20:30:27 -0800624 periodic ? GINTSTS_PTXFEMP :
Dinh Nguyen47a16852014-04-14 14:13:34 -0700625 GINTSTS_NPTXFEMP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100626 }
627
628 dev_dbg(hsotg->dev, "write %d/%d, can_write %d, done %d\n",
John Youn9da51972017-01-17 20:30:27 -0800629 to_write, hs_req->req.length, can_write, buf_pos);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100630
631 if (to_write <= 0)
632 return -ENOSPC;
633
634 hs_req->req.actual = buf_pos + to_write;
635 hs_ep->total_data += to_write;
636
637 if (periodic)
638 hs_ep->fifo_load += to_write;
639
640 to_write = DIV_ROUND_UP(to_write, 4);
641 data = hs_req->req.buf + buf_pos;
642
Gevorg Sahakyan342ccce2018-07-26 18:00:41 +0400643 dwc2_writel_rep(hsotg, EPFIFO(hs_ep->index), data, to_write);
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100644
645 return (to_write >= can_write) ? -ENOSPC : 0;
646}
647
648/**
649 * get_ep_limit - get the maximum data legnth for this endpoint
650 * @hs_ep: The endpoint
651 *
652 * Return the maximum data that can be queued in one go on a given endpoint
653 * so that transfers that are too long can be split.
654 */
John Youn9da51972017-01-17 20:30:27 -0800655static unsigned int get_ep_limit(struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100656{
657 int index = hs_ep->index;
John Youn9da51972017-01-17 20:30:27 -0800658 unsigned int maxsize;
659 unsigned int maxpkt;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100660
661 if (index != 0) {
Dinh Nguyen47a16852014-04-14 14:13:34 -0700662 maxsize = DXEPTSIZ_XFERSIZE_LIMIT + 1;
663 maxpkt = DXEPTSIZ_PKTCNT_LIMIT + 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100664 } else {
John Youn9da51972017-01-17 20:30:27 -0800665 maxsize = 64 + 64;
Jingoo Han66e5c642011-05-13 21:26:15 +0900666 if (hs_ep->dir_in)
Dinh Nguyen47a16852014-04-14 14:13:34 -0700667 maxpkt = DIEPTSIZ0_PKTCNT_LIMIT + 1;
Jingoo Han66e5c642011-05-13 21:26:15 +0900668 else
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100669 maxpkt = 2;
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100670 }
671
672 /* we made the constant loading easier above by using +1 */
673 maxpkt--;
674 maxsize--;
675
Lukasz Majewski8b9bc462012-05-04 14:17:11 +0200676 /*
677 * constrain by packet count if maxpkts*pktsize is greater
678 * than the length register size.
679 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +0100680
681 if ((maxpkt * hs_ep->ep.maxpacket) < maxsize)
682 maxsize = maxpkt * hs_ep->ep.maxpacket;
683
684 return maxsize;
685}
686
687/**
John Youn38beaec2017-01-17 20:31:13 -0800688 * dwc2_hsotg_read_frameno - read current frame number
689 * @hsotg: The device instance
690 *
691 * Return the current frame number
692 */
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -0700693static u32 dwc2_hsotg_read_frameno(struct dwc2_hsotg *hsotg)
694{
695 u32 dsts;
696
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400697 dsts = dwc2_readl(hsotg, DSTS);
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -0700698 dsts &= DSTS_SOFFN_MASK;
699 dsts >>= DSTS_SOFFN_SHIFT;
700
701 return dsts;
702}
703
704/**
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -0800705 * dwc2_gadget_get_chain_limit - get the maximum data payload value of the
706 * DMA descriptor chain prepared for specific endpoint
707 * @hs_ep: The endpoint
708 *
709 * Return the maximum data that can be queued in one go on a given endpoint
710 * depending on its descriptor chain capacity so that transfers that
711 * are too long can be split.
712 */
713static unsigned int dwc2_gadget_get_chain_limit(struct dwc2_hsotg_ep *hs_ep)
714{
715 int is_isoc = hs_ep->isochronous;
716 unsigned int maxsize;
717
718 if (is_isoc)
Minas Harutyunyan54f37f52019-03-18 14:24:30 +0400719 maxsize = (hs_ep->dir_in ? DEV_DMA_ISOC_TX_NBYTES_LIMIT :
720 DEV_DMA_ISOC_RX_NBYTES_LIMIT) *
721 MAX_DMA_DESC_NUM_HS_ISOC;
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -0800722 else
Minas Harutyunyan54f37f52019-03-18 14:24:30 +0400723 maxsize = DEV_DMA_NBYTES_LIMIT * MAX_DMA_DESC_NUM_GENERIC;
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -0800724
725 return maxsize;
726}
727
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800728/*
729 * dwc2_gadget_get_desc_params - get DMA descriptor parameters.
730 * @hs_ep: The endpoint
731 * @mask: RX/TX bytes mask to be defined
732 *
733 * Returns maximum data payload for one descriptor after analyzing endpoint
734 * characteristics.
735 * DMA descriptor transfer bytes limit depends on EP type:
736 * Control out - MPS,
737 * Isochronous - descriptor rx/tx bytes bitfield limit,
738 * Control In/Bulk/Interrupt - multiple of mps. This will allow to not
739 * have concatenations from various descriptors within one packet.
740 *
741 * Selects corresponding mask for RX/TX bytes as well.
742 */
743static u32 dwc2_gadget_get_desc_params(struct dwc2_hsotg_ep *hs_ep, u32 *mask)
744{
745 u32 mps = hs_ep->ep.maxpacket;
746 int dir_in = hs_ep->dir_in;
747 u32 desc_size = 0;
748
749 if (!hs_ep->index && !dir_in) {
750 desc_size = mps;
751 *mask = DEV_DMA_NBYTES_MASK;
752 } else if (hs_ep->isochronous) {
753 if (dir_in) {
754 desc_size = DEV_DMA_ISOC_TX_NBYTES_LIMIT;
755 *mask = DEV_DMA_ISOC_TX_NBYTES_MASK;
756 } else {
757 desc_size = DEV_DMA_ISOC_RX_NBYTES_LIMIT;
758 *mask = DEV_DMA_ISOC_RX_NBYTES_MASK;
759 }
760 } else {
761 desc_size = DEV_DMA_NBYTES_LIMIT;
762 *mask = DEV_DMA_NBYTES_MASK;
763
764 /* Round down desc_size to be mps multiple */
765 desc_size -= desc_size % mps;
766 }
767
768 return desc_size;
769}
770
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100771static void dwc2_gadget_fill_nonisoc_xfer_ddma_one(struct dwc2_hsotg_ep *hs_ep,
772 struct dwc2_dma_desc **desc,
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800773 dma_addr_t dma_buff,
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100774 unsigned int len,
775 bool true_last)
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800776{
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800777 int dir_in = hs_ep->dir_in;
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800778 u32 mps = hs_ep->ep.maxpacket;
779 u32 maxsize = 0;
780 u32 offset = 0;
781 u32 mask = 0;
782 int i;
783
784 maxsize = dwc2_gadget_get_desc_params(hs_ep, &mask);
785
786 hs_ep->desc_count = (len / maxsize) +
787 ((len % maxsize) ? 1 : 0);
788 if (len == 0)
789 hs_ep->desc_count = 1;
790
791 for (i = 0; i < hs_ep->desc_count; ++i) {
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100792 (*desc)->status = 0;
793 (*desc)->status |= (DEV_DMA_BUFF_STS_HBUSY
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800794 << DEV_DMA_BUFF_STS_SHIFT);
795
796 if (len > maxsize) {
797 if (!hs_ep->index && !dir_in)
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100798 (*desc)->status |= (DEV_DMA_L | DEV_DMA_IOC);
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800799
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100800 (*desc)->status |=
801 maxsize << DEV_DMA_NBYTES_SHIFT & mask;
802 (*desc)->buf = dma_buff + offset;
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800803
804 len -= maxsize;
805 offset += maxsize;
806 } else {
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100807 if (true_last)
808 (*desc)->status |= (DEV_DMA_L | DEV_DMA_IOC);
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800809
810 if (dir_in)
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100811 (*desc)->status |= (len % mps) ? DEV_DMA_SHORT :
812 ((hs_ep->send_zlp && true_last) ?
813 DEV_DMA_SHORT : 0);
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800814
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100815 (*desc)->status |=
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800816 len << DEV_DMA_NBYTES_SHIFT & mask;
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100817 (*desc)->buf = dma_buff + offset;
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800818 }
819
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100820 (*desc)->status &= ~DEV_DMA_BUFF_STS_MASK;
821 (*desc)->status |= (DEV_DMA_BUFF_STS_HREADY
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800822 << DEV_DMA_BUFF_STS_SHIFT);
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100823 (*desc)++;
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -0800824 }
825}
826
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800827/*
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100828 * dwc2_gadget_config_nonisoc_xfer_ddma - prepare non ISOC DMA desc chain.
829 * @hs_ep: The endpoint
830 * @ureq: Request to transfer
831 * @offset: offset in bytes
832 * @len: Length of the transfer
833 *
834 * This function will iterate over descriptor chain and fill its entries
835 * with corresponding information based on transfer data.
836 */
837static void dwc2_gadget_config_nonisoc_xfer_ddma(struct dwc2_hsotg_ep *hs_ep,
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +0200838 dma_addr_t dma_buff,
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100839 unsigned int len)
840{
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +0200841 struct usb_request *ureq = NULL;
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100842 struct dwc2_dma_desc *desc = hs_ep->desc_list;
843 struct scatterlist *sg;
844 int i;
845 u8 desc_count = 0;
846
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +0200847 if (hs_ep->req)
848 ureq = &hs_ep->req->req;
849
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100850 /* non-DMA sg buffer */
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +0200851 if (!ureq || !ureq->num_sgs) {
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100852 dwc2_gadget_fill_nonisoc_xfer_ddma_one(hs_ep, &desc,
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +0200853 dma_buff, len, true);
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100854 return;
855 }
856
857 /* DMA sg buffer */
858 for_each_sg(ureq->sg, sg, ureq->num_sgs, i) {
859 dwc2_gadget_fill_nonisoc_xfer_ddma_one(hs_ep, &desc,
860 sg_dma_address(sg) + sg->offset, sg_dma_len(sg),
861 sg_is_last(sg));
862 desc_count += hs_ep->desc_count;
863 }
864
865 hs_ep->desc_count = desc_count;
866}
867
868/*
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800869 * dwc2_gadget_fill_isoc_desc - fills next isochronous descriptor in chain.
870 * @hs_ep: The isochronous endpoint.
871 * @dma_buff: usb requests dma buffer.
872 * @len: usb request transfer length.
873 *
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400874 * Fills next free descriptor with the data of the arrived usb request,
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800875 * frame info, sets Last and IOC bits increments next_desc. If filled
876 * descriptor is not the first one, removes L bit from the previous descriptor
877 * status.
878 */
879static int dwc2_gadget_fill_isoc_desc(struct dwc2_hsotg_ep *hs_ep,
880 dma_addr_t dma_buff, unsigned int len)
881{
882 struct dwc2_dma_desc *desc;
883 struct dwc2_hsotg *hsotg = hs_ep->parent;
884 u32 index;
885 u32 maxsize = 0;
886 u32 mask = 0;
Minas Harutyunyan1d8e5c02018-05-23 16:24:44 +0400887 u8 pid = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800888
889 maxsize = dwc2_gadget_get_desc_params(hs_ep, &mask);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800890
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400891 index = hs_ep->next_desc;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800892 desc = &hs_ep->desc_list[index];
893
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400894 /* Check if descriptor chain full */
895 if ((desc->status >> DEV_DMA_BUFF_STS_SHIFT) ==
896 DEV_DMA_BUFF_STS_HREADY) {
897 dev_dbg(hsotg->dev, "%s: desc chain full\n", __func__);
898 return 1;
899 }
900
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800901 /* Clear L bit of previous desc if more than one entries in the chain */
902 if (hs_ep->next_desc)
903 hs_ep->desc_list[index - 1].status &= ~DEV_DMA_L;
904
905 dev_dbg(hsotg->dev, "%s: Filling ep %d, dir %s isoc desc # %d\n",
906 __func__, hs_ep->index, hs_ep->dir_in ? "in" : "out", index);
907
908 desc->status = 0;
909 desc->status |= (DEV_DMA_BUFF_STS_HBUSY << DEV_DMA_BUFF_STS_SHIFT);
910
911 desc->buf = dma_buff;
912 desc->status |= (DEV_DMA_L | DEV_DMA_IOC |
913 ((len << DEV_DMA_NBYTES_SHIFT) & mask));
914
915 if (hs_ep->dir_in) {
Minas Harutyunyan1d8e5c02018-05-23 16:24:44 +0400916 if (len)
917 pid = DIV_ROUND_UP(len, hs_ep->ep.maxpacket);
918 else
919 pid = 1;
920 desc->status |= ((pid << DEV_DMA_ISOC_PID_SHIFT) &
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800921 DEV_DMA_ISOC_PID_MASK) |
922 ((len % hs_ep->ep.maxpacket) ?
923 DEV_DMA_SHORT : 0) |
924 ((hs_ep->target_frame <<
925 DEV_DMA_ISOC_FRNUM_SHIFT) &
926 DEV_DMA_ISOC_FRNUM_MASK);
927 }
928
929 desc->status &= ~DEV_DMA_BUFF_STS_MASK;
930 desc->status |= (DEV_DMA_BUFF_STS_HREADY << DEV_DMA_BUFF_STS_SHIFT);
931
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400932 /* Increment frame number by interval for IN */
933 if (hs_ep->dir_in)
934 dwc2_gadget_incr_frame_num(hs_ep);
935
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800936 /* Update index of last configured entry in the chain */
937 hs_ep->next_desc++;
Minas Harutyunyan54f37f52019-03-18 14:24:30 +0400938 if (hs_ep->next_desc >= MAX_DMA_DESC_NUM_HS_ISOC)
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400939 hs_ep->next_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800940
941 return 0;
942}
943
944/*
945 * dwc2_gadget_start_isoc_ddma - start isochronous transfer in DDMA
946 * @hs_ep: The isochronous endpoint.
947 *
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400948 * Prepare descriptor chain for isochronous endpoints. Afterwards
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800949 * write DMA address to HW and enable the endpoint.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800950 */
951static void dwc2_gadget_start_isoc_ddma(struct dwc2_hsotg_ep *hs_ep)
952{
953 struct dwc2_hsotg *hsotg = hs_ep->parent;
954 struct dwc2_hsotg_req *hs_req, *treq;
955 int index = hs_ep->index;
956 int ret;
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400957 int i;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800958 u32 dma_reg;
959 u32 depctl;
960 u32 ctrl;
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400961 struct dwc2_dma_desc *desc;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800962
963 if (list_empty(&hs_ep->queue)) {
Minas Harutyunyan1ffba902018-06-12 12:37:29 +0400964 hs_ep->target_frame = TARGET_FRAME_INITIAL;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800965 dev_dbg(hsotg->dev, "%s: No requests in queue\n", __func__);
966 return;
967 }
968
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400969 /* Initialize descriptor chain by Host Busy status */
Minas Harutyunyan54f37f52019-03-18 14:24:30 +0400970 for (i = 0; i < MAX_DMA_DESC_NUM_HS_ISOC; i++) {
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400971 desc = &hs_ep->desc_list[i];
972 desc->status = 0;
973 desc->status |= (DEV_DMA_BUFF_STS_HBUSY
974 << DEV_DMA_BUFF_STS_SHIFT);
975 }
976
977 hs_ep->next_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800978 list_for_each_entry_safe(hs_req, treq, &hs_ep->queue, queue) {
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +0100979 dma_addr_t dma_addr = hs_req->req.dma;
980
981 if (hs_req->req.num_sgs) {
982 WARN_ON(hs_req->req.num_sgs > 1);
983 dma_addr = sg_dma_address(hs_req->req.sg);
984 }
985 ret = dwc2_gadget_fill_isoc_desc(hs_ep, dma_addr,
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800986 hs_req->req.length);
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400987 if (ret)
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800988 break;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800989 }
990
Minas Harutyunyan729cac62018-05-03 17:24:28 +0400991 hs_ep->compl_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800992 depctl = hs_ep->dir_in ? DIEPCTL(index) : DOEPCTL(index);
993 dma_reg = hs_ep->dir_in ? DIEPDMA(index) : DOEPDMA(index);
994
995 /* write descriptor chain address to control register */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400996 dwc2_writel(hsotg, hs_ep->desc_list_dma, dma_reg);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800997
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +0400998 ctrl = dwc2_readl(hsotg, depctl);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -0800999 ctrl |= DXEPCTL_EPENA | DXEPCTL_CNAK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001000 dwc2_writel(hsotg, ctrl, depctl);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08001001}
1002
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -08001003/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001004 * dwc2_hsotg_start_req - start a USB request from an endpoint's queue
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001005 * @hsotg: The controller state.
1006 * @hs_ep: The endpoint to process a request for
1007 * @hs_req: The request to start.
1008 * @continuing: True if we are doing more for the current request.
1009 *
1010 * Start the given request running by setting the endpoint registers
1011 * appropriately, and writing any data to the FIFOs.
1012 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001013static void dwc2_hsotg_start_req(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001014 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001015 struct dwc2_hsotg_req *hs_req,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001016 bool continuing)
1017{
1018 struct usb_request *ureq = &hs_req->req;
1019 int index = hs_ep->index;
1020 int dir_in = hs_ep->dir_in;
1021 u32 epctrl_reg;
1022 u32 epsize_reg;
1023 u32 epsize;
1024 u32 ctrl;
John Youn9da51972017-01-17 20:30:27 -08001025 unsigned int length;
1026 unsigned int packets;
1027 unsigned int maxreq;
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001028 unsigned int dma_reg;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001029
1030 if (index != 0) {
1031 if (hs_ep->req && !continuing) {
1032 dev_err(hsotg->dev, "%s: active request\n", __func__);
1033 WARN_ON(1);
1034 return;
1035 } else if (hs_ep->req != hs_req && continuing) {
1036 dev_err(hsotg->dev,
1037 "%s: continue different req\n", __func__);
1038 WARN_ON(1);
1039 return;
1040 }
1041 }
1042
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001043 dma_reg = dir_in ? DIEPDMA(index) : DOEPDMA(index);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02001044 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
1045 epsize_reg = dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001046
1047 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x, ep %d, dir %s\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001048 __func__, dwc2_readl(hsotg, epctrl_reg), index,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001049 hs_ep->dir_in ? "in" : "out");
1050
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001051 /* If endpoint is stalled, we will restart request later */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001052 ctrl = dwc2_readl(hsotg, epctrl_reg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001053
Mian Yousaf Kaukabb2d4c542015-09-29 12:08:22 +02001054 if (index && ctrl & DXEPCTL_STALL) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001055 dev_warn(hsotg->dev, "%s: ep%d is stalled\n", __func__, index);
1056 return;
1057 }
1058
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001059 length = ureq->length - ureq->actual;
Lukasz Majewski71225be2012-05-04 14:17:03 +02001060 dev_dbg(hsotg->dev, "ureq->length:%d ureq->actual:%d\n",
1061 ureq->length, ureq->actual);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001062
Vahram Aharonyancf77b5f2016-11-09 19:28:01 -08001063 if (!using_desc_dma(hsotg))
1064 maxreq = get_ep_limit(hs_ep);
1065 else
1066 maxreq = dwc2_gadget_get_chain_limit(hs_ep);
1067
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001068 if (length > maxreq) {
1069 int round = maxreq % hs_ep->ep.maxpacket;
1070
1071 dev_dbg(hsotg->dev, "%s: length %d, max-req %d, r %d\n",
1072 __func__, length, maxreq, round);
1073
1074 /* round down to multiple of packets */
1075 if (round)
1076 maxreq -= round;
1077
1078 length = maxreq;
1079 }
1080
1081 if (length)
1082 packets = DIV_ROUND_UP(length, hs_ep->ep.maxpacket);
1083 else
1084 packets = 1; /* send one packet if length is zero. */
1085
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001086 if (hs_ep->isochronous && length > (hs_ep->mc * hs_ep->ep.maxpacket)) {
1087 dev_err(hsotg->dev, "req length > maxpacket*mc\n");
1088 return;
1089 }
1090
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001091 if (dir_in && index != 0)
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001092 if (hs_ep->isochronous)
Dinh Nguyen47a16852014-04-14 14:13:34 -07001093 epsize = DXEPTSIZ_MC(packets);
Robert Baldyga4fca54a2013-10-09 09:00:02 +02001094 else
Dinh Nguyen47a16852014-04-14 14:13:34 -07001095 epsize = DXEPTSIZ_MC(1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001096 else
1097 epsize = 0;
1098
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01001099 /*
1100 * zero length packet should be programmed on its own and should not
1101 * be counted in DIEPTSIZ.PktCnt with other packets.
1102 */
1103 if (dir_in && ureq->zero && !continuing) {
1104 /* Test if zlp is actually required. */
1105 if ((ureq->length >= hs_ep->ep.maxpacket) &&
John Youn9da51972017-01-17 20:30:27 -08001106 !(ureq->length % hs_ep->ep.maxpacket))
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01001107 hs_ep->send_zlp = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001108 }
1109
Dinh Nguyen47a16852014-04-14 14:13:34 -07001110 epsize |= DXEPTSIZ_PKTCNT(packets);
1111 epsize |= DXEPTSIZ_XFERSIZE(length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001112
1113 dev_dbg(hsotg->dev, "%s: %d@%d/%d, 0x%08x => 0x%08x\n",
1114 __func__, packets, length, ureq->length, epsize, epsize_reg);
1115
1116 /* store the request as the current one we're doing */
1117 hs_ep->req = hs_req;
1118
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001119 if (using_desc_dma(hsotg)) {
1120 u32 offset = 0;
1121 u32 mps = hs_ep->ep.maxpacket;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001122
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001123 /* Adjust length: EP0 - MPS, other OUT EPs - multiple of MPS */
1124 if (!dir_in) {
1125 if (!index)
1126 length = mps;
1127 else if (length % mps)
1128 length += (mps - (length % mps));
1129 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001130
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001131 /*
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001132 * If more data to send, adjust DMA for EP0 out data stage.
1133 * ureq->dma stays unchanged, hence increment it by already
1134 * passed passed data count before starting new transaction.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001135 */
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001136 if (!index && hsotg->ep0_state == DWC2_EP0_DATA_OUT &&
1137 continuing)
1138 offset = ureq->actual;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001139
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001140 /* Fill DDMA chain entries */
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +02001141 dwc2_gadget_config_nonisoc_xfer_ddma(hs_ep, ureq->dma + offset,
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001142 length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001143
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001144 /* write descriptor chain address to control register */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001145 dwc2_writel(hsotg, hs_ep->desc_list_dma, dma_reg);
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001146
1147 dev_dbg(hsotg->dev, "%s: %08x pad => 0x%08x\n",
1148 __func__, (u32)hs_ep->desc_list_dma, dma_reg);
1149 } else {
1150 /* write size / packets */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001151 dwc2_writel(hsotg, epsize, epsize_reg);
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001152
Razmik Karapetyan729e6572016-11-16 15:33:55 -08001153 if (using_dma(hsotg) && !continuing && (length != 0)) {
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001154 /*
1155 * write DMA address to control register, buffer
1156 * already synced by dwc2_hsotg_ep_queue().
1157 */
1158
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001159 dwc2_writel(hsotg, ureq->dma, dma_reg);
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08001160
1161 dev_dbg(hsotg->dev, "%s: %pad => 0x%08x\n",
1162 __func__, &ureq->dma, dma_reg);
1163 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001164 }
1165
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001166 if (hs_ep->isochronous && hs_ep->interval == 1) {
1167 hs_ep->target_frame = dwc2_hsotg_read_frameno(hsotg);
1168 dwc2_gadget_incr_frame_num(hs_ep);
1169
1170 if (hs_ep->target_frame & 0x1)
1171 ctrl |= DXEPCTL_SETODDFR;
1172 else
1173 ctrl |= DXEPCTL_SETEVENFR;
1174 }
1175
Dinh Nguyen47a16852014-04-14 14:13:34 -07001176 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
Lukasz Majewski71225be2012-05-04 14:17:03 +02001177
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001178 dev_dbg(hsotg->dev, "ep0 state:%d\n", hsotg->ep0_state);
Lukasz Majewski71225be2012-05-04 14:17:03 +02001179
1180 /* For Setup request do not clear NAK */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001181 if (!(index == 0 && hsotg->ep0_state == DWC2_EP0_SETUP))
Dinh Nguyen47a16852014-04-14 14:13:34 -07001182 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
Lukasz Majewski71225be2012-05-04 14:17:03 +02001183
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001184 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001185 dwc2_writel(hsotg, ctrl, epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001186
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001187 /*
1188 * set these, it seems that DMA support increments past the end
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001189 * of the packet buffer so we need to calculate the length from
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001190 * this information.
1191 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001192 hs_ep->size_loaded = length;
1193 hs_ep->last_load = ureq->actual;
1194
1195 if (dir_in && !using_dma(hsotg)) {
1196 /* set these anyway, we may need them for non-periodic in */
1197 hs_ep->fifo_load = 0;
1198
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001199 dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001200 }
1201
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001202 /*
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001203 * Note, trying to clear the NAK here causes problems with transmit
1204 * on the S3C6400 ending up with the TXFIFO becoming full.
1205 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001206
1207 /* check ep is enabled */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001208 if (!(dwc2_readl(hsotg, epctrl_reg) & DXEPCTL_EPENA))
Mian Yousaf Kaukab1a0ed862015-01-09 13:39:00 +01001209 dev_dbg(hsotg->dev,
John Youn9da51972017-01-17 20:30:27 -08001210 "ep%d: failed to become enabled (DXEPCTL=0x%08x)?\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001211 index, dwc2_readl(hsotg, epctrl_reg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001212
Dinh Nguyen47a16852014-04-14 14:13:34 -07001213 dev_dbg(hsotg->dev, "%s: DXEPCTL=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001214 __func__, dwc2_readl(hsotg, epctrl_reg));
Robert Baldygaafcf4162013-09-19 11:50:19 +02001215
1216 /* enable ep interrupts */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001217 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001218}
1219
1220/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001221 * dwc2_hsotg_map_dma - map the DMA memory being used for the request
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001222 * @hsotg: The device state.
1223 * @hs_ep: The endpoint the request is on.
1224 * @req: The request being processed.
1225 *
1226 * We've been asked to queue a request, so ensure that the memory buffer
1227 * is correctly setup for DMA. If we've been passed an extant DMA address
1228 * then ensure the buffer has been synced to memory. If our buffer has no
1229 * DMA memory, then we map the memory and mark our request to allow us to
1230 * cleanup on completion.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001231 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001232static int dwc2_hsotg_map_dma(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001233 struct dwc2_hsotg_ep *hs_ep,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001234 struct usb_request *req)
1235{
Felipe Balbie58ebcd2013-01-28 14:48:36 +02001236 int ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001237
Felipe Balbie58ebcd2013-01-28 14:48:36 +02001238 ret = usb_gadget_map_request(&hsotg->gadget, req, hs_ep->dir_in);
1239 if (ret)
1240 goto dma_error;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001241
1242 return 0;
1243
1244dma_error:
1245 dev_err(hsotg->dev, "%s: failed to map buffer %p, %d bytes\n",
1246 __func__, req->buf, req->length);
1247
1248 return -EIO;
1249}
1250
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001251static int dwc2_hsotg_handle_unaligned_buf_start(struct dwc2_hsotg *hsotg,
John Younb98866c2017-01-17 20:31:58 -08001252 struct dwc2_hsotg_ep *hs_ep,
1253 struct dwc2_hsotg_req *hs_req)
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001254{
1255 void *req_buf = hs_req->req.buf;
1256
1257 /* If dma is not being used or buffer is aligned */
1258 if (!using_dma(hsotg) || !((long)req_buf & 3))
1259 return 0;
1260
1261 WARN_ON(hs_req->saved_req_buf);
1262
1263 dev_dbg(hsotg->dev, "%s: %s: buf=%p length=%d\n", __func__,
John Youn9da51972017-01-17 20:30:27 -08001264 hs_ep->ep.name, req_buf, hs_req->req.length);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001265
1266 hs_req->req.buf = kmalloc(hs_req->req.length, GFP_ATOMIC);
1267 if (!hs_req->req.buf) {
1268 hs_req->req.buf = req_buf;
1269 dev_err(hsotg->dev,
1270 "%s: unable to allocate memory for bounce buffer\n",
1271 __func__);
1272 return -ENOMEM;
1273 }
1274
1275 /* Save actual buffer */
1276 hs_req->saved_req_buf = req_buf;
1277
1278 if (hs_ep->dir_in)
1279 memcpy(hs_req->req.buf, req_buf, hs_req->req.length);
1280 return 0;
1281}
1282
John Younb98866c2017-01-17 20:31:58 -08001283static void
1284dwc2_hsotg_handle_unaligned_buf_complete(struct dwc2_hsotg *hsotg,
1285 struct dwc2_hsotg_ep *hs_ep,
1286 struct dwc2_hsotg_req *hs_req)
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001287{
1288 /* If dma is not being used or buffer was aligned */
1289 if (!using_dma(hsotg) || !hs_req->saved_req_buf)
1290 return;
1291
1292 dev_dbg(hsotg->dev, "%s: %s: status=%d actual-length=%d\n", __func__,
1293 hs_ep->ep.name, hs_req->req.status, hs_req->req.actual);
1294
1295 /* Copy data from bounce buffer on successful out transfer */
1296 if (!hs_ep->dir_in && !hs_req->req.status)
1297 memcpy(hs_req->saved_req_buf, hs_req->req.buf,
John Youn9da51972017-01-17 20:30:27 -08001298 hs_req->req.actual);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001299
1300 /* Free bounce buffer */
1301 kfree(hs_req->req.buf);
1302
1303 hs_req->req.buf = hs_req->saved_req_buf;
1304 hs_req->saved_req_buf = NULL;
1305}
1306
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07001307/**
1308 * dwc2_gadget_target_frame_elapsed - Checks target frame
1309 * @hs_ep: The driver endpoint to check
1310 *
1311 * Returns 1 if targeted frame elapsed. If returned 1 then we need to drop
1312 * corresponding transfer.
1313 */
1314static bool dwc2_gadget_target_frame_elapsed(struct dwc2_hsotg_ep *hs_ep)
1315{
1316 struct dwc2_hsotg *hsotg = hs_ep->parent;
1317 u32 target_frame = hs_ep->target_frame;
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04001318 u32 current_frame = hsotg->frame_number;
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07001319 bool frame_overrun = hs_ep->frame_overrun;
1320
1321 if (!frame_overrun && current_frame >= target_frame)
1322 return true;
1323
1324 if (frame_overrun && current_frame >= target_frame &&
1325 ((current_frame - target_frame) < DSTS_SOFFN_LIMIT / 2))
1326 return true;
1327
1328 return false;
1329}
1330
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08001331/*
1332 * dwc2_gadget_set_ep0_desc_chain - Set EP's desc chain pointers
1333 * @hsotg: The driver state
1334 * @hs_ep: the ep descriptor chain is for
1335 *
1336 * Called to update EP0 structure's pointers depend on stage of
1337 * control transfer.
1338 */
1339static int dwc2_gadget_set_ep0_desc_chain(struct dwc2_hsotg *hsotg,
1340 struct dwc2_hsotg_ep *hs_ep)
1341{
1342 switch (hsotg->ep0_state) {
1343 case DWC2_EP0_SETUP:
1344 case DWC2_EP0_STATUS_OUT:
1345 hs_ep->desc_list = hsotg->setup_desc[0];
1346 hs_ep->desc_list_dma = hsotg->setup_desc_dma[0];
1347 break;
1348 case DWC2_EP0_DATA_IN:
1349 case DWC2_EP0_STATUS_IN:
1350 hs_ep->desc_list = hsotg->ctrl_in_desc;
1351 hs_ep->desc_list_dma = hsotg->ctrl_in_desc_dma;
1352 break;
1353 case DWC2_EP0_DATA_OUT:
1354 hs_ep->desc_list = hsotg->ctrl_out_desc;
1355 hs_ep->desc_list_dma = hsotg->ctrl_out_desc_dma;
1356 break;
1357 default:
1358 dev_err(hsotg->dev, "invalid EP 0 state in queue %d\n",
1359 hsotg->ep0_state);
1360 return -EINVAL;
1361 }
1362
1363 return 0;
1364}
1365
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001366static int dwc2_hsotg_ep_queue(struct usb_ep *ep, struct usb_request *req,
John Youn9da51972017-01-17 20:30:27 -08001367 gfp_t gfp_flags)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001368{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001369 struct dwc2_hsotg_req *hs_req = our_req(req);
1370 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001371 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001372 bool first;
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001373 int ret;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001374 u32 maxsize = 0;
1375 u32 mask = 0;
1376
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001377
1378 dev_dbg(hs->dev, "%s: req %p: %d@%p, noi=%d, zero=%d, snok=%d\n",
1379 ep->name, req, req->length, req->buf, req->no_interrupt,
1380 req->zero, req->short_not_ok);
1381
Gregory Herrero7ababa92015-04-29 22:09:08 +02001382 /* Prevent new request submission when controller is suspended */
Grigor Tovmasyan88b02f22018-01-24 17:44:25 +04001383 if (hs->lx_state != DWC2_L0) {
1384 dev_dbg(hs->dev, "%s: submit request only in active state\n",
John Youn9da51972017-01-17 20:30:27 -08001385 __func__);
Gregory Herrero7ababa92015-04-29 22:09:08 +02001386 return -EAGAIN;
1387 }
1388
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001389 /* initialise status of the request */
1390 INIT_LIST_HEAD(&hs_req->queue);
1391 req->actual = 0;
1392 req->status = -EINPROGRESS;
1393
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001394 /* In DDMA mode for ISOC's don't queue request if length greater
1395 * than descriptor limits.
1396 */
1397 if (using_desc_dma(hs) && hs_ep->isochronous) {
1398 maxsize = dwc2_gadget_get_desc_params(hs_ep, &mask);
1399 if (hs_ep->dir_in && req->length > maxsize) {
1400 dev_err(hs->dev, "wrong length %d (maxsize=%d)\n",
1401 req->length, maxsize);
1402 return -EINVAL;
1403 }
1404
1405 if (!hs_ep->dir_in && req->length > hs_ep->ep.maxpacket) {
1406 dev_err(hs->dev, "ISOC OUT: wrong length %d (mps=%d)\n",
1407 req->length, hs_ep->ep.maxpacket);
1408 return -EINVAL;
1409 }
1410 }
1411
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001412 ret = dwc2_hsotg_handle_unaligned_buf_start(hs, hs_ep, hs_req);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01001413 if (ret)
1414 return ret;
1415
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001416 /* if we're using DMA, sync the buffers as necessary */
1417 if (using_dma(hs)) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001418 ret = dwc2_hsotg_map_dma(hs, hs_ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001419 if (ret)
1420 return ret;
1421 }
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08001422 /* If using descriptor DMA configure EP0 descriptor chain pointers */
1423 if (using_desc_dma(hs) && !hs_ep->index) {
1424 ret = dwc2_gadget_set_ep0_desc_chain(hs, hs_ep);
1425 if (ret)
1426 return ret;
1427 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001428
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001429 first = list_empty(&hs_ep->queue);
1430 list_add_tail(&hs_req->queue, &hs_ep->queue);
1431
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08001432 /*
1433 * Handle DDMA isochronous transfers separately - just add new entry
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001434 * to the descriptor chain.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08001435 * Transfer will be started once SW gets either one of NAK or
1436 * OutTknEpDis interrupts.
1437 */
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001438 if (using_desc_dma(hs) && hs_ep->isochronous) {
1439 if (hs_ep->target_frame != TARGET_FRAME_INITIAL) {
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +01001440 dma_addr_t dma_addr = hs_req->req.dma;
1441
1442 if (hs_req->req.num_sgs) {
1443 WARN_ON(hs_req->req.num_sgs > 1);
1444 dma_addr = sg_dma_address(hs_req->req.sg);
1445 }
1446 dwc2_gadget_fill_isoc_desc(hs_ep, dma_addr,
Minas Harutyunyan729cac62018-05-03 17:24:28 +04001447 hs_req->req.length);
1448 }
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08001449 return 0;
1450 }
1451
Minas Harutyunyanb4c53b42019-03-12 11:45:12 +04001452 /* Change EP direction if status phase request is after data out */
1453 if (!hs_ep->index && !req->length && !hs_ep->dir_in &&
1454 hs->ep0_state == DWC2_EP0_DATA_OUT)
1455 hs_ep->dir_in = 1;
1456
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001457 if (first) {
1458 if (!hs_ep->isochronous) {
1459 dwc2_hsotg_start_req(hs, hs_ep, hs_req, false);
1460 return 0;
1461 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001462
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04001463 /* Update current frame number value. */
1464 hs->frame_number = dwc2_hsotg_read_frameno(hs);
1465 while (dwc2_gadget_target_frame_elapsed(hs_ep)) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001466 dwc2_gadget_incr_frame_num(hs_ep);
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04001467 /* Update current frame number value once more as it
1468 * changes here.
1469 */
1470 hs->frame_number = dwc2_hsotg_read_frameno(hs);
1471 }
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07001472
1473 if (hs_ep->target_frame != TARGET_FRAME_INITIAL)
1474 dwc2_hsotg_start_req(hs, hs_ep, hs_req, false);
1475 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001476 return 0;
1477}
1478
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001479static int dwc2_hsotg_ep_queue_lock(struct usb_ep *ep, struct usb_request *req,
John Youn9da51972017-01-17 20:30:27 -08001480 gfp_t gfp_flags)
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001481{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001482 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001483 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001484 unsigned long flags = 0;
1485 int ret = 0;
1486
1487 spin_lock_irqsave(&hs->lock, flags);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001488 ret = dwc2_hsotg_ep_queue(ep, req, gfp_flags);
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02001489 spin_unlock_irqrestore(&hs->lock, flags);
1490
1491 return ret;
1492}
1493
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001494static void dwc2_hsotg_ep_free_request(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08001495 struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001496{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001497 struct dwc2_hsotg_req *hs_req = our_req(req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001498
1499 kfree(hs_req);
1500}
1501
1502/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001503 * dwc2_hsotg_complete_oursetup - setup completion callback
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001504 * @ep: The endpoint the request was on.
1505 * @req: The request completed.
1506 *
1507 * Called on completion of any requests the driver itself
1508 * submitted that need cleaning up.
1509 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001510static void dwc2_hsotg_complete_oursetup(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08001511 struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001512{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001513 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001514 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001515
1516 dev_dbg(hsotg->dev, "%s: ep %p, req %p\n", __func__, ep, req);
1517
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001518 dwc2_hsotg_ep_free_request(ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001519}
1520
1521/**
1522 * ep_from_windex - convert control wIndex value to endpoint
1523 * @hsotg: The driver state.
1524 * @windex: The control request wIndex field (in host order).
1525 *
1526 * Convert the given wIndex into a pointer to an driver endpoint
1527 * structure, or return NULL if it is not a valid endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001528 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001529static struct dwc2_hsotg_ep *ep_from_windex(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001530 u32 windex)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001531{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001532 struct dwc2_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001533 int dir = (windex & USB_DIR_IN) ? 1 : 0;
1534 int idx = windex & 0x7F;
1535
1536 if (windex >= 0x100)
1537 return NULL;
1538
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02001539 if (idx > hsotg->num_of_eps)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001540 return NULL;
1541
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01001542 ep = index_to_ep(hsotg, idx, dir);
1543
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001544 if (idx && ep->dir_in != dir)
1545 return NULL;
1546
1547 return ep;
1548}
1549
1550/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001551 * dwc2_hsotg_set_test_mode - Enable usb Test Modes
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001552 * @hsotg: The driver state.
1553 * @testmode: requested usb test mode
1554 * Enable usb Test Mode requested by the Host.
1555 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001556int dwc2_hsotg_set_test_mode(struct dwc2_hsotg *hsotg, int testmode)
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001557{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001558 int dctl = dwc2_readl(hsotg, DCTL);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001559
1560 dctl &= ~DCTL_TSTCTL_MASK;
1561 switch (testmode) {
1562 case TEST_J:
1563 case TEST_K:
1564 case TEST_SE0_NAK:
1565 case TEST_PACKET:
1566 case TEST_FORCE_EN:
1567 dctl |= testmode << DCTL_TSTCTL_SHIFT;
1568 break;
1569 default:
1570 return -EINVAL;
1571 }
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001572 dwc2_writel(hsotg, dctl, DCTL);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001573 return 0;
1574}
1575
1576/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001577 * dwc2_hsotg_send_reply - send reply to control request
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001578 * @hsotg: The device state
1579 * @ep: Endpoint 0
1580 * @buff: Buffer for request
1581 * @length: Length of reply.
1582 *
1583 * Create a request and queue it on the given endpoint. This is useful as
1584 * an internal method of sending replies to certain control requests, etc.
1585 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001586static int dwc2_hsotg_send_reply(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001587 struct dwc2_hsotg_ep *ep,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001588 void *buff,
1589 int length)
1590{
1591 struct usb_request *req;
1592 int ret;
1593
1594 dev_dbg(hsotg->dev, "%s: buff %p, len %d\n", __func__, buff, length);
1595
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001596 req = dwc2_hsotg_ep_alloc_request(&ep->ep, GFP_ATOMIC);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001597 hsotg->ep0_reply = req;
1598 if (!req) {
1599 dev_warn(hsotg->dev, "%s: cannot alloc req\n", __func__);
1600 return -ENOMEM;
1601 }
1602
1603 req->buf = hsotg->ep0_buff;
1604 req->length = length;
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01001605 /*
1606 * zero flag is for sending zlp in DATA IN stage. It has no impact on
1607 * STATUS stage.
1608 */
1609 req->zero = 0;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001610 req->complete = dwc2_hsotg_complete_oursetup;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001611
1612 if (length)
1613 memcpy(req->buf, buff, length);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001614
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001615 ret = dwc2_hsotg_ep_queue(&ep->ep, req, GFP_ATOMIC);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001616 if (ret) {
1617 dev_warn(hsotg->dev, "%s: cannot queue req\n", __func__);
1618 return ret;
1619 }
1620
1621 return 0;
1622}
1623
1624/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001625 * dwc2_hsotg_process_req_status - process request GET_STATUS
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001626 * @hsotg: The device state
1627 * @ctrl: USB control request
1628 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001629static int dwc2_hsotg_process_req_status(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001630 struct usb_ctrlrequest *ctrl)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001631{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001632 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
1633 struct dwc2_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001634 __le16 reply;
1635 int ret;
1636
1637 dev_dbg(hsotg->dev, "%s: USB_REQ_GET_STATUS\n", __func__);
1638
1639 if (!ep0->dir_in) {
1640 dev_warn(hsotg->dev, "%s: direction out?\n", __func__);
1641 return -EINVAL;
1642 }
1643
1644 switch (ctrl->bRequestType & USB_RECIP_MASK) {
1645 case USB_RECIP_DEVICE:
John Youn38beaec2017-01-17 20:31:13 -08001646 /*
1647 * bit 0 => self powered
1648 * bit 1 => remote wakeup
1649 */
1650 reply = cpu_to_le16(0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001651 break;
1652
1653 case USB_RECIP_INTERFACE:
1654 /* currently, the data result should be zero */
1655 reply = cpu_to_le16(0);
1656 break;
1657
1658 case USB_RECIP_ENDPOINT:
1659 ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex));
1660 if (!ep)
1661 return -ENOENT;
1662
1663 reply = cpu_to_le16(ep->halted ? 1 : 0);
1664 break;
1665
1666 default:
1667 return 0;
1668 }
1669
1670 if (le16_to_cpu(ctrl->wLength) != 2)
1671 return -EINVAL;
1672
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001673 ret = dwc2_hsotg_send_reply(hsotg, ep0, &reply, 2);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001674 if (ret) {
1675 dev_err(hsotg->dev, "%s: failed to send reply\n", __func__);
1676 return ret;
1677 }
1678
1679 return 1;
1680}
1681
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07001682static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001683
1684/**
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001685 * get_ep_head - return the first request on the endpoint
1686 * @hs_ep: The controller endpoint to get
1687 *
1688 * Get the first request on the endpoint.
1689 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001690static struct dwc2_hsotg_req *get_ep_head(struct dwc2_hsotg_ep *hs_ep)
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001691{
Masahiro Yamadaffc4b402016-09-19 01:03:13 +09001692 return list_first_entry_or_null(&hs_ep->queue, struct dwc2_hsotg_req,
1693 queue);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001694}
1695
1696/**
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07001697 * dwc2_gadget_start_next_request - Starts next request from ep queue
1698 * @hs_ep: Endpoint structure
1699 *
1700 * If queue is empty and EP is ISOC-OUT - unmasks OUTTKNEPDIS which is masked
1701 * in its handler. Hence we need to unmask it here to be able to do
1702 * resynchronization.
1703 */
1704static void dwc2_gadget_start_next_request(struct dwc2_hsotg_ep *hs_ep)
1705{
1706 u32 mask;
1707 struct dwc2_hsotg *hsotg = hs_ep->parent;
1708 int dir_in = hs_ep->dir_in;
1709 struct dwc2_hsotg_req *hs_req;
1710 u32 epmsk_reg = dir_in ? DIEPMSK : DOEPMSK;
1711
1712 if (!list_empty(&hs_ep->queue)) {
1713 hs_req = get_ep_head(hs_ep);
1714 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, false);
1715 return;
1716 }
1717 if (!hs_ep->isochronous)
1718 return;
1719
1720 if (dir_in) {
1721 dev_dbg(hsotg->dev, "%s: No more ISOC-IN requests\n",
1722 __func__);
1723 } else {
1724 dev_dbg(hsotg->dev, "%s: No more ISOC-OUT requests\n",
1725 __func__);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001726 mask = dwc2_readl(hsotg, epmsk_reg);
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07001727 mask |= DOEPMSK_OUTTKNEPDISMSK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001728 dwc2_writel(hsotg, mask, epmsk_reg);
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07001729 }
1730}
1731
1732/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001733 * dwc2_hsotg_process_req_feature - process request {SET,CLEAR}_FEATURE
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001734 * @hsotg: The device state
1735 * @ctrl: USB control request
1736 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001737static int dwc2_hsotg_process_req_feature(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001738 struct usb_ctrlrequest *ctrl)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001739{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001740 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
1741 struct dwc2_hsotg_req *hs_req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001742 bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001743 struct dwc2_hsotg_ep *ep;
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001744 int ret;
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001745 bool halted;
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001746 u32 recip;
1747 u32 wValue;
1748 u32 wIndex;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001749
1750 dev_dbg(hsotg->dev, "%s: %s_FEATURE\n",
1751 __func__, set ? "SET" : "CLEAR");
1752
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001753 wValue = le16_to_cpu(ctrl->wValue);
1754 wIndex = le16_to_cpu(ctrl->wIndex);
1755 recip = ctrl->bRequestType & USB_RECIP_MASK;
1756
1757 switch (recip) {
1758 case USB_RECIP_DEVICE:
1759 switch (wValue) {
Vardan Mikayelyanfa389a62018-02-16 14:08:53 +04001760 case USB_DEVICE_REMOTE_WAKEUP:
1761 hsotg->remote_wakeup_allowed = 1;
1762 break;
1763
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001764 case USB_DEVICE_TEST_MODE:
1765 if ((wIndex & 0xff) != 0)
1766 return -EINVAL;
1767 if (!set)
1768 return -EINVAL;
1769
1770 hsotg->test_mode = wIndex >> 8;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001771 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001772 if (ret) {
1773 dev_err(hsotg->dev,
1774 "%s: failed to send reply\n", __func__);
1775 return ret;
1776 }
1777 break;
1778 default:
1779 return -ENOENT;
1780 }
1781 break;
1782
1783 case USB_RECIP_ENDPOINT:
1784 ep = ep_from_windex(hsotg, wIndex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001785 if (!ep) {
1786 dev_dbg(hsotg->dev, "%s: no endpoint for 0x%04x\n",
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001787 __func__, wIndex);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001788 return -ENOENT;
1789 }
1790
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001791 switch (wValue) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001792 case USB_ENDPOINT_HALT:
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001793 halted = ep->halted;
1794
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07001795 dwc2_hsotg_ep_sethalt(&ep->ep, set, true);
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001796
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001797 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
Anton Tikhomirov26ab3d02011-04-21 17:06:40 +09001798 if (ret) {
1799 dev_err(hsotg->dev,
1800 "%s: failed to send reply\n", __func__);
1801 return ret;
1802 }
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001803
Robert Baldygabd9ef7b2013-09-19 11:50:22 +02001804 /*
1805 * we have to complete all requests for ep if it was
1806 * halted, and the halt was cleared by CLEAR_FEATURE
1807 */
1808
1809 if (!set && halted) {
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001810 /*
1811 * If we have request in progress,
1812 * then complete it
1813 */
1814 if (ep->req) {
1815 hs_req = ep->req;
1816 ep->req = NULL;
1817 list_del_init(&hs_req->queue);
Gregory Herreroc00dd4a2015-01-30 09:09:27 +01001818 if (hs_req->req.complete) {
1819 spin_unlock(&hsotg->lock);
1820 usb_gadget_giveback_request(
1821 &ep->ep, &hs_req->req);
1822 spin_lock(&hsotg->lock);
1823 }
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001824 }
1825
1826 /* If we have pending request, then start it */
John Youn34c0887f2017-01-17 20:31:43 -08001827 if (!ep->req)
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07001828 dwc2_gadget_start_next_request(ep);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09001829 }
1830
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001831 break;
1832
1833 default:
1834 return -ENOENT;
1835 }
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01001836 break;
1837 default:
1838 return -ENOENT;
1839 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001840 return 1;
1841}
1842
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001843static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg);
Robert Baldygaab93e012013-09-19 11:50:17 +02001844
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001845/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001846 * dwc2_hsotg_stall_ep0 - stall ep0
Robert Baldygac9f721b2014-01-14 08:36:00 +01001847 * @hsotg: The device state
1848 *
1849 * Set stall for ep0 as response for setup request.
1850 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001851static void dwc2_hsotg_stall_ep0(struct dwc2_hsotg *hsotg)
Jingoo Hane9ebe7c2014-06-03 22:14:56 +09001852{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001853 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
Robert Baldygac9f721b2014-01-14 08:36:00 +01001854 u32 reg;
1855 u32 ctrl;
1856
1857 dev_dbg(hsotg->dev, "ep0 stall (dir=%d)\n", ep0->dir_in);
1858 reg = (ep0->dir_in) ? DIEPCTL0 : DOEPCTL0;
1859
1860 /*
1861 * DxEPCTL_Stall will be cleared by EP once it has
1862 * taken effect, so no need to clear later.
1863 */
1864
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001865 ctrl = dwc2_readl(hsotg, reg);
Dinh Nguyen47a16852014-04-14 14:13:34 -07001866 ctrl |= DXEPCTL_STALL;
1867 ctrl |= DXEPCTL_CNAK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001868 dwc2_writel(hsotg, ctrl, reg);
Robert Baldygac9f721b2014-01-14 08:36:00 +01001869
1870 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -07001871 "written DXEPCTL=0x%08x to %08x (DXEPCTL=0x%08x)\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001872 ctrl, reg, dwc2_readl(hsotg, reg));
Robert Baldygac9f721b2014-01-14 08:36:00 +01001873
1874 /*
1875 * complete won't be called, so we enqueue
1876 * setup request here
1877 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001878 dwc2_hsotg_enqueue_setup(hsotg);
Robert Baldygac9f721b2014-01-14 08:36:00 +01001879}
1880
1881/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001882 * dwc2_hsotg_process_control - process a control request
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001883 * @hsotg: The device state
1884 * @ctrl: The control request received
1885 *
1886 * The controller has received the SETUP phase of a control request, and
1887 * needs to work out what to do next (and whether to pass it on to the
1888 * gadget driver).
1889 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001890static void dwc2_hsotg_process_control(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08001891 struct usb_ctrlrequest *ctrl)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001892{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001893 struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0];
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001894 int ret = 0;
1895 u32 dcfg;
1896
Mian Yousaf Kaukabe525e742015-09-29 12:08:23 +02001897 dev_dbg(hsotg->dev,
1898 "ctrl Type=%02x, Req=%02x, V=%04x, I=%04x, L=%04x\n",
1899 ctrl->bRequestType, ctrl->bRequest, ctrl->wValue,
1900 ctrl->wIndex, ctrl->wLength);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001901
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001902 if (ctrl->wLength == 0) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001903 ep0->dir_in = 1;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01001904 hsotg->ep0_state = DWC2_EP0_STATUS_IN;
1905 } else if (ctrl->bRequestType & USB_DIR_IN) {
1906 ep0->dir_in = 1;
1907 hsotg->ep0_state = DWC2_EP0_DATA_IN;
1908 } else {
1909 ep0->dir_in = 0;
1910 hsotg->ep0_state = DWC2_EP0_DATA_OUT;
1911 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001912
1913 if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) {
1914 switch (ctrl->bRequest) {
1915 case USB_REQ_SET_ADDRESS:
Mian Yousaf Kaukab6d713c12015-01-09 13:39:10 +01001916 hsotg->connected = 1;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001917 dcfg = dwc2_readl(hsotg, DCFG);
Dinh Nguyen47a16852014-04-14 14:13:34 -07001918 dcfg &= ~DCFG_DEVADDR_MASK;
Paul Zimmermand5dbd3f2014-04-25 14:18:13 -07001919 dcfg |= (le16_to_cpu(ctrl->wValue) <<
1920 DCFG_DEVADDR_SHIFT) & DCFG_DEVADDR_MASK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04001921 dwc2_writel(hsotg, dcfg, DCFG);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001922
1923 dev_info(hsotg->dev, "new address %d\n", ctrl->wValue);
1924
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001925 ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001926 return;
1927
1928 case USB_REQ_GET_STATUS:
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001929 ret = dwc2_hsotg_process_req_status(hsotg, ctrl);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001930 break;
1931
1932 case USB_REQ_CLEAR_FEATURE:
1933 case USB_REQ_SET_FEATURE:
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001934 ret = dwc2_hsotg_process_req_feature(hsotg, ctrl);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001935 break;
1936 }
1937 }
1938
1939 /* as a fallback, try delivering it to the driver to deal with */
1940
1941 if (ret == 0 && hsotg->driver) {
Robert Baldyga93f599f2013-11-21 13:49:17 +01001942 spin_unlock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001943 ret = hsotg->driver->setup(&hsotg->gadget, ctrl);
Robert Baldyga93f599f2013-11-21 13:49:17 +01001944 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001945 if (ret < 0)
1946 dev_dbg(hsotg->dev, "driver->setup() ret %d\n", ret);
1947 }
1948
Minas Harutyunyanb4c53b42019-03-12 11:45:12 +04001949 hsotg->delayed_status = false;
1950 if (ret == USB_GADGET_DELAYED_STATUS)
1951 hsotg->delayed_status = true;
1952
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02001953 /*
1954 * the request is either unhandlable, or is not formatted correctly
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001955 * so respond with a STALL for the status stage to indicate failure.
1956 */
1957
Robert Baldygac9f721b2014-01-14 08:36:00 +01001958 if (ret < 0)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001959 dwc2_hsotg_stall_ep0(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001960}
1961
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001962/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001963 * dwc2_hsotg_complete_setup - completion of a setup transfer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001964 * @ep: The endpoint the request was on.
1965 * @req: The request completed.
1966 *
1967 * Called on completion of any requests the driver itself submitted for
1968 * EP0 setup packets
1969 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001970static void dwc2_hsotg_complete_setup(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08001971 struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001972{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001973 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06001974 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001975
1976 if (req->status < 0) {
1977 dev_dbg(hsotg->dev, "%s: failed %d\n", __func__, req->status);
1978 return;
1979 }
1980
Robert Baldyga93f599f2013-11-21 13:49:17 +01001981 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001982 if (req->actual == 0)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001983 dwc2_hsotg_enqueue_setup(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001984 else
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001985 dwc2_hsotg_process_control(hsotg, req->buf);
Robert Baldyga93f599f2013-11-21 13:49:17 +01001986 spin_unlock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001987}
1988
1989/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001990 * dwc2_hsotg_enqueue_setup - start a request for EP0 packets
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001991 * @hsotg: The device state.
1992 *
1993 * Enqueue a request on EP0 if necessary to received any SETUP packets
1994 * received from the host.
1995 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001996static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01001997{
1998 struct usb_request *req = hsotg->ctrl_req;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05001999 struct dwc2_hsotg_req *hs_req = our_req(req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002000 int ret;
2001
2002 dev_dbg(hsotg->dev, "%s: queueing setup request\n", __func__);
2003
2004 req->zero = 0;
2005 req->length = 8;
2006 req->buf = hsotg->ctrl_buff;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002007 req->complete = dwc2_hsotg_complete_setup;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002008
2009 if (!list_empty(&hs_req->queue)) {
2010 dev_dbg(hsotg->dev, "%s already queued???\n", __func__);
2011 return;
2012 }
2013
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002014 hsotg->eps_out[0]->dir_in = 0;
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01002015 hsotg->eps_out[0]->send_zlp = 0;
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002016 hsotg->ep0_state = DWC2_EP0_SETUP;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002017
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002018 ret = dwc2_hsotg_ep_queue(&hsotg->eps_out[0]->ep, req, GFP_ATOMIC);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002019 if (ret < 0) {
2020 dev_err(hsotg->dev, "%s: failed queue (%d)\n", __func__, ret);
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002021 /*
2022 * Don't think there's much we can do other than watch the
2023 * driver fail.
2024 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002025 }
2026}
2027
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002028static void dwc2_hsotg_program_zlp(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002029 struct dwc2_hsotg_ep *hs_ep)
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002030{
2031 u32 ctrl;
2032 u8 index = hs_ep->index;
2033 u32 epctl_reg = hs_ep->dir_in ? DIEPCTL(index) : DOEPCTL(index);
2034 u32 epsiz_reg = hs_ep->dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index);
2035
Mian Yousaf Kaukabccb34a92015-01-30 09:09:34 +01002036 if (hs_ep->dir_in)
2037 dev_dbg(hsotg->dev, "Sending zero-length packet on ep%d\n",
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08002038 index);
Mian Yousaf Kaukabccb34a92015-01-30 09:09:34 +01002039 else
2040 dev_dbg(hsotg->dev, "Receiving zero-length packet on ep%d\n",
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08002041 index);
2042 if (using_desc_dma(hsotg)) {
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +02002043 /* Not specific buffer needed for ep0 ZLP */
2044 dma_addr_t dma = hs_ep->desc_list_dma;
2045
Minas Harutyunyan201ec562018-01-16 16:03:32 +04002046 if (!index)
2047 dwc2_gadget_set_ep0_desc_chain(hsotg, hs_ep);
2048
Andrzej Pietrasiewicz066cfd02019-04-01 12:50:45 +02002049 dwc2_gadget_config_nonisoc_xfer_ddma(hs_ep, dma, 0);
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08002050 } else {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002051 dwc2_writel(hsotg, DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
2052 DXEPTSIZ_XFERSIZE(0),
Vahram Aharonyane02f9aa2016-11-14 19:16:24 -08002053 epsiz_reg);
2054 }
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002055
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002056 ctrl = dwc2_readl(hsotg, epctl_reg);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002057 ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */
2058 ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */
2059 ctrl |= DXEPCTL_USBACTEP;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002060 dwc2_writel(hsotg, ctrl, epctl_reg);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002061}
2062
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002063/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002064 * dwc2_hsotg_complete_request - complete a request given to us
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002065 * @hsotg: The device state.
2066 * @hs_ep: The endpoint the request was on.
2067 * @hs_req: The request to complete.
2068 * @result: The result code (0 => Ok, otherwise errno)
2069 *
2070 * The given request has finished, so call the necessary completion
2071 * if it has one and then look to see if we can start a new request
2072 * on the endpoint.
2073 *
2074 * Note, expects the ep to already be locked as appropriate.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002075 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002076static void dwc2_hsotg_complete_request(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002077 struct dwc2_hsotg_ep *hs_ep,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002078 struct dwc2_hsotg_req *hs_req,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002079 int result)
2080{
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002081 if (!hs_req) {
2082 dev_dbg(hsotg->dev, "%s: nothing to complete?\n", __func__);
2083 return;
2084 }
2085
2086 dev_dbg(hsotg->dev, "complete: ep %p %s, req %p, %d => %p\n",
2087 hs_ep, hs_ep->ep.name, hs_req, result, hs_req->req.complete);
2088
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002089 /*
2090 * only replace the status if we've not already set an error
2091 * from a previous transaction
2092 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002093
2094 if (hs_req->req.status == -EINPROGRESS)
2095 hs_req->req.status = result;
2096
Yunzhi Li44583fe2015-09-29 12:25:01 +02002097 if (using_dma(hsotg))
2098 dwc2_hsotg_unmap_dma(hsotg, hs_ep, hs_req);
2099
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002100 dwc2_hsotg_handle_unaligned_buf_complete(hsotg, hs_ep, hs_req);
Mian Yousaf Kaukab7d24c1b2015-01-30 09:09:31 +01002101
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002102 hs_ep->req = NULL;
2103 list_del_init(&hs_req->queue);
2104
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002105 /*
2106 * call the complete request with the locks off, just in case the
2107 * request tries to queue more work for this endpoint.
2108 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002109
2110 if (hs_req->req.complete) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02002111 spin_unlock(&hsotg->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02002112 usb_gadget_giveback_request(&hs_ep->ep, &hs_req->req);
Lukasz Majewski22258f42012-06-14 10:02:24 +02002113 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002114 }
2115
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002116 /* In DDMA don't need to proceed to starting of next ISOC request */
2117 if (using_desc_dma(hsotg) && hs_ep->isochronous)
2118 return;
2119
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002120 /*
2121 * Look to see if there is anything else to do. Note, the completion
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002122 * of the previous request may have caused a new request to be started
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002123 * so be careful when doing this.
2124 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002125
John Youn34c0887f2017-01-17 20:31:43 -08002126 if (!hs_ep->req && result >= 0)
Vardan Mikayelyan41cc4cd2016-05-25 18:07:12 -07002127 dwc2_gadget_start_next_request(hs_ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002128}
2129
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002130/*
2131 * dwc2_gadget_complete_isoc_request_ddma - complete an isoc request in DDMA
2132 * @hs_ep: The endpoint the request was on.
2133 *
2134 * Get first request from the ep queue, determine descriptor on which complete
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002135 * happened. SW discovers which descriptor currently in use by HW, adjusts
2136 * dma_address and calculates index of completed descriptor based on the value
2137 * of DEPDMA register. Update actual length of request, giveback to gadget.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002138 */
2139static void dwc2_gadget_complete_isoc_request_ddma(struct dwc2_hsotg_ep *hs_ep)
2140{
2141 struct dwc2_hsotg *hsotg = hs_ep->parent;
2142 struct dwc2_hsotg_req *hs_req;
2143 struct usb_request *ureq;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002144 u32 desc_sts;
2145 u32 mask;
2146
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002147 desc_sts = hs_ep->desc_list[hs_ep->compl_desc].status;
2148
2149 /* Process only descriptors with buffer status set to DMA done */
2150 while ((desc_sts & DEV_DMA_BUFF_STS_MASK) >>
2151 DEV_DMA_BUFF_STS_SHIFT == DEV_DMA_BUFF_STS_DMADONE) {
2152
2153 hs_req = get_ep_head(hs_ep);
2154 if (!hs_req) {
2155 dev_warn(hsotg->dev, "%s: ISOC EP queue empty\n", __func__);
2156 return;
2157 }
2158 ureq = &hs_req->req;
2159
2160 /* Check completion status */
2161 if ((desc_sts & DEV_DMA_STS_MASK) >> DEV_DMA_STS_SHIFT ==
2162 DEV_DMA_STS_SUCC) {
2163 mask = hs_ep->dir_in ? DEV_DMA_ISOC_TX_NBYTES_MASK :
2164 DEV_DMA_ISOC_RX_NBYTES_MASK;
2165 ureq->actual = ureq->length - ((desc_sts & mask) >>
2166 DEV_DMA_ISOC_NBYTES_SHIFT);
2167
2168 /* Adjust actual len for ISOC Out if len is
2169 * not align of 4
2170 */
2171 if (!hs_ep->dir_in && ureq->length & 0x3)
2172 ureq->actual += 4 - (ureq->length & 0x3);
Minas Harutyunyanc8006f62019-03-12 13:27:46 +04002173
2174 /* Set actual frame number for completed transfers */
2175 ureq->frame_number =
2176 (desc_sts & DEV_DMA_ISOC_FRNUM_MASK) >>
2177 DEV_DMA_ISOC_FRNUM_SHIFT;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002178 }
2179
2180 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
2181
2182 hs_ep->compl_desc++;
Minas Harutyunyan54f37f52019-03-18 14:24:30 +04002183 if (hs_ep->compl_desc > (MAX_DMA_DESC_NUM_HS_ISOC - 1))
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002184 hs_ep->compl_desc = 0;
2185 desc_sts = hs_ep->desc_list[hs_ep->compl_desc].status;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002186 }
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002187}
2188
2189/*
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002190 * dwc2_gadget_handle_isoc_bna - handle BNA interrupt for ISOC.
2191 * @hs_ep: The isochronous endpoint.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002192 *
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002193 * If EP ISOC OUT then need to flush RX FIFO to remove source of BNA
2194 * interrupt. Reset target frame and next_desc to allow to start
2195 * ISOC's on NAK interrupt for IN direction or on OUTTKNEPDIS
2196 * interrupt for OUT direction.
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002197 */
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002198static void dwc2_gadget_handle_isoc_bna(struct dwc2_hsotg_ep *hs_ep)
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002199{
2200 struct dwc2_hsotg *hsotg = hs_ep->parent;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002201
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002202 if (!hs_ep->dir_in)
2203 dwc2_flush_rx_fifo(hsotg);
2204 dwc2_hsotg_complete_request(hsotg, hs_ep, get_ep_head(hs_ep), 0);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002205
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002206 hs_ep->target_frame = TARGET_FRAME_INITIAL;
2207 hs_ep->next_desc = 0;
2208 hs_ep->compl_desc = 0;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002209}
2210
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002211/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002212 * dwc2_hsotg_rx_data - receive data from the FIFO for an endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002213 * @hsotg: The device state.
2214 * @ep_idx: The endpoint index for the data
2215 * @size: The size of data in the fifo, in bytes
2216 *
2217 * The FIFO status shows there is data to read from the FIFO for a given
2218 * endpoint, so sort out whether we need to read the data into a request
2219 * that has been made for that endpoint.
2220 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002221static void dwc2_hsotg_rx_data(struct dwc2_hsotg *hsotg, int ep_idx, int size)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002222{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002223 struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[ep_idx];
2224 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002225 int to_read;
2226 int max_req;
2227 int read_ptr;
2228
2229 if (!hs_req) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002230 u32 epctl = dwc2_readl(hsotg, DOEPCTL(ep_idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002231 int ptr;
2232
Robert Baldyga6b448af42014-12-16 11:51:44 +01002233 dev_dbg(hsotg->dev,
John Youn9da51972017-01-17 20:30:27 -08002234 "%s: FIFO %d bytes on ep%d but no req (DXEPCTl=0x%08x)\n",
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002235 __func__, size, ep_idx, epctl);
2236
2237 /* dump the data from the FIFO, we've nothing we can do */
2238 for (ptr = 0; ptr < size; ptr += 4)
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002239 (void)dwc2_readl(hsotg, EPFIFO(ep_idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002240
2241 return;
2242 }
2243
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002244 to_read = size;
2245 read_ptr = hs_req->req.actual;
2246 max_req = hs_req->req.length - read_ptr;
2247
Ben Dooksa33e7132010-07-19 09:40:49 +01002248 dev_dbg(hsotg->dev, "%s: read %d/%d, done %d/%d\n",
2249 __func__, to_read, max_req, read_ptr, hs_req->req.length);
2250
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002251 if (to_read > max_req) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002252 /*
2253 * more data appeared than we where willing
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002254 * to deal with in this request.
2255 */
2256
2257 /* currently we don't deal this */
2258 WARN_ON_ONCE(1);
2259 }
2260
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002261 hs_ep->total_data += to_read;
2262 hs_req->req.actual += to_read;
2263 to_read = DIV_ROUND_UP(to_read, 4);
2264
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002265 /*
2266 * note, we might over-write the buffer end by 3 bytes depending on
2267 * alignment of the data.
2268 */
Gevorg Sahakyan342ccce2018-07-26 18:00:41 +04002269 dwc2_readl_rep(hsotg, EPFIFO(ep_idx),
2270 hs_req->req.buf + read_ptr, to_read);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002271}
2272
2273/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002274 * dwc2_hsotg_ep0_zlp - send/receive zero-length packet on control endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002275 * @hsotg: The device instance
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002276 * @dir_in: If IN zlp
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002277 *
2278 * Generate a zero-length IN packet request for terminating a SETUP
2279 * transaction.
2280 *
2281 * Note, since we don't write any data to the TxFIFO, then it is
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002282 * currently believed that we do not need to wait for any space in
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002283 * the TxFIFO.
2284 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002285static void dwc2_hsotg_ep0_zlp(struct dwc2_hsotg *hsotg, bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002286{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002287 /* eps_out[0] is used in both directions */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002288 hsotg->eps_out[0]->dir_in = dir_in;
2289 hsotg->ep0_state = dir_in ? DWC2_EP0_STATUS_IN : DWC2_EP0_STATUS_OUT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002290
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002291 dwc2_hsotg_program_zlp(hsotg, hsotg->eps_out[0]);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002292}
2293
Roman Bacikec1f9d92015-09-10 18:13:43 -07002294static void dwc2_hsotg_change_ep_iso_parity(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002295 u32 epctl_reg)
Roman Bacikec1f9d92015-09-10 18:13:43 -07002296{
2297 u32 ctrl;
2298
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002299 ctrl = dwc2_readl(hsotg, epctl_reg);
Roman Bacikec1f9d92015-09-10 18:13:43 -07002300 if (ctrl & DXEPCTL_EOFRNUM)
2301 ctrl |= DXEPCTL_SETEVENFR;
2302 else
2303 ctrl |= DXEPCTL_SETODDFR;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002304 dwc2_writel(hsotg, ctrl, epctl_reg);
Roman Bacikec1f9d92015-09-10 18:13:43 -07002305}
2306
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08002307/*
2308 * dwc2_gadget_get_xfersize_ddma - get transferred bytes amount from desc
2309 * @hs_ep - The endpoint on which transfer went
2310 *
2311 * Iterate over endpoints descriptor chain and get info on bytes remained
2312 * in DMA descriptors after transfer has completed. Used for non isoc EPs.
2313 */
2314static unsigned int dwc2_gadget_get_xfersize_ddma(struct dwc2_hsotg_ep *hs_ep)
2315{
2316 struct dwc2_hsotg *hsotg = hs_ep->parent;
2317 unsigned int bytes_rem = 0;
2318 struct dwc2_dma_desc *desc = hs_ep->desc_list;
2319 int i;
2320 u32 status;
2321
2322 if (!desc)
2323 return -EINVAL;
2324
2325 for (i = 0; i < hs_ep->desc_count; ++i) {
2326 status = desc->status;
2327 bytes_rem += status & DEV_DMA_NBYTES_MASK;
2328
2329 if (status & DEV_DMA_STS_MASK)
2330 dev_err(hsotg->dev, "descriptor %d closed with %x\n",
2331 i, status & DEV_DMA_STS_MASK);
Minas Harutyunyan5acb4b972019-02-22 15:49:19 +04002332 desc++;
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08002333 }
2334
2335 return bytes_rem;
2336}
2337
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002338/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002339 * dwc2_hsotg_handle_outdone - handle receiving OutDone/SetupDone from RXFIFO
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002340 * @hsotg: The device instance
2341 * @epnum: The endpoint received from
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002342 *
2343 * The RXFIFO has delivered an OutDone event, which means that the data
2344 * transfer for an OUT endpoint has been completed, either by a short
2345 * packet or by the finish of a transfer.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002346 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002347static void dwc2_hsotg_handle_outdone(struct dwc2_hsotg *hsotg, int epnum)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002348{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002349 u32 epsize = dwc2_readl(hsotg, DOEPTSIZ(epnum));
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002350 struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[epnum];
2351 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002352 struct usb_request *req = &hs_req->req;
John Youn9da51972017-01-17 20:30:27 -08002353 unsigned int size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002354 int result = 0;
2355
2356 if (!hs_req) {
2357 dev_dbg(hsotg->dev, "%s: no request active\n", __func__);
2358 return;
2359 }
2360
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002361 if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_OUT) {
2362 dev_dbg(hsotg->dev, "zlp packet received\n");
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002363 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
2364 dwc2_hsotg_enqueue_setup(hsotg);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002365 return;
2366 }
2367
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08002368 if (using_desc_dma(hsotg))
2369 size_left = dwc2_gadget_get_xfersize_ddma(hs_ep);
2370
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002371 if (using_dma(hsotg)) {
John Youn9da51972017-01-17 20:30:27 -08002372 unsigned int size_done;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002373
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002374 /*
2375 * Calculate the size of the transfer by checking how much
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002376 * is left in the endpoint size register and then working it
2377 * out from the amount we loaded for the transfer.
2378 *
2379 * We need to do this as DMA pointers are always 32bit aligned
2380 * so may overshoot/undershoot the transfer.
2381 */
2382
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002383 size_done = hs_ep->size_loaded - size_left;
2384 size_done += hs_ep->last_load;
2385
2386 req->actual = size_done;
2387 }
2388
Ben Dooksa33e7132010-07-19 09:40:49 +01002389 /* if there is more request to do, schedule new transfer */
2390 if (req->actual < req->length && size_left == 0) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002391 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true);
Ben Dooksa33e7132010-07-19 09:40:49 +01002392 return;
2393 }
2394
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002395 if (req->actual < req->length && req->short_not_ok) {
2396 dev_dbg(hsotg->dev, "%s: got %d/%d (short not ok) => error\n",
2397 __func__, req->actual, req->length);
2398
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002399 /*
2400 * todo - what should we return here? there's no one else
2401 * even bothering to check the status.
2402 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002403 }
2404
Vahram Aharonyanef750c72016-11-14 19:16:31 -08002405 /* DDMA IN status phase will start from StsPhseRcvd interrupt */
2406 if (!using_desc_dma(hsotg) && epnum == 0 &&
2407 hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002408 /* Move to STATUS IN */
Minas Harutyunyanb4c53b42019-03-12 11:45:12 +04002409 if (!hsotg->delayed_status)
2410 dwc2_hsotg_ep0_zlp(hsotg, true);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002411 }
2412
Roman Bacikec1f9d92015-09-10 18:13:43 -07002413 /*
2414 * Slave mode OUT transfers do not go through XferComplete so
2415 * adjust the ISOC parity here.
2416 */
2417 if (!using_dma(hsotg)) {
Roman Bacikec1f9d92015-09-10 18:13:43 -07002418 if (hs_ep->isochronous && hs_ep->interval == 1)
2419 dwc2_hsotg_change_ep_iso_parity(hsotg, DOEPCTL(epnum));
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07002420 else if (hs_ep->isochronous && hs_ep->interval > 1)
2421 dwc2_gadget_incr_frame_num(hs_ep);
Roman Bacikec1f9d92015-09-10 18:13:43 -07002422 }
2423
Minas Harutyunyan4faf3b32019-04-29 15:23:43 +04002424 /* Set actual frame number for completed transfers */
2425 if (!using_desc_dma(hsotg) && hs_ep->isochronous)
2426 req->frame_number = hsotg->frame_number;
2427
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002428 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, result);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002429}
2430
2431/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002432 * dwc2_hsotg_handle_rx - RX FIFO has data
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002433 * @hsotg: The device instance
2434 *
2435 * The IRQ handler has detected that the RX FIFO has some data in it
2436 * that requires processing, so find out what is in there and do the
2437 * appropriate read.
2438 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002439 * The RXFIFO is a true FIFO, the packets coming out are still in packet
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002440 * chunks, so if you have x packets received on an endpoint you'll get x
2441 * FIFO events delivered, each with a packet's worth of data in it.
2442 *
2443 * When using DMA, we should not be processing events from the RXFIFO
2444 * as the actual data should be sent to the memory directly and we turn
2445 * on the completion interrupts to get notifications of transfer completion.
2446 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002447static void dwc2_hsotg_handle_rx(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002448{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002449 u32 grxstsr = dwc2_readl(hsotg, GRXSTSP);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002450 u32 epnum, status, size;
2451
2452 WARN_ON(using_dma(hsotg));
2453
Dinh Nguyen47a16852014-04-14 14:13:34 -07002454 epnum = grxstsr & GRXSTS_EPNUM_MASK;
2455 status = grxstsr & GRXSTS_PKTSTS_MASK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002456
Dinh Nguyen47a16852014-04-14 14:13:34 -07002457 size = grxstsr & GRXSTS_BYTECNT_MASK;
2458 size >>= GRXSTS_BYTECNT_SHIFT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002459
Mian Yousaf Kaukabd7c747c2015-01-30 09:09:30 +01002460 dev_dbg(hsotg->dev, "%s: GRXSTSP=0x%08x (%d@%d)\n",
John Youn9da51972017-01-17 20:30:27 -08002461 __func__, grxstsr, size, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002462
Dinh Nguyen47a16852014-04-14 14:13:34 -07002463 switch ((status & GRXSTS_PKTSTS_MASK) >> GRXSTS_PKTSTS_SHIFT) {
2464 case GRXSTS_PKTSTS_GLOBALOUTNAK:
2465 dev_dbg(hsotg->dev, "GLOBALOUTNAK\n");
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002466 break;
2467
Dinh Nguyen47a16852014-04-14 14:13:34 -07002468 case GRXSTS_PKTSTS_OUTDONE:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002469 dev_dbg(hsotg->dev, "OutDone (Frame=0x%08x)\n",
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002470 dwc2_hsotg_read_frameno(hsotg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002471
2472 if (!using_dma(hsotg))
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002473 dwc2_hsotg_handle_outdone(hsotg, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002474 break;
2475
Dinh Nguyen47a16852014-04-14 14:13:34 -07002476 case GRXSTS_PKTSTS_SETUPDONE:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002477 dev_dbg(hsotg->dev,
2478 "SetupDone (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002479 dwc2_hsotg_read_frameno(hsotg),
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002480 dwc2_readl(hsotg, DOEPCTL(0)));
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002481 /*
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002482 * Call dwc2_hsotg_handle_outdone here if it was not called from
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002483 * GRXSTS_PKTSTS_OUTDONE. That is, if the core didn't
2484 * generate GRXSTS_PKTSTS_OUTDONE for setup packet.
2485 */
2486 if (hsotg->ep0_state == DWC2_EP0_SETUP)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002487 dwc2_hsotg_handle_outdone(hsotg, epnum);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002488 break;
2489
Dinh Nguyen47a16852014-04-14 14:13:34 -07002490 case GRXSTS_PKTSTS_OUTRX:
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002491 dwc2_hsotg_rx_data(hsotg, epnum, size);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002492 break;
2493
Dinh Nguyen47a16852014-04-14 14:13:34 -07002494 case GRXSTS_PKTSTS_SETUPRX:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002495 dev_dbg(hsotg->dev,
2496 "SetupRX (Frame=0x%08x, DOPEPCTL=0x%08x)\n",
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002497 dwc2_hsotg_read_frameno(hsotg),
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002498 dwc2_readl(hsotg, DOEPCTL(0)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002499
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002500 WARN_ON(hsotg->ep0_state != DWC2_EP0_SETUP);
2501
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002502 dwc2_hsotg_rx_data(hsotg, epnum, size);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002503 break;
2504
2505 default:
2506 dev_warn(hsotg->dev, "%s: unknown status %08x\n",
2507 __func__, grxstsr);
2508
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002509 dwc2_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002510 break;
2511 }
2512}
2513
2514/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002515 * dwc2_hsotg_ep0_mps - turn max packet size into register setting
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002516 * @mps: The maximum packet size in bytes.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002517 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002518static u32 dwc2_hsotg_ep0_mps(unsigned int mps)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002519{
2520 switch (mps) {
2521 case 64:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002522 return D0EPCTL_MPS_64;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002523 case 32:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002524 return D0EPCTL_MPS_32;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002525 case 16:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002526 return D0EPCTL_MPS_16;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002527 case 8:
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002528 return D0EPCTL_MPS_8;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002529 }
2530
2531 /* bad max packet size, warn and return invalid result */
2532 WARN_ON(1);
2533 return (u32)-1;
2534}
2535
2536/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002537 * dwc2_hsotg_set_ep_maxpacket - set endpoint's max-packet field
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002538 * @hsotg: The driver state.
2539 * @ep: The index number of the endpoint
2540 * @mps: The maximum packet size in bytes
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002541 * @mc: The multicount value
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04002542 * @dir_in: True if direction is in.
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002543 *
2544 * Configure the maximum packet size for the given endpoint, updating
2545 * the hardware control registers to reflect this.
2546 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002547static void dwc2_hsotg_set_ep_maxpacket(struct dwc2_hsotg *hsotg,
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002548 unsigned int ep, unsigned int mps,
2549 unsigned int mc, unsigned int dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002550{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002551 struct dwc2_hsotg_ep *hs_ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002552 u32 reg;
2553
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002554 hs_ep = index_to_ep(hsotg, ep, dir_in);
2555 if (!hs_ep)
2556 return;
2557
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002558 if (ep == 0) {
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002559 u32 mps_bytes = mps;
2560
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002561 /* EP0 is a special case */
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002562 mps = dwc2_hsotg_ep0_mps(mps_bytes);
2563 if (mps > 3)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002564 goto bad_mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002565 hs_ep->ep.maxpacket = mps_bytes;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02002566 hs_ep->mc = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002567 } else {
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002568 if (mps > 1024)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002569 goto bad_mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002570 hs_ep->mc = mc;
2571 if (mc > 3)
Robert Baldyga4fca54a2013-10-09 09:00:02 +02002572 goto bad_mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002573 hs_ep->ep.maxpacket = mps;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002574 }
2575
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002576 if (dir_in) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002577 reg = dwc2_readl(hsotg, DIEPCTL(ep));
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002578 reg &= ~DXEPCTL_MPS_MASK;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002579 reg |= mps;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002580 dwc2_writel(hsotg, reg, DIEPCTL(ep));
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002581 } else {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002582 reg = dwc2_readl(hsotg, DOEPCTL(ep));
Dinh Nguyen47a16852014-04-14 14:13:34 -07002583 reg &= ~DXEPCTL_MPS_MASK;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08002584 reg |= mps;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002585 dwc2_writel(hsotg, reg, DOEPCTL(ep));
Anton Tikhomirov659ad602012-03-06 14:07:29 +09002586 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002587
2588 return;
2589
2590bad_mps:
2591 dev_err(hsotg->dev, "ep%d: bad mps of %d\n", ep, mps);
2592}
2593
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002594/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002595 * dwc2_hsotg_txfifo_flush - flush Tx FIFO
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002596 * @hsotg: The driver state
2597 * @idx: The index for the endpoint (0..15)
2598 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002599static void dwc2_hsotg_txfifo_flush(struct dwc2_hsotg *hsotg, unsigned int idx)
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002600{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002601 dwc2_writel(hsotg, GRSTCTL_TXFNUM(idx) | GRSTCTL_TXFFLSH,
2602 GRSTCTL);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002603
2604 /* wait until the fifo is flushed */
Sevak Arakelyan79d6b8c2018-01-19 14:39:31 +04002605 if (dwc2_hsotg_wait_bit_clear(hsotg, GRSTCTL, GRSTCTL_TXFFLSH, 100))
2606 dev_warn(hsotg->dev, "%s: timeout flushing fifo GRSTCTL_TXFFLSH\n",
2607 __func__);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09002608}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002609
2610/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002611 * dwc2_hsotg_trytx - check to see if anything needs transmitting
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002612 * @hsotg: The driver state
2613 * @hs_ep: The driver endpoint to check.
2614 *
2615 * Check to see if there is a request that has data to send, and if so
2616 * make an attempt to write data into the FIFO.
2617 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002618static int dwc2_hsotg_trytx(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002619 struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002620{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002621 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002622
Robert Baldygaafcf4162013-09-19 11:50:19 +02002623 if (!hs_ep->dir_in || !hs_req) {
2624 /**
2625 * if request is not enqueued, we disable interrupts
2626 * for endpoints, excepting ep0
2627 */
2628 if (hs_ep->index != 0)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002629 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index,
John Youn9da51972017-01-17 20:30:27 -08002630 hs_ep->dir_in, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002631 return 0;
Robert Baldygaafcf4162013-09-19 11:50:19 +02002632 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002633
2634 if (hs_req->req.actual < hs_req->req.length) {
2635 dev_dbg(hsotg->dev, "trying to write more for ep%d\n",
2636 hs_ep->index);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002637 return dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002638 }
2639
2640 return 0;
2641}
2642
2643/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002644 * dwc2_hsotg_complete_in - complete IN transfer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002645 * @hsotg: The device state.
2646 * @hs_ep: The endpoint that has just completed.
2647 *
2648 * An IN transfer has been completed, update the transfer's state and then
2649 * call the relevant completion routines.
2650 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002651static void dwc2_hsotg_complete_in(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08002652 struct dwc2_hsotg_ep *hs_ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002653{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002654 struct dwc2_hsotg_req *hs_req = hs_ep->req;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002655 u32 epsize = dwc2_readl(hsotg, DIEPTSIZ(hs_ep->index));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002656 int size_left, size_done;
2657
2658 if (!hs_req) {
2659 dev_dbg(hsotg->dev, "XferCompl but no req\n");
2660 return;
2661 }
2662
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02002663 /* Finish ZLP handling for IN EP0 transactions */
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002664 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_IN) {
2665 dev_dbg(hsotg->dev, "zlp packet sent\n");
Razmik Karapetyanc3b22fe2016-11-16 15:33:57 -08002666
2667 /*
2668 * While send zlp for DWC2_EP0_STATUS_IN EP direction was
2669 * changed to IN. Change back to complete OUT transfer request
2670 */
2671 hs_ep->dir_in = 0;
2672
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002673 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01002674 if (hsotg->test_mode) {
2675 int ret;
2676
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002677 ret = dwc2_hsotg_set_test_mode(hsotg, hsotg->test_mode);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01002678 if (ret < 0) {
2679 dev_dbg(hsotg->dev, "Invalid Test #%d\n",
John Youn9da51972017-01-17 20:30:27 -08002680 hsotg->test_mode);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002681 dwc2_hsotg_stall_ep0(hsotg);
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01002682 return;
2683 }
2684 }
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002685 dwc2_hsotg_enqueue_setup(hsotg);
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02002686 return;
2687 }
2688
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002689 /*
2690 * Calculate the size of the transfer by checking how much is left
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002691 * in the endpoint size register and then working it out from
2692 * the amount we loaded for the transfer.
2693 *
2694 * We do this even for DMA, as the transfer may have incremented
2695 * past the end of the buffer (DMA transfers are always 32bit
2696 * aligned).
2697 */
Vahram Aharonyanaa3e8bc2016-11-14 19:16:26 -08002698 if (using_desc_dma(hsotg)) {
2699 size_left = dwc2_gadget_get_xfersize_ddma(hs_ep);
2700 if (size_left < 0)
2701 dev_err(hsotg->dev, "error parsing DDMA results %d\n",
2702 size_left);
2703 } else {
2704 size_left = DXEPTSIZ_XFERSIZE_GET(epsize);
2705 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002706
2707 size_done = hs_ep->size_loaded - size_left;
2708 size_done += hs_ep->last_load;
2709
2710 if (hs_req->req.actual != size_done)
2711 dev_dbg(hsotg->dev, "%s: adjusting size done %d => %d\n",
2712 __func__, hs_req->req.actual, size_done);
2713
2714 hs_req->req.actual = size_done;
Lukasz Majewskid3ca0252012-05-04 14:17:04 +02002715 dev_dbg(hsotg->dev, "req->length:%d req->actual:%d req->zero:%d\n",
2716 hs_req->req.length, hs_req->req.actual, hs_req->req.zero);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002717
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002718 if (!size_left && hs_req->req.actual < hs_req->req.length) {
2719 dev_dbg(hsotg->dev, "%s trying more for req...\n", __func__);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002720 dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002721 return;
2722 }
2723
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01002724 /* Zlp for all endpoints, for ep0 only in DATA IN stage */
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01002725 if (hs_ep->send_zlp) {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002726 dwc2_hsotg_program_zlp(hsotg, hs_ep);
Mian Yousaf Kaukab8a20fa42015-01-09 13:39:03 +01002727 hs_ep->send_zlp = 0;
Mian Yousaf Kaukabf71b5e22015-01-09 13:38:59 +01002728 /* transfer will be completed on next complete interrupt */
2729 return;
2730 }
2731
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002732 if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_DATA_IN) {
2733 /* Move to STATUS OUT */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002734 dwc2_hsotg_ep0_zlp(hsotg, false);
Mian Yousaf Kaukabfe0b94a2015-01-09 13:38:58 +01002735 return;
2736 }
2737
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002738 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002739}
2740
2741/**
Vardan Mikayelyan32601582016-05-25 18:07:10 -07002742 * dwc2_gadget_read_ep_interrupts - reads interrupts for given ep
2743 * @hsotg: The device state.
2744 * @idx: Index of ep.
2745 * @dir_in: Endpoint direction 1-in 0-out.
2746 *
2747 * Reads for endpoint with given index and direction, by masking
2748 * epint_reg with coresponding mask.
2749 */
2750static u32 dwc2_gadget_read_ep_interrupts(struct dwc2_hsotg *hsotg,
2751 unsigned int idx, int dir_in)
2752{
2753 u32 epmsk_reg = dir_in ? DIEPMSK : DOEPMSK;
2754 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
2755 u32 ints;
2756 u32 mask;
2757 u32 diepempmsk;
2758
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002759 mask = dwc2_readl(hsotg, epmsk_reg);
2760 diepempmsk = dwc2_readl(hsotg, DIEPEMPMSK);
Vardan Mikayelyan32601582016-05-25 18:07:10 -07002761 mask |= ((diepempmsk >> idx) & 0x1) ? DIEPMSK_TXFIFOEMPTY : 0;
2762 mask |= DXEPINT_SETUP_RCVD;
2763
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002764 ints = dwc2_readl(hsotg, epint_reg);
Vardan Mikayelyan32601582016-05-25 18:07:10 -07002765 ints &= mask;
2766 return ints;
2767}
2768
2769/**
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002770 * dwc2_gadget_handle_ep_disabled - handle DXEPINT_EPDISBLD
2771 * @hs_ep: The endpoint on which interrupt is asserted.
2772 *
2773 * This interrupt indicates that the endpoint has been disabled per the
2774 * application's request.
2775 *
2776 * For IN endpoints flushes txfifo, in case of BULK clears DCTL_CGNPINNAK,
2777 * in case of ISOC completes current request.
2778 *
2779 * For ISOC-OUT endpoints completes expired requests. If there is remaining
2780 * request starts it.
2781 */
2782static void dwc2_gadget_handle_ep_disabled(struct dwc2_hsotg_ep *hs_ep)
2783{
2784 struct dwc2_hsotg *hsotg = hs_ep->parent;
2785 struct dwc2_hsotg_req *hs_req;
2786 unsigned char idx = hs_ep->index;
2787 int dir_in = hs_ep->dir_in;
2788 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002789 int dctl = dwc2_readl(hsotg, DCTL);
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002790
2791 dev_dbg(hsotg->dev, "%s: EPDisbld\n", __func__);
2792
2793 if (dir_in) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002794 int epctl = dwc2_readl(hsotg, epctl_reg);
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002795
2796 dwc2_hsotg_txfifo_flush(hsotg, hs_ep->fifo_index);
2797
2798 if (hs_ep->isochronous) {
2799 dwc2_hsotg_complete_in(hsotg, hs_ep);
2800 return;
2801 }
2802
2803 if ((epctl & DXEPCTL_STALL) && (epctl & DXEPCTL_EPTYPE_BULK)) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002804 int dctl = dwc2_readl(hsotg, DCTL);
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002805
2806 dctl |= DCTL_CGNPINNAK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002807 dwc2_writel(hsotg, dctl, DCTL);
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002808 }
2809 return;
2810 }
2811
2812 if (dctl & DCTL_GOUTNAKSTS) {
2813 dctl |= DCTL_CGOUTNAK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002814 dwc2_writel(hsotg, dctl, DCTL);
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002815 }
2816
2817 if (!hs_ep->isochronous)
2818 return;
2819
2820 if (list_empty(&hs_ep->queue)) {
2821 dev_dbg(hsotg->dev, "%s: complete_ep 0x%p, ep->queue empty!\n",
2822 __func__, hs_ep);
2823 return;
2824 }
2825
2826 do {
2827 hs_req = get_ep_head(hs_ep);
2828 if (hs_req)
2829 dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req,
2830 -ENODATA);
2831 dwc2_gadget_incr_frame_num(hs_ep);
Artur Petrosyanc7c24e72018-05-05 09:46:26 -04002832 /* Update current frame number value. */
2833 hsotg->frame_number = dwc2_hsotg_read_frameno(hsotg);
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07002834 } while (dwc2_gadget_target_frame_elapsed(hs_ep));
2835
2836 dwc2_gadget_start_next_request(hs_ep);
2837}
2838
2839/**
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002840 * dwc2_gadget_handle_out_token_ep_disabled - handle DXEPINT_OUTTKNEPDIS
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04002841 * @ep: The endpoint on which interrupt is asserted.
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002842 *
2843 * This is starting point for ISOC-OUT transfer, synchronization done with
2844 * first out token received from host while corresponding EP is disabled.
2845 *
2846 * Device does not know initial frame in which out token will come. For this
2847 * HW generates OUTTKNEPDIS - out token is received while EP is disabled. Upon
2848 * getting this interrupt SW starts calculation for next transfer frame.
2849 */
2850static void dwc2_gadget_handle_out_token_ep_disabled(struct dwc2_hsotg_ep *ep)
2851{
2852 struct dwc2_hsotg *hsotg = ep->parent;
2853 int dir_in = ep->dir_in;
2854 u32 doepmsk;
2855
2856 if (dir_in || !ep->isochronous)
2857 return;
2858
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002859 if (using_desc_dma(hsotg)) {
2860 if (ep->target_frame == TARGET_FRAME_INITIAL) {
2861 /* Start first ISO Out */
Minas Harutyunyan4d4f1e72018-07-27 14:48:45 +04002862 ep->target_frame = hsotg->frame_number;
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002863 dwc2_gadget_start_isoc_ddma(ep);
2864 }
2865 return;
2866 }
2867
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002868 if (ep->interval > 1 &&
2869 ep->target_frame == TARGET_FRAME_INITIAL) {
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002870 u32 ctrl;
2871
Minas Harutyunyan4d4f1e72018-07-27 14:48:45 +04002872 ep->target_frame = hsotg->frame_number;
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002873 dwc2_gadget_incr_frame_num(ep);
2874
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002875 ctrl = dwc2_readl(hsotg, DOEPCTL(ep->index));
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002876 if (ep->target_frame & 0x1)
2877 ctrl |= DXEPCTL_SETODDFR;
2878 else
2879 ctrl |= DXEPCTL_SETEVENFR;
2880
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002881 dwc2_writel(hsotg, ctrl, DOEPCTL(ep->index));
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002882 }
2883
2884 dwc2_gadget_start_next_request(ep);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002885 doepmsk = dwc2_readl(hsotg, DOEPMSK);
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002886 doepmsk &= ~DOEPMSK_OUTTKNEPDISMSK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002887 dwc2_writel(hsotg, doepmsk, DOEPMSK);
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002888}
2889
2890/**
John Youn38beaec2017-01-17 20:31:13 -08002891 * dwc2_gadget_handle_nak - handle NAK interrupt
2892 * @hs_ep: The endpoint on which interrupt is asserted.
2893 *
2894 * This is starting point for ISOC-IN transfer, synchronization done with
2895 * first IN token received from host while corresponding EP is disabled.
2896 *
2897 * Device does not know when first one token will arrive from host. On first
2898 * token arrival HW generates 2 interrupts: 'in token received while FIFO empty'
2899 * and 'NAK'. NAK interrupt for ISOC-IN means that token has arrived and ZLP was
2900 * sent in response to that as there was no data in FIFO. SW is basing on this
2901 * interrupt to obtain frame in which token has come and then based on the
2902 * interval calculates next frame for transfer.
2903 */
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002904static void dwc2_gadget_handle_nak(struct dwc2_hsotg_ep *hs_ep)
2905{
2906 struct dwc2_hsotg *hsotg = hs_ep->parent;
2907 int dir_in = hs_ep->dir_in;
2908
2909 if (!dir_in || !hs_ep->isochronous)
2910 return;
2911
2912 if (hs_ep->target_frame == TARGET_FRAME_INITIAL) {
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002913
2914 if (using_desc_dma(hsotg)) {
Minas Harutyunyan4d4f1e72018-07-27 14:48:45 +04002915 hs_ep->target_frame = hsotg->frame_number;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002916 dwc2_gadget_incr_frame_num(hs_ep);
Grigor Tovmasyan48dac4e2018-08-29 21:00:33 +04002917
2918 /* In service interval mode target_frame must
2919 * be set to last (u)frame of the service interval.
2920 */
2921 if (hsotg->params.service_interval) {
2922 /* Set target_frame to the first (u)frame of
2923 * the service interval
2924 */
2925 hs_ep->target_frame &= ~hs_ep->interval + 1;
2926
2927 /* Set target_frame to the last (u)frame of
2928 * the service interval
2929 */
2930 dwc2_gadget_incr_frame_num(hs_ep);
2931 dwc2_gadget_dec_frame_num_by_one(hs_ep);
2932 }
2933
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08002934 dwc2_gadget_start_isoc_ddma(hs_ep);
2935 return;
2936 }
2937
Minas Harutyunyan4d4f1e72018-07-27 14:48:45 +04002938 hs_ep->target_frame = hsotg->frame_number;
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002939 if (hs_ep->interval > 1) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002940 u32 ctrl = dwc2_readl(hsotg,
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002941 DIEPCTL(hs_ep->index));
2942 if (hs_ep->target_frame & 0x1)
2943 ctrl |= DXEPCTL_SETODDFR;
2944 else
2945 ctrl |= DXEPCTL_SETEVENFR;
2946
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002947 dwc2_writel(hsotg, ctrl, DIEPCTL(hs_ep->index));
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002948 }
2949
2950 dwc2_hsotg_complete_request(hsotg, hs_ep,
2951 get_ep_head(hs_ep), 0);
2952 }
2953
Minas Harutyunyan729cac62018-05-03 17:24:28 +04002954 if (!using_desc_dma(hsotg))
2955 dwc2_gadget_incr_frame_num(hs_ep);
Vardan Mikayelyan53219222016-05-25 18:07:14 -07002956}
2957
2958/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002959 * dwc2_hsotg_epint - handle an in/out endpoint interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002960 * @hsotg: The driver state
2961 * @idx: The index for the endpoint (0..15)
2962 * @dir_in: Set if this is an IN endpoint
2963 *
2964 * Process and clear any interrupt pending for an individual endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02002965 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002966static void dwc2_hsotg_epint(struct dwc2_hsotg *hsotg, unsigned int idx,
John Youn9da51972017-01-17 20:30:27 -08002967 int dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002968{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05002969 struct dwc2_hsotg_ep *hs_ep = index_to_ep(hsotg, idx, dir_in);
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02002970 u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx);
2971 u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx);
2972 u32 epsiz_reg = dir_in ? DIEPTSIZ(idx) : DOEPTSIZ(idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002973 u32 ints;
Robert Baldyga1479e842013-10-09 08:41:57 +02002974 u32 ctrl;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002975
Vardan Mikayelyan32601582016-05-25 18:07:10 -07002976 ints = dwc2_gadget_read_ep_interrupts(hsotg, idx, dir_in);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002977 ctrl = dwc2_readl(hsotg, epctl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002978
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002979 /* Clear endpoint interrupts */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04002980 dwc2_writel(hsotg, ints, epint_reg);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09002981
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002982 if (!hs_ep) {
2983 dev_err(hsotg->dev, "%s:Interrupt for unconfigured ep%d(%s)\n",
John Youn9da51972017-01-17 20:30:27 -08002984 __func__, idx, dir_in ? "in" : "out");
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01002985 return;
2986 }
2987
Ben Dooks5b7d70c2009-06-02 14:58:06 +01002988 dev_dbg(hsotg->dev, "%s: ep%d(%s) DxEPINT=0x%08x\n",
2989 __func__, idx, dir_in ? "in" : "out", ints);
2990
Mian Yousaf Kaukabb787d752015-01-09 13:38:43 +01002991 /* Don't process XferCompl interrupt if it is a setup packet */
2992 if (idx == 0 && (ints & (DXEPINT_SETUP | DXEPINT_SETUP_RCVD)))
2993 ints &= ~DXEPINT_XFERCOMPL;
2994
Vahram Aharonyanf0afdb42016-11-14 19:16:48 -08002995 /*
2996 * Don't process XferCompl interrupt in DDMA if EP0 is still in SETUP
2997 * stage and xfercomplete was generated without SETUP phase done
2998 * interrupt. SW should parse received setup packet only after host's
2999 * exit from setup phase of control transfer.
3000 */
3001 if (using_desc_dma(hsotg) && idx == 0 && !hs_ep->dir_in &&
3002 hsotg->ep0_state == DWC2_EP0_SETUP && !(ints & DXEPINT_SETUP))
3003 ints &= ~DXEPINT_XFERCOMPL;
3004
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003005 if (ints & DXEPINT_XFERCOMPL) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003006 dev_dbg(hsotg->dev,
Dinh Nguyen47a16852014-04-14 14:13:34 -07003007 "%s: XferCompl: DxEPCTL=0x%08x, DXEPTSIZ=%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003008 __func__, dwc2_readl(hsotg, epctl_reg),
3009 dwc2_readl(hsotg, epsiz_reg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003010
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08003011 /* In DDMA handle isochronous requests separately */
3012 if (using_desc_dma(hsotg) && hs_ep->isochronous) {
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003013 /* XferCompl set along with BNA */
3014 if (!(ints & DXEPINT_BNAINTR))
3015 dwc2_gadget_complete_isoc_request_ddma(hs_ep);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08003016 } else if (dir_in) {
3017 /*
3018 * We get OutDone from the FIFO, so we only
3019 * need to look at completing IN requests here
3020 * if operating slave mode
3021 */
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003022 if (hs_ep->isochronous && hs_ep->interval > 1)
3023 dwc2_gadget_incr_frame_num(hs_ep);
3024
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003025 dwc2_hsotg_complete_in(hsotg, hs_ep);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003026 if (ints & DXEPINT_NAKINTRPT)
3027 ints &= ~DXEPINT_NAKINTRPT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003028
Ben Dooksc9a64ea2010-07-19 09:40:46 +01003029 if (idx == 0 && !hs_ep->req)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003030 dwc2_hsotg_enqueue_setup(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003031 } else if (using_dma(hsotg)) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003032 /*
3033 * We're using DMA, we need to fire an OutDone here
3034 * as we ignore the RXFIFO.
3035 */
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003036 if (hs_ep->isochronous && hs_ep->interval > 1)
3037 dwc2_gadget_incr_frame_num(hs_ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003038
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003039 dwc2_hsotg_handle_outdone(hsotg, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003040 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003041 }
3042
Vardan Mikayelyanbd9971f2016-05-25 18:07:19 -07003043 if (ints & DXEPINT_EPDISBLD)
3044 dwc2_gadget_handle_ep_disabled(hs_ep);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09003045
Vardan Mikayelyan53219222016-05-25 18:07:14 -07003046 if (ints & DXEPINT_OUTTKNEPDIS)
3047 dwc2_gadget_handle_out_token_ep_disabled(hs_ep);
3048
3049 if (ints & DXEPINT_NAKINTRPT)
3050 dwc2_gadget_handle_nak(hs_ep);
3051
Dinh Nguyen47a16852014-04-14 14:13:34 -07003052 if (ints & DXEPINT_AHBERR)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003053 dev_dbg(hsotg->dev, "%s: AHBErr\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003054
Dinh Nguyen47a16852014-04-14 14:13:34 -07003055 if (ints & DXEPINT_SETUP) { /* Setup or Timeout */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003056 dev_dbg(hsotg->dev, "%s: Setup/Timeout\n", __func__);
3057
3058 if (using_dma(hsotg) && idx == 0) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003059 /*
3060 * this is the notification we've received a
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003061 * setup packet. In non-DMA mode we'd get this
3062 * from the RXFIFO, instead we need to process
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003063 * the setup here.
3064 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003065
3066 if (dir_in)
3067 WARN_ON_ONCE(1);
3068 else
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003069 dwc2_hsotg_handle_outdone(hsotg, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003070 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003071 }
3072
Vahram Aharonyanef750c72016-11-14 19:16:31 -08003073 if (ints & DXEPINT_STSPHSERCVD) {
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08003074 dev_dbg(hsotg->dev, "%s: StsPhseRcvd\n", __func__);
3075
Minas Harutyunyan9e95a662018-01-16 16:03:58 +04003076 /* Safety check EP0 state when STSPHSERCVD asserted */
3077 if (hsotg->ep0_state == DWC2_EP0_DATA_OUT) {
3078 /* Move to STATUS IN for DDMA */
Minas Harutyunyanb4c53b42019-03-12 11:45:12 +04003079 if (using_desc_dma(hsotg)) {
3080 if (!hsotg->delayed_status)
3081 dwc2_hsotg_ep0_zlp(hsotg, true);
3082 else
3083 /* In case of 3 stage Control Write with delayed
3084 * status, when Status IN transfer started
3085 * before STSPHSERCVD asserted, NAKSTS bit not
3086 * cleared by CNAK in dwc2_hsotg_start_req()
3087 * function. Clear now NAKSTS to allow complete
3088 * transfer.
3089 */
3090 dwc2_set_bit(hsotg, DIEPCTL(0),
3091 DXEPCTL_CNAK);
3092 }
Minas Harutyunyan9e95a662018-01-16 16:03:58 +04003093 }
3094
Vahram Aharonyanef750c72016-11-14 19:16:31 -08003095 }
3096
Dinh Nguyen47a16852014-04-14 14:13:34 -07003097 if (ints & DXEPINT_BACK2BACKSETUP)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003098 dev_dbg(hsotg->dev, "%s: B2BSetup/INEPNakEff\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003099
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08003100 if (ints & DXEPINT_BNAINTR) {
3101 dev_dbg(hsotg->dev, "%s: BNA interrupt\n", __func__);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08003102 if (hs_ep->isochronous)
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003103 dwc2_gadget_handle_isoc_bna(hs_ep);
Vahram Aharonyan540ccba2016-11-14 19:16:41 -08003104 }
3105
Robert Baldyga1479e842013-10-09 08:41:57 +02003106 if (dir_in && !hs_ep->isochronous) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003107 /* not sure if this is important, but we'll clear it anyway */
Vardan Mikayelyan26ddef52016-05-25 18:07:00 -07003108 if (ints & DXEPINT_INTKNTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003109 dev_dbg(hsotg->dev, "%s: ep%d: INTknTXFEmpMsk\n",
3110 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003111 }
3112
3113 /* this probably means something bad is happening */
Vardan Mikayelyan26ddef52016-05-25 18:07:00 -07003114 if (ints & DXEPINT_INTKNEPMIS) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003115 dev_warn(hsotg->dev, "%s: ep%d: INTknEP\n",
3116 __func__, idx);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003117 }
Ben Dooks10aebc72010-07-19 09:40:44 +01003118
3119 /* FIFO has space or is empty (see GAHBCFG) */
3120 if (hsotg->dedicated_fifos &&
Vardan Mikayelyan26ddef52016-05-25 18:07:00 -07003121 ints & DXEPINT_TXFEMP) {
Ben Dooks10aebc72010-07-19 09:40:44 +01003122 dev_dbg(hsotg->dev, "%s: ep%d: TxFIFOEmpty\n",
3123 __func__, idx);
Anton Tikhomirov70fa0302012-03-06 14:08:29 +09003124 if (!using_dma(hsotg))
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003125 dwc2_hsotg_trytx(hsotg, hs_ep);
Ben Dooks10aebc72010-07-19 09:40:44 +01003126 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003127 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003128}
3129
3130/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003131 * dwc2_hsotg_irq_enumdone - Handle EnumDone interrupt (enumeration done)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003132 * @hsotg: The device state.
3133 *
3134 * Handle updating the device settings after the enumeration phase has
3135 * been completed.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003136 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003137static void dwc2_hsotg_irq_enumdone(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003138{
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003139 u32 dsts = dwc2_readl(hsotg, DSTS);
Jingoo Han9b2667f2014-08-20 12:04:09 +09003140 int ep0_mps = 0, ep_mps = 8;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003141
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003142 /*
3143 * This should signal the finish of the enumeration phase
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003144 * of the USB handshaking, so we should now know what rate
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003145 * we connected at.
3146 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003147
3148 dev_dbg(hsotg->dev, "EnumDone (DSTS=0x%08x)\n", dsts);
3149
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003150 /*
3151 * note, since we're limited by the size of transfer on EP0, and
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003152 * it seems IN transfers must be a even number of packets we do
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003153 * not advertise a 64byte MPS on EP0.
3154 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003155
3156 /* catch both EnumSpd_FS and EnumSpd_FS48 */
Marek Vasut6d76c922015-12-18 03:26:17 +01003157 switch ((dsts & DSTS_ENUMSPD_MASK) >> DSTS_ENUMSPD_SHIFT) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07003158 case DSTS_ENUMSPD_FS:
3159 case DSTS_ENUMSPD_FS48:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003160 hsotg->gadget.speed = USB_SPEED_FULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003161 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01003162 ep_mps = 1023;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003163 break;
3164
Dinh Nguyen47a16852014-04-14 14:13:34 -07003165 case DSTS_ENUMSPD_HS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003166 hsotg->gadget.speed = USB_SPEED_HIGH;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003167 ep0_mps = EP0_MPS_LIMIT;
Robert Baldyga295538f2013-12-06 13:03:44 +01003168 ep_mps = 1024;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003169 break;
3170
Dinh Nguyen47a16852014-04-14 14:13:34 -07003171 case DSTS_ENUMSPD_LS:
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003172 hsotg->gadget.speed = USB_SPEED_LOW;
Vardan Mikayelyan552d9402016-11-14 19:17:00 -08003173 ep0_mps = 8;
3174 ep_mps = 8;
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003175 /*
3176 * note, we don't actually support LS in this driver at the
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003177 * moment, and the documentation seems to imply that it isn't
3178 * supported by the PHYs on some of the devices.
3179 */
3180 break;
3181 }
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02003182 dev_info(hsotg->dev, "new device is %s\n",
3183 usb_speed_string(hsotg->gadget.speed));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003184
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003185 /*
3186 * we should now know the maximum packet size for an
3187 * endpoint, so set the endpoints to a default value.
3188 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003189
3190 if (ep0_mps) {
3191 int i;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003192 /* Initialize ep0 for both in and out directions */
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003193 dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 0, 1);
3194 dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 0, 0);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003195 for (i = 1; i < hsotg->num_of_eps; i++) {
3196 if (hsotg->eps_in[i])
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003197 dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps,
3198 0, 1);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003199 if (hsotg->eps_out[i])
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003200 dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps,
3201 0, 0);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003202 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003203 }
3204
3205 /* ensure after enumeration our EP0 is active */
3206
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003207 dwc2_hsotg_enqueue_setup(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003208
3209 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003210 dwc2_readl(hsotg, DIEPCTL0),
3211 dwc2_readl(hsotg, DOEPCTL0));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003212}
3213
3214/**
3215 * kill_all_requests - remove all requests from the endpoint's queue
3216 * @hsotg: The device state.
3217 * @ep: The endpoint the requests may be on.
3218 * @result: The result code to use.
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003219 *
3220 * Go through the requests on the given endpoint and mark them
3221 * completed with the given result code.
3222 */
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003223static void kill_all_requests(struct dwc2_hsotg *hsotg,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003224 struct dwc2_hsotg_ep *ep,
Robert Baldyga6b448af42014-12-16 11:51:44 +01003225 int result)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003226{
John Youn9da51972017-01-17 20:30:27 -08003227 unsigned int size;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003228
Robert Baldyga6b448af42014-12-16 11:51:44 +01003229 ep->req = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003230
John Keeping37bea422019-08-05 17:01:21 +01003231 while (!list_empty(&ep->queue)) {
3232 struct dwc2_hsotg_req *req = get_ep_head(ep);
3233
3234 dwc2_hsotg_complete_request(hsotg, ep, req, result);
3235 }
Robert Baldyga6b448af42014-12-16 11:51:44 +01003236
Robert Baldygab203d0a2014-09-09 10:44:56 +02003237 if (!hsotg->dedicated_fifos)
3238 return;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003239 size = (dwc2_readl(hsotg, DTXFSTS(ep->fifo_index)) & 0xffff) * 4;
Robert Baldygab203d0a2014-09-09 10:44:56 +02003240 if (size < ep->fifo_size)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003241 dwc2_hsotg_txfifo_flush(hsotg, ep->fifo_index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003242}
3243
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003244/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003245 * dwc2_hsotg_disconnect - disconnect service
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003246 * @hsotg: The device state.
3247 *
Lukasz Majewski5e891342012-05-04 14:17:07 +02003248 * The device has been disconnected. Remove all current
3249 * transactions and signal the gadget driver that this
3250 * has happened.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003251 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003252void dwc2_hsotg_disconnect(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003253{
John Youn9da51972017-01-17 20:30:27 -08003254 unsigned int ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003255
Marek Szyprowski4ace06e2014-11-21 15:14:47 +01003256 if (!hsotg->connected)
3257 return;
3258
3259 hsotg->connected = 0;
Gregory Herrero9e14d0a2015-01-30 09:09:28 +01003260 hsotg->test_mode = 0;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003261
Minas Harutyunyandccf1ba2018-09-19 18:13:52 +04003262 /* all endpoints should be shutdown */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003263 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
3264 if (hsotg->eps_in[ep])
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04003265 kill_all_requests(hsotg, hsotg->eps_in[ep],
3266 -ESHUTDOWN);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003267 if (hsotg->eps_out[ep])
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04003268 kill_all_requests(hsotg, hsotg->eps_out[ep],
3269 -ESHUTDOWN);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003270 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003271
3272 call_gadget(hsotg, disconnect);
Gregory Herrero065d3932015-09-22 15:16:54 +02003273 hsotg->lx_state = DWC2_L3;
John Stultzce2b21a2017-10-23 14:32:50 -07003274
3275 usb_gadget_set_state(&hsotg->gadget, USB_STATE_NOTATTACHED);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003276}
3277
3278/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003279 * dwc2_hsotg_irq_fifoempty - TX FIFO empty interrupt handler
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003280 * @hsotg: The device state:
3281 * @periodic: True if this is a periodic FIFO interrupt
3282 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003283static void dwc2_hsotg_irq_fifoempty(struct dwc2_hsotg *hsotg, bool periodic)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003284{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003285 struct dwc2_hsotg_ep *ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003286 int epno, ret;
3287
3288 /* look through for any more data to transmit */
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02003289 for (epno = 0; epno < hsotg->num_of_eps; epno++) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01003290 ep = index_to_ep(hsotg, epno, 1);
3291
3292 if (!ep)
3293 continue;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003294
3295 if (!ep->dir_in)
3296 continue;
3297
3298 if ((periodic && !ep->periodic) ||
3299 (!periodic && ep->periodic))
3300 continue;
3301
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003302 ret = dwc2_hsotg_trytx(hsotg, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003303 if (ret < 0)
3304 break;
3305 }
3306}
3307
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003308/* IRQ flags which will trigger a retry around the IRQ loop */
Dinh Nguyen47a16852014-04-14 14:13:34 -07003309#define IRQ_RETRY_MASK (GINTSTS_NPTXFEMP | \
3310 GINTSTS_PTXFEMP | \
3311 GINTSTS_RXFLVL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003312
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04003313static int dwc2_hsotg_ep_disable(struct usb_ep *ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003314/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003315 * dwc2_hsotg_core_init - issue softreset to the core
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003316 * @hsotg: The device state
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04003317 * @is_usb_reset: Usb resetting flag
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003318 *
3319 * Issue a soft reset to the core, and await the core finishing it.
3320 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003321void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08003322 bool is_usb_reset)
Lukasz Majewski308d7342012-05-04 14:17:05 +02003323{
Gregory Herrero1ee69032015-09-29 12:08:27 +02003324 u32 intmsk;
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003325 u32 val;
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01003326 u32 usbcfg;
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003327 u32 dcfg = 0;
Minas Harutyunyandccf1ba2018-09-19 18:13:52 +04003328 int ep;
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003329
Mian Yousaf Kaukab5390d432015-09-29 12:08:25 +02003330 /* Kill any ep0 requests as controller will be reinitialized */
3331 kill_all_requests(hsotg, hsotg->eps_out[0], -ECONNRESET);
3332
Minas Harutyunyandccf1ba2018-09-19 18:13:52 +04003333 if (!is_usb_reset) {
John Stultz6e6360b2017-01-23 14:59:14 -08003334 if (dwc2_core_reset(hsotg, true))
Gregory Herrero86de4892015-09-29 12:08:21 +02003335 return;
Minas Harutyunyandccf1ba2018-09-19 18:13:52 +04003336 } else {
3337 /* all endpoints should be shutdown */
3338 for (ep = 1; ep < hsotg->num_of_eps; ep++) {
3339 if (hsotg->eps_in[ep])
3340 dwc2_hsotg_ep_disable(&hsotg->eps_in[ep]->ep);
3341 if (hsotg->eps_out[ep])
3342 dwc2_hsotg_ep_disable(&hsotg->eps_out[ep]->ep);
3343 }
3344 }
Lukasz Majewski308d7342012-05-04 14:17:05 +02003345
3346 /*
3347 * we must now enable ep0 ready for host detection and then
3348 * set configuration.
3349 */
3350
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01003351 /* keep other bits untouched (so e.g. forced modes are not lost) */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003352 usbcfg = dwc2_readl(hsotg, GUSBCFG);
Jules Maselbas1e868542019-04-05 15:35:33 +02003353 usbcfg &= ~GUSBCFG_TOUTCAL_MASK;
Jules Maselbas707d80f2019-04-05 15:35:31 +02003354 usbcfg |= GUSBCFG_TOUTCAL(7);
Przemek Rudyecd9a7a2016-03-16 23:10:26 +01003355
Jules Maselbas1e868542019-04-05 15:35:33 +02003356 /* remove the HNP/SRP and set the PHY */
3357 usbcfg &= ~(GUSBCFG_SRPCAP | GUSBCFG_HNPCAP);
3358 dwc2_writel(hsotg, usbcfg, GUSBCFG);
Jules Maselbas707d80f2019-04-05 15:35:31 +02003359
Jules Maselbas1e868542019-04-05 15:35:33 +02003360 dwc2_phy_init(hsotg, true);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003361
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003362 dwc2_hsotg_init_fifo(hsotg);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003363
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003364 if (!is_usb_reset)
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003365 dwc2_set_bit(hsotg, DCTL, DCTL_SFTDISCON);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003366
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003367 dcfg |= DCFG_EPMISCNT(1);
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08003368
3369 switch (hsotg->params.speed) {
3370 case DWC2_SPEED_PARAM_LOW:
3371 dcfg |= DCFG_DEVSPD_LS;
3372 break;
3373 case DWC2_SPEED_PARAM_FULL:
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003374 if (hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS)
3375 dcfg |= DCFG_DEVSPD_FS48;
3376 else
3377 dcfg |= DCFG_DEVSPD_FS;
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08003378 break;
3379 default:
Vahram Aharonyan79c3b5b2016-11-14 19:16:55 -08003380 dcfg |= DCFG_DEVSPD_HS;
3381 }
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08003382
Grigor Tovmasyanb43ebc92018-05-05 12:17:58 +04003383 if (hsotg->params.ipg_isoc_en)
3384 dcfg |= DCFG_IPG_ISOC_SUPPORDED;
3385
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003386 dwc2_writel(hsotg, dcfg, DCFG);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003387
3388 /* Clear any pending OTG interrupts */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003389 dwc2_writel(hsotg, 0xffffffff, GOTGINT);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003390
3391 /* Clear any pending interrupts */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003392 dwc2_writel(hsotg, 0xffffffff, GINTSTS);
Gregory Herrero1ee69032015-09-29 12:08:27 +02003393 intmsk = GINTSTS_ERLYSUSP | GINTSTS_SESSREQINT |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003394 GINTSTS_GOUTNAKEFF | GINTSTS_GINNAKEFF |
Gregory Herrero1ee69032015-09-29 12:08:27 +02003395 GINTSTS_USBRST | GINTSTS_RESETDET |
3396 GINTSTS_ENUMDONE | GINTSTS_OTGINT |
Sevak Arakelyan376f0402018-01-24 17:43:06 +04003397 GINTSTS_USBSUSP | GINTSTS_WKUPINT |
3398 GINTSTS_LPMTRANRCVD;
Vahram Aharonyanf4736702016-11-14 19:16:38 -08003399
3400 if (!using_desc_dma(hsotg))
3401 intmsk |= GINTSTS_INCOMPL_SOIN | GINTSTS_INCOMPL_SOOUT;
Gregory Herrero1ee69032015-09-29 12:08:27 +02003402
John Youn95832c02017-01-23 14:57:26 -08003403 if (!hsotg->params.external_id_pin_ctl)
Gregory Herrero1ee69032015-09-29 12:08:27 +02003404 intmsk |= GINTSTS_CONIDSTSCHNG;
3405
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003406 dwc2_writel(hsotg, intmsk, GINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003407
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003408 if (using_dma(hsotg)) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003409 dwc2_writel(hsotg, GAHBCFG_GLBL_INTR_EN | GAHBCFG_DMA_EN |
Razmik Karapetyand1ac8c82018-01-19 14:39:57 +04003410 hsotg->params.ahbcfg,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003411 GAHBCFG);
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003412
3413 /* Set DDMA mode support in the core if needed */
3414 if (using_desc_dma(hsotg))
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003415 dwc2_set_bit(hsotg, DCFG, DCFG_DESCDMA_EN);
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003416
3417 } else {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003418 dwc2_writel(hsotg, ((hsotg->dedicated_fifos) ?
Antti Seppälä95c8bc32015-08-20 21:41:07 +03003419 (GAHBCFG_NP_TXF_EMP_LVL |
3420 GAHBCFG_P_TXF_EMP_LVL) : 0) |
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003421 GAHBCFG_GLBL_INTR_EN, GAHBCFG);
Vahram Aharonyana5c18f12016-11-14 19:16:34 -08003422 }
Lukasz Majewski308d7342012-05-04 14:17:05 +02003423
3424 /*
Robert Baldyga8acc8292013-09-19 11:50:23 +02003425 * If INTknTXFEmpMsk is enabled, it's important to disable ep interrupts
3426 * when we have no data to transfer. Otherwise we get being flooded by
3427 * interrupts.
Lukasz Majewski308d7342012-05-04 14:17:05 +02003428 */
3429
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003430 dwc2_writel(hsotg, ((hsotg->dedicated_fifos && !using_dma(hsotg)) ?
Mian Yousaf Kaukab6ff2e832015-01-09 13:38:42 +01003431 DIEPMSK_TXFIFOEMPTY | DIEPMSK_INTKNTXFEMPMSK : 0) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003432 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK |
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003433 DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003434 DIEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003435
3436 /*
3437 * don't need XferCompl, we get that from RXFIFO in slave mode. In
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08003438 * DMA mode we may need this and StsPhseRcvd.
Lukasz Majewski308d7342012-05-04 14:17:05 +02003439 */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003440 dwc2_writel(hsotg, (using_dma(hsotg) ? (DIEPMSK_XFERCOMPLMSK |
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08003441 DOEPMSK_STSPHSERCVDMSK) : 0) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003442 DOEPMSK_EPDISBLDMSK | DOEPMSK_AHBERRMSK |
Vahram Aharonyan9d9a6b02016-11-14 19:16:29 -08003443 DOEPMSK_SETUPMSK,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003444 DOEPMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003445
Vahram Aharonyanec01f0b2016-11-14 19:16:43 -08003446 /* Enable BNA interrupt for DDMA */
Minas Harutyunyan37981e02018-05-03 17:25:37 +04003447 if (using_desc_dma(hsotg)) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003448 dwc2_set_bit(hsotg, DOEPMSK, DOEPMSK_BNAMSK);
3449 dwc2_set_bit(hsotg, DIEPMSK, DIEPMSK_BNAININTRMSK);
Minas Harutyunyan37981e02018-05-03 17:25:37 +04003450 }
Vahram Aharonyanec01f0b2016-11-14 19:16:43 -08003451
Grigor Tovmasyanca531bc2018-08-29 20:59:34 +04003452 /* Enable Service Interval mode if supported */
3453 if (using_desc_dma(hsotg) && hsotg->params.service_interval)
3454 dwc2_set_bit(hsotg, DCTL, DCTL_SERVICE_INTERVAL_SUPPORTED);
3455
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003456 dwc2_writel(hsotg, 0, DAINTMSK);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003457
3458 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003459 dwc2_readl(hsotg, DIEPCTL0),
3460 dwc2_readl(hsotg, DOEPCTL0));
Lukasz Majewski308d7342012-05-04 14:17:05 +02003461
3462 /* enable in and out endpoint interrupts */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003463 dwc2_hsotg_en_gsint(hsotg, GINTSTS_OEPINT | GINTSTS_IEPINT);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003464
3465 /*
3466 * Enable the RXFIFO when in slave mode, as this is how we collect
3467 * the data. In DMA mode, we get events from the FIFO but also
3468 * things we cannot process, so do not use it.
3469 */
3470 if (!using_dma(hsotg))
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003471 dwc2_hsotg_en_gsint(hsotg, GINTSTS_RXFLVL);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003472
3473 /* Enable interrupts for EP0 in and out */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003474 dwc2_hsotg_ctrl_epint(hsotg, 0, 0, 1);
3475 dwc2_hsotg_ctrl_epint(hsotg, 0, 1, 1);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003476
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003477 if (!is_usb_reset) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003478 dwc2_set_bit(hsotg, DCTL, DCTL_PWRONPRGDONE);
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003479 udelay(10); /* see openiboot */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003480 dwc2_clear_bit(hsotg, DCTL, DCTL_PWRONPRGDONE);
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003481 }
Lukasz Majewski308d7342012-05-04 14:17:05 +02003482
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003483 dev_dbg(hsotg->dev, "DCTL=0x%08x\n", dwc2_readl(hsotg, DCTL));
Lukasz Majewski308d7342012-05-04 14:17:05 +02003484
3485 /*
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003486 * DxEPCTL_USBActEp says RO in manual, but seems to be set by
Lukasz Majewski308d7342012-05-04 14:17:05 +02003487 * writing to the EPCTL register..
3488 */
3489
3490 /* set to read 1 8byte packet */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003491 dwc2_writel(hsotg, DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) |
3492 DXEPTSIZ_XFERSIZE(8), DOEPTSIZ0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003493
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003494 dwc2_writel(hsotg, dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
Dinh Nguyen47a16852014-04-14 14:13:34 -07003495 DXEPCTL_CNAK | DXEPCTL_EPENA |
3496 DXEPCTL_USBACTEP,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003497 DOEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003498
3499 /* enable, but don't activate EP0in */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003500 dwc2_writel(hsotg, dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) |
3501 DXEPCTL_USBACTEP, DIEPCTL0);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003502
Lukasz Majewski308d7342012-05-04 14:17:05 +02003503 /* clear global NAKs */
Gregory Herrero643cc4d2015-01-30 09:09:32 +01003504 val = DCTL_CGOUTNAK | DCTL_CGNPINNAK;
3505 if (!is_usb_reset)
3506 val |= DCTL_SFTDISCON;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003507 dwc2_set_bit(hsotg, DCTL, val);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003508
Sevak Arakelyan21b03402018-01-24 17:43:32 +04003509 /* configure the core to support LPM */
3510 dwc2_gadget_init_lpm(hsotg);
3511
Grigor Tovmasyan15d9dbf2018-08-29 21:01:59 +04003512 /* program GREFCLK register if needed */
3513 if (using_desc_dma(hsotg) && hsotg->params.service_interval)
3514 dwc2_gadget_program_ref_clk(hsotg);
3515
Lukasz Majewski308d7342012-05-04 14:17:05 +02003516 /* must be at-least 3ms to allow bus to see disconnect */
3517 mdelay(3);
3518
Gregory Herrero065d3932015-09-22 15:16:54 +02003519 hsotg->lx_state = DWC2_L0;
Vardan Mikayelyan755d7392018-01-16 16:04:24 +04003520
3521 dwc2_hsotg_enqueue_setup(hsotg);
3522
3523 dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003524 dwc2_readl(hsotg, DIEPCTL0),
3525 dwc2_readl(hsotg, DOEPCTL0));
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003526}
Marek Szyprowskiac3c81f2014-10-20 12:45:35 +02003527
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003528static void dwc2_hsotg_core_disconnect(struct dwc2_hsotg *hsotg)
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003529{
3530 /* set the soft-disconnect bit */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003531 dwc2_set_bit(hsotg, DCTL, DCTL_SFTDISCON);
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003532}
3533
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003534void dwc2_hsotg_core_connect(struct dwc2_hsotg *hsotg)
Marek Szyprowskiad38dc52014-10-20 12:45:36 +02003535{
Lukasz Majewski308d7342012-05-04 14:17:05 +02003536 /* remove the soft-disconnect and let's go */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003537 dwc2_clear_bit(hsotg, DCTL, DCTL_SFTDISCON);
Lukasz Majewski308d7342012-05-04 14:17:05 +02003538}
3539
3540/**
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003541 * dwc2_gadget_handle_incomplete_isoc_in - handle incomplete ISO IN Interrupt.
3542 * @hsotg: The device state:
3543 *
3544 * This interrupt indicates one of the following conditions occurred while
3545 * transmitting an ISOC transaction.
3546 * - Corrupted IN Token for ISOC EP.
3547 * - Packet not complete in FIFO.
3548 *
3549 * The following actions will be taken:
3550 * - Determine the EP
3551 * - Disable EP; when 'Endpoint Disabled' interrupt is received Flush FIFO
3552 */
3553static void dwc2_gadget_handle_incomplete_isoc_in(struct dwc2_hsotg *hsotg)
3554{
3555 struct dwc2_hsotg_ep *hs_ep;
3556 u32 epctrl;
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003557 u32 daintmsk;
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003558 u32 idx;
3559
3560 dev_dbg(hsotg->dev, "Incomplete isoc in interrupt received:\n");
3561
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003562 daintmsk = dwc2_readl(hsotg, DAINTMSK);
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003563
Artur Petrosyand5d5f072018-05-05 04:30:16 -04003564 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003565 hs_ep = hsotg->eps_in[idx];
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003566 /* Proceed only unmasked ISOC EPs */
John Keeping89066b32018-07-15 15:50:43 +01003567 if ((BIT(idx) & ~daintmsk) || !hs_ep->isochronous)
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003568 continue;
3569
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003570 epctrl = dwc2_readl(hsotg, DIEPCTL(idx));
Razmik Karapetyan1b4977c2018-01-19 14:40:49 +04003571 if ((epctrl & DXEPCTL_EPENA) &&
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003572 dwc2_gadget_target_frame_elapsed(hs_ep)) {
3573 epctrl |= DXEPCTL_SNAK;
3574 epctrl |= DXEPCTL_EPDIS;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003575 dwc2_writel(hsotg, epctrl, DIEPCTL(idx));
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003576 }
3577 }
3578
3579 /* Clear interrupt */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003580 dwc2_writel(hsotg, GINTSTS_INCOMPL_SOIN, GINTSTS);
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003581}
3582
3583/**
3584 * dwc2_gadget_handle_incomplete_isoc_out - handle incomplete ISO OUT Interrupt
3585 * @hsotg: The device state:
3586 *
3587 * This interrupt indicates one of the following conditions occurred while
3588 * transmitting an ISOC transaction.
3589 * - Corrupted OUT Token for ISOC EP.
3590 * - Packet not complete in FIFO.
3591 *
3592 * The following actions will be taken:
3593 * - Determine the EP
3594 * - Set DCTL_SGOUTNAK and unmask GOUTNAKEFF if target frame elapsed.
3595 */
3596static void dwc2_gadget_handle_incomplete_isoc_out(struct dwc2_hsotg *hsotg)
3597{
3598 u32 gintsts;
3599 u32 gintmsk;
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003600 u32 daintmsk;
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003601 u32 epctrl;
3602 struct dwc2_hsotg_ep *hs_ep;
3603 int idx;
3604
3605 dev_dbg(hsotg->dev, "%s: GINTSTS_INCOMPL_SOOUT\n", __func__);
3606
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003607 daintmsk = dwc2_readl(hsotg, DAINTMSK);
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003608 daintmsk >>= DAINT_OUTEP_SHIFT;
3609
Artur Petrosyand5d5f072018-05-05 04:30:16 -04003610 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003611 hs_ep = hsotg->eps_out[idx];
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003612 /* Proceed only unmasked ISOC EPs */
John Keeping89066b32018-07-15 15:50:43 +01003613 if ((BIT(idx) & ~daintmsk) || !hs_ep->isochronous)
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003614 continue;
3615
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003616 epctrl = dwc2_readl(hsotg, DOEPCTL(idx));
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003617 if ((epctrl & DXEPCTL_EPENA) &&
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003618 dwc2_gadget_target_frame_elapsed(hs_ep)) {
3619 /* Unmask GOUTNAKEFF interrupt */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003620 gintmsk = dwc2_readl(hsotg, GINTMSK);
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003621 gintmsk |= GINTSTS_GOUTNAKEFF;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003622 dwc2_writel(hsotg, gintmsk, GINTMSK);
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003623
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003624 gintsts = dwc2_readl(hsotg, GINTSTS);
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003625 if (!(gintsts & GINTSTS_GOUTNAKEFF)) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003626 dwc2_set_bit(hsotg, DCTL, DCTL_SGOUTNAK);
Razmik Karapetyan689efb22018-01-19 14:41:16 +04003627 break;
3628 }
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003629 }
3630 }
3631
3632 /* Clear interrupt */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003633 dwc2_writel(hsotg, GINTSTS_INCOMPL_SOOUT, GINTSTS);
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003634}
3635
3636/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003637 * dwc2_hsotg_irq - handle device interrupt
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003638 * @irq: The IRQ number triggered
3639 * @pw: The pw value when registered the handler.
3640 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003641static irqreturn_t dwc2_hsotg_irq(int irq, void *pw)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003642{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003643 struct dwc2_hsotg *hsotg = pw;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003644 int retry_count = 8;
3645 u32 gintsts;
3646 u32 gintmsk;
3647
Vardan Mikayelyanee3de8d2016-04-27 20:20:48 -07003648 if (!dwc2_is_device_mode(hsotg))
3649 return IRQ_NONE;
3650
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02003651 spin_lock(&hsotg->lock);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003652irq_retry:
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003653 gintsts = dwc2_readl(hsotg, GINTSTS);
3654 gintmsk = dwc2_readl(hsotg, GINTMSK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003655
3656 dev_dbg(hsotg->dev, "%s: %08x %08x (%08x) retry %d\n",
3657 __func__, gintsts, gintsts & gintmsk, gintmsk, retry_count);
3658
3659 gintsts &= gintmsk;
3660
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003661 if (gintsts & GINTSTS_RESETDET) {
3662 dev_dbg(hsotg->dev, "%s: USBRstDet\n", __func__);
3663
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003664 dwc2_writel(hsotg, GINTSTS_RESETDET, GINTSTS);
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003665
3666 /* This event must be used only if controller is suspended */
3667 if (hsotg->lx_state == DWC2_L2) {
Vardan Mikayelyan41ba9b92018-02-16 14:06:36 +04003668 dwc2_exit_partial_power_down(hsotg, true);
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003669 hsotg->lx_state = DWC2_L0;
3670 }
3671 }
3672
3673 if (gintsts & (GINTSTS_USBRST | GINTSTS_RESETDET)) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003674 u32 usb_status = dwc2_readl(hsotg, GOTGCTL);
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003675 u32 connected = hsotg->connected;
3676
3677 dev_dbg(hsotg->dev, "%s: USBRst\n", __func__);
3678 dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003679 dwc2_readl(hsotg, GNPTXSTS));
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003680
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003681 dwc2_writel(hsotg, GINTSTS_USBRST, GINTSTS);
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003682
3683 /* Report disconnection if it is not already done. */
3684 dwc2_hsotg_disconnect(hsotg);
3685
Minas Harutyunyan307bc112017-07-11 14:25:13 +04003686 /* Reset device address to zero */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003687 dwc2_clear_bit(hsotg, DCFG, DCFG_DEVADDR_MASK);
Minas Harutyunyan307bc112017-07-11 14:25:13 +04003688
Mian Yousaf Kaukab8fc37b82015-09-29 12:08:29 +02003689 if (usb_status & GOTGCTL_BSESVLD && connected)
3690 dwc2_hsotg_core_init_disconnected(hsotg, true);
3691 }
3692
Dinh Nguyen47a16852014-04-14 14:13:34 -07003693 if (gintsts & GINTSTS_ENUMDONE) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003694 dwc2_writel(hsotg, GINTSTS_ENUMDONE, GINTSTS);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09003695
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003696 dwc2_hsotg_irq_enumdone(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003697 }
3698
Dinh Nguyen47a16852014-04-14 14:13:34 -07003699 if (gintsts & (GINTSTS_OEPINT | GINTSTS_IEPINT)) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003700 u32 daint = dwc2_readl(hsotg, DAINT);
3701 u32 daintmsk = dwc2_readl(hsotg, DAINTMSK);
Robert Baldyga7e804652013-09-19 11:50:20 +02003702 u32 daint_out, daint_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003703 int ep;
3704
Robert Baldyga7e804652013-09-19 11:50:20 +02003705 daint &= daintmsk;
Dinh Nguyen47a16852014-04-14 14:13:34 -07003706 daint_out = daint >> DAINT_OUTEP_SHIFT;
3707 daint_in = daint & ~(daint_out << DAINT_OUTEP_SHIFT);
Robert Baldyga7e804652013-09-19 11:50:20 +02003708
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003709 dev_dbg(hsotg->dev, "%s: daint=%08x\n", __func__, daint);
3710
Mian Yousaf Kaukabcec87f12015-01-09 13:38:51 +01003711 for (ep = 0; ep < hsotg->num_of_eps && daint_out;
3712 ep++, daint_out >>= 1) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003713 if (daint_out & 1)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003714 dwc2_hsotg_epint(hsotg, ep, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003715 }
3716
Mian Yousaf Kaukabcec87f12015-01-09 13:38:51 +01003717 for (ep = 0; ep < hsotg->num_of_eps && daint_in;
3718 ep++, daint_in >>= 1) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003719 if (daint_in & 1)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003720 dwc2_hsotg_epint(hsotg, ep, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003721 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003722 }
3723
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003724 /* check both FIFOs */
3725
Dinh Nguyen47a16852014-04-14 14:13:34 -07003726 if (gintsts & GINTSTS_NPTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003727 dev_dbg(hsotg->dev, "NPTxFEmp\n");
3728
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003729 /*
3730 * Disable the interrupt to stop it happening again
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003731 * unless one of these endpoint routines decides that
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003732 * it needs re-enabling
3733 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003734
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003735 dwc2_hsotg_disable_gsint(hsotg, GINTSTS_NPTXFEMP);
3736 dwc2_hsotg_irq_fifoempty(hsotg, false);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003737 }
3738
Dinh Nguyen47a16852014-04-14 14:13:34 -07003739 if (gintsts & GINTSTS_PTXFEMP) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003740 dev_dbg(hsotg->dev, "PTxFEmp\n");
3741
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003742 /* See note in GINTSTS_NPTxFEmp */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003743
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003744 dwc2_hsotg_disable_gsint(hsotg, GINTSTS_PTXFEMP);
3745 dwc2_hsotg_irq_fifoempty(hsotg, true);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003746 }
3747
Dinh Nguyen47a16852014-04-14 14:13:34 -07003748 if (gintsts & GINTSTS_RXFLVL) {
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003749 /*
3750 * note, since GINTSTS_RxFLvl doubles as FIFO-not-empty,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003751 * we need to retry dwc2_hsotg_handle_rx if this is still
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003752 * set.
3753 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003754
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003755 dwc2_hsotg_handle_rx(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003756 }
3757
Dinh Nguyen47a16852014-04-14 14:13:34 -07003758 if (gintsts & GINTSTS_ERLYSUSP) {
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003759 dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n");
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003760 dwc2_writel(hsotg, GINTSTS_ERLYSUSP, GINTSTS);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003761 }
3762
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003763 /*
3764 * these next two seem to crop-up occasionally causing the core
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003765 * to shutdown the USB transfer, so try clearing them and logging
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003766 * the occurrence.
3767 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003768
Dinh Nguyen47a16852014-04-14 14:13:34 -07003769 if (gintsts & GINTSTS_GOUTNAKEFF) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003770 u8 idx;
3771 u32 epctrl;
3772 u32 gintmsk;
Razmik Karapetyand8484552018-01-19 14:41:42 +04003773 u32 daintmsk;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003774 struct dwc2_hsotg_ep *hs_ep;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003775
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003776 daintmsk = dwc2_readl(hsotg, DAINTMSK);
Razmik Karapetyand8484552018-01-19 14:41:42 +04003777 daintmsk >>= DAINT_OUTEP_SHIFT;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003778 /* Mask this interrupt */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003779 gintmsk = dwc2_readl(hsotg, GINTMSK);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003780 gintmsk &= ~GINTSTS_GOUTNAKEFF;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003781 dwc2_writel(hsotg, gintmsk, GINTMSK);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09003782
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003783 dev_dbg(hsotg->dev, "GOUTNakEff triggered\n");
Artur Petrosyand5d5f072018-05-05 04:30:16 -04003784 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003785 hs_ep = hsotg->eps_out[idx];
Razmik Karapetyand8484552018-01-19 14:41:42 +04003786 /* Proceed only unmasked ISOC EPs */
John Keeping89066b32018-07-15 15:50:43 +01003787 if ((BIT(idx) & ~daintmsk) || !hs_ep->isochronous)
Razmik Karapetyand8484552018-01-19 14:41:42 +04003788 continue;
3789
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003790 epctrl = dwc2_readl(hsotg, DOEPCTL(idx));
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003791
Razmik Karapetyand8484552018-01-19 14:41:42 +04003792 if (epctrl & DXEPCTL_EPENA) {
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003793 epctrl |= DXEPCTL_SNAK;
3794 epctrl |= DXEPCTL_EPDIS;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003795 dwc2_writel(hsotg, epctrl, DOEPCTL(idx));
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003796 }
3797 }
3798
3799 /* This interrupt bit is cleared in DXEPINT_EPDISBLD handler */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003800 }
3801
Dinh Nguyen47a16852014-04-14 14:13:34 -07003802 if (gintsts & GINTSTS_GINNAKEFF) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003803 dev_info(hsotg->dev, "GINNakEff triggered\n");
3804
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003805 dwc2_set_bit(hsotg, DCTL, DCTL_CGNPINNAK);
Anton Tikhomirova3395f02011-04-21 17:06:39 +09003806
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003807 dwc2_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003808 }
3809
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003810 if (gintsts & GINTSTS_INCOMPL_SOIN)
3811 dwc2_gadget_handle_incomplete_isoc_in(hsotg);
Roman Bacikec1f9d92015-09-10 18:13:43 -07003812
Vardan Mikayelyan381fc8f2016-05-25 18:07:17 -07003813 if (gintsts & GINTSTS_INCOMPL_SOOUT)
3814 dwc2_gadget_handle_incomplete_isoc_out(hsotg);
Roman Bacikec1f9d92015-09-10 18:13:43 -07003815
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003816 /*
3817 * if we've had fifo events, we should try and go around the
3818 * loop again to see if there's any point in returning yet.
3819 */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003820
3821 if (gintsts & IRQ_RETRY_MASK && --retry_count > 0)
John Youn77b62002017-01-17 20:32:12 -08003822 goto irq_retry;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003823
Grigor Tovmasyan187c5292018-08-29 21:02:57 +04003824 /* Check WKUP_ALERT interrupt*/
3825 if (hsotg->params.service_interval)
3826 dwc2_gadget_wkup_alert_handler(hsotg);
3827
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02003828 spin_unlock(&hsotg->lock);
3829
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003830 return IRQ_HANDLED;
3831}
3832
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003833static void dwc2_hsotg_ep_stop_xfr(struct dwc2_hsotg *hsotg,
3834 struct dwc2_hsotg_ep *hs_ep)
3835{
3836 u32 epctrl_reg;
3837 u32 epint_reg;
3838
3839 epctrl_reg = hs_ep->dir_in ? DIEPCTL(hs_ep->index) :
3840 DOEPCTL(hs_ep->index);
3841 epint_reg = hs_ep->dir_in ? DIEPINT(hs_ep->index) :
3842 DOEPINT(hs_ep->index);
3843
3844 dev_dbg(hsotg->dev, "%s: stopping transfer on %s\n", __func__,
3845 hs_ep->name);
3846
3847 if (hs_ep->dir_in) {
3848 if (hsotg->dedicated_fifos || hs_ep->periodic) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003849 dwc2_set_bit(hsotg, epctrl_reg, DXEPCTL_SNAK);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003850 /* Wait for Nak effect */
3851 if (dwc2_hsotg_wait_bit_set(hsotg, epint_reg,
3852 DXEPINT_INEPNAKEFF, 100))
3853 dev_warn(hsotg->dev,
3854 "%s: timeout DIEPINT.NAKEFF\n",
3855 __func__);
3856 } else {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003857 dwc2_set_bit(hsotg, DCTL, DCTL_SGNPINNAK);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003858 /* Wait for Nak effect */
3859 if (dwc2_hsotg_wait_bit_set(hsotg, GINTSTS,
3860 GINTSTS_GINNAKEFF, 100))
3861 dev_warn(hsotg->dev,
3862 "%s: timeout GINTSTS.GINNAKEFF\n",
3863 __func__);
3864 }
3865 } else {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003866 if (!(dwc2_readl(hsotg, GINTSTS) & GINTSTS_GOUTNAKEFF))
3867 dwc2_set_bit(hsotg, DCTL, DCTL_SGOUTNAK);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003868
3869 /* Wait for global nak to take effect */
3870 if (dwc2_hsotg_wait_bit_set(hsotg, GINTSTS,
3871 GINTSTS_GOUTNAKEFF, 100))
3872 dev_warn(hsotg->dev, "%s: timeout GINTSTS.GOUTNAKEFF\n",
3873 __func__);
3874 }
3875
3876 /* Disable ep */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003877 dwc2_set_bit(hsotg, epctrl_reg, DXEPCTL_EPDIS | DXEPCTL_SNAK);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003878
3879 /* Wait for ep to be disabled */
3880 if (dwc2_hsotg_wait_bit_set(hsotg, epint_reg, DXEPINT_EPDISBLD, 100))
3881 dev_warn(hsotg->dev,
3882 "%s: timeout DOEPCTL.EPDisable\n", __func__);
3883
3884 /* Clear EPDISBLD interrupt */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003885 dwc2_set_bit(hsotg, epint_reg, DXEPINT_EPDISBLD);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003886
3887 if (hs_ep->dir_in) {
3888 unsigned short fifo_index;
3889
3890 if (hsotg->dedicated_fifos || hs_ep->periodic)
3891 fifo_index = hs_ep->fifo_index;
3892 else
3893 fifo_index = 0;
3894
3895 /* Flush TX FIFO */
3896 dwc2_flush_tx_fifo(hsotg, fifo_index);
3897
3898 /* Clear Global In NP NAK in Shared FIFO for non periodic ep */
3899 if (!hsotg->dedicated_fifos && !hs_ep->periodic)
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003900 dwc2_set_bit(hsotg, DCTL, DCTL_CGNPINNAK);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003901
3902 } else {
3903 /* Remove global NAKs */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003904 dwc2_set_bit(hsotg, DCTL, DCTL_CGOUTNAK);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08003905 }
3906}
3907
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003908/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003909 * dwc2_hsotg_ep_enable - enable the given endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003910 * @ep: The USB endpint to configure
3911 * @desc: The USB endpoint descriptor to configure with.
3912 *
3913 * This is called from the USB gadget code's usb_ep_enable().
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003914 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003915static int dwc2_hsotg_ep_enable(struct usb_ep *ep,
John Youn9da51972017-01-17 20:30:27 -08003916 const struct usb_endpoint_descriptor *desc)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003917{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003918 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06003919 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003920 unsigned long flags;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003921 unsigned int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003922 u32 epctrl_reg;
3923 u32 epctrl;
3924 u32 mps;
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003925 u32 mc;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07003926 u32 mask;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01003927 unsigned int dir_in;
3928 unsigned int i, val, size;
Julia Lawall19c190f2010-03-29 17:36:44 +02003929 int ret = 0;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003930 unsigned char ep_type;
Minas Harutyunyan54f37f52019-03-18 14:24:30 +04003931 int desc_num;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003932
3933 dev_dbg(hsotg->dev,
3934 "%s: ep %s: a 0x%02x, attr 0x%02x, mps 0x%04x, intr %d\n",
3935 __func__, ep->name, desc->bEndpointAddress, desc->bmAttributes,
3936 desc->wMaxPacketSize, desc->bInterval);
3937
3938 /* not to be called for EP0 */
Vahram Aharonyan8c3d6092016-04-27 20:20:46 -07003939 if (index == 0) {
3940 dev_err(hsotg->dev, "%s: called for EP 0\n", __func__);
3941 return -EINVAL;
3942 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003943
3944 dir_in = (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? 1 : 0;
3945 if (dir_in != hs_ep->dir_in) {
3946 dev_err(hsotg->dev, "%s: direction mismatch!\n", __func__);
3947 return -EINVAL;
3948 }
3949
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003950 ep_type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07003951 mps = usb_endpoint_maxp(desc);
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08003952 mc = usb_endpoint_maxp_mult(desc);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003953
Minas Harutyunyan729cac62018-05-03 17:24:28 +04003954 /* ISOC IN in DDMA supported bInterval up to 10 */
3955 if (using_desc_dma(hsotg) && ep_type == USB_ENDPOINT_XFER_ISOC &&
3956 dir_in && desc->bInterval > 10) {
3957 dev_err(hsotg->dev,
3958 "%s: ISOC IN, DDMA: bInterval>10 not supported!\n", __func__);
3959 return -EINVAL;
3960 }
3961
3962 /* High bandwidth ISOC OUT in DDMA not supported */
3963 if (using_desc_dma(hsotg) && ep_type == USB_ENDPOINT_XFER_ISOC &&
3964 !dir_in && mc > 1) {
3965 dev_err(hsotg->dev,
3966 "%s: ISOC OUT, DDMA: HB not supported!\n", __func__);
3967 return -EINVAL;
3968 }
3969
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05003970 /* note, we handle this here instead of dwc2_hsotg_set_ep_maxpacket */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003971
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02003972 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04003973 epctrl = dwc2_readl(hsotg, epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003974
3975 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x from 0x%08x\n",
3976 __func__, epctrl, epctrl_reg);
3977
Minas Harutyunyan54f37f52019-03-18 14:24:30 +04003978 if (using_desc_dma(hsotg) && ep_type == USB_ENDPOINT_XFER_ISOC)
3979 desc_num = MAX_DMA_DESC_NUM_HS_ISOC;
3980 else
3981 desc_num = MAX_DMA_DESC_NUM_GENERIC;
3982
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003983 /* Allocate DMA descriptor chain for non-ctrl endpoints */
Vardan Mikayelyan9383e082017-01-05 18:01:48 -08003984 if (using_desc_dma(hsotg) && !hs_ep->desc_list) {
3985 hs_ep->desc_list = dmam_alloc_coherent(hsotg->dev,
Minas Harutyunyan54f37f52019-03-18 14:24:30 +04003986 desc_num * sizeof(struct dwc2_dma_desc),
Marek Szyprowski86e881e2016-12-01 10:02:11 +01003987 &hs_ep->desc_list_dma, GFP_ATOMIC);
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08003988 if (!hs_ep->desc_list) {
3989 ret = -ENOMEM;
3990 goto error2;
3991 }
3992 }
3993
Lukasz Majewski22258f42012-06-14 10:02:24 +02003994 spin_lock_irqsave(&hsotg->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003995
Dinh Nguyen47a16852014-04-14 14:13:34 -07003996 epctrl &= ~(DXEPCTL_EPTYPE_MASK | DXEPCTL_MPS_MASK);
3997 epctrl |= DXEPCTL_MPS(mps);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01003998
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02003999 /*
4000 * mark the endpoint as active, otherwise the core may ignore
4001 * transactions entirely for this endpoint
4002 */
Dinh Nguyen47a16852014-04-14 14:13:34 -07004003 epctrl |= DXEPCTL_USBACTEP;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004004
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004005 /* update the endpoint state */
Vardan Mikayelyanee2c40d2016-11-08 10:57:00 -08004006 dwc2_hsotg_set_ep_maxpacket(hsotg, hs_ep->index, mps, mc, dir_in);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004007
4008 /* default, set to non-periodic */
Robert Baldyga1479e842013-10-09 08:41:57 +02004009 hs_ep->isochronous = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004010 hs_ep->periodic = 0;
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02004011 hs_ep->halted = 0;
Robert Baldyga1479e842013-10-09 08:41:57 +02004012 hs_ep->interval = desc->bInterval;
Robert Baldyga4fca54a2013-10-09 09:00:02 +02004013
Minas Harutyunyan729cac62018-05-03 17:24:28 +04004014 switch (ep_type) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004015 case USB_ENDPOINT_XFER_ISOC:
Dinh Nguyen47a16852014-04-14 14:13:34 -07004016 epctrl |= DXEPCTL_EPTYPE_ISO;
4017 epctrl |= DXEPCTL_SETEVENFR;
Robert Baldyga1479e842013-10-09 08:41:57 +02004018 hs_ep->isochronous = 1;
Vardan Mikayelyan142bd332016-05-25 18:07:07 -07004019 hs_ep->interval = 1 << (desc->bInterval - 1);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07004020 hs_ep->target_frame = TARGET_FRAME_INITIAL;
Vahram Aharonyanab7d2192016-11-14 19:16:36 -08004021 hs_ep->next_desc = 0;
Minas Harutyunyan729cac62018-05-03 17:24:28 +04004022 hs_ep->compl_desc = 0;
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07004023 if (dir_in) {
Robert Baldyga1479e842013-10-09 08:41:57 +02004024 hs_ep->periodic = 1;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004025 mask = dwc2_readl(hsotg, DIEPMSK);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07004026 mask |= DIEPMSK_NAKMSK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004027 dwc2_writel(hsotg, mask, DIEPMSK);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07004028 } else {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004029 mask = dwc2_readl(hsotg, DOEPMSK);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07004030 mask |= DOEPMSK_OUTTKNEPDISMSK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004031 dwc2_writel(hsotg, mask, DOEPMSK);
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07004032 }
Robert Baldyga1479e842013-10-09 08:41:57 +02004033 break;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004034
4035 case USB_ENDPOINT_XFER_BULK:
Dinh Nguyen47a16852014-04-14 14:13:34 -07004036 epctrl |= DXEPCTL_EPTYPE_BULK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004037 break;
4038
4039 case USB_ENDPOINT_XFER_INT:
Robert Baldygab203d0a2014-09-09 10:44:56 +02004040 if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004041 hs_ep->periodic = 1;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004042
Vardan Mikayelyan142bd332016-05-25 18:07:07 -07004043 if (hsotg->gadget.speed == USB_SPEED_HIGH)
4044 hs_ep->interval = 1 << (desc->bInterval - 1);
4045
Dinh Nguyen47a16852014-04-14 14:13:34 -07004046 epctrl |= DXEPCTL_EPTYPE_INTERRUPT;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004047 break;
4048
4049 case USB_ENDPOINT_XFER_CONTROL:
Dinh Nguyen47a16852014-04-14 14:13:34 -07004050 epctrl |= DXEPCTL_EPTYPE_CONTROL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004051 break;
4052 }
4053
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004054 /*
4055 * if the hardware has dedicated fifos, we must give each IN EP
Ben Dooks10aebc72010-07-19 09:40:44 +01004056 * a unique tx-fifo even if it is non-periodic.
4057 */
Robert Baldyga21f3bb52016-08-29 13:38:57 -07004058 if (dir_in && hsotg->dedicated_fifos) {
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01004059 u32 fifo_index = 0;
4060 u32 fifo_size = UINT_MAX;
John Youn9da51972017-01-17 20:30:27 -08004061
4062 size = hs_ep->ep.maxpacket * hs_ep->mc;
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01004063 for (i = 1; i < hsotg->num_of_eps; ++i) {
John Youn9da51972017-01-17 20:30:27 -08004064 if (hsotg->fifo_map & (1 << i))
Robert Baldygab203d0a2014-09-09 10:44:56 +02004065 continue;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004066 val = dwc2_readl(hsotg, DPTXFSIZN(i));
John Youn9da51972017-01-17 20:30:27 -08004067 val = (val >> FIFOSIZE_DEPTH_SHIFT) * 4;
Robert Baldygab203d0a2014-09-09 10:44:56 +02004068 if (val < size)
4069 continue;
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01004070 /* Search for smallest acceptable fifo */
4071 if (val < fifo_size) {
4072 fifo_size = val;
4073 fifo_index = i;
4074 }
Robert Baldygab203d0a2014-09-09 10:44:56 +02004075 }
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01004076 if (!fifo_index) {
Mian Yousaf Kaukab5f2196b2015-01-09 13:38:56 +01004077 dev_err(hsotg->dev,
4078 "%s: No suitable fifo found\n", __func__);
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05304079 ret = -ENOMEM;
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08004080 goto error1;
Sudip Mukherjeeb585a482014-10-17 10:14:02 +05304081 }
Minas Harutyunyan97311c82019-01-31 18:28:07 +04004082 epctrl &= ~(DXEPCTL_TXFNUM_LIMIT << DXEPCTL_TXFNUM_SHIFT);
Mian Yousaf Kaukabca4c55a2015-01-09 13:39:04 +01004083 hsotg->fifo_map |= 1 << fifo_index;
4084 epctrl |= DXEPCTL_TXFNUM(fifo_index);
4085 hs_ep->fifo_index = fifo_index;
4086 hs_ep->fifo_size = fifo_size;
Robert Baldygab203d0a2014-09-09 10:44:56 +02004087 }
Ben Dooks10aebc72010-07-19 09:40:44 +01004088
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004089 /* for non control endpoints, set PID to D0 */
Vardan Mikayelyan837e9f02016-05-25 18:07:22 -07004090 if (index && !hs_ep->isochronous)
Dinh Nguyen47a16852014-04-14 14:13:34 -07004091 epctrl |= DXEPCTL_SETD0PID;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004092
Artur Petrosyan52953222018-04-16 08:45:31 -04004093 /* WA for Full speed ISOC IN in DDMA mode.
4094 * By Clear NAK status of EP, core will send ZLP
4095 * to IN token and assert NAK interrupt relying
4096 * on TxFIFO status only
4097 */
4098
4099 if (hsotg->gadget.speed == USB_SPEED_FULL &&
4100 hs_ep->isochronous && dir_in) {
4101 /* The WA applies only to core versions from 2.72a
4102 * to 4.00a (including both). Also for FS_IOT_1.00a
4103 * and HS_IOT_1.00a.
4104 */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004105 u32 gsnpsid = dwc2_readl(hsotg, GSNPSID);
Artur Petrosyan52953222018-04-16 08:45:31 -04004106
4107 if ((gsnpsid >= DWC2_CORE_REV_2_72a &&
4108 gsnpsid <= DWC2_CORE_REV_4_00a) ||
4109 gsnpsid == DWC2_FS_IOT_REV_1_00a ||
4110 gsnpsid == DWC2_HS_IOT_REV_1_00a)
4111 epctrl |= DXEPCTL_CNAK;
4112 }
4113
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004114 dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n",
4115 __func__, epctrl);
4116
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004117 dwc2_writel(hsotg, epctrl, epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004118 dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004119 __func__, dwc2_readl(hsotg, epctrl_reg));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004120
4121 /* enable the endpoint interrupt */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004122 dwc2_hsotg_ctrl_epint(hsotg, index, dir_in, 1);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004123
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08004124error1:
Lukasz Majewski22258f42012-06-14 10:02:24 +02004125 spin_unlock_irqrestore(&hsotg->lock, flags);
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08004126
4127error2:
4128 if (ret && using_desc_dma(hsotg) && hs_ep->desc_list) {
Minas Harutyunyan54f37f52019-03-18 14:24:30 +04004129 dmam_free_coherent(hsotg->dev, desc_num *
Vahram Aharonyan5f54c542016-11-09 19:28:03 -08004130 sizeof(struct dwc2_dma_desc),
4131 hs_ep->desc_list, hs_ep->desc_list_dma);
4132 hs_ep->desc_list = NULL;
4133 }
4134
Julia Lawall19c190f2010-03-29 17:36:44 +02004135 return ret;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004136}
4137
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004138/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004139 * dwc2_hsotg_ep_disable - disable given endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004140 * @ep: The endpoint to disable.
4141 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004142static int dwc2_hsotg_ep_disable(struct usb_ep *ep)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004143{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004144 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004145 struct dwc2_hsotg *hsotg = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004146 int dir_in = hs_ep->dir_in;
4147 int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004148 u32 epctrl_reg;
4149 u32 ctrl;
4150
Marek Szyprowski1e011292014-09-09 10:44:54 +02004151 dev_dbg(hsotg->dev, "%s(ep %p)\n", __func__, ep);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004152
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004153 if (ep == &hsotg->eps_out[0]->ep) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004154 dev_err(hsotg->dev, "%s: called for ep0\n", __func__);
4155 return -EINVAL;
4156 }
4157
John Stultz9b4810922017-10-23 14:32:49 -07004158 if (hsotg->op_state != OTG_STATE_B_PERIPHERAL) {
4159 dev_err(hsotg->dev, "%s: called in host mode?\n", __func__);
4160 return -EINVAL;
4161 }
4162
Lukasz Majewski94cb8fd2012-05-04 14:17:14 +02004163 epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004164
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004165 ctrl = dwc2_readl(hsotg, epctrl_reg);
Vahram Aharonyana4f827712016-11-14 19:16:53 -08004166
4167 if (ctrl & DXEPCTL_EPENA)
4168 dwc2_hsotg_ep_stop_xfr(hsotg, hs_ep);
4169
Dinh Nguyen47a16852014-04-14 14:13:34 -07004170 ctrl &= ~DXEPCTL_EPENA;
4171 ctrl &= ~DXEPCTL_USBACTEP;
4172 ctrl |= DXEPCTL_SNAK;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004173
4174 dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004175 dwc2_writel(hsotg, ctrl, epctrl_reg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004176
4177 /* disable endpoint interrupts */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004178 dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004179
Mian Yousaf Kaukab1141ea02015-01-09 13:38:57 +01004180 /* terminate all requests with shutdown */
4181 kill_all_requests(hsotg, hs_ep, -ESHUTDOWN);
4182
Robert Baldyga1c07b202016-08-29 13:39:00 -07004183 hsotg->fifo_map &= ~(1 << hs_ep->fifo_index);
4184 hs_ep->fifo_index = 0;
4185 hs_ep->fifo_size = 0;
4186
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004187 return 0;
4188}
4189
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04004190static int dwc2_hsotg_ep_disable_lock(struct usb_ep *ep)
4191{
4192 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
4193 struct dwc2_hsotg *hsotg = hs_ep->parent;
4194 unsigned long flags;
4195 int ret;
4196
4197 spin_lock_irqsave(&hsotg->lock, flags);
4198 ret = dwc2_hsotg_ep_disable(ep);
4199 spin_unlock_irqrestore(&hsotg->lock, flags);
4200 return ret;
4201}
4202
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004203/**
4204 * on_list - check request is on the given endpoint
4205 * @ep: The endpoint to check.
4206 * @test: The request to test if it is on the endpoint.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004207 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004208static bool on_list(struct dwc2_hsotg_ep *ep, struct dwc2_hsotg_req *test)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004209{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004210 struct dwc2_hsotg_req *req, *treq;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004211
4212 list_for_each_entry_safe(req, treq, &ep->queue, queue) {
4213 if (req == test)
4214 return true;
4215 }
4216
4217 return false;
4218}
4219
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004220/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004221 * dwc2_hsotg_ep_dequeue - dequeue given endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004222 * @ep: The endpoint to dequeue.
4223 * @req: The request to be removed from a queue.
4224 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004225static int dwc2_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004226{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004227 struct dwc2_hsotg_req *hs_req = our_req(req);
4228 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004229 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004230 unsigned long flags;
4231
Marek Szyprowski1e011292014-09-09 10:44:54 +02004232 dev_dbg(hs->dev, "ep_dequeue(%p,%p)\n", ep, req);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004233
Lukasz Majewski22258f42012-06-14 10:02:24 +02004234 spin_lock_irqsave(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004235
4236 if (!on_list(hs_ep, hs_req)) {
Lukasz Majewski22258f42012-06-14 10:02:24 +02004237 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004238 return -EINVAL;
4239 }
4240
Mian Yousaf Kaukabc524dd52015-09-29 12:08:24 +02004241 /* Dequeue already started request */
4242 if (req == &hs_ep->req->req)
4243 dwc2_hsotg_ep_stop_xfr(hs, hs_ep);
4244
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004245 dwc2_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET);
Lukasz Majewski22258f42012-06-14 10:02:24 +02004246 spin_unlock_irqrestore(&hs->lock, flags);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004247
4248 return 0;
4249}
4250
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004251/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004252 * dwc2_hsotg_ep_sethalt - set halt on a given endpoint
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004253 * @ep: The endpoint to set halt.
4254 * @value: Set or unset the halt.
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004255 * @now: If true, stall the endpoint now. Otherwise return -EAGAIN if
4256 * the endpoint is busy processing requests.
4257 *
4258 * We need to stall the endpoint immediately if request comes from set_feature
4259 * protocol command handler.
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004260 */
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004261static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value, bool now)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004262{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004263 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004264 struct dwc2_hsotg *hs = hs_ep->parent;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004265 int index = hs_ep->index;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004266 u32 epreg;
4267 u32 epctl;
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09004268 u32 xfertype;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004269
4270 dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value);
4271
Robert Baldygac9f721b2014-01-14 08:36:00 +01004272 if (index == 0) {
4273 if (value)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004274 dwc2_hsotg_stall_ep0(hs);
Robert Baldygac9f721b2014-01-14 08:36:00 +01004275 else
4276 dev_warn(hs->dev,
4277 "%s: can't clear halt on ep0\n", __func__);
4278 return 0;
4279 }
4280
Vahram Aharonyan15186f12016-05-23 22:41:59 -07004281 if (hs_ep->isochronous) {
4282 dev_err(hs->dev, "%s is Isochronous Endpoint\n", ep->name);
4283 return -EINVAL;
4284 }
4285
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004286 if (!now && value && !list_empty(&hs_ep->queue)) {
4287 dev_dbg(hs->dev, "%s request is pending, cannot halt\n",
4288 ep->name);
4289 return -EAGAIN;
4290 }
4291
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004292 if (hs_ep->dir_in) {
4293 epreg = DIEPCTL(index);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004294 epctl = dwc2_readl(hs, epreg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004295
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004296 if (value) {
Felipe Balbi5a350d52015-06-29 20:17:22 -05004297 epctl |= DXEPCTL_STALL | DXEPCTL_SNAK;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004298 if (epctl & DXEPCTL_EPENA)
4299 epctl |= DXEPCTL_EPDIS;
4300 } else {
4301 epctl &= ~DXEPCTL_STALL;
4302 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
4303 if (xfertype == DXEPCTL_EPTYPE_BULK ||
John Youn9da51972017-01-17 20:30:27 -08004304 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
John Youn77b62002017-01-17 20:32:12 -08004305 epctl |= DXEPCTL_SETD0PID;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004306 }
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004307 dwc2_writel(hs, epctl, epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09004308 } else {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004309 epreg = DOEPCTL(index);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004310 epctl = dwc2_readl(hs, epreg);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004311
John Youn34c0887f2017-01-17 20:31:43 -08004312 if (value) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004313 epctl |= DXEPCTL_STALL;
John Youn34c0887f2017-01-17 20:31:43 -08004314 } else {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004315 epctl &= ~DXEPCTL_STALL;
4316 xfertype = epctl & DXEPCTL_EPTYPE_MASK;
4317 if (xfertype == DXEPCTL_EPTYPE_BULK ||
John Youn9da51972017-01-17 20:30:27 -08004318 xfertype == DXEPCTL_EPTYPE_INTERRUPT)
John Youn77b62002017-01-17 20:32:12 -08004319 epctl |= DXEPCTL_SETD0PID;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004320 }
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004321 dwc2_writel(hs, epctl, epreg);
Anton Tikhomirov9c39ddc2011-04-21 17:06:41 +09004322 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004323
Robert Baldygaa18ed7b2013-09-19 11:50:21 +02004324 hs_ep->halted = value;
4325
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004326 return 0;
4327}
4328
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004329/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004330 * dwc2_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004331 * @ep: The endpoint to set halt.
4332 * @value: Set or unset the halt.
4333 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004334static int dwc2_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value)
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004335{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004336 struct dwc2_hsotg_ep *hs_ep = our_ep(ep);
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004337 struct dwc2_hsotg *hs = hs_ep->parent;
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004338 unsigned long flags = 0;
4339 int ret = 0;
4340
4341 spin_lock_irqsave(&hs->lock, flags);
Vahram Aharonyan51da43b2016-05-23 22:41:57 -07004342 ret = dwc2_hsotg_ep_sethalt(ep, value, false);
Lukasz Majewski5ad1d312012-06-14 10:02:26 +02004343 spin_unlock_irqrestore(&hs->lock, flags);
4344
4345 return ret;
4346}
4347
Bhumika Goyalebce5612017-08-12 17:34:55 +05304348static const struct usb_ep_ops dwc2_hsotg_ep_ops = {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004349 .enable = dwc2_hsotg_ep_enable,
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04004350 .disable = dwc2_hsotg_ep_disable_lock,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004351 .alloc_request = dwc2_hsotg_ep_alloc_request,
4352 .free_request = dwc2_hsotg_ep_free_request,
4353 .queue = dwc2_hsotg_ep_queue_lock,
4354 .dequeue = dwc2_hsotg_ep_dequeue,
4355 .set_halt = dwc2_hsotg_ep_sethalt_lock,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004356 /* note, don't believe we have any call for the fifo routines */
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004357};
4358
4359/**
John Youn9da51972017-01-17 20:30:27 -08004360 * dwc2_hsotg_init - initialize the usb core
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004361 * @hsotg: The driver state
4362 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004363static void dwc2_hsotg_init(struct dwc2_hsotg *hsotg)
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004364{
4365 /* unmask subset of endpoint interrupts */
4366
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004367 dwc2_writel(hsotg, DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK |
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004368 DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004369 DIEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004370
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004371 dwc2_writel(hsotg, DOEPMSK_SETUPMSK | DOEPMSK_AHBERRMSK |
Antti Seppälä95c8bc32015-08-20 21:41:07 +03004372 DOEPMSK_EPDISBLDMSK | DOEPMSK_XFERCOMPLMSK,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004373 DOEPMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004374
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004375 dwc2_writel(hsotg, 0, DAINTMSK);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004376
4377 /* Be in disconnected state until gadget is registered */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004378 dwc2_set_bit(hsotg, DCTL, DCTL_SFTDISCON);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004379
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004380 /* setup fifos */
4381
4382 dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004383 dwc2_readl(hsotg, GRXFSIZ),
4384 dwc2_readl(hsotg, GNPTXFSIZ));
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004385
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004386 dwc2_hsotg_init_fifo(hsotg);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004387
Gregory Herrerof5090042015-01-09 13:38:47 +01004388 if (using_dma(hsotg))
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004389 dwc2_set_bit(hsotg, GAHBCFG, GAHBCFG_DMA_EN);
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004390}
4391
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004392/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004393 * dwc2_hsotg_udc_start - prepare the udc for work
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004394 * @gadget: The usb gadget state
4395 * @driver: The usb gadget driver
4396 *
4397 * Perform initialization to prepare udc device and driver
4398 * to work.
4399 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004400static int dwc2_hsotg_udc_start(struct usb_gadget *gadget,
John Youn9da51972017-01-17 20:30:27 -08004401 struct usb_gadget_driver *driver)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004402{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004403 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004404 unsigned long flags;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004405 int ret;
4406
4407 if (!hsotg) {
Pavel Macheka023da32013-09-30 14:56:02 +02004408 pr_err("%s: called with no device\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004409 return -ENODEV;
4410 }
4411
4412 if (!driver) {
4413 dev_err(hsotg->dev, "%s: no driver\n", __func__);
4414 return -EINVAL;
4415 }
4416
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01004417 if (driver->max_speed < USB_SPEED_FULL)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004418 dev_err(hsotg->dev, "%s: bad speed\n", __func__);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004419
Lukasz Majewskif65f0f12012-05-04 14:17:10 +02004420 if (!driver->setup) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004421 dev_err(hsotg->dev, "%s: missing entry points\n", __func__);
4422 return -EINVAL;
4423 }
4424
4425 WARN_ON(hsotg->driver);
4426
4427 driver->driver.bus = NULL;
4428 hsotg->driver = driver;
Alexandre Pereira da Silva7d7b2292012-06-26 11:27:10 -03004429 hsotg->gadget.dev.of_node = hsotg->dev->of_node;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004430 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
4431
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004432 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) {
4433 ret = dwc2_lowlevel_hw_enable(hsotg);
4434 if (ret)
4435 goto err;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004436 }
4437
Gregory Herrerof6c01592015-01-09 13:38:41 +01004438 if (!IS_ERR_OR_NULL(hsotg->uphy))
4439 otg_set_peripheral(hsotg->uphy->otg, &hsotg->gadget);
Marek Szyprowskic816c472014-10-20 12:45:37 +02004440
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004441 spin_lock_irqsave(&hsotg->lock, flags);
John Yound0f0ac52016-09-07 19:39:37 -07004442 if (dwc2_hw_is_device(hsotg)) {
4443 dwc2_hsotg_init(hsotg);
4444 dwc2_hsotg_core_init_disconnected(hsotg, false);
4445 }
4446
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004447 hsotg->enabled = 0;
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004448 spin_unlock_irqrestore(&hsotg->lock, flags);
4449
Andrzej Pietrasiewicz10209ab2019-01-21 14:44:47 +01004450 gadget->sg_supported = using_desc_dma(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004451 dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name);
Marek Szyprowski5b9451f2014-10-20 12:45:38 +02004452
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004453 return 0;
4454
4455err:
4456 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004457 return ret;
4458}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004459
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004460/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004461 * dwc2_hsotg_udc_stop - stop the udc
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004462 * @gadget: The usb gadget state
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004463 *
4464 * Stop udc hw block and stay tunned for future transmissions
4465 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004466static int dwc2_hsotg_udc_stop(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004467{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004468 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewski2b19a522012-06-14 10:02:25 +02004469 unsigned long flags = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004470 int ep;
4471
4472 if (!hsotg)
4473 return -ENODEV;
4474
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004475 /* all endpoints should be shutdown */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004476 for (ep = 1; ep < hsotg->num_of_eps; ep++) {
4477 if (hsotg->eps_in[ep])
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04004478 dwc2_hsotg_ep_disable_lock(&hsotg->eps_in[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004479 if (hsotg->eps_out[ep])
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04004480 dwc2_hsotg_ep_disable_lock(&hsotg->eps_out[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004481 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004482
Lukasz Majewski2b19a522012-06-14 10:02:25 +02004483 spin_lock_irqsave(&hsotg->lock, flags);
4484
Marek Szyprowski32805c32014-10-20 12:45:33 +02004485 hsotg->driver = NULL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004486 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004487 hsotg->enabled = 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004488
Lukasz Majewski2b19a522012-06-14 10:02:25 +02004489 spin_unlock_irqrestore(&hsotg->lock, flags);
4490
Gregory Herrerof6c01592015-01-09 13:38:41 +01004491 if (!IS_ERR_OR_NULL(hsotg->uphy))
4492 otg_set_peripheral(hsotg->uphy->otg, NULL);
Marek Szyprowskic816c472014-10-20 12:45:37 +02004493
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004494 if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)
4495 dwc2_lowlevel_hw_disable(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004496
4497 return 0;
4498}
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004499
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004500/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004501 * dwc2_hsotg_gadget_getframe - read the frame number
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004502 * @gadget: The usb gadget state
4503 *
4504 * Read the {micro} frame number
4505 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004506static int dwc2_hsotg_gadget_getframe(struct usb_gadget *gadget)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004507{
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004508 return dwc2_hsotg_read_frameno(to_hsotg(gadget));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004509}
4510
Lukasz Majewskia188b682012-06-22 09:29:56 +02004511/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004512 * dwc2_hsotg_pullup - connect/disconnect the USB PHY
Lukasz Majewskia188b682012-06-22 09:29:56 +02004513 * @gadget: The usb gadget state
4514 * @is_on: Current state of the USB PHY
4515 *
4516 * Connect/Disconnect the USB PHY pullup
4517 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004518static int dwc2_hsotg_pullup(struct usb_gadget *gadget, int is_on)
Lukasz Majewskia188b682012-06-22 09:29:56 +02004519{
Dinh Nguyen941fcce2014-11-11 11:13:33 -06004520 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
Lukasz Majewskia188b682012-06-22 09:29:56 +02004521 unsigned long flags = 0;
4522
Gregory Herrero77ba9112015-09-29 12:08:19 +02004523 dev_dbg(hsotg->dev, "%s: is_on: %d op_state: %d\n", __func__, is_on,
John Youn9da51972017-01-17 20:30:27 -08004524 hsotg->op_state);
Gregory Herrero77ba9112015-09-29 12:08:19 +02004525
4526 /* Don't modify pullup state while in host mode */
4527 if (hsotg->op_state != OTG_STATE_B_PERIPHERAL) {
4528 hsotg->enabled = is_on;
4529 return 0;
4530 }
Lukasz Majewskia188b682012-06-22 09:29:56 +02004531
4532 spin_lock_irqsave(&hsotg->lock, flags);
4533 if (is_on) {
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004534 hsotg->enabled = 1;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004535 dwc2_hsotg_core_init_disconnected(hsotg, false);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004536 /* Enable ACG feature in device mode,if supported */
4537 dwc2_enable_acg(hsotg);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004538 dwc2_hsotg_core_connect(hsotg);
Lukasz Majewskia188b682012-06-22 09:29:56 +02004539 } else {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004540 dwc2_hsotg_core_disconnect(hsotg);
4541 dwc2_hsotg_disconnect(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004542 hsotg->enabled = 0;
Lukasz Majewskia188b682012-06-22 09:29:56 +02004543 }
4544
4545 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
4546 spin_unlock_irqrestore(&hsotg->lock, flags);
4547
4548 return 0;
4549}
4550
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004551static int dwc2_hsotg_vbus_session(struct usb_gadget *gadget, int is_active)
Gregory Herrero83d98222015-01-09 13:39:02 +01004552{
4553 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
4554 unsigned long flags;
4555
4556 dev_dbg(hsotg->dev, "%s: is_active: %d\n", __func__, is_active);
4557 spin_lock_irqsave(&hsotg->lock, flags);
4558
Gregory Herrero61f72232015-09-29 12:08:28 +02004559 /*
Vardan Mikayelyan41ba9b92018-02-16 14:06:36 +04004560 * If controller is hibernated, it must exit from power_down
Gregory Herrero61f72232015-09-29 12:08:28 +02004561 * before being initialized / de-initialized
4562 */
4563 if (hsotg->lx_state == DWC2_L2)
Vardan Mikayelyan41ba9b92018-02-16 14:06:36 +04004564 dwc2_exit_partial_power_down(hsotg, false);
Gregory Herrero61f72232015-09-29 12:08:28 +02004565
Gregory Herrero83d98222015-01-09 13:39:02 +01004566 if (is_active) {
Gregory Herrerocd0e6412015-09-29 12:08:20 +02004567 hsotg->op_state = OTG_STATE_B_PERIPHERAL;
Gregory Herrero065d3932015-09-22 15:16:54 +02004568
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004569 dwc2_hsotg_core_init_disconnected(hsotg, false);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004570 if (hsotg->enabled) {
4571 /* Enable ACG feature in device mode,if supported */
4572 dwc2_enable_acg(hsotg);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004573 dwc2_hsotg_core_connect(hsotg);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004574 }
Gregory Herrero83d98222015-01-09 13:39:02 +01004575 } else {
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004576 dwc2_hsotg_core_disconnect(hsotg);
4577 dwc2_hsotg_disconnect(hsotg);
Gregory Herrero83d98222015-01-09 13:39:02 +01004578 }
4579
4580 spin_unlock_irqrestore(&hsotg->lock, flags);
4581 return 0;
4582}
4583
Gregory Herrero596d6962015-01-09 13:39:08 +01004584/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004585 * dwc2_hsotg_vbus_draw - report bMaxPower field
Gregory Herrero596d6962015-01-09 13:39:08 +01004586 * @gadget: The usb gadget state
4587 * @mA: Amount of current
4588 *
4589 * Report how much power the device may consume to the phy.
4590 */
John Youn9da51972017-01-17 20:30:27 -08004591static int dwc2_hsotg_vbus_draw(struct usb_gadget *gadget, unsigned int mA)
Gregory Herrero596d6962015-01-09 13:39:08 +01004592{
4593 struct dwc2_hsotg *hsotg = to_hsotg(gadget);
4594
4595 if (IS_ERR_OR_NULL(hsotg->uphy))
4596 return -ENOTSUPP;
4597 return usb_phy_set_power(hsotg->uphy, mA);
4598}
4599
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004600static const struct usb_gadget_ops dwc2_hsotg_gadget_ops = {
4601 .get_frame = dwc2_hsotg_gadget_getframe,
4602 .udc_start = dwc2_hsotg_udc_start,
4603 .udc_stop = dwc2_hsotg_udc_stop,
4604 .pullup = dwc2_hsotg_pullup,
4605 .vbus_session = dwc2_hsotg_vbus_session,
4606 .vbus_draw = dwc2_hsotg_vbus_draw,
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004607};
4608
4609/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004610 * dwc2_hsotg_initep - initialise a single endpoint
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004611 * @hsotg: The device state.
4612 * @hs_ep: The endpoint to be initialised.
4613 * @epnum: The endpoint number
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004614 * @dir_in: True if direction is in.
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004615 *
4616 * Initialise the given endpoint (as part of the probe and device state
4617 * creation) to give to the gadget driver. Setup the endpoint name, any
4618 * direction information and other state that may be required.
4619 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004620static void dwc2_hsotg_initep(struct dwc2_hsotg *hsotg,
John Youn9da51972017-01-17 20:30:27 -08004621 struct dwc2_hsotg_ep *hs_ep,
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004622 int epnum,
4623 bool dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004624{
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004625 char *dir;
4626
4627 if (epnum == 0)
4628 dir = "";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004629 else if (dir_in)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004630 dir = "in";
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004631 else
4632 dir = "out";
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004633
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004634 hs_ep->dir_in = dir_in;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004635 hs_ep->index = epnum;
4636
4637 snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir);
4638
4639 INIT_LIST_HEAD(&hs_ep->queue);
4640 INIT_LIST_HEAD(&hs_ep->ep.ep_list);
4641
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004642 /* add to the list of endpoints known by the gadget driver */
4643 if (epnum)
4644 list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list);
4645
4646 hs_ep->parent = hsotg;
4647 hs_ep->ep.name = hs_ep->name;
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08004648
4649 if (hsotg->params.speed == DWC2_SPEED_PARAM_LOW)
4650 usb_ep_set_maxpacket_limit(&hs_ep->ep, 8);
4651 else
4652 usb_ep_set_maxpacket_limit(&hs_ep->ep,
4653 epnum ? 1024 : EP0_MPS_LIMIT);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004654 hs_ep->ep.ops = &dwc2_hsotg_ep_ops;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004655
Robert Baldyga29545222015-07-31 16:00:18 +02004656 if (epnum == 0) {
4657 hs_ep->ep.caps.type_control = true;
4658 } else {
Vardan Mikayelyan38e90022016-11-14 19:17:03 -08004659 if (hsotg->params.speed != DWC2_SPEED_PARAM_LOW) {
4660 hs_ep->ep.caps.type_iso = true;
4661 hs_ep->ep.caps.type_bulk = true;
4662 }
Robert Baldyga29545222015-07-31 16:00:18 +02004663 hs_ep->ep.caps.type_int = true;
4664 }
4665
4666 if (dir_in)
4667 hs_ep->ep.caps.dir_in = true;
4668 else
4669 hs_ep->ep.caps.dir_out = true;
4670
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004671 /*
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004672 * if we're using dma, we need to set the next-endpoint pointer
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004673 * to be something valid.
4674 */
4675
4676 if (using_dma(hsotg)) {
Dinh Nguyen47a16852014-04-14 14:13:34 -07004677 u32 next = DXEPCTL_NEXTEP((epnum + 1) % 15);
John Youn9da51972017-01-17 20:30:27 -08004678
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004679 if (dir_in)
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004680 dwc2_writel(hsotg, next, DIEPCTL(epnum));
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004681 else
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004682 dwc2_writel(hsotg, next, DOEPCTL(epnum));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004683 }
4684}
4685
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004686/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004687 * dwc2_hsotg_hw_cfg - read HW configuration registers
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004688 * @hsotg: Programming view of the DWC_otg controller
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004689 *
4690 * Read the USB core HW configuration registers
4691 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004692static int dwc2_hsotg_hw_cfg(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004693{
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004694 u32 cfg;
4695 u32 ep_type;
4696 u32 i;
4697
Ben Dooks10aebc72010-07-19 09:40:44 +01004698 /* check hardware configuration */
4699
John Youn43e90342015-12-17 11:17:45 -08004700 hsotg->num_of_eps = hsotg->hw_params.num_dev_ep;
4701
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004702 /* Add ep0 */
4703 hsotg->num_of_eps++;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004704
John Younb98866c2017-01-17 20:31:58 -08004705 hsotg->eps_in[0] = devm_kzalloc(hsotg->dev,
4706 sizeof(struct dwc2_hsotg_ep),
4707 GFP_KERNEL);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004708 if (!hsotg->eps_in[0])
4709 return -ENOMEM;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004710 /* Same dwc2_hsotg_ep is used in both directions for ep0 */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004711 hsotg->eps_out[0] = hsotg->eps_in[0];
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004712
John Youn43e90342015-12-17 11:17:45 -08004713 cfg = hsotg->hw_params.dev_ep_dirs;
Roshan Pius251a17f2015-02-02 14:55:38 -08004714 for (i = 1, cfg >>= 2; i < hsotg->num_of_eps; i++, cfg >>= 2) {
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004715 ep_type = cfg & 3;
4716 /* Direction in or both */
4717 if (!(ep_type & 2)) {
4718 hsotg->eps_in[i] = devm_kzalloc(hsotg->dev,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004719 sizeof(struct dwc2_hsotg_ep), GFP_KERNEL);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004720 if (!hsotg->eps_in[i])
4721 return -ENOMEM;
4722 }
4723 /* Direction out or both */
4724 if (!(ep_type & 1)) {
4725 hsotg->eps_out[i] = devm_kzalloc(hsotg->dev,
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004726 sizeof(struct dwc2_hsotg_ep), GFP_KERNEL);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004727 if (!hsotg->eps_out[i])
4728 return -ENOMEM;
4729 }
4730 }
4731
John Youn43e90342015-12-17 11:17:45 -08004732 hsotg->fifo_mem = hsotg->hw_params.total_fifo_size;
4733 hsotg->dedicated_fifos = hsotg->hw_params.en_multiple_tx_fifo;
Ben Dooks10aebc72010-07-19 09:40:44 +01004734
Marek Szyprowskicff9eb72014-09-09 10:44:55 +02004735 dev_info(hsotg->dev, "EPs: %d, %s fifos, %d entries in SPRAM\n",
4736 hsotg->num_of_eps,
4737 hsotg->dedicated_fifos ? "dedicated" : "shared",
4738 hsotg->fifo_mem);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004739 return 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004740}
4741
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004742/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004743 * dwc2_hsotg_dump - dump state of the udc
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004744 * @hsotg: Programming view of the DWC_otg controller
4745 *
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004746 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004747static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004748{
Mark Brown83a01802011-06-01 17:16:15 +01004749#ifdef DEBUG
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004750 struct device *dev = hsotg->dev;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004751 u32 val;
4752 int idx;
4753
4754 dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004755 dwc2_readl(hsotg, DCFG), dwc2_readl(hsotg, DCTL),
4756 dwc2_readl(hsotg, DIEPMSK));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004757
Mian Yousaf Kaukabf889f232015-01-30 09:09:36 +01004758 dev_info(dev, "GAHBCFG=0x%08x, GHWCFG1=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004759 dwc2_readl(hsotg, GAHBCFG), dwc2_readl(hsotg, GHWCFG1));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004760
4761 dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004762 dwc2_readl(hsotg, GRXFSIZ), dwc2_readl(hsotg, GNPTXFSIZ));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004763
4764 /* show periodic fifo settings */
4765
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01004766 for (idx = 1; idx < hsotg->num_of_eps; idx++) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004767 val = dwc2_readl(hsotg, DPTXFSIZN(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004768 dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx,
Dinh Nguyen47a16852014-04-14 14:13:34 -07004769 val >> FIFOSIZE_DEPTH_SHIFT,
4770 val & FIFOSIZE_STARTADDR_MASK);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004771 }
4772
Mian Yousaf Kaukab364f8e92015-01-09 13:38:55 +01004773 for (idx = 0; idx < hsotg->num_of_eps; idx++) {
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004774 dev_info(dev,
4775 "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx,
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004776 dwc2_readl(hsotg, DIEPCTL(idx)),
4777 dwc2_readl(hsotg, DIEPTSIZ(idx)),
4778 dwc2_readl(hsotg, DIEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004779
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004780 val = dwc2_readl(hsotg, DOEPCTL(idx));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004781 dev_info(dev,
4782 "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004783 idx, dwc2_readl(hsotg, DOEPCTL(idx)),
4784 dwc2_readl(hsotg, DOEPTSIZ(idx)),
4785 dwc2_readl(hsotg, DOEPDMA(idx)));
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004786 }
4787
4788 dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n",
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004789 dwc2_readl(hsotg, DVBUSDIS), dwc2_readl(hsotg, DVBUSPULSE));
Mark Brown83a01802011-06-01 17:16:15 +01004790#endif
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004791}
4792
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004793/**
Dinh Nguyen117777b2014-11-11 11:13:34 -06004794 * dwc2_gadget_init - init function for gadget
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004795 * @hsotg: Programming view of the DWC_otg controller
4796 *
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004797 */
Vardan Mikayelyanf3768992017-12-25 15:17:45 +04004798int dwc2_gadget_init(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004799{
Dinh Nguyen117777b2014-11-11 11:13:34 -06004800 struct device *dev = hsotg->dev;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004801 int epnum;
4802 int ret;
John Youn43e90342015-12-17 11:17:45 -08004803
Gregory Herrero0a176272015-01-09 13:38:52 +01004804 /* Dump fifo information */
4805 dev_dbg(dev, "NonPeriodic TXFIFO size: %d\n",
John Youn05ee7992016-11-03 17:56:05 -07004806 hsotg->params.g_np_tx_fifo_size);
4807 dev_dbg(dev, "RXFIFO size: %d\n", hsotg->params.g_rx_fifo_size);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02004808
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01004809 hsotg->gadget.max_speed = USB_SPEED_HIGH;
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004810 hsotg->gadget.ops = &dwc2_hsotg_gadget_ops;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004811 hsotg->gadget.name = dev_name(dev);
Vardan Mikayelyanfa389a62018-02-16 14:08:53 +04004812 hsotg->remote_wakeup_allowed = 0;
John Youn7455f8b2018-01-24 17:44:51 +04004813
4814 if (hsotg->params.lpm)
4815 hsotg->gadget.lpm_capable = true;
4816
Gregory Herrero097ee662015-04-29 22:09:10 +02004817 if (hsotg->dr_mode == USB_DR_MODE_OTG)
4818 hsotg->gadget.is_otg = 1;
Mian Yousaf Kaukabec4cc652015-09-22 15:16:55 +02004819 else if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)
4820 hsotg->op_state = OTG_STATE_B_PERIPHERAL;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004821
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004822 ret = dwc2_hsotg_hw_cfg(hsotg);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004823 if (ret) {
4824 dev_err(hsotg->dev, "Hardware configuration failed: %d\n", ret);
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004825 return ret;
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004826 }
4827
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01004828 hsotg->ctrl_buff = devm_kzalloc(hsotg->dev,
4829 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
Wolfram Sang8bae0f82016-08-25 19:39:02 +02004830 if (!hsotg->ctrl_buff)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004831 return -ENOMEM;
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01004832
4833 hsotg->ep0_buff = devm_kzalloc(hsotg->dev,
4834 DWC2_CTRL_BUFF_SIZE, GFP_KERNEL);
Wolfram Sang8bae0f82016-08-25 19:39:02 +02004835 if (!hsotg->ep0_buff)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004836 return -ENOMEM;
Mian Yousaf Kaukab3f950012015-01-09 13:38:44 +01004837
Vahram Aharonyan0f6b80c2016-11-09 19:27:56 -08004838 if (using_desc_dma(hsotg)) {
4839 ret = dwc2_gadget_alloc_ctrl_desc_chains(hsotg);
4840 if (ret < 0)
4841 return ret;
4842 }
4843
Vardan Mikayelyanf3768992017-12-25 15:17:45 +04004844 ret = devm_request_irq(hsotg->dev, hsotg->irq, dwc2_hsotg_irq,
4845 IRQF_SHARED, dev_name(hsotg->dev), hsotg);
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02004846 if (ret < 0) {
Dinh Nguyendb8178c2014-11-11 11:13:37 -06004847 dev_err(dev, "cannot claim IRQ for gadget\n");
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004848 return ret;
Marek Szyprowskieb3c56c2014-09-09 10:44:12 +02004849 }
4850
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004851 /* hsotg->num_of_eps holds number of EPs other than ep0 */
4852
4853 if (hsotg->num_of_eps == 0) {
4854 dev_err(dev, "wrong number of EPs (zero)\n");
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004855 return -EINVAL;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004856 }
4857
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004858 /* setup endpoint information */
4859
4860 INIT_LIST_HEAD(&hsotg->gadget.ep_list);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004861 hsotg->gadget.ep0 = &hsotg->eps_out[0]->ep;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004862
4863 /* allocate EP0 request */
4864
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004865 hsotg->ctrl_req = dwc2_hsotg_ep_alloc_request(&hsotg->eps_out[0]->ep,
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004866 GFP_KERNEL);
4867 if (!hsotg->ctrl_req) {
4868 dev_err(dev, "failed to allocate ctrl req\n");
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004869 return -ENOMEM;
Lukasz Majewskib3f489b2012-05-04 14:17:09 +02004870 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004871
4872 /* initialise the endpoints now the core has been initialised */
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004873 for (epnum = 0; epnum < hsotg->num_of_eps; epnum++) {
4874 if (hsotg->eps_in[epnum])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004875 dwc2_hsotg_initep(hsotg, hsotg->eps_in[epnum],
John Youn9da51972017-01-17 20:30:27 -08004876 epnum, 1);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004877 if (hsotg->eps_out[epnum])
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004878 dwc2_hsotg_initep(hsotg, hsotg->eps_out[epnum],
John Youn9da51972017-01-17 20:30:27 -08004879 epnum, 0);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004880 }
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004881
Dinh Nguyen117777b2014-11-11 11:13:34 -06004882 ret = usb_add_gadget_udc(dev, &hsotg->gadget);
Grigor Tovmasyan9bb073a2018-05-24 18:22:30 +04004883 if (ret) {
4884 dwc2_hsotg_ep_free_request(&hsotg->eps_out[0]->ep,
4885 hsotg->ctrl_req);
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004886 return ret;
Grigor Tovmasyan9bb073a2018-05-24 18:22:30 +04004887 }
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004888 dwc2_hsotg_dump(hsotg);
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004889
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004890 return 0;
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004891}
4892
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004893/**
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004894 * dwc2_hsotg_remove - remove function for hsotg driver
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04004895 * @hsotg: Programming view of the DWC_otg controller
4896 *
Lukasz Majewski8b9bc462012-05-04 14:17:11 +02004897 */
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004898int dwc2_hsotg_remove(struct dwc2_hsotg *hsotg)
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004899{
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03004900 usb_del_gadget_udc(&hsotg->gadget);
Grigor Tovmasyan9bb073a2018-05-24 18:22:30 +04004901 dwc2_hsotg_ep_free_request(&hsotg->eps_out[0]->ep, hsotg->ctrl_req);
Marek Szyprowski31ee04d2010-07-19 16:01:42 +02004902
Ben Dooks5b7d70c2009-06-02 14:58:06 +01004903 return 0;
4904}
4905
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004906int dwc2_hsotg_suspend(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004907{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004908 unsigned long flags;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004909
Gregory Herrero9e779772015-04-29 22:09:07 +02004910 if (hsotg->lx_state != DWC2_L0)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004911 return 0;
Gregory Herrero9e779772015-04-29 22:09:07 +02004912
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004913 if (hsotg->driver) {
4914 int ep;
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004915
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004916 dev_info(hsotg->dev, "suspending usb gadget %s\n",
4917 hsotg->driver->driver.name);
4918
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004919 spin_lock_irqsave(&hsotg->lock, flags);
4920 if (hsotg->enabled)
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004921 dwc2_hsotg_core_disconnect(hsotg);
4922 dwc2_hsotg_disconnect(hsotg);
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004923 hsotg->gadget.speed = USB_SPEED_UNKNOWN;
4924 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004925
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004926 for (ep = 0; ep < hsotg->num_of_eps; ep++) {
4927 if (hsotg->eps_in[ep])
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04004928 dwc2_hsotg_ep_disable_lock(&hsotg->eps_in[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004929 if (hsotg->eps_out[ep])
Minas Harutyunyan4fe4f9f2018-12-10 18:09:32 +04004930 dwc2_hsotg_ep_disable_lock(&hsotg->eps_out[ep]->ep);
Mian Yousaf Kaukabc6f5c052015-01-09 13:38:50 +01004931 }
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004932 }
4933
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004934 return 0;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004935}
4936
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004937int dwc2_hsotg_resume(struct dwc2_hsotg *hsotg)
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004938{
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004939 unsigned long flags;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004940
Gregory Herrero9e779772015-04-29 22:09:07 +02004941 if (hsotg->lx_state == DWC2_L2)
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004942 return 0;
Gregory Herrero9e779772015-04-29 22:09:07 +02004943
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004944 if (hsotg->driver) {
4945 dev_info(hsotg->dev, "resuming usb gadget %s\n",
4946 hsotg->driver->driver.name);
Robert Baldygad00b4142014-09-09 10:44:57 +02004947
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004948 spin_lock_irqsave(&hsotg->lock, flags);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004949 dwc2_hsotg_core_init_disconnected(hsotg, false);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004950 if (hsotg->enabled) {
4951 /* Enable ACG feature in device mode,if supported */
4952 dwc2_enable_acg(hsotg);
Felipe Balbi1f91b4c2015-08-06 18:11:54 -05004953 dwc2_hsotg_core_connect(hsotg);
Razmik Karapetyan66e77a22018-01-24 17:40:29 +04004954 }
Marek Szyprowskidc6e69e2014-11-21 15:14:49 +01004955 spin_unlock_irqrestore(&hsotg->lock, flags);
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004956 }
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004957
Marek Szyprowski09a75e82015-10-14 08:52:29 +02004958 return 0;
Marek Szyprowskib83e3332014-02-28 13:06:11 +01004959}
John Youn58e52ff6a2016-02-23 19:54:57 -08004960
4961/**
4962 * dwc2_backup_device_registers() - Backup controller device registers.
4963 * When suspending usb bus, registers needs to be backuped
4964 * if controller power is disabled once suspended.
4965 *
4966 * @hsotg: Programming view of the DWC_otg controller
4967 */
4968int dwc2_backup_device_registers(struct dwc2_hsotg *hsotg)
4969{
4970 struct dwc2_dregs_backup *dr;
4971 int i;
4972
4973 dev_dbg(hsotg->dev, "%s\n", __func__);
4974
4975 /* Backup dev regs */
4976 dr = &hsotg->dr_backup;
4977
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004978 dr->dcfg = dwc2_readl(hsotg, DCFG);
4979 dr->dctl = dwc2_readl(hsotg, DCTL);
4980 dr->daintmsk = dwc2_readl(hsotg, DAINTMSK);
4981 dr->diepmsk = dwc2_readl(hsotg, DIEPMSK);
4982 dr->doepmsk = dwc2_readl(hsotg, DOEPMSK);
John Youn58e52ff6a2016-02-23 19:54:57 -08004983
4984 for (i = 0; i < hsotg->num_of_eps; i++) {
4985 /* Backup IN EPs */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004986 dr->diepctl[i] = dwc2_readl(hsotg, DIEPCTL(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08004987
4988 /* Ensure DATA PID is correctly configured */
4989 if (dr->diepctl[i] & DXEPCTL_DPID)
4990 dr->diepctl[i] |= DXEPCTL_SETD1PID;
4991 else
4992 dr->diepctl[i] |= DXEPCTL_SETD0PID;
4993
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004994 dr->dieptsiz[i] = dwc2_readl(hsotg, DIEPTSIZ(i));
4995 dr->diepdma[i] = dwc2_readl(hsotg, DIEPDMA(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08004996
4997 /* Backup OUT EPs */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04004998 dr->doepctl[i] = dwc2_readl(hsotg, DOEPCTL(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08004999
5000 /* Ensure DATA PID is correctly configured */
5001 if (dr->doepctl[i] & DXEPCTL_DPID)
5002 dr->doepctl[i] |= DXEPCTL_SETD1PID;
5003 else
5004 dr->doepctl[i] |= DXEPCTL_SETD0PID;
5005
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005006 dr->doeptsiz[i] = dwc2_readl(hsotg, DOEPTSIZ(i));
5007 dr->doepdma[i] = dwc2_readl(hsotg, DOEPDMA(i));
5008 dr->dtxfsiz[i] = dwc2_readl(hsotg, DPTXFSIZN(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08005009 }
5010 dr->valid = true;
5011 return 0;
5012}
5013
5014/**
5015 * dwc2_restore_device_registers() - Restore controller device registers.
5016 * When resuming usb bus, device registers needs to be restored
5017 * if controller power were disabled.
5018 *
5019 * @hsotg: Programming view of the DWC_otg controller
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04005020 * @remote_wakeup: Indicates whether resume is initiated by Device or Host.
5021 *
5022 * Return: 0 if successful, negative error code otherwise
John Youn58e52ff6a2016-02-23 19:54:57 -08005023 */
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04005024int dwc2_restore_device_registers(struct dwc2_hsotg *hsotg, int remote_wakeup)
John Youn58e52ff6a2016-02-23 19:54:57 -08005025{
5026 struct dwc2_dregs_backup *dr;
John Youn58e52ff6a2016-02-23 19:54:57 -08005027 int i;
5028
5029 dev_dbg(hsotg->dev, "%s\n", __func__);
5030
5031 /* Restore dev regs */
5032 dr = &hsotg->dr_backup;
5033 if (!dr->valid) {
5034 dev_err(hsotg->dev, "%s: no device registers to restore\n",
5035 __func__);
5036 return -EINVAL;
5037 }
5038 dr->valid = false;
5039
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04005040 if (!remote_wakeup)
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005041 dwc2_writel(hsotg, dr->dctl, DCTL);
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04005042
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005043 dwc2_writel(hsotg, dr->daintmsk, DAINTMSK);
5044 dwc2_writel(hsotg, dr->diepmsk, DIEPMSK);
5045 dwc2_writel(hsotg, dr->doepmsk, DOEPMSK);
John Youn58e52ff6a2016-02-23 19:54:57 -08005046
5047 for (i = 0; i < hsotg->num_of_eps; i++) {
5048 /* Restore IN EPs */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005049 dwc2_writel(hsotg, dr->dieptsiz[i], DIEPTSIZ(i));
5050 dwc2_writel(hsotg, dr->diepdma[i], DIEPDMA(i));
5051 dwc2_writel(hsotg, dr->doeptsiz[i], DOEPTSIZ(i));
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04005052 /** WA for enabled EPx's IN in DDMA mode. On entering to
5053 * hibernation wrong value read and saved from DIEPDMAx,
5054 * as result BNA interrupt asserted on hibernation exit
5055 * by restoring from saved area.
5056 */
5057 if (hsotg->params.g_dma_desc &&
5058 (dr->diepctl[i] & DXEPCTL_EPENA))
5059 dr->diepdma[i] = hsotg->eps_in[i]->desc_list_dma;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005060 dwc2_writel(hsotg, dr->dtxfsiz[i], DPTXFSIZN(i));
5061 dwc2_writel(hsotg, dr->diepctl[i], DIEPCTL(i));
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04005062 /* Restore OUT EPs */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005063 dwc2_writel(hsotg, dr->doeptsiz[i], DOEPTSIZ(i));
Vardan Mikayelyan9a5d2812018-02-16 14:08:00 +04005064 /* WA for enabled EPx's OUT in DDMA mode. On entering to
5065 * hibernation wrong value read and saved from DOEPDMAx,
5066 * as result BNA interrupt asserted on hibernation exit
5067 * by restoring from saved area.
5068 */
5069 if (hsotg->params.g_dma_desc &&
5070 (dr->doepctl[i] & DXEPCTL_EPENA))
5071 dr->doepdma[i] = hsotg->eps_out[i]->desc_list_dma;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005072 dwc2_writel(hsotg, dr->doepdma[i], DOEPDMA(i));
5073 dwc2_writel(hsotg, dr->doepctl[i], DOEPCTL(i));
John Youn58e52ff6a2016-02-23 19:54:57 -08005074 }
5075
John Youn58e52ff6a2016-02-23 19:54:57 -08005076 return 0;
5077}
Sevak Arakelyan21b03402018-01-24 17:43:32 +04005078
5079/**
5080 * dwc2_gadget_init_lpm - Configure the core to support LPM in device mode
5081 *
5082 * @hsotg: Programming view of DWC_otg controller
5083 *
5084 */
5085void dwc2_gadget_init_lpm(struct dwc2_hsotg *hsotg)
5086{
5087 u32 val;
5088
5089 if (!hsotg->params.lpm)
5090 return;
5091
5092 val = GLPMCFG_LPMCAP | GLPMCFG_APPL1RES;
5093 val |= hsotg->params.hird_threshold_en ? GLPMCFG_HIRD_THRES_EN : 0;
5094 val |= hsotg->params.lpm_clock_gating ? GLPMCFG_ENBLSLPM : 0;
5095 val |= hsotg->params.hird_threshold << GLPMCFG_HIRD_THRES_SHIFT;
5096 val |= hsotg->params.besl ? GLPMCFG_ENBESL : 0;
Minas Harutyunyan46637562019-04-18 15:40:43 +04005097 val |= GLPMCFG_LPM_REJECT_CTRL_CONTROL;
Artur Petrosyan9aed8c02018-11-02 11:29:55 -04005098 val |= GLPMCFG_LPM_ACCEPT_CTRL_ISOC;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005099 dwc2_writel(hsotg, val, GLPMCFG);
5100 dev_dbg(hsotg->dev, "GLPMCFG=0x%08x\n", dwc2_readl(hsotg, GLPMCFG));
Grigor Tovmasyan4abe4532018-08-29 21:02:28 +04005101
5102 /* Unmask WKUP_ALERT Interrupt */
5103 if (hsotg->params.service_interval)
5104 dwc2_set_bit(hsotg, GINTMSK2, GINTMSK2_WKUP_ALERT_INT_MSK);
Sevak Arakelyan21b03402018-01-24 17:43:32 +04005105}
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005106
5107/**
Grigor Tovmasyan15d9dbf2018-08-29 21:01:59 +04005108 * dwc2_gadget_program_ref_clk - Program GREFCLK register in device mode
5109 *
5110 * @hsotg: Programming view of DWC_otg controller
5111 *
5112 */
5113void dwc2_gadget_program_ref_clk(struct dwc2_hsotg *hsotg)
5114{
5115 u32 val = 0;
5116
5117 val |= GREFCLK_REF_CLK_MODE;
5118 val |= hsotg->params.ref_clk_per << GREFCLK_REFCLKPER_SHIFT;
5119 val |= hsotg->params.sof_cnt_wkup_alert <<
5120 GREFCLK_SOF_CNT_WKUP_ALERT_SHIFT;
5121
5122 dwc2_writel(hsotg, val, GREFCLK);
5123 dev_dbg(hsotg->dev, "GREFCLK=0x%08x\n", dwc2_readl(hsotg, GREFCLK));
5124}
5125
5126/**
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005127 * dwc2_gadget_enter_hibernation() - Put controller in Hibernation.
5128 *
5129 * @hsotg: Programming view of the DWC_otg controller
5130 *
5131 * Return non-zero if failed to enter to hibernation.
5132 */
5133int dwc2_gadget_enter_hibernation(struct dwc2_hsotg *hsotg)
5134{
5135 u32 gpwrdn;
5136 int ret = 0;
5137
5138 /* Change to L2(suspend) state */
5139 hsotg->lx_state = DWC2_L2;
5140 dev_dbg(hsotg->dev, "Start of hibernation completed\n");
5141 ret = dwc2_backup_global_registers(hsotg);
5142 if (ret) {
5143 dev_err(hsotg->dev, "%s: failed to backup global registers\n",
5144 __func__);
5145 return ret;
5146 }
5147 ret = dwc2_backup_device_registers(hsotg);
5148 if (ret) {
5149 dev_err(hsotg->dev, "%s: failed to backup device registers\n",
5150 __func__);
5151 return ret;
5152 }
5153
5154 gpwrdn = GPWRDN_PWRDNRSTN;
5155 gpwrdn |= GPWRDN_PMUACTV;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005156 dwc2_writel(hsotg, gpwrdn, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005157 udelay(10);
5158
5159 /* Set flag to indicate that we are in hibernation */
5160 hsotg->hibernated = 1;
5161
5162 /* Enable interrupts from wake up logic */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005163 gpwrdn = dwc2_readl(hsotg, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005164 gpwrdn |= GPWRDN_PMUINTSEL;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005165 dwc2_writel(hsotg, gpwrdn, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005166 udelay(10);
5167
5168 /* Unmask device mode interrupts in GPWRDN */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005169 gpwrdn = dwc2_readl(hsotg, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005170 gpwrdn |= GPWRDN_RST_DET_MSK;
5171 gpwrdn |= GPWRDN_LNSTSCHG_MSK;
5172 gpwrdn |= GPWRDN_STS_CHGINT_MSK;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005173 dwc2_writel(hsotg, gpwrdn, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005174 udelay(10);
5175
5176 /* Enable Power Down Clamp */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005177 gpwrdn = dwc2_readl(hsotg, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005178 gpwrdn |= GPWRDN_PWRDNCLMP;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005179 dwc2_writel(hsotg, gpwrdn, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005180 udelay(10);
5181
5182 /* Switch off VDD */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005183 gpwrdn = dwc2_readl(hsotg, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005184 gpwrdn |= GPWRDN_PWRDNSWTCH;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005185 dwc2_writel(hsotg, gpwrdn, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005186 udelay(10);
5187
5188 /* Save gpwrdn register for further usage if stschng interrupt */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005189 hsotg->gr_backup.gpwrdn = dwc2_readl(hsotg, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005190 dev_dbg(hsotg->dev, "Hibernation completed\n");
5191
5192 return ret;
5193}
5194
5195/**
5196 * dwc2_gadget_exit_hibernation()
5197 * This function is for exiting from Device mode hibernation by host initiated
5198 * resume/reset and device initiated remote-wakeup.
5199 *
5200 * @hsotg: Programming view of the DWC_otg controller
5201 * @rem_wakeup: indicates whether resume is initiated by Device or Host.
Grigor Tovmasyan6fb914d2018-05-16 12:04:24 +04005202 * @reset: indicates whether resume is initiated by Reset.
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005203 *
5204 * Return non-zero if failed to exit from hibernation.
5205 */
5206int dwc2_gadget_exit_hibernation(struct dwc2_hsotg *hsotg,
5207 int rem_wakeup, int reset)
5208{
5209 u32 pcgcctl;
5210 u32 gpwrdn;
5211 u32 dctl;
5212 int ret = 0;
5213 struct dwc2_gregs_backup *gr;
5214 struct dwc2_dregs_backup *dr;
5215
5216 gr = &hsotg->gr_backup;
5217 dr = &hsotg->dr_backup;
5218
5219 if (!hsotg->hibernated) {
5220 dev_dbg(hsotg->dev, "Already exited from Hibernation\n");
5221 return 1;
5222 }
5223 dev_dbg(hsotg->dev,
5224 "%s: called with rem_wakeup = %d reset = %d\n",
5225 __func__, rem_wakeup, reset);
5226
5227 dwc2_hib_restore_common(hsotg, rem_wakeup, 0);
5228
5229 if (!reset) {
5230 /* Clear all pending interupts */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005231 dwc2_writel(hsotg, 0xffffffff, GINTSTS);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005232 }
5233
5234 /* De-assert Restore */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005235 gpwrdn = dwc2_readl(hsotg, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005236 gpwrdn &= ~GPWRDN_RESTORE;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005237 dwc2_writel(hsotg, gpwrdn, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005238 udelay(10);
5239
5240 if (!rem_wakeup) {
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005241 pcgcctl = dwc2_readl(hsotg, PCGCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005242 pcgcctl &= ~PCGCTL_RSTPDWNMODULE;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005243 dwc2_writel(hsotg, pcgcctl, PCGCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005244 }
5245
5246 /* Restore GUSBCFG, DCFG and DCTL */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005247 dwc2_writel(hsotg, gr->gusbcfg, GUSBCFG);
5248 dwc2_writel(hsotg, dr->dcfg, DCFG);
5249 dwc2_writel(hsotg, dr->dctl, DCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005250
5251 /* De-assert Wakeup Logic */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005252 gpwrdn = dwc2_readl(hsotg, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005253 gpwrdn &= ~GPWRDN_PMUACTV;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005254 dwc2_writel(hsotg, gpwrdn, GPWRDN);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005255
5256 if (rem_wakeup) {
5257 udelay(10);
5258 /* Start Remote Wakeup Signaling */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005259 dwc2_writel(hsotg, dr->dctl | DCTL_RMTWKUPSIG, DCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005260 } else {
5261 udelay(50);
5262 /* Set Device programming done bit */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005263 dctl = dwc2_readl(hsotg, DCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005264 dctl |= DCTL_PWRONPRGDONE;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005265 dwc2_writel(hsotg, dctl, DCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005266 }
5267 /* Wait for interrupts which must be cleared */
5268 mdelay(2);
5269 /* Clear all pending interupts */
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005270 dwc2_writel(hsotg, 0xffffffff, GINTSTS);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005271
5272 /* Restore global registers */
5273 ret = dwc2_restore_global_registers(hsotg);
5274 if (ret) {
5275 dev_err(hsotg->dev, "%s: failed to restore registers\n",
5276 __func__);
5277 return ret;
5278 }
5279
5280 /* Restore device registers */
5281 ret = dwc2_restore_device_registers(hsotg, rem_wakeup);
5282 if (ret) {
5283 dev_err(hsotg->dev, "%s: failed to restore device registers\n",
5284 __func__);
5285 return ret;
5286 }
5287
5288 if (rem_wakeup) {
5289 mdelay(10);
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005290 dctl = dwc2_readl(hsotg, DCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005291 dctl &= ~DCTL_RMTWKUPSIG;
Gevorg Sahakyanf25c42b2018-07-26 18:00:13 +04005292 dwc2_writel(hsotg, dctl, DCTL);
Vardan Mikayelyanc5c403d2018-02-16 14:10:13 +04005293 }
5294
5295 hsotg->hibernated = 0;
5296 hsotg->lx_state = DWC2_L0;
5297 dev_dbg(hsotg->dev, "Hibernation recovery completes here\n");
5298
5299 return ret;
5300}