xref: /openbmc/linux/drivers/usb/dwc2/hcd.c (revision fc30c4bb)
1 /*
2  * hcd.c - DesignWare HS OTG Controller host-mode routines
3  *
4  * Copyright (C) 2004-2013 Synopsys, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions, and the following disclaimer,
11  *    without modification.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The names of the above-listed copyright holders may not be used
16  *    to endorse or promote products derived from this software without
17  *    specific prior written permission.
18  *
19  * ALTERNATIVELY, this software may be distributed under the terms of the
20  * GNU General Public License ("GPL") as published by the Free Software
21  * Foundation; either version 2 of the License, or (at your option) any
22  * later version.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35  */
36 
37 /*
38  * This file contains the core HCD code, and implements the Linux hc_driver
39  * API
40  */
41 #include <linux/kernel.h>
42 #include <linux/module.h>
43 #include <linux/spinlock.h>
44 #include <linux/interrupt.h>
45 #include <linux/dma-mapping.h>
46 #include <linux/delay.h>
47 #include <linux/io.h>
48 #include <linux/slab.h>
49 #include <linux/usb.h>
50 
51 #include <linux/usb/hcd.h>
52 #include <linux/usb/ch11.h>
53 
54 #include "core.h"
55 #include "hcd.h"
56 
57 /*
58  * =========================================================================
59  *  Host Core Layer Functions
60  * =========================================================================
61  */
62 
63 /**
64  * dwc2_enable_common_interrupts() - Initializes the commmon interrupts,
65  * used in both device and host modes
66  *
67  * @hsotg: Programming view of the DWC_otg controller
68  */
69 static void dwc2_enable_common_interrupts(struct dwc2_hsotg *hsotg)
70 {
71 	u32 intmsk;
72 
73 	/* Clear any pending OTG Interrupts */
74 	dwc2_writel(0xffffffff, hsotg->regs + GOTGINT);
75 
76 	/* Clear any pending interrupts */
77 	dwc2_writel(0xffffffff, hsotg->regs + GINTSTS);
78 
79 	/* Enable the interrupts in the GINTMSK */
80 	intmsk = GINTSTS_MODEMIS | GINTSTS_OTGINT;
81 
82 	if (!hsotg->params.host_dma)
83 		intmsk |= GINTSTS_RXFLVL;
84 	if (!hsotg->params.external_id_pin_ctl)
85 		intmsk |= GINTSTS_CONIDSTSCHNG;
86 
87 	intmsk |= GINTSTS_WKUPINT | GINTSTS_USBSUSP |
88 		  GINTSTS_SESSREQINT;
89 
90 	dwc2_writel(intmsk, hsotg->regs + GINTMSK);
91 }
92 
93 /*
94  * Initializes the FSLSPClkSel field of the HCFG register depending on the
95  * PHY type
96  */
97 static void dwc2_init_fs_ls_pclk_sel(struct dwc2_hsotg *hsotg)
98 {
99 	u32 hcfg, val;
100 
101 	if ((hsotg->hw_params.hs_phy_type == GHWCFG2_HS_PHY_TYPE_ULPI &&
102 	     hsotg->hw_params.fs_phy_type == GHWCFG2_FS_PHY_TYPE_DEDICATED &&
103 	     hsotg->params.ulpi_fs_ls) ||
104 	    hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS) {
105 		/* Full speed PHY */
106 		val = HCFG_FSLSPCLKSEL_48_MHZ;
107 	} else {
108 		/* High speed PHY running at full speed or high speed */
109 		val = HCFG_FSLSPCLKSEL_30_60_MHZ;
110 	}
111 
112 	dev_dbg(hsotg->dev, "Initializing HCFG.FSLSPClkSel to %08x\n", val);
113 	hcfg = dwc2_readl(hsotg->regs + HCFG);
114 	hcfg &= ~HCFG_FSLSPCLKSEL_MASK;
115 	hcfg |= val << HCFG_FSLSPCLKSEL_SHIFT;
116 	dwc2_writel(hcfg, hsotg->regs + HCFG);
117 }
118 
119 static int dwc2_fs_phy_init(struct dwc2_hsotg *hsotg, bool select_phy)
120 {
121 	u32 usbcfg, i2cctl;
122 	int retval = 0;
123 
124 	/*
125 	 * core_init() is now called on every switch so only call the
126 	 * following for the first time through
127 	 */
128 	if (select_phy) {
129 		dev_dbg(hsotg->dev, "FS PHY selected\n");
130 
131 		usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
132 		if (!(usbcfg & GUSBCFG_PHYSEL)) {
133 			usbcfg |= GUSBCFG_PHYSEL;
134 			dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
135 
136 			/* Reset after a PHY select */
137 			retval = dwc2_core_reset_and_force_dr_mode(hsotg);
138 
139 			if (retval) {
140 				dev_err(hsotg->dev,
141 					"%s: Reset failed, aborting", __func__);
142 				return retval;
143 			}
144 		}
145 	}
146 
147 	/*
148 	 * Program DCFG.DevSpd or HCFG.FSLSPclkSel to 48Mhz in FS. Also
149 	 * do this on HNP Dev/Host mode switches (done in dev_init and
150 	 * host_init).
151 	 */
152 	if (dwc2_is_host_mode(hsotg))
153 		dwc2_init_fs_ls_pclk_sel(hsotg);
154 
155 	if (hsotg->params.i2c_enable) {
156 		dev_dbg(hsotg->dev, "FS PHY enabling I2C\n");
157 
158 		/* Program GUSBCFG.OtgUtmiFsSel to I2C */
159 		usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
160 		usbcfg |= GUSBCFG_OTG_UTMI_FS_SEL;
161 		dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
162 
163 		/* Program GI2CCTL.I2CEn */
164 		i2cctl = dwc2_readl(hsotg->regs + GI2CCTL);
165 		i2cctl &= ~GI2CCTL_I2CDEVADDR_MASK;
166 		i2cctl |= 1 << GI2CCTL_I2CDEVADDR_SHIFT;
167 		i2cctl &= ~GI2CCTL_I2CEN;
168 		dwc2_writel(i2cctl, hsotg->regs + GI2CCTL);
169 		i2cctl |= GI2CCTL_I2CEN;
170 		dwc2_writel(i2cctl, hsotg->regs + GI2CCTL);
171 	}
172 
173 	return retval;
174 }
175 
176 static int dwc2_hs_phy_init(struct dwc2_hsotg *hsotg, bool select_phy)
177 {
178 	u32 usbcfg, usbcfg_old;
179 	int retval = 0;
180 
181 	if (!select_phy)
182 		return 0;
183 
184 	usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
185 	usbcfg_old = usbcfg;
186 
187 	/*
188 	 * HS PHY parameters. These parameters are preserved during soft reset
189 	 * so only program the first time. Do a soft reset immediately after
190 	 * setting phyif.
191 	 */
192 	switch (hsotg->params.phy_type) {
193 	case DWC2_PHY_TYPE_PARAM_ULPI:
194 		/* ULPI interface */
195 		dev_dbg(hsotg->dev, "HS ULPI PHY selected\n");
196 		usbcfg |= GUSBCFG_ULPI_UTMI_SEL;
197 		usbcfg &= ~(GUSBCFG_PHYIF16 | GUSBCFG_DDRSEL);
198 		if (hsotg->params.phy_ulpi_ddr)
199 			usbcfg |= GUSBCFG_DDRSEL;
200 		break;
201 	case DWC2_PHY_TYPE_PARAM_UTMI:
202 		/* UTMI+ interface */
203 		dev_dbg(hsotg->dev, "HS UTMI+ PHY selected\n");
204 		usbcfg &= ~(GUSBCFG_ULPI_UTMI_SEL | GUSBCFG_PHYIF16);
205 		if (hsotg->params.phy_utmi_width == 16)
206 			usbcfg |= GUSBCFG_PHYIF16;
207 		break;
208 	default:
209 		dev_err(hsotg->dev, "FS PHY selected at HS!\n");
210 		break;
211 	}
212 
213 	if (usbcfg != usbcfg_old) {
214 		dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
215 
216 		/* Reset after setting the PHY parameters */
217 		retval = dwc2_core_reset_and_force_dr_mode(hsotg);
218 		if (retval) {
219 			dev_err(hsotg->dev,
220 				"%s: Reset failed, aborting", __func__);
221 			return retval;
222 		}
223 	}
224 
225 	return retval;
226 }
227 
228 static int dwc2_phy_init(struct dwc2_hsotg *hsotg, bool select_phy)
229 {
230 	u32 usbcfg;
231 	int retval = 0;
232 
233 	if ((hsotg->params.speed == DWC2_SPEED_PARAM_FULL ||
234 	     hsotg->params.speed == DWC2_SPEED_PARAM_LOW) &&
235 	    hsotg->params.phy_type == DWC2_PHY_TYPE_PARAM_FS) {
236 		/* If FS/LS mode with FS/LS PHY */
237 		retval = dwc2_fs_phy_init(hsotg, select_phy);
238 		if (retval)
239 			return retval;
240 	} else {
241 		/* High speed PHY */
242 		retval = dwc2_hs_phy_init(hsotg, select_phy);
243 		if (retval)
244 			return retval;
245 	}
246 
247 	if (hsotg->hw_params.hs_phy_type == GHWCFG2_HS_PHY_TYPE_ULPI &&
248 	    hsotg->hw_params.fs_phy_type == GHWCFG2_FS_PHY_TYPE_DEDICATED &&
249 	    hsotg->params.ulpi_fs_ls) {
250 		dev_dbg(hsotg->dev, "Setting ULPI FSLS\n");
251 		usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
252 		usbcfg |= GUSBCFG_ULPI_FS_LS;
253 		usbcfg |= GUSBCFG_ULPI_CLK_SUSP_M;
254 		dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
255 	} else {
256 		usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
257 		usbcfg &= ~GUSBCFG_ULPI_FS_LS;
258 		usbcfg &= ~GUSBCFG_ULPI_CLK_SUSP_M;
259 		dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
260 	}
261 
262 	return retval;
263 }
264 
265 static int dwc2_gahbcfg_init(struct dwc2_hsotg *hsotg)
266 {
267 	u32 ahbcfg = dwc2_readl(hsotg->regs + GAHBCFG);
268 
269 	switch (hsotg->hw_params.arch) {
270 	case GHWCFG2_EXT_DMA_ARCH:
271 		dev_err(hsotg->dev, "External DMA Mode not supported\n");
272 		return -EINVAL;
273 
274 	case GHWCFG2_INT_DMA_ARCH:
275 		dev_dbg(hsotg->dev, "Internal DMA Mode\n");
276 		if (hsotg->params.ahbcfg != -1) {
277 			ahbcfg &= GAHBCFG_CTRL_MASK;
278 			ahbcfg |= hsotg->params.ahbcfg &
279 				  ~GAHBCFG_CTRL_MASK;
280 		}
281 		break;
282 
283 	case GHWCFG2_SLAVE_ONLY_ARCH:
284 	default:
285 		dev_dbg(hsotg->dev, "Slave Only Mode\n");
286 		break;
287 	}
288 
289 	dev_dbg(hsotg->dev, "host_dma:%d dma_desc_enable:%d\n",
290 		hsotg->params.host_dma,
291 		hsotg->params.dma_desc_enable);
292 
293 	if (hsotg->params.host_dma) {
294 		if (hsotg->params.dma_desc_enable)
295 			dev_dbg(hsotg->dev, "Using Descriptor DMA mode\n");
296 		else
297 			dev_dbg(hsotg->dev, "Using Buffer DMA mode\n");
298 	} else {
299 		dev_dbg(hsotg->dev, "Using Slave mode\n");
300 		hsotg->params.dma_desc_enable = false;
301 	}
302 
303 	if (hsotg->params.host_dma)
304 		ahbcfg |= GAHBCFG_DMA_EN;
305 
306 	dwc2_writel(ahbcfg, hsotg->regs + GAHBCFG);
307 
308 	return 0;
309 }
310 
311 static void dwc2_gusbcfg_init(struct dwc2_hsotg *hsotg)
312 {
313 	u32 usbcfg;
314 
315 	usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
316 	usbcfg &= ~(GUSBCFG_HNPCAP | GUSBCFG_SRPCAP);
317 
318 	switch (hsotg->hw_params.op_mode) {
319 	case GHWCFG2_OP_MODE_HNP_SRP_CAPABLE:
320 		if (hsotg->params.otg_cap ==
321 				DWC2_CAP_PARAM_HNP_SRP_CAPABLE)
322 			usbcfg |= GUSBCFG_HNPCAP;
323 		if (hsotg->params.otg_cap !=
324 				DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE)
325 			usbcfg |= GUSBCFG_SRPCAP;
326 		break;
327 
328 	case GHWCFG2_OP_MODE_SRP_ONLY_CAPABLE:
329 	case GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE:
330 	case GHWCFG2_OP_MODE_SRP_CAPABLE_HOST:
331 		if (hsotg->params.otg_cap !=
332 				DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE)
333 			usbcfg |= GUSBCFG_SRPCAP;
334 		break;
335 
336 	case GHWCFG2_OP_MODE_NO_HNP_SRP_CAPABLE:
337 	case GHWCFG2_OP_MODE_NO_SRP_CAPABLE_DEVICE:
338 	case GHWCFG2_OP_MODE_NO_SRP_CAPABLE_HOST:
339 	default:
340 		break;
341 	}
342 
343 	dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
344 }
345 
346 /**
347  * dwc2_enable_host_interrupts() - Enables the Host mode interrupts
348  *
349  * @hsotg: Programming view of DWC_otg controller
350  */
351 static void dwc2_enable_host_interrupts(struct dwc2_hsotg *hsotg)
352 {
353 	u32 intmsk;
354 
355 	dev_dbg(hsotg->dev, "%s()\n", __func__);
356 
357 	/* Disable all interrupts */
358 	dwc2_writel(0, hsotg->regs + GINTMSK);
359 	dwc2_writel(0, hsotg->regs + HAINTMSK);
360 
361 	/* Enable the common interrupts */
362 	dwc2_enable_common_interrupts(hsotg);
363 
364 	/* Enable host mode interrupts without disturbing common interrupts */
365 	intmsk = dwc2_readl(hsotg->regs + GINTMSK);
366 	intmsk |= GINTSTS_DISCONNINT | GINTSTS_PRTINT | GINTSTS_HCHINT;
367 	dwc2_writel(intmsk, hsotg->regs + GINTMSK);
368 }
369 
370 /**
371  * dwc2_disable_host_interrupts() - Disables the Host Mode interrupts
372  *
373  * @hsotg: Programming view of DWC_otg controller
374  */
375 static void dwc2_disable_host_interrupts(struct dwc2_hsotg *hsotg)
376 {
377 	u32 intmsk = dwc2_readl(hsotg->regs + GINTMSK);
378 
379 	/* Disable host mode interrupts without disturbing common interrupts */
380 	intmsk &= ~(GINTSTS_SOF | GINTSTS_PRTINT | GINTSTS_HCHINT |
381 		    GINTSTS_PTXFEMP | GINTSTS_NPTXFEMP | GINTSTS_DISCONNINT);
382 	dwc2_writel(intmsk, hsotg->regs + GINTMSK);
383 }
384 
385 /*
386  * dwc2_calculate_dynamic_fifo() - Calculates the default fifo size
387  * For system that have a total fifo depth that is smaller than the default
388  * RX + TX fifo size.
389  *
390  * @hsotg: Programming view of DWC_otg controller
391  */
392 static void dwc2_calculate_dynamic_fifo(struct dwc2_hsotg *hsotg)
393 {
394 	struct dwc2_core_params *params = &hsotg->params;
395 	struct dwc2_hw_params *hw = &hsotg->hw_params;
396 	u32 rxfsiz, nptxfsiz, ptxfsiz, total_fifo_size;
397 
398 	total_fifo_size = hw->total_fifo_size;
399 	rxfsiz = params->host_rx_fifo_size;
400 	nptxfsiz = params->host_nperio_tx_fifo_size;
401 	ptxfsiz = params->host_perio_tx_fifo_size;
402 
403 	/*
404 	 * Will use Method 2 defined in the DWC2 spec: minimum FIFO depth
405 	 * allocation with support for high bandwidth endpoints. Synopsys
406 	 * defines MPS(Max Packet size) for a periodic EP=1024, and for
407 	 * non-periodic as 512.
408 	 */
409 	if (total_fifo_size < (rxfsiz + nptxfsiz + ptxfsiz)) {
410 		/*
411 		 * For Buffer DMA mode/Scatter Gather DMA mode
412 		 * 2 * ((Largest Packet size / 4) + 1 + 1) + n
413 		 * with n = number of host channel.
414 		 * 2 * ((1024/4) + 2) = 516
415 		 */
416 		rxfsiz = 516 + hw->host_channels;
417 
418 		/*
419 		 * min non-periodic tx fifo depth
420 		 * 2 * (largest non-periodic USB packet used / 4)
421 		 * 2 * (512/4) = 256
422 		 */
423 		nptxfsiz = 256;
424 
425 		/*
426 		 * min periodic tx fifo depth
427 		 * (largest packet size*MC)/4
428 		 * (1024 * 3)/4 = 768
429 		 */
430 		ptxfsiz = 768;
431 
432 		params->host_rx_fifo_size = rxfsiz;
433 		params->host_nperio_tx_fifo_size = nptxfsiz;
434 		params->host_perio_tx_fifo_size = ptxfsiz;
435 	}
436 
437 	/*
438 	 * If the summation of RX, NPTX and PTX fifo sizes is still
439 	 * bigger than the total_fifo_size, then we have a problem.
440 	 *
441 	 * We won't be able to allocate as many endpoints. Right now,
442 	 * we're just printing an error message, but ideally this FIFO
443 	 * allocation algorithm would be improved in the future.
444 	 *
445 	 * FIXME improve this FIFO allocation algorithm.
446 	 */
447 	if (unlikely(total_fifo_size < (rxfsiz + nptxfsiz + ptxfsiz)))
448 		dev_err(hsotg->dev, "invalid fifo sizes\n");
449 }
450 
451 static void dwc2_config_fifos(struct dwc2_hsotg *hsotg)
452 {
453 	struct dwc2_core_params *params = &hsotg->params;
454 	u32 nptxfsiz, hptxfsiz, dfifocfg, grxfsiz;
455 
456 	if (!params->enable_dynamic_fifo)
457 		return;
458 
459 	dwc2_calculate_dynamic_fifo(hsotg);
460 
461 	/* Rx FIFO */
462 	grxfsiz = dwc2_readl(hsotg->regs + GRXFSIZ);
463 	dev_dbg(hsotg->dev, "initial grxfsiz=%08x\n", grxfsiz);
464 	grxfsiz &= ~GRXFSIZ_DEPTH_MASK;
465 	grxfsiz |= params->host_rx_fifo_size <<
466 		   GRXFSIZ_DEPTH_SHIFT & GRXFSIZ_DEPTH_MASK;
467 	dwc2_writel(grxfsiz, hsotg->regs + GRXFSIZ);
468 	dev_dbg(hsotg->dev, "new grxfsiz=%08x\n",
469 		dwc2_readl(hsotg->regs + GRXFSIZ));
470 
471 	/* Non-periodic Tx FIFO */
472 	dev_dbg(hsotg->dev, "initial gnptxfsiz=%08x\n",
473 		dwc2_readl(hsotg->regs + GNPTXFSIZ));
474 	nptxfsiz = params->host_nperio_tx_fifo_size <<
475 		   FIFOSIZE_DEPTH_SHIFT & FIFOSIZE_DEPTH_MASK;
476 	nptxfsiz |= params->host_rx_fifo_size <<
477 		    FIFOSIZE_STARTADDR_SHIFT & FIFOSIZE_STARTADDR_MASK;
478 	dwc2_writel(nptxfsiz, hsotg->regs + GNPTXFSIZ);
479 	dev_dbg(hsotg->dev, "new gnptxfsiz=%08x\n",
480 		dwc2_readl(hsotg->regs + GNPTXFSIZ));
481 
482 	/* Periodic Tx FIFO */
483 	dev_dbg(hsotg->dev, "initial hptxfsiz=%08x\n",
484 		dwc2_readl(hsotg->regs + HPTXFSIZ));
485 	hptxfsiz = params->host_perio_tx_fifo_size <<
486 		   FIFOSIZE_DEPTH_SHIFT & FIFOSIZE_DEPTH_MASK;
487 	hptxfsiz |= (params->host_rx_fifo_size +
488 		     params->host_nperio_tx_fifo_size) <<
489 		    FIFOSIZE_STARTADDR_SHIFT & FIFOSIZE_STARTADDR_MASK;
490 	dwc2_writel(hptxfsiz, hsotg->regs + HPTXFSIZ);
491 	dev_dbg(hsotg->dev, "new hptxfsiz=%08x\n",
492 		dwc2_readl(hsotg->regs + HPTXFSIZ));
493 
494 	if (hsotg->params.en_multiple_tx_fifo &&
495 	    hsotg->hw_params.snpsid <= DWC2_CORE_REV_2_94a) {
496 		/*
497 		 * Global DFIFOCFG calculation for Host mode -
498 		 * include RxFIFO, NPTXFIFO and HPTXFIFO
499 		 */
500 		dfifocfg = dwc2_readl(hsotg->regs + GDFIFOCFG);
501 		dfifocfg &= ~GDFIFOCFG_EPINFOBASE_MASK;
502 		dfifocfg |= (params->host_rx_fifo_size +
503 			     params->host_nperio_tx_fifo_size +
504 			     params->host_perio_tx_fifo_size) <<
505 			    GDFIFOCFG_EPINFOBASE_SHIFT &
506 			    GDFIFOCFG_EPINFOBASE_MASK;
507 		dwc2_writel(dfifocfg, hsotg->regs + GDFIFOCFG);
508 	}
509 }
510 
511 /**
512  * dwc2_calc_frame_interval() - Calculates the correct frame Interval value for
513  * the HFIR register according to PHY type and speed
514  *
515  * @hsotg: Programming view of DWC_otg controller
516  *
517  * NOTE: The caller can modify the value of the HFIR register only after the
518  * Port Enable bit of the Host Port Control and Status register (HPRT.EnaPort)
519  * has been set
520  */
521 u32 dwc2_calc_frame_interval(struct dwc2_hsotg *hsotg)
522 {
523 	u32 usbcfg;
524 	u32 hprt0;
525 	int clock = 60;	/* default value */
526 
527 	usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
528 	hprt0 = dwc2_readl(hsotg->regs + HPRT0);
529 
530 	if (!(usbcfg & GUSBCFG_PHYSEL) && (usbcfg & GUSBCFG_ULPI_UTMI_SEL) &&
531 	    !(usbcfg & GUSBCFG_PHYIF16))
532 		clock = 60;
533 	if ((usbcfg & GUSBCFG_PHYSEL) && hsotg->hw_params.fs_phy_type ==
534 	    GHWCFG2_FS_PHY_TYPE_SHARED_ULPI)
535 		clock = 48;
536 	if (!(usbcfg & GUSBCFG_PHY_LP_CLK_SEL) && !(usbcfg & GUSBCFG_PHYSEL) &&
537 	    !(usbcfg & GUSBCFG_ULPI_UTMI_SEL) && (usbcfg & GUSBCFG_PHYIF16))
538 		clock = 30;
539 	if (!(usbcfg & GUSBCFG_PHY_LP_CLK_SEL) && !(usbcfg & GUSBCFG_PHYSEL) &&
540 	    !(usbcfg & GUSBCFG_ULPI_UTMI_SEL) && !(usbcfg & GUSBCFG_PHYIF16))
541 		clock = 60;
542 	if ((usbcfg & GUSBCFG_PHY_LP_CLK_SEL) && !(usbcfg & GUSBCFG_PHYSEL) &&
543 	    !(usbcfg & GUSBCFG_ULPI_UTMI_SEL) && (usbcfg & GUSBCFG_PHYIF16))
544 		clock = 48;
545 	if ((usbcfg & GUSBCFG_PHYSEL) && !(usbcfg & GUSBCFG_PHYIF16) &&
546 	    hsotg->hw_params.fs_phy_type == GHWCFG2_FS_PHY_TYPE_SHARED_UTMI)
547 		clock = 48;
548 	if ((usbcfg & GUSBCFG_PHYSEL) &&
549 	    hsotg->hw_params.fs_phy_type == GHWCFG2_FS_PHY_TYPE_DEDICATED)
550 		clock = 48;
551 
552 	if ((hprt0 & HPRT0_SPD_MASK) >> HPRT0_SPD_SHIFT == HPRT0_SPD_HIGH_SPEED)
553 		/* High speed case */
554 		return 125 * clock - 1;
555 
556 	/* FS/LS case */
557 	return 1000 * clock - 1;
558 }
559 
560 /**
561  * dwc2_read_packet() - Reads a packet from the Rx FIFO into the destination
562  * buffer
563  *
564  * @core_if: Programming view of DWC_otg controller
565  * @dest:    Destination buffer for the packet
566  * @bytes:   Number of bytes to copy to the destination
567  */
568 void dwc2_read_packet(struct dwc2_hsotg *hsotg, u8 *dest, u16 bytes)
569 {
570 	u32 __iomem *fifo = hsotg->regs + HCFIFO(0);
571 	u32 *data_buf = (u32 *)dest;
572 	int word_count = (bytes + 3) / 4;
573 	int i;
574 
575 	/*
576 	 * Todo: Account for the case where dest is not dword aligned. This
577 	 * requires reading data from the FIFO into a u32 temp buffer, then
578 	 * moving it into the data buffer.
579 	 */
580 
581 	dev_vdbg(hsotg->dev, "%s(%p,%p,%d)\n", __func__, hsotg, dest, bytes);
582 
583 	for (i = 0; i < word_count; i++, data_buf++)
584 		*data_buf = dwc2_readl(fifo);
585 }
586 
587 /**
588  * dwc2_dump_channel_info() - Prints the state of a host channel
589  *
590  * @hsotg: Programming view of DWC_otg controller
591  * @chan:  Pointer to the channel to dump
592  *
593  * Must be called with interrupt disabled and spinlock held
594  *
595  * NOTE: This function will be removed once the peripheral controller code
596  * is integrated and the driver is stable
597  */
598 static void dwc2_dump_channel_info(struct dwc2_hsotg *hsotg,
599 				   struct dwc2_host_chan *chan)
600 {
601 #ifdef VERBOSE_DEBUG
602 	int num_channels = hsotg->params.host_channels;
603 	struct dwc2_qh *qh;
604 	u32 hcchar;
605 	u32 hcsplt;
606 	u32 hctsiz;
607 	u32 hc_dma;
608 	int i;
609 
610 	if (!chan)
611 		return;
612 
613 	hcchar = dwc2_readl(hsotg->regs + HCCHAR(chan->hc_num));
614 	hcsplt = dwc2_readl(hsotg->regs + HCSPLT(chan->hc_num));
615 	hctsiz = dwc2_readl(hsotg->regs + HCTSIZ(chan->hc_num));
616 	hc_dma = dwc2_readl(hsotg->regs + HCDMA(chan->hc_num));
617 
618 	dev_dbg(hsotg->dev, "  Assigned to channel %p:\n", chan);
619 	dev_dbg(hsotg->dev, "    hcchar 0x%08x, hcsplt 0x%08x\n",
620 		hcchar, hcsplt);
621 	dev_dbg(hsotg->dev, "    hctsiz 0x%08x, hc_dma 0x%08x\n",
622 		hctsiz, hc_dma);
623 	dev_dbg(hsotg->dev, "    dev_addr: %d, ep_num: %d, ep_is_in: %d\n",
624 		chan->dev_addr, chan->ep_num, chan->ep_is_in);
625 	dev_dbg(hsotg->dev, "    ep_type: %d\n", chan->ep_type);
626 	dev_dbg(hsotg->dev, "    max_packet: %d\n", chan->max_packet);
627 	dev_dbg(hsotg->dev, "    data_pid_start: %d\n", chan->data_pid_start);
628 	dev_dbg(hsotg->dev, "    xfer_started: %d\n", chan->xfer_started);
629 	dev_dbg(hsotg->dev, "    halt_status: %d\n", chan->halt_status);
630 	dev_dbg(hsotg->dev, "    xfer_buf: %p\n", chan->xfer_buf);
631 	dev_dbg(hsotg->dev, "    xfer_dma: %08lx\n",
632 		(unsigned long)chan->xfer_dma);
633 	dev_dbg(hsotg->dev, "    xfer_len: %d\n", chan->xfer_len);
634 	dev_dbg(hsotg->dev, "    qh: %p\n", chan->qh);
635 	dev_dbg(hsotg->dev, "  NP inactive sched:\n");
636 	list_for_each_entry(qh, &hsotg->non_periodic_sched_inactive,
637 			    qh_list_entry)
638 		dev_dbg(hsotg->dev, "    %p\n", qh);
639 	dev_dbg(hsotg->dev, "  NP active sched:\n");
640 	list_for_each_entry(qh, &hsotg->non_periodic_sched_active,
641 			    qh_list_entry)
642 		dev_dbg(hsotg->dev, "    %p\n", qh);
643 	dev_dbg(hsotg->dev, "  Channels:\n");
644 	for (i = 0; i < num_channels; i++) {
645 		struct dwc2_host_chan *chan = hsotg->hc_ptr_array[i];
646 
647 		dev_dbg(hsotg->dev, "    %2d: %p\n", i, chan);
648 	}
649 #endif /* VERBOSE_DEBUG */
650 }
651 
652 static int _dwc2_hcd_start(struct usb_hcd *hcd);
653 
654 static void dwc2_host_start(struct dwc2_hsotg *hsotg)
655 {
656 	struct usb_hcd *hcd = dwc2_hsotg_to_hcd(hsotg);
657 
658 	hcd->self.is_b_host = dwc2_hcd_is_b_host(hsotg);
659 	_dwc2_hcd_start(hcd);
660 }
661 
662 static void dwc2_host_disconnect(struct dwc2_hsotg *hsotg)
663 {
664 	struct usb_hcd *hcd = dwc2_hsotg_to_hcd(hsotg);
665 
666 	hcd->self.is_b_host = 0;
667 }
668 
669 static void dwc2_host_hub_info(struct dwc2_hsotg *hsotg, void *context,
670 			       int *hub_addr, int *hub_port)
671 {
672 	struct urb *urb = context;
673 
674 	if (urb->dev->tt)
675 		*hub_addr = urb->dev->tt->hub->devnum;
676 	else
677 		*hub_addr = 0;
678 	*hub_port = urb->dev->ttport;
679 }
680 
681 /*
682  * =========================================================================
683  *  Low Level Host Channel Access Functions
684  * =========================================================================
685  */
686 
687 static void dwc2_hc_enable_slave_ints(struct dwc2_hsotg *hsotg,
688 				      struct dwc2_host_chan *chan)
689 {
690 	u32 hcintmsk = HCINTMSK_CHHLTD;
691 
692 	switch (chan->ep_type) {
693 	case USB_ENDPOINT_XFER_CONTROL:
694 	case USB_ENDPOINT_XFER_BULK:
695 		dev_vdbg(hsotg->dev, "control/bulk\n");
696 		hcintmsk |= HCINTMSK_XFERCOMPL;
697 		hcintmsk |= HCINTMSK_STALL;
698 		hcintmsk |= HCINTMSK_XACTERR;
699 		hcintmsk |= HCINTMSK_DATATGLERR;
700 		if (chan->ep_is_in) {
701 			hcintmsk |= HCINTMSK_BBLERR;
702 		} else {
703 			hcintmsk |= HCINTMSK_NAK;
704 			hcintmsk |= HCINTMSK_NYET;
705 			if (chan->do_ping)
706 				hcintmsk |= HCINTMSK_ACK;
707 		}
708 
709 		if (chan->do_split) {
710 			hcintmsk |= HCINTMSK_NAK;
711 			if (chan->complete_split)
712 				hcintmsk |= HCINTMSK_NYET;
713 			else
714 				hcintmsk |= HCINTMSK_ACK;
715 		}
716 
717 		if (chan->error_state)
718 			hcintmsk |= HCINTMSK_ACK;
719 		break;
720 
721 	case USB_ENDPOINT_XFER_INT:
722 		if (dbg_perio())
723 			dev_vdbg(hsotg->dev, "intr\n");
724 		hcintmsk |= HCINTMSK_XFERCOMPL;
725 		hcintmsk |= HCINTMSK_NAK;
726 		hcintmsk |= HCINTMSK_STALL;
727 		hcintmsk |= HCINTMSK_XACTERR;
728 		hcintmsk |= HCINTMSK_DATATGLERR;
729 		hcintmsk |= HCINTMSK_FRMOVRUN;
730 
731 		if (chan->ep_is_in)
732 			hcintmsk |= HCINTMSK_BBLERR;
733 		if (chan->error_state)
734 			hcintmsk |= HCINTMSK_ACK;
735 		if (chan->do_split) {
736 			if (chan->complete_split)
737 				hcintmsk |= HCINTMSK_NYET;
738 			else
739 				hcintmsk |= HCINTMSK_ACK;
740 		}
741 		break;
742 
743 	case USB_ENDPOINT_XFER_ISOC:
744 		if (dbg_perio())
745 			dev_vdbg(hsotg->dev, "isoc\n");
746 		hcintmsk |= HCINTMSK_XFERCOMPL;
747 		hcintmsk |= HCINTMSK_FRMOVRUN;
748 		hcintmsk |= HCINTMSK_ACK;
749 
750 		if (chan->ep_is_in) {
751 			hcintmsk |= HCINTMSK_XACTERR;
752 			hcintmsk |= HCINTMSK_BBLERR;
753 		}
754 		break;
755 	default:
756 		dev_err(hsotg->dev, "## Unknown EP type ##\n");
757 		break;
758 	}
759 
760 	dwc2_writel(hcintmsk, hsotg->regs + HCINTMSK(chan->hc_num));
761 	if (dbg_hc(chan))
762 		dev_vdbg(hsotg->dev, "set HCINTMSK to %08x\n", hcintmsk);
763 }
764 
765 static void dwc2_hc_enable_dma_ints(struct dwc2_hsotg *hsotg,
766 				    struct dwc2_host_chan *chan)
767 {
768 	u32 hcintmsk = HCINTMSK_CHHLTD;
769 
770 	/*
771 	 * For Descriptor DMA mode core halts the channel on AHB error.
772 	 * Interrupt is not required.
773 	 */
774 	if (!hsotg->params.dma_desc_enable) {
775 		if (dbg_hc(chan))
776 			dev_vdbg(hsotg->dev, "desc DMA disabled\n");
777 		hcintmsk |= HCINTMSK_AHBERR;
778 	} else {
779 		if (dbg_hc(chan))
780 			dev_vdbg(hsotg->dev, "desc DMA enabled\n");
781 		if (chan->ep_type == USB_ENDPOINT_XFER_ISOC)
782 			hcintmsk |= HCINTMSK_XFERCOMPL;
783 	}
784 
785 	if (chan->error_state && !chan->do_split &&
786 	    chan->ep_type != USB_ENDPOINT_XFER_ISOC) {
787 		if (dbg_hc(chan))
788 			dev_vdbg(hsotg->dev, "setting ACK\n");
789 		hcintmsk |= HCINTMSK_ACK;
790 		if (chan->ep_is_in) {
791 			hcintmsk |= HCINTMSK_DATATGLERR;
792 			if (chan->ep_type != USB_ENDPOINT_XFER_INT)
793 				hcintmsk |= HCINTMSK_NAK;
794 		}
795 	}
796 
797 	dwc2_writel(hcintmsk, hsotg->regs + HCINTMSK(chan->hc_num));
798 	if (dbg_hc(chan))
799 		dev_vdbg(hsotg->dev, "set HCINTMSK to %08x\n", hcintmsk);
800 }
801 
802 static void dwc2_hc_enable_ints(struct dwc2_hsotg *hsotg,
803 				struct dwc2_host_chan *chan)
804 {
805 	u32 intmsk;
806 
807 	if (hsotg->params.host_dma) {
808 		if (dbg_hc(chan))
809 			dev_vdbg(hsotg->dev, "DMA enabled\n");
810 		dwc2_hc_enable_dma_ints(hsotg, chan);
811 	} else {
812 		if (dbg_hc(chan))
813 			dev_vdbg(hsotg->dev, "DMA disabled\n");
814 		dwc2_hc_enable_slave_ints(hsotg, chan);
815 	}
816 
817 	/* Enable the top level host channel interrupt */
818 	intmsk = dwc2_readl(hsotg->regs + HAINTMSK);
819 	intmsk |= 1 << chan->hc_num;
820 	dwc2_writel(intmsk, hsotg->regs + HAINTMSK);
821 	if (dbg_hc(chan))
822 		dev_vdbg(hsotg->dev, "set HAINTMSK to %08x\n", intmsk);
823 
824 	/* Make sure host channel interrupts are enabled */
825 	intmsk = dwc2_readl(hsotg->regs + GINTMSK);
826 	intmsk |= GINTSTS_HCHINT;
827 	dwc2_writel(intmsk, hsotg->regs + GINTMSK);
828 	if (dbg_hc(chan))
829 		dev_vdbg(hsotg->dev, "set GINTMSK to %08x\n", intmsk);
830 }
831 
832 /**
833  * dwc2_hc_init() - Prepares a host channel for transferring packets to/from
834  * a specific endpoint
835  *
836  * @hsotg: Programming view of DWC_otg controller
837  * @chan:  Information needed to initialize the host channel
838  *
839  * The HCCHARn register is set up with the characteristics specified in chan.
840  * Host channel interrupts that may need to be serviced while this transfer is
841  * in progress are enabled.
842  */
843 static void dwc2_hc_init(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan)
844 {
845 	u8 hc_num = chan->hc_num;
846 	u32 hcintmsk;
847 	u32 hcchar;
848 	u32 hcsplt = 0;
849 
850 	if (dbg_hc(chan))
851 		dev_vdbg(hsotg->dev, "%s()\n", __func__);
852 
853 	/* Clear old interrupt conditions for this host channel */
854 	hcintmsk = 0xffffffff;
855 	hcintmsk &= ~HCINTMSK_RESERVED14_31;
856 	dwc2_writel(hcintmsk, hsotg->regs + HCINT(hc_num));
857 
858 	/* Enable channel interrupts required for this transfer */
859 	dwc2_hc_enable_ints(hsotg, chan);
860 
861 	/*
862 	 * Program the HCCHARn register with the endpoint characteristics for
863 	 * the current transfer
864 	 */
865 	hcchar = chan->dev_addr << HCCHAR_DEVADDR_SHIFT & HCCHAR_DEVADDR_MASK;
866 	hcchar |= chan->ep_num << HCCHAR_EPNUM_SHIFT & HCCHAR_EPNUM_MASK;
867 	if (chan->ep_is_in)
868 		hcchar |= HCCHAR_EPDIR;
869 	if (chan->speed == USB_SPEED_LOW)
870 		hcchar |= HCCHAR_LSPDDEV;
871 	hcchar |= chan->ep_type << HCCHAR_EPTYPE_SHIFT & HCCHAR_EPTYPE_MASK;
872 	hcchar |= chan->max_packet << HCCHAR_MPS_SHIFT & HCCHAR_MPS_MASK;
873 	dwc2_writel(hcchar, hsotg->regs + HCCHAR(hc_num));
874 	if (dbg_hc(chan)) {
875 		dev_vdbg(hsotg->dev, "set HCCHAR(%d) to %08x\n",
876 			 hc_num, hcchar);
877 
878 		dev_vdbg(hsotg->dev, "%s: Channel %d\n",
879 			 __func__, hc_num);
880 		dev_vdbg(hsotg->dev, "	 Dev Addr: %d\n",
881 			 chan->dev_addr);
882 		dev_vdbg(hsotg->dev, "	 Ep Num: %d\n",
883 			 chan->ep_num);
884 		dev_vdbg(hsotg->dev, "	 Is In: %d\n",
885 			 chan->ep_is_in);
886 		dev_vdbg(hsotg->dev, "	 Is Low Speed: %d\n",
887 			 chan->speed == USB_SPEED_LOW);
888 		dev_vdbg(hsotg->dev, "	 Ep Type: %d\n",
889 			 chan->ep_type);
890 		dev_vdbg(hsotg->dev, "	 Max Pkt: %d\n",
891 			 chan->max_packet);
892 	}
893 
894 	/* Program the HCSPLT register for SPLITs */
895 	if (chan->do_split) {
896 		if (dbg_hc(chan))
897 			dev_vdbg(hsotg->dev,
898 				 "Programming HC %d with split --> %s\n",
899 				 hc_num,
900 				 chan->complete_split ? "CSPLIT" : "SSPLIT");
901 		if (chan->complete_split)
902 			hcsplt |= HCSPLT_COMPSPLT;
903 		hcsplt |= chan->xact_pos << HCSPLT_XACTPOS_SHIFT &
904 			  HCSPLT_XACTPOS_MASK;
905 		hcsplt |= chan->hub_addr << HCSPLT_HUBADDR_SHIFT &
906 			  HCSPLT_HUBADDR_MASK;
907 		hcsplt |= chan->hub_port << HCSPLT_PRTADDR_SHIFT &
908 			  HCSPLT_PRTADDR_MASK;
909 		if (dbg_hc(chan)) {
910 			dev_vdbg(hsotg->dev, "	  comp split %d\n",
911 				 chan->complete_split);
912 			dev_vdbg(hsotg->dev, "	  xact pos %d\n",
913 				 chan->xact_pos);
914 			dev_vdbg(hsotg->dev, "	  hub addr %d\n",
915 				 chan->hub_addr);
916 			dev_vdbg(hsotg->dev, "	  hub port %d\n",
917 				 chan->hub_port);
918 			dev_vdbg(hsotg->dev, "	  is_in %d\n",
919 				 chan->ep_is_in);
920 			dev_vdbg(hsotg->dev, "	  Max Pkt %d\n",
921 				 chan->max_packet);
922 			dev_vdbg(hsotg->dev, "	  xferlen %d\n",
923 				 chan->xfer_len);
924 		}
925 	}
926 
927 	dwc2_writel(hcsplt, hsotg->regs + HCSPLT(hc_num));
928 }
929 
930 /**
931  * dwc2_hc_halt() - Attempts to halt a host channel
932  *
933  * @hsotg:       Controller register interface
934  * @chan:        Host channel to halt
935  * @halt_status: Reason for halting the channel
936  *
937  * This function should only be called in Slave mode or to abort a transfer in
938  * either Slave mode or DMA mode. Under normal circumstances in DMA mode, the
939  * controller halts the channel when the transfer is complete or a condition
940  * occurs that requires application intervention.
941  *
942  * In slave mode, checks for a free request queue entry, then sets the Channel
943  * Enable and Channel Disable bits of the Host Channel Characteristics
944  * register of the specified channel to intiate the halt. If there is no free
945  * request queue entry, sets only the Channel Disable bit of the HCCHARn
946  * register to flush requests for this channel. In the latter case, sets a
947  * flag to indicate that the host channel needs to be halted when a request
948  * queue slot is open.
949  *
950  * In DMA mode, always sets the Channel Enable and Channel Disable bits of the
951  * HCCHARn register. The controller ensures there is space in the request
952  * queue before submitting the halt request.
953  *
954  * Some time may elapse before the core flushes any posted requests for this
955  * host channel and halts. The Channel Halted interrupt handler completes the
956  * deactivation of the host channel.
957  */
958 void dwc2_hc_halt(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan,
959 		  enum dwc2_halt_status halt_status)
960 {
961 	u32 nptxsts, hptxsts, hcchar;
962 
963 	if (dbg_hc(chan))
964 		dev_vdbg(hsotg->dev, "%s()\n", __func__);
965 	if (halt_status == DWC2_HC_XFER_NO_HALT_STATUS)
966 		dev_err(hsotg->dev, "!!! halt_status = %d !!!\n", halt_status);
967 
968 	if (halt_status == DWC2_HC_XFER_URB_DEQUEUE ||
969 	    halt_status == DWC2_HC_XFER_AHB_ERR) {
970 		/*
971 		 * Disable all channel interrupts except Ch Halted. The QTD
972 		 * and QH state associated with this transfer has been cleared
973 		 * (in the case of URB_DEQUEUE), so the channel needs to be
974 		 * shut down carefully to prevent crashes.
975 		 */
976 		u32 hcintmsk = HCINTMSK_CHHLTD;
977 
978 		dev_vdbg(hsotg->dev, "dequeue/error\n");
979 		dwc2_writel(hcintmsk, hsotg->regs + HCINTMSK(chan->hc_num));
980 
981 		/*
982 		 * Make sure no other interrupts besides halt are currently
983 		 * pending. Handling another interrupt could cause a crash due
984 		 * to the QTD and QH state.
985 		 */
986 		dwc2_writel(~hcintmsk, hsotg->regs + HCINT(chan->hc_num));
987 
988 		/*
989 		 * Make sure the halt status is set to URB_DEQUEUE or AHB_ERR
990 		 * even if the channel was already halted for some other
991 		 * reason
992 		 */
993 		chan->halt_status = halt_status;
994 
995 		hcchar = dwc2_readl(hsotg->regs + HCCHAR(chan->hc_num));
996 		if (!(hcchar & HCCHAR_CHENA)) {
997 			/*
998 			 * The channel is either already halted or it hasn't
999 			 * started yet. In DMA mode, the transfer may halt if
1000 			 * it finishes normally or a condition occurs that
1001 			 * requires driver intervention. Don't want to halt
1002 			 * the channel again. In either Slave or DMA mode,
1003 			 * it's possible that the transfer has been assigned
1004 			 * to a channel, but not started yet when an URB is
1005 			 * dequeued. Don't want to halt a channel that hasn't
1006 			 * started yet.
1007 			 */
1008 			return;
1009 		}
1010 	}
1011 	if (chan->halt_pending) {
1012 		/*
1013 		 * A halt has already been issued for this channel. This might
1014 		 * happen when a transfer is aborted by a higher level in
1015 		 * the stack.
1016 		 */
1017 		dev_vdbg(hsotg->dev,
1018 			 "*** %s: Channel %d, chan->halt_pending already set ***\n",
1019 			 __func__, chan->hc_num);
1020 		return;
1021 	}
1022 
1023 	hcchar = dwc2_readl(hsotg->regs + HCCHAR(chan->hc_num));
1024 
1025 	/* No need to set the bit in DDMA for disabling the channel */
1026 	/* TODO check it everywhere channel is disabled */
1027 	if (!hsotg->params.dma_desc_enable) {
1028 		if (dbg_hc(chan))
1029 			dev_vdbg(hsotg->dev, "desc DMA disabled\n");
1030 		hcchar |= HCCHAR_CHENA;
1031 	} else {
1032 		if (dbg_hc(chan))
1033 			dev_dbg(hsotg->dev, "desc DMA enabled\n");
1034 	}
1035 	hcchar |= HCCHAR_CHDIS;
1036 
1037 	if (!hsotg->params.host_dma) {
1038 		if (dbg_hc(chan))
1039 			dev_vdbg(hsotg->dev, "DMA not enabled\n");
1040 		hcchar |= HCCHAR_CHENA;
1041 
1042 		/* Check for space in the request queue to issue the halt */
1043 		if (chan->ep_type == USB_ENDPOINT_XFER_CONTROL ||
1044 		    chan->ep_type == USB_ENDPOINT_XFER_BULK) {
1045 			dev_vdbg(hsotg->dev, "control/bulk\n");
1046 			nptxsts = dwc2_readl(hsotg->regs + GNPTXSTS);
1047 			if ((nptxsts & TXSTS_QSPCAVAIL_MASK) == 0) {
1048 				dev_vdbg(hsotg->dev, "Disabling channel\n");
1049 				hcchar &= ~HCCHAR_CHENA;
1050 			}
1051 		} else {
1052 			if (dbg_perio())
1053 				dev_vdbg(hsotg->dev, "isoc/intr\n");
1054 			hptxsts = dwc2_readl(hsotg->regs + HPTXSTS);
1055 			if ((hptxsts & TXSTS_QSPCAVAIL_MASK) == 0 ||
1056 			    hsotg->queuing_high_bandwidth) {
1057 				if (dbg_perio())
1058 					dev_vdbg(hsotg->dev, "Disabling channel\n");
1059 				hcchar &= ~HCCHAR_CHENA;
1060 			}
1061 		}
1062 	} else {
1063 		if (dbg_hc(chan))
1064 			dev_vdbg(hsotg->dev, "DMA enabled\n");
1065 	}
1066 
1067 	dwc2_writel(hcchar, hsotg->regs + HCCHAR(chan->hc_num));
1068 	chan->halt_status = halt_status;
1069 
1070 	if (hcchar & HCCHAR_CHENA) {
1071 		if (dbg_hc(chan))
1072 			dev_vdbg(hsotg->dev, "Channel enabled\n");
1073 		chan->halt_pending = 1;
1074 		chan->halt_on_queue = 0;
1075 	} else {
1076 		if (dbg_hc(chan))
1077 			dev_vdbg(hsotg->dev, "Channel disabled\n");
1078 		chan->halt_on_queue = 1;
1079 	}
1080 
1081 	if (dbg_hc(chan)) {
1082 		dev_vdbg(hsotg->dev, "%s: Channel %d\n", __func__,
1083 			 chan->hc_num);
1084 		dev_vdbg(hsotg->dev, "	 hcchar: 0x%08x\n",
1085 			 hcchar);
1086 		dev_vdbg(hsotg->dev, "	 halt_pending: %d\n",
1087 			 chan->halt_pending);
1088 		dev_vdbg(hsotg->dev, "	 halt_on_queue: %d\n",
1089 			 chan->halt_on_queue);
1090 		dev_vdbg(hsotg->dev, "	 halt_status: %d\n",
1091 			 chan->halt_status);
1092 	}
1093 }
1094 
1095 /**
1096  * dwc2_hc_cleanup() - Clears the transfer state for a host channel
1097  *
1098  * @hsotg: Programming view of DWC_otg controller
1099  * @chan:  Identifies the host channel to clean up
1100  *
1101  * This function is normally called after a transfer is done and the host
1102  * channel is being released
1103  */
1104 void dwc2_hc_cleanup(struct dwc2_hsotg *hsotg, struct dwc2_host_chan *chan)
1105 {
1106 	u32 hcintmsk;
1107 
1108 	chan->xfer_started = 0;
1109 
1110 	list_del_init(&chan->split_order_list_entry);
1111 
1112 	/*
1113 	 * Clear channel interrupt enables and any unhandled channel interrupt
1114 	 * conditions
1115 	 */
1116 	dwc2_writel(0, hsotg->regs + HCINTMSK(chan->hc_num));
1117 	hcintmsk = 0xffffffff;
1118 	hcintmsk &= ~HCINTMSK_RESERVED14_31;
1119 	dwc2_writel(hcintmsk, hsotg->regs + HCINT(chan->hc_num));
1120 }
1121 
1122 /**
1123  * dwc2_hc_set_even_odd_frame() - Sets the channel property that indicates in
1124  * which frame a periodic transfer should occur
1125  *
1126  * @hsotg:  Programming view of DWC_otg controller
1127  * @chan:   Identifies the host channel to set up and its properties
1128  * @hcchar: Current value of the HCCHAR register for the specified host channel
1129  *
1130  * This function has no effect on non-periodic transfers
1131  */
1132 static void dwc2_hc_set_even_odd_frame(struct dwc2_hsotg *hsotg,
1133 				       struct dwc2_host_chan *chan, u32 *hcchar)
1134 {
1135 	if (chan->ep_type == USB_ENDPOINT_XFER_INT ||
1136 	    chan->ep_type == USB_ENDPOINT_XFER_ISOC) {
1137 		int host_speed;
1138 		int xfer_ns;
1139 		int xfer_us;
1140 		int bytes_in_fifo;
1141 		u16 fifo_space;
1142 		u16 frame_number;
1143 		u16 wire_frame;
1144 
1145 		/*
1146 		 * Try to figure out if we're an even or odd frame. If we set
1147 		 * even and the current frame number is even the the transfer
1148 		 * will happen immediately.  Similar if both are odd. If one is
1149 		 * even and the other is odd then the transfer will happen when
1150 		 * the frame number ticks.
1151 		 *
1152 		 * There's a bit of a balancing act to get this right.
1153 		 * Sometimes we may want to send data in the current frame (AK
1154 		 * right away).  We might want to do this if the frame number
1155 		 * _just_ ticked, but we might also want to do this in order
1156 		 * to continue a split transaction that happened late in a
1157 		 * microframe (so we didn't know to queue the next transfer
1158 		 * until the frame number had ticked).  The problem is that we
1159 		 * need a lot of knowledge to know if there's actually still
1160 		 * time to send things or if it would be better to wait until
1161 		 * the next frame.
1162 		 *
1163 		 * We can look at how much time is left in the current frame
1164 		 * and make a guess about whether we'll have time to transfer.
1165 		 * We'll do that.
1166 		 */
1167 
1168 		/* Get speed host is running at */
1169 		host_speed = (chan->speed != USB_SPEED_HIGH &&
1170 			      !chan->do_split) ? chan->speed : USB_SPEED_HIGH;
1171 
1172 		/* See how many bytes are in the periodic FIFO right now */
1173 		fifo_space = (dwc2_readl(hsotg->regs + HPTXSTS) &
1174 			      TXSTS_FSPCAVAIL_MASK) >> TXSTS_FSPCAVAIL_SHIFT;
1175 		bytes_in_fifo = sizeof(u32) *
1176 				(hsotg->params.host_perio_tx_fifo_size -
1177 				 fifo_space);
1178 
1179 		/*
1180 		 * Roughly estimate bus time for everything in the periodic
1181 		 * queue + our new transfer.  This is "rough" because we're
1182 		 * using a function that makes takes into account IN/OUT
1183 		 * and INT/ISO and we're just slamming in one value for all
1184 		 * transfers.  This should be an over-estimate and that should
1185 		 * be OK, but we can probably tighten it.
1186 		 */
1187 		xfer_ns = usb_calc_bus_time(host_speed, false, false,
1188 					    chan->xfer_len + bytes_in_fifo);
1189 		xfer_us = NS_TO_US(xfer_ns);
1190 
1191 		/* See what frame number we'll be at by the time we finish */
1192 		frame_number = dwc2_hcd_get_future_frame_number(hsotg, xfer_us);
1193 
1194 		/* This is when we were scheduled to be on the wire */
1195 		wire_frame = dwc2_frame_num_inc(chan->qh->next_active_frame, 1);
1196 
1197 		/*
1198 		 * If we'd finish _after_ the frame we're scheduled in then
1199 		 * it's hopeless.  Just schedule right away and hope for the
1200 		 * best.  Note that it _might_ be wise to call back into the
1201 		 * scheduler to pick a better frame, but this is better than
1202 		 * nothing.
1203 		 */
1204 		if (dwc2_frame_num_gt(frame_number, wire_frame)) {
1205 			dwc2_sch_vdbg(hsotg,
1206 				      "QH=%p EO MISS fr=%04x=>%04x (%+d)\n",
1207 				      chan->qh, wire_frame, frame_number,
1208 				      dwc2_frame_num_dec(frame_number,
1209 							 wire_frame));
1210 			wire_frame = frame_number;
1211 
1212 			/*
1213 			 * We picked a different frame number; communicate this
1214 			 * back to the scheduler so it doesn't try to schedule
1215 			 * another in the same frame.
1216 			 *
1217 			 * Remember that next_active_frame is 1 before the wire
1218 			 * frame.
1219 			 */
1220 			chan->qh->next_active_frame =
1221 				dwc2_frame_num_dec(frame_number, 1);
1222 		}
1223 
1224 		if (wire_frame & 1)
1225 			*hcchar |= HCCHAR_ODDFRM;
1226 		else
1227 			*hcchar &= ~HCCHAR_ODDFRM;
1228 	}
1229 }
1230 
1231 static void dwc2_set_pid_isoc(struct dwc2_host_chan *chan)
1232 {
1233 	/* Set up the initial PID for the transfer */
1234 	if (chan->speed == USB_SPEED_HIGH) {
1235 		if (chan->ep_is_in) {
1236 			if (chan->multi_count == 1)
1237 				chan->data_pid_start = DWC2_HC_PID_DATA0;
1238 			else if (chan->multi_count == 2)
1239 				chan->data_pid_start = DWC2_HC_PID_DATA1;
1240 			else
1241 				chan->data_pid_start = DWC2_HC_PID_DATA2;
1242 		} else {
1243 			if (chan->multi_count == 1)
1244 				chan->data_pid_start = DWC2_HC_PID_DATA0;
1245 			else
1246 				chan->data_pid_start = DWC2_HC_PID_MDATA;
1247 		}
1248 	} else {
1249 		chan->data_pid_start = DWC2_HC_PID_DATA0;
1250 	}
1251 }
1252 
1253 /**
1254  * dwc2_hc_write_packet() - Writes a packet into the Tx FIFO associated with
1255  * the Host Channel
1256  *
1257  * @hsotg: Programming view of DWC_otg controller
1258  * @chan:  Information needed to initialize the host channel
1259  *
1260  * This function should only be called in Slave mode. For a channel associated
1261  * with a non-periodic EP, the non-periodic Tx FIFO is written. For a channel
1262  * associated with a periodic EP, the periodic Tx FIFO is written.
1263  *
1264  * Upon return the xfer_buf and xfer_count fields in chan are incremented by
1265  * the number of bytes written to the Tx FIFO.
1266  */
1267 static void dwc2_hc_write_packet(struct dwc2_hsotg *hsotg,
1268 				 struct dwc2_host_chan *chan)
1269 {
1270 	u32 i;
1271 	u32 remaining_count;
1272 	u32 byte_count;
1273 	u32 dword_count;
1274 	u32 __iomem *data_fifo;
1275 	u32 *data_buf = (u32 *)chan->xfer_buf;
1276 
1277 	if (dbg_hc(chan))
1278 		dev_vdbg(hsotg->dev, "%s()\n", __func__);
1279 
1280 	data_fifo = (u32 __iomem *)(hsotg->regs + HCFIFO(chan->hc_num));
1281 
1282 	remaining_count = chan->xfer_len - chan->xfer_count;
1283 	if (remaining_count > chan->max_packet)
1284 		byte_count = chan->max_packet;
1285 	else
1286 		byte_count = remaining_count;
1287 
1288 	dword_count = (byte_count + 3) / 4;
1289 
1290 	if (((unsigned long)data_buf & 0x3) == 0) {
1291 		/* xfer_buf is DWORD aligned */
1292 		for (i = 0; i < dword_count; i++, data_buf++)
1293 			dwc2_writel(*data_buf, data_fifo);
1294 	} else {
1295 		/* xfer_buf is not DWORD aligned */
1296 		for (i = 0; i < dword_count; i++, data_buf++) {
1297 			u32 data = data_buf[0] | data_buf[1] << 8 |
1298 				   data_buf[2] << 16 | data_buf[3] << 24;
1299 			dwc2_writel(data, data_fifo);
1300 		}
1301 	}
1302 
1303 	chan->xfer_count += byte_count;
1304 	chan->xfer_buf += byte_count;
1305 }
1306 
1307 /**
1308  * dwc2_hc_do_ping() - Starts a PING transfer
1309  *
1310  * @hsotg: Programming view of DWC_otg controller
1311  * @chan:  Information needed to initialize the host channel
1312  *
1313  * This function should only be called in Slave mode. The Do Ping bit is set in
1314  * the HCTSIZ register, then the channel is enabled.
1315  */
1316 static void dwc2_hc_do_ping(struct dwc2_hsotg *hsotg,
1317 			    struct dwc2_host_chan *chan)
1318 {
1319 	u32 hcchar;
1320 	u32 hctsiz;
1321 
1322 	if (dbg_hc(chan))
1323 		dev_vdbg(hsotg->dev, "%s: Channel %d\n", __func__,
1324 			 chan->hc_num);
1325 
1326 	hctsiz = TSIZ_DOPNG;
1327 	hctsiz |= 1 << TSIZ_PKTCNT_SHIFT;
1328 	dwc2_writel(hctsiz, hsotg->regs + HCTSIZ(chan->hc_num));
1329 
1330 	hcchar = dwc2_readl(hsotg->regs + HCCHAR(chan->hc_num));
1331 	hcchar |= HCCHAR_CHENA;
1332 	hcchar &= ~HCCHAR_CHDIS;
1333 	dwc2_writel(hcchar, hsotg->regs + HCCHAR(chan->hc_num));
1334 }
1335 
1336 /**
1337  * dwc2_hc_start_transfer() - Does the setup for a data transfer for a host
1338  * channel and starts the transfer
1339  *
1340  * @hsotg: Programming view of DWC_otg controller
1341  * @chan:  Information needed to initialize the host channel. The xfer_len value
1342  *         may be reduced to accommodate the max widths of the XferSize and
1343  *         PktCnt fields in the HCTSIZn register. The multi_count value may be
1344  *         changed to reflect the final xfer_len value.
1345  *
1346  * This function may be called in either Slave mode or DMA mode. In Slave mode,
1347  * the caller must ensure that there is sufficient space in the request queue
1348  * and Tx Data FIFO.
1349  *
1350  * For an OUT transfer in Slave mode, it loads a data packet into the
1351  * appropriate FIFO. If necessary, additional data packets are loaded in the
1352  * Host ISR.
1353  *
1354  * For an IN transfer in Slave mode, a data packet is requested. The data
1355  * packets are unloaded from the Rx FIFO in the Host ISR. If necessary,
1356  * additional data packets are requested in the Host ISR.
1357  *
1358  * For a PING transfer in Slave mode, the Do Ping bit is set in the HCTSIZ
1359  * register along with a packet count of 1 and the channel is enabled. This
1360  * causes a single PING transaction to occur. Other fields in HCTSIZ are
1361  * simply set to 0 since no data transfer occurs in this case.
1362  *
1363  * For a PING transfer in DMA mode, the HCTSIZ register is initialized with
1364  * all the information required to perform the subsequent data transfer. In
1365  * addition, the Do Ping bit is set in the HCTSIZ register. In this case, the
1366  * controller performs the entire PING protocol, then starts the data
1367  * transfer.
1368  */
1369 static void dwc2_hc_start_transfer(struct dwc2_hsotg *hsotg,
1370 				   struct dwc2_host_chan *chan)
1371 {
1372 	u32 max_hc_xfer_size = hsotg->params.max_transfer_size;
1373 	u16 max_hc_pkt_count = hsotg->params.max_packet_count;
1374 	u32 hcchar;
1375 	u32 hctsiz = 0;
1376 	u16 num_packets;
1377 	u32 ec_mc;
1378 
1379 	if (dbg_hc(chan))
1380 		dev_vdbg(hsotg->dev, "%s()\n", __func__);
1381 
1382 	if (chan->do_ping) {
1383 		if (!hsotg->params.host_dma) {
1384 			if (dbg_hc(chan))
1385 				dev_vdbg(hsotg->dev, "ping, no DMA\n");
1386 			dwc2_hc_do_ping(hsotg, chan);
1387 			chan->xfer_started = 1;
1388 			return;
1389 		}
1390 
1391 		if (dbg_hc(chan))
1392 			dev_vdbg(hsotg->dev, "ping, DMA\n");
1393 
1394 		hctsiz |= TSIZ_DOPNG;
1395 	}
1396 
1397 	if (chan->do_split) {
1398 		if (dbg_hc(chan))
1399 			dev_vdbg(hsotg->dev, "split\n");
1400 		num_packets = 1;
1401 
1402 		if (chan->complete_split && !chan->ep_is_in)
1403 			/*
1404 			 * For CSPLIT OUT Transfer, set the size to 0 so the
1405 			 * core doesn't expect any data written to the FIFO
1406 			 */
1407 			chan->xfer_len = 0;
1408 		else if (chan->ep_is_in || chan->xfer_len > chan->max_packet)
1409 			chan->xfer_len = chan->max_packet;
1410 		else if (!chan->ep_is_in && chan->xfer_len > 188)
1411 			chan->xfer_len = 188;
1412 
1413 		hctsiz |= chan->xfer_len << TSIZ_XFERSIZE_SHIFT &
1414 			  TSIZ_XFERSIZE_MASK;
1415 
1416 		/* For split set ec_mc for immediate retries */
1417 		if (chan->ep_type == USB_ENDPOINT_XFER_INT ||
1418 		    chan->ep_type == USB_ENDPOINT_XFER_ISOC)
1419 			ec_mc = 3;
1420 		else
1421 			ec_mc = 1;
1422 	} else {
1423 		if (dbg_hc(chan))
1424 			dev_vdbg(hsotg->dev, "no split\n");
1425 		/*
1426 		 * Ensure that the transfer length and packet count will fit
1427 		 * in the widths allocated for them in the HCTSIZn register
1428 		 */
1429 		if (chan->ep_type == USB_ENDPOINT_XFER_INT ||
1430 		    chan->ep_type == USB_ENDPOINT_XFER_ISOC) {
1431 			/*
1432 			 * Make sure the transfer size is no larger than one
1433 			 * (micro)frame's worth of data. (A check was done
1434 			 * when the periodic transfer was accepted to ensure
1435 			 * that a (micro)frame's worth of data can be
1436 			 * programmed into a channel.)
1437 			 */
1438 			u32 max_periodic_len =
1439 				chan->multi_count * chan->max_packet;
1440 
1441 			if (chan->xfer_len > max_periodic_len)
1442 				chan->xfer_len = max_periodic_len;
1443 		} else if (chan->xfer_len > max_hc_xfer_size) {
1444 			/*
1445 			 * Make sure that xfer_len is a multiple of max packet
1446 			 * size
1447 			 */
1448 			chan->xfer_len =
1449 				max_hc_xfer_size - chan->max_packet + 1;
1450 		}
1451 
1452 		if (chan->xfer_len > 0) {
1453 			num_packets = (chan->xfer_len + chan->max_packet - 1) /
1454 					chan->max_packet;
1455 			if (num_packets > max_hc_pkt_count) {
1456 				num_packets = max_hc_pkt_count;
1457 				chan->xfer_len = num_packets * chan->max_packet;
1458 			}
1459 		} else {
1460 			/* Need 1 packet for transfer length of 0 */
1461 			num_packets = 1;
1462 		}
1463 
1464 		if (chan->ep_is_in)
1465 			/*
1466 			 * Always program an integral # of max packets for IN
1467 			 * transfers
1468 			 */
1469 			chan->xfer_len = num_packets * chan->max_packet;
1470 
1471 		if (chan->ep_type == USB_ENDPOINT_XFER_INT ||
1472 		    chan->ep_type == USB_ENDPOINT_XFER_ISOC)
1473 			/*
1474 			 * Make sure that the multi_count field matches the
1475 			 * actual transfer length
1476 			 */
1477 			chan->multi_count = num_packets;
1478 
1479 		if (chan->ep_type == USB_ENDPOINT_XFER_ISOC)
1480 			dwc2_set_pid_isoc(chan);
1481 
1482 		hctsiz |= chan->xfer_len << TSIZ_XFERSIZE_SHIFT &
1483 			  TSIZ_XFERSIZE_MASK;
1484 
1485 		/* The ec_mc gets the multi_count for non-split */
1486 		ec_mc = chan->multi_count;
1487 	}
1488 
1489 	chan->start_pkt_count = num_packets;
1490 	hctsiz |= num_packets << TSIZ_PKTCNT_SHIFT & TSIZ_PKTCNT_MASK;
1491 	hctsiz |= chan->data_pid_start << TSIZ_SC_MC_PID_SHIFT &
1492 		  TSIZ_SC_MC_PID_MASK;
1493 	dwc2_writel(hctsiz, hsotg->regs + HCTSIZ(chan->hc_num));
1494 	if (dbg_hc(chan)) {
1495 		dev_vdbg(hsotg->dev, "Wrote %08x to HCTSIZ(%d)\n",
1496 			 hctsiz, chan->hc_num);
1497 
1498 		dev_vdbg(hsotg->dev, "%s: Channel %d\n", __func__,
1499 			 chan->hc_num);
1500 		dev_vdbg(hsotg->dev, "	 Xfer Size: %d\n",
1501 			 (hctsiz & TSIZ_XFERSIZE_MASK) >>
1502 			 TSIZ_XFERSIZE_SHIFT);
1503 		dev_vdbg(hsotg->dev, "	 Num Pkts: %d\n",
1504 			 (hctsiz & TSIZ_PKTCNT_MASK) >>
1505 			 TSIZ_PKTCNT_SHIFT);
1506 		dev_vdbg(hsotg->dev, "	 Start PID: %d\n",
1507 			 (hctsiz & TSIZ_SC_MC_PID_MASK) >>
1508 			 TSIZ_SC_MC_PID_SHIFT);
1509 	}
1510 
1511 	if (hsotg->params.host_dma) {
1512 		dwc2_writel((u32)chan->xfer_dma,
1513 			    hsotg->regs + HCDMA(chan->hc_num));
1514 		if (dbg_hc(chan))
1515 			dev_vdbg(hsotg->dev, "Wrote %08lx to HCDMA(%d)\n",
1516 				 (unsigned long)chan->xfer_dma, chan->hc_num);
1517 	}
1518 
1519 	/* Start the split */
1520 	if (chan->do_split) {
1521 		u32 hcsplt = dwc2_readl(hsotg->regs + HCSPLT(chan->hc_num));
1522 
1523 		hcsplt |= HCSPLT_SPLTENA;
1524 		dwc2_writel(hcsplt, hsotg->regs + HCSPLT(chan->hc_num));
1525 	}
1526 
1527 	hcchar = dwc2_readl(hsotg->regs + HCCHAR(chan->hc_num));
1528 	hcchar &= ~HCCHAR_MULTICNT_MASK;
1529 	hcchar |= (ec_mc << HCCHAR_MULTICNT_SHIFT) & HCCHAR_MULTICNT_MASK;
1530 	dwc2_hc_set_even_odd_frame(hsotg, chan, &hcchar);
1531 
1532 	if (hcchar & HCCHAR_CHDIS)
1533 		dev_warn(hsotg->dev,
1534 			 "%s: chdis set, channel %d, hcchar 0x%08x\n",
1535 			 __func__, chan->hc_num, hcchar);
1536 
1537 	/* Set host channel enable after all other setup is complete */
1538 	hcchar |= HCCHAR_CHENA;
1539 	hcchar &= ~HCCHAR_CHDIS;
1540 
1541 	if (dbg_hc(chan))
1542 		dev_vdbg(hsotg->dev, "	 Multi Cnt: %d\n",
1543 			 (hcchar & HCCHAR_MULTICNT_MASK) >>
1544 			 HCCHAR_MULTICNT_SHIFT);
1545 
1546 	dwc2_writel(hcchar, hsotg->regs + HCCHAR(chan->hc_num));
1547 	if (dbg_hc(chan))
1548 		dev_vdbg(hsotg->dev, "Wrote %08x to HCCHAR(%d)\n", hcchar,
1549 			 chan->hc_num);
1550 
1551 	chan->xfer_started = 1;
1552 	chan->requests++;
1553 
1554 	if (!hsotg->params.host_dma &&
1555 	    !chan->ep_is_in && chan->xfer_len > 0)
1556 		/* Load OUT packet into the appropriate Tx FIFO */
1557 		dwc2_hc_write_packet(hsotg, chan);
1558 }
1559 
1560 /**
1561  * dwc2_hc_start_transfer_ddma() - Does the setup for a data transfer for a
1562  * host channel and starts the transfer in Descriptor DMA mode
1563  *
1564  * @hsotg: Programming view of DWC_otg controller
1565  * @chan:  Information needed to initialize the host channel
1566  *
1567  * Initializes HCTSIZ register. For a PING transfer the Do Ping bit is set.
1568  * Sets PID and NTD values. For periodic transfers initializes SCHED_INFO field
1569  * with micro-frame bitmap.
1570  *
1571  * Initializes HCDMA register with descriptor list address and CTD value then
1572  * starts the transfer via enabling the channel.
1573  */
1574 void dwc2_hc_start_transfer_ddma(struct dwc2_hsotg *hsotg,
1575 				 struct dwc2_host_chan *chan)
1576 {
1577 	u32 hcchar;
1578 	u32 hctsiz = 0;
1579 
1580 	if (chan->do_ping)
1581 		hctsiz |= TSIZ_DOPNG;
1582 
1583 	if (chan->ep_type == USB_ENDPOINT_XFER_ISOC)
1584 		dwc2_set_pid_isoc(chan);
1585 
1586 	/* Packet Count and Xfer Size are not used in Descriptor DMA mode */
1587 	hctsiz |= chan->data_pid_start << TSIZ_SC_MC_PID_SHIFT &
1588 		  TSIZ_SC_MC_PID_MASK;
1589 
1590 	/* 0 - 1 descriptor, 1 - 2 descriptors, etc */
1591 	hctsiz |= (chan->ntd - 1) << TSIZ_NTD_SHIFT & TSIZ_NTD_MASK;
1592 
1593 	/* Non-zero only for high-speed interrupt endpoints */
1594 	hctsiz |= chan->schinfo << TSIZ_SCHINFO_SHIFT & TSIZ_SCHINFO_MASK;
1595 
1596 	if (dbg_hc(chan)) {
1597 		dev_vdbg(hsotg->dev, "%s: Channel %d\n", __func__,
1598 			 chan->hc_num);
1599 		dev_vdbg(hsotg->dev, "	 Start PID: %d\n",
1600 			 chan->data_pid_start);
1601 		dev_vdbg(hsotg->dev, "	 NTD: %d\n", chan->ntd - 1);
1602 	}
1603 
1604 	dwc2_writel(hctsiz, hsotg->regs + HCTSIZ(chan->hc_num));
1605 
1606 	dma_sync_single_for_device(hsotg->dev, chan->desc_list_addr,
1607 				   chan->desc_list_sz, DMA_TO_DEVICE);
1608 
1609 	dwc2_writel(chan->desc_list_addr, hsotg->regs + HCDMA(chan->hc_num));
1610 
1611 	if (dbg_hc(chan))
1612 		dev_vdbg(hsotg->dev, "Wrote %pad to HCDMA(%d)\n",
1613 			 &chan->desc_list_addr, chan->hc_num);
1614 
1615 	hcchar = dwc2_readl(hsotg->regs + HCCHAR(chan->hc_num));
1616 	hcchar &= ~HCCHAR_MULTICNT_MASK;
1617 	hcchar |= chan->multi_count << HCCHAR_MULTICNT_SHIFT &
1618 		  HCCHAR_MULTICNT_MASK;
1619 
1620 	if (hcchar & HCCHAR_CHDIS)
1621 		dev_warn(hsotg->dev,
1622 			 "%s: chdis set, channel %d, hcchar 0x%08x\n",
1623 			 __func__, chan->hc_num, hcchar);
1624 
1625 	/* Set host channel enable after all other setup is complete */
1626 	hcchar |= HCCHAR_CHENA;
1627 	hcchar &= ~HCCHAR_CHDIS;
1628 
1629 	if (dbg_hc(chan))
1630 		dev_vdbg(hsotg->dev, "	 Multi Cnt: %d\n",
1631 			 (hcchar & HCCHAR_MULTICNT_MASK) >>
1632 			 HCCHAR_MULTICNT_SHIFT);
1633 
1634 	dwc2_writel(hcchar, hsotg->regs + HCCHAR(chan->hc_num));
1635 	if (dbg_hc(chan))
1636 		dev_vdbg(hsotg->dev, "Wrote %08x to HCCHAR(%d)\n", hcchar,
1637 			 chan->hc_num);
1638 
1639 	chan->xfer_started = 1;
1640 	chan->requests++;
1641 }
1642 
1643 /**
1644  * dwc2_hc_continue_transfer() - Continues a data transfer that was started by
1645  * a previous call to dwc2_hc_start_transfer()
1646  *
1647  * @hsotg: Programming view of DWC_otg controller
1648  * @chan:  Information needed to initialize the host channel
1649  *
1650  * The caller must ensure there is sufficient space in the request queue and Tx
1651  * Data FIFO. This function should only be called in Slave mode. In DMA mode,
1652  * the controller acts autonomously to complete transfers programmed to a host
1653  * channel.
1654  *
1655  * For an OUT transfer, a new data packet is loaded into the appropriate FIFO
1656  * if there is any data remaining to be queued. For an IN transfer, another
1657  * data packet is always requested. For the SETUP phase of a control transfer,
1658  * this function does nothing.
1659  *
1660  * Return: 1 if a new request is queued, 0 if no more requests are required
1661  * for this transfer
1662  */
1663 static int dwc2_hc_continue_transfer(struct dwc2_hsotg *hsotg,
1664 				     struct dwc2_host_chan *chan)
1665 {
1666 	if (dbg_hc(chan))
1667 		dev_vdbg(hsotg->dev, "%s: Channel %d\n", __func__,
1668 			 chan->hc_num);
1669 
1670 	if (chan->do_split)
1671 		/* SPLITs always queue just once per channel */
1672 		return 0;
1673 
1674 	if (chan->data_pid_start == DWC2_HC_PID_SETUP)
1675 		/* SETUPs are queued only once since they can't be NAK'd */
1676 		return 0;
1677 
1678 	if (chan->ep_is_in) {
1679 		/*
1680 		 * Always queue another request for other IN transfers. If
1681 		 * back-to-back INs are issued and NAKs are received for both,
1682 		 * the driver may still be processing the first NAK when the
1683 		 * second NAK is received. When the interrupt handler clears
1684 		 * the NAK interrupt for the first NAK, the second NAK will
1685 		 * not be seen. So we can't depend on the NAK interrupt
1686 		 * handler to requeue a NAK'd request. Instead, IN requests
1687 		 * are issued each time this function is called. When the
1688 		 * transfer completes, the extra requests for the channel will
1689 		 * be flushed.
1690 		 */
1691 		u32 hcchar = dwc2_readl(hsotg->regs + HCCHAR(chan->hc_num));
1692 
1693 		dwc2_hc_set_even_odd_frame(hsotg, chan, &hcchar);
1694 		hcchar |= HCCHAR_CHENA;
1695 		hcchar &= ~HCCHAR_CHDIS;
1696 		if (dbg_hc(chan))
1697 			dev_vdbg(hsotg->dev, "	 IN xfer: hcchar = 0x%08x\n",
1698 				 hcchar);
1699 		dwc2_writel(hcchar, hsotg->regs + HCCHAR(chan->hc_num));
1700 		chan->requests++;
1701 		return 1;
1702 	}
1703 
1704 	/* OUT transfers */
1705 
1706 	if (chan->xfer_count < chan->xfer_len) {
1707 		if (chan->ep_type == USB_ENDPOINT_XFER_INT ||
1708 		    chan->ep_type == USB_ENDPOINT_XFER_ISOC) {
1709 			u32 hcchar = dwc2_readl(hsotg->regs +
1710 						HCCHAR(chan->hc_num));
1711 
1712 			dwc2_hc_set_even_odd_frame(hsotg, chan,
1713 						   &hcchar);
1714 		}
1715 
1716 		/* Load OUT packet into the appropriate Tx FIFO */
1717 		dwc2_hc_write_packet(hsotg, chan);
1718 		chan->requests++;
1719 		return 1;
1720 	}
1721 
1722 	return 0;
1723 }
1724 
1725 /*
1726  * =========================================================================
1727  *  HCD
1728  * =========================================================================
1729  */
1730 
1731 /*
1732  * Processes all the URBs in a single list of QHs. Completes them with
1733  * -ETIMEDOUT and frees the QTD.
1734  *
1735  * Must be called with interrupt disabled and spinlock held
1736  */
1737 static void dwc2_kill_urbs_in_qh_list(struct dwc2_hsotg *hsotg,
1738 				      struct list_head *qh_list)
1739 {
1740 	struct dwc2_qh *qh, *qh_tmp;
1741 	struct dwc2_qtd *qtd, *qtd_tmp;
1742 
1743 	list_for_each_entry_safe(qh, qh_tmp, qh_list, qh_list_entry) {
1744 		list_for_each_entry_safe(qtd, qtd_tmp, &qh->qtd_list,
1745 					 qtd_list_entry) {
1746 			dwc2_host_complete(hsotg, qtd, -ECONNRESET);
1747 			dwc2_hcd_qtd_unlink_and_free(hsotg, qtd, qh);
1748 		}
1749 	}
1750 }
1751 
1752 static void dwc2_qh_list_free(struct dwc2_hsotg *hsotg,
1753 			      struct list_head *qh_list)
1754 {
1755 	struct dwc2_qtd *qtd, *qtd_tmp;
1756 	struct dwc2_qh *qh, *qh_tmp;
1757 	unsigned long flags;
1758 
1759 	if (!qh_list->next)
1760 		/* The list hasn't been initialized yet */
1761 		return;
1762 
1763 	spin_lock_irqsave(&hsotg->lock, flags);
1764 
1765 	/* Ensure there are no QTDs or URBs left */
1766 	dwc2_kill_urbs_in_qh_list(hsotg, qh_list);
1767 
1768 	list_for_each_entry_safe(qh, qh_tmp, qh_list, qh_list_entry) {
1769 		dwc2_hcd_qh_unlink(hsotg, qh);
1770 
1771 		/* Free each QTD in the QH's QTD list */
1772 		list_for_each_entry_safe(qtd, qtd_tmp, &qh->qtd_list,
1773 					 qtd_list_entry)
1774 			dwc2_hcd_qtd_unlink_and_free(hsotg, qtd, qh);
1775 
1776 		if (qh->channel && qh->channel->qh == qh)
1777 			qh->channel->qh = NULL;
1778 
1779 		spin_unlock_irqrestore(&hsotg->lock, flags);
1780 		dwc2_hcd_qh_free(hsotg, qh);
1781 		spin_lock_irqsave(&hsotg->lock, flags);
1782 	}
1783 
1784 	spin_unlock_irqrestore(&hsotg->lock, flags);
1785 }
1786 
1787 /*
1788  * Responds with an error status of -ETIMEDOUT to all URBs in the non-periodic
1789  * and periodic schedules. The QTD associated with each URB is removed from
1790  * the schedule and freed. This function may be called when a disconnect is
1791  * detected or when the HCD is being stopped.
1792  *
1793  * Must be called with interrupt disabled and spinlock held
1794  */
1795 static void dwc2_kill_all_urbs(struct dwc2_hsotg *hsotg)
1796 {
1797 	dwc2_kill_urbs_in_qh_list(hsotg, &hsotg->non_periodic_sched_inactive);
1798 	dwc2_kill_urbs_in_qh_list(hsotg, &hsotg->non_periodic_sched_active);
1799 	dwc2_kill_urbs_in_qh_list(hsotg, &hsotg->periodic_sched_inactive);
1800 	dwc2_kill_urbs_in_qh_list(hsotg, &hsotg->periodic_sched_ready);
1801 	dwc2_kill_urbs_in_qh_list(hsotg, &hsotg->periodic_sched_assigned);
1802 	dwc2_kill_urbs_in_qh_list(hsotg, &hsotg->periodic_sched_queued);
1803 }
1804 
1805 /**
1806  * dwc2_hcd_start() - Starts the HCD when switching to Host mode
1807  *
1808  * @hsotg: Pointer to struct dwc2_hsotg
1809  */
1810 void dwc2_hcd_start(struct dwc2_hsotg *hsotg)
1811 {
1812 	u32 hprt0;
1813 
1814 	if (hsotg->op_state == OTG_STATE_B_HOST) {
1815 		/*
1816 		 * Reset the port. During a HNP mode switch the reset
1817 		 * needs to occur within 1ms and have a duration of at
1818 		 * least 50ms.
1819 		 */
1820 		hprt0 = dwc2_read_hprt0(hsotg);
1821 		hprt0 |= HPRT0_RST;
1822 		dwc2_writel(hprt0, hsotg->regs + HPRT0);
1823 	}
1824 
1825 	queue_delayed_work(hsotg->wq_otg, &hsotg->start_work,
1826 			   msecs_to_jiffies(50));
1827 }
1828 
1829 /* Must be called with interrupt disabled and spinlock held */
1830 static void dwc2_hcd_cleanup_channels(struct dwc2_hsotg *hsotg)
1831 {
1832 	int num_channels = hsotg->params.host_channels;
1833 	struct dwc2_host_chan *channel;
1834 	u32 hcchar;
1835 	int i;
1836 
1837 	if (!hsotg->params.host_dma) {
1838 		/* Flush out any channel requests in slave mode */
1839 		for (i = 0; i < num_channels; i++) {
1840 			channel = hsotg->hc_ptr_array[i];
1841 			if (!list_empty(&channel->hc_list_entry))
1842 				continue;
1843 			hcchar = dwc2_readl(hsotg->regs + HCCHAR(i));
1844 			if (hcchar & HCCHAR_CHENA) {
1845 				hcchar &= ~(HCCHAR_CHENA | HCCHAR_EPDIR);
1846 				hcchar |= HCCHAR_CHDIS;
1847 				dwc2_writel(hcchar, hsotg->regs + HCCHAR(i));
1848 			}
1849 		}
1850 	}
1851 
1852 	for (i = 0; i < num_channels; i++) {
1853 		channel = hsotg->hc_ptr_array[i];
1854 		if (!list_empty(&channel->hc_list_entry))
1855 			continue;
1856 		hcchar = dwc2_readl(hsotg->regs + HCCHAR(i));
1857 		if (hcchar & HCCHAR_CHENA) {
1858 			/* Halt the channel */
1859 			hcchar |= HCCHAR_CHDIS;
1860 			dwc2_writel(hcchar, hsotg->regs + HCCHAR(i));
1861 		}
1862 
1863 		dwc2_hc_cleanup(hsotg, channel);
1864 		list_add_tail(&channel->hc_list_entry, &hsotg->free_hc_list);
1865 		/*
1866 		 * Added for Descriptor DMA to prevent channel double cleanup in
1867 		 * release_channel_ddma(), which is called from ep_disable when
1868 		 * device disconnects
1869 		 */
1870 		channel->qh = NULL;
1871 	}
1872 	/* All channels have been freed, mark them available */
1873 	if (hsotg->params.uframe_sched) {
1874 		hsotg->available_host_channels =
1875 			hsotg->params.host_channels;
1876 	} else {
1877 		hsotg->non_periodic_channels = 0;
1878 		hsotg->periodic_channels = 0;
1879 	}
1880 }
1881 
1882 /**
1883  * dwc2_hcd_connect() - Handles connect of the HCD
1884  *
1885  * @hsotg: Pointer to struct dwc2_hsotg
1886  *
1887  * Must be called with interrupt disabled and spinlock held
1888  */
1889 void dwc2_hcd_connect(struct dwc2_hsotg *hsotg)
1890 {
1891 	if (hsotg->lx_state != DWC2_L0)
1892 		usb_hcd_resume_root_hub(hsotg->priv);
1893 
1894 	hsotg->flags.b.port_connect_status_change = 1;
1895 	hsotg->flags.b.port_connect_status = 1;
1896 }
1897 
1898 /**
1899  * dwc2_hcd_disconnect() - Handles disconnect of the HCD
1900  *
1901  * @hsotg: Pointer to struct dwc2_hsotg
1902  * @force: If true, we won't try to reconnect even if we see device connected.
1903  *
1904  * Must be called with interrupt disabled and spinlock held
1905  */
1906 void dwc2_hcd_disconnect(struct dwc2_hsotg *hsotg, bool force)
1907 {
1908 	u32 intr;
1909 	u32 hprt0;
1910 
1911 	/* Set status flags for the hub driver */
1912 	hsotg->flags.b.port_connect_status_change = 1;
1913 	hsotg->flags.b.port_connect_status = 0;
1914 
1915 	/*
1916 	 * Shutdown any transfers in process by clearing the Tx FIFO Empty
1917 	 * interrupt mask and status bits and disabling subsequent host
1918 	 * channel interrupts.
1919 	 */
1920 	intr = dwc2_readl(hsotg->regs + GINTMSK);
1921 	intr &= ~(GINTSTS_NPTXFEMP | GINTSTS_PTXFEMP | GINTSTS_HCHINT);
1922 	dwc2_writel(intr, hsotg->regs + GINTMSK);
1923 	intr = GINTSTS_NPTXFEMP | GINTSTS_PTXFEMP | GINTSTS_HCHINT;
1924 	dwc2_writel(intr, hsotg->regs + GINTSTS);
1925 
1926 	/*
1927 	 * Turn off the vbus power only if the core has transitioned to device
1928 	 * mode. If still in host mode, need to keep power on to detect a
1929 	 * reconnection.
1930 	 */
1931 	if (dwc2_is_device_mode(hsotg)) {
1932 		if (hsotg->op_state != OTG_STATE_A_SUSPEND) {
1933 			dev_dbg(hsotg->dev, "Disconnect: PortPower off\n");
1934 			dwc2_writel(0, hsotg->regs + HPRT0);
1935 		}
1936 
1937 		dwc2_disable_host_interrupts(hsotg);
1938 	}
1939 
1940 	/* Respond with an error status to all URBs in the schedule */
1941 	dwc2_kill_all_urbs(hsotg);
1942 
1943 	if (dwc2_is_host_mode(hsotg))
1944 		/* Clean up any host channels that were in use */
1945 		dwc2_hcd_cleanup_channels(hsotg);
1946 
1947 	dwc2_host_disconnect(hsotg);
1948 
1949 	/*
1950 	 * Add an extra check here to see if we're actually connected but
1951 	 * we don't have a detection interrupt pending.  This can happen if:
1952 	 *   1. hardware sees connect
1953 	 *   2. hardware sees disconnect
1954 	 *   3. hardware sees connect
1955 	 *   4. dwc2_port_intr() - clears connect interrupt
1956 	 *   5. dwc2_handle_common_intr() - calls here
1957 	 *
1958 	 * Without the extra check here we will end calling disconnect
1959 	 * and won't get any future interrupts to handle the connect.
1960 	 */
1961 	if (!force) {
1962 		hprt0 = dwc2_readl(hsotg->regs + HPRT0);
1963 		if (!(hprt0 & HPRT0_CONNDET) && (hprt0 & HPRT0_CONNSTS))
1964 			dwc2_hcd_connect(hsotg);
1965 	}
1966 }
1967 
1968 /**
1969  * dwc2_hcd_rem_wakeup() - Handles Remote Wakeup
1970  *
1971  * @hsotg: Pointer to struct dwc2_hsotg
1972  */
1973 static void dwc2_hcd_rem_wakeup(struct dwc2_hsotg *hsotg)
1974 {
1975 	if (hsotg->bus_suspended) {
1976 		hsotg->flags.b.port_suspend_change = 1;
1977 		usb_hcd_resume_root_hub(hsotg->priv);
1978 	}
1979 
1980 	if (hsotg->lx_state == DWC2_L1)
1981 		hsotg->flags.b.port_l1_change = 1;
1982 }
1983 
1984 /**
1985  * dwc2_hcd_stop() - Halts the DWC_otg host mode operations in a clean manner
1986  *
1987  * @hsotg: Pointer to struct dwc2_hsotg
1988  *
1989  * Must be called with interrupt disabled and spinlock held
1990  */
1991 void dwc2_hcd_stop(struct dwc2_hsotg *hsotg)
1992 {
1993 	dev_dbg(hsotg->dev, "DWC OTG HCD STOP\n");
1994 
1995 	/*
1996 	 * The root hub should be disconnected before this function is called.
1997 	 * The disconnect will clear the QTD lists (via ..._hcd_urb_dequeue)
1998 	 * and the QH lists (via ..._hcd_endpoint_disable).
1999 	 */
2000 
2001 	/* Turn off all host-specific interrupts */
2002 	dwc2_disable_host_interrupts(hsotg);
2003 
2004 	/* Turn off the vbus power */
2005 	dev_dbg(hsotg->dev, "PortPower off\n");
2006 	dwc2_writel(0, hsotg->regs + HPRT0);
2007 }
2008 
2009 /* Caller must hold driver lock */
2010 static int dwc2_hcd_urb_enqueue(struct dwc2_hsotg *hsotg,
2011 				struct dwc2_hcd_urb *urb, struct dwc2_qh *qh,
2012 				struct dwc2_qtd *qtd)
2013 {
2014 	u32 intr_mask;
2015 	int retval;
2016 	int dev_speed;
2017 
2018 	if (!hsotg->flags.b.port_connect_status) {
2019 		/* No longer connected */
2020 		dev_err(hsotg->dev, "Not connected\n");
2021 		return -ENODEV;
2022 	}
2023 
2024 	dev_speed = dwc2_host_get_speed(hsotg, urb->priv);
2025 
2026 	/* Some configurations cannot support LS traffic on a FS root port */
2027 	if ((dev_speed == USB_SPEED_LOW) &&
2028 	    (hsotg->hw_params.fs_phy_type == GHWCFG2_FS_PHY_TYPE_DEDICATED) &&
2029 	    (hsotg->hw_params.hs_phy_type == GHWCFG2_HS_PHY_TYPE_UTMI)) {
2030 		u32 hprt0 = dwc2_readl(hsotg->regs + HPRT0);
2031 		u32 prtspd = (hprt0 & HPRT0_SPD_MASK) >> HPRT0_SPD_SHIFT;
2032 
2033 		if (prtspd == HPRT0_SPD_FULL_SPEED)
2034 			return -ENODEV;
2035 	}
2036 
2037 	if (!qtd)
2038 		return -EINVAL;
2039 
2040 	dwc2_hcd_qtd_init(qtd, urb);
2041 	retval = dwc2_hcd_qtd_add(hsotg, qtd, qh);
2042 	if (retval) {
2043 		dev_err(hsotg->dev,
2044 			"DWC OTG HCD URB Enqueue failed adding QTD. Error status %d\n",
2045 			retval);
2046 		return retval;
2047 	}
2048 
2049 	intr_mask = dwc2_readl(hsotg->regs + GINTMSK);
2050 	if (!(intr_mask & GINTSTS_SOF)) {
2051 		enum dwc2_transaction_type tr_type;
2052 
2053 		if (qtd->qh->ep_type == USB_ENDPOINT_XFER_BULK &&
2054 		    !(qtd->urb->flags & URB_GIVEBACK_ASAP))
2055 			/*
2056 			 * Do not schedule SG transactions until qtd has
2057 			 * URB_GIVEBACK_ASAP set
2058 			 */
2059 			return 0;
2060 
2061 		tr_type = dwc2_hcd_select_transactions(hsotg);
2062 		if (tr_type != DWC2_TRANSACTION_NONE)
2063 			dwc2_hcd_queue_transactions(hsotg, tr_type);
2064 	}
2065 
2066 	return 0;
2067 }
2068 
2069 /* Must be called with interrupt disabled and spinlock held */
2070 static int dwc2_hcd_urb_dequeue(struct dwc2_hsotg *hsotg,
2071 				struct dwc2_hcd_urb *urb)
2072 {
2073 	struct dwc2_qh *qh;
2074 	struct dwc2_qtd *urb_qtd;
2075 
2076 	urb_qtd = urb->qtd;
2077 	if (!urb_qtd) {
2078 		dev_dbg(hsotg->dev, "## Urb QTD is NULL ##\n");
2079 		return -EINVAL;
2080 	}
2081 
2082 	qh = urb_qtd->qh;
2083 	if (!qh) {
2084 		dev_dbg(hsotg->dev, "## Urb QTD QH is NULL ##\n");
2085 		return -EINVAL;
2086 	}
2087 
2088 	urb->priv = NULL;
2089 
2090 	if (urb_qtd->in_process && qh->channel) {
2091 		dwc2_dump_channel_info(hsotg, qh->channel);
2092 
2093 		/* The QTD is in process (it has been assigned to a channel) */
2094 		if (hsotg->flags.b.port_connect_status)
2095 			/*
2096 			 * If still connected (i.e. in host mode), halt the
2097 			 * channel so it can be used for other transfers. If
2098 			 * no longer connected, the host registers can't be
2099 			 * written to halt the channel since the core is in
2100 			 * device mode.
2101 			 */
2102 			dwc2_hc_halt(hsotg, qh->channel,
2103 				     DWC2_HC_XFER_URB_DEQUEUE);
2104 	}
2105 
2106 	/*
2107 	 * Free the QTD and clean up the associated QH. Leave the QH in the
2108 	 * schedule if it has any remaining QTDs.
2109 	 */
2110 	if (!hsotg->params.dma_desc_enable) {
2111 		u8 in_process = urb_qtd->in_process;
2112 
2113 		dwc2_hcd_qtd_unlink_and_free(hsotg, urb_qtd, qh);
2114 		if (in_process) {
2115 			dwc2_hcd_qh_deactivate(hsotg, qh, 0);
2116 			qh->channel = NULL;
2117 		} else if (list_empty(&qh->qtd_list)) {
2118 			dwc2_hcd_qh_unlink(hsotg, qh);
2119 		}
2120 	} else {
2121 		dwc2_hcd_qtd_unlink_and_free(hsotg, urb_qtd, qh);
2122 	}
2123 
2124 	return 0;
2125 }
2126 
2127 /* Must NOT be called with interrupt disabled or spinlock held */
2128 static int dwc2_hcd_endpoint_disable(struct dwc2_hsotg *hsotg,
2129 				     struct usb_host_endpoint *ep, int retry)
2130 {
2131 	struct dwc2_qtd *qtd, *qtd_tmp;
2132 	struct dwc2_qh *qh;
2133 	unsigned long flags;
2134 	int rc;
2135 
2136 	spin_lock_irqsave(&hsotg->lock, flags);
2137 
2138 	qh = ep->hcpriv;
2139 	if (!qh) {
2140 		rc = -EINVAL;
2141 		goto err;
2142 	}
2143 
2144 	while (!list_empty(&qh->qtd_list) && retry--) {
2145 		if (retry == 0) {
2146 			dev_err(hsotg->dev,
2147 				"## timeout in dwc2_hcd_endpoint_disable() ##\n");
2148 			rc = -EBUSY;
2149 			goto err;
2150 		}
2151 
2152 		spin_unlock_irqrestore(&hsotg->lock, flags);
2153 		msleep(20);
2154 		spin_lock_irqsave(&hsotg->lock, flags);
2155 		qh = ep->hcpriv;
2156 		if (!qh) {
2157 			rc = -EINVAL;
2158 			goto err;
2159 		}
2160 	}
2161 
2162 	dwc2_hcd_qh_unlink(hsotg, qh);
2163 
2164 	/* Free each QTD in the QH's QTD list */
2165 	list_for_each_entry_safe(qtd, qtd_tmp, &qh->qtd_list, qtd_list_entry)
2166 		dwc2_hcd_qtd_unlink_and_free(hsotg, qtd, qh);
2167 
2168 	ep->hcpriv = NULL;
2169 
2170 	if (qh->channel && qh->channel->qh == qh)
2171 		qh->channel->qh = NULL;
2172 
2173 	spin_unlock_irqrestore(&hsotg->lock, flags);
2174 
2175 	dwc2_hcd_qh_free(hsotg, qh);
2176 
2177 	return 0;
2178 
2179 err:
2180 	ep->hcpriv = NULL;
2181 	spin_unlock_irqrestore(&hsotg->lock, flags);
2182 
2183 	return rc;
2184 }
2185 
2186 /* Must be called with interrupt disabled and spinlock held */
2187 static int dwc2_hcd_endpoint_reset(struct dwc2_hsotg *hsotg,
2188 				   struct usb_host_endpoint *ep)
2189 {
2190 	struct dwc2_qh *qh = ep->hcpriv;
2191 
2192 	if (!qh)
2193 		return -EINVAL;
2194 
2195 	qh->data_toggle = DWC2_HC_PID_DATA0;
2196 
2197 	return 0;
2198 }
2199 
2200 /**
2201  * dwc2_core_init() - Initializes the DWC_otg controller registers and
2202  * prepares the core for device mode or host mode operation
2203  *
2204  * @hsotg:         Programming view of the DWC_otg controller
2205  * @initial_setup: If true then this is the first init for this instance.
2206  */
2207 static int dwc2_core_init(struct dwc2_hsotg *hsotg, bool initial_setup)
2208 {
2209 	u32 usbcfg, otgctl;
2210 	int retval;
2211 
2212 	dev_dbg(hsotg->dev, "%s(%p)\n", __func__, hsotg);
2213 
2214 	usbcfg = dwc2_readl(hsotg->regs + GUSBCFG);
2215 
2216 	/* Set ULPI External VBUS bit if needed */
2217 	usbcfg &= ~GUSBCFG_ULPI_EXT_VBUS_DRV;
2218 	if (hsotg->params.phy_ulpi_ext_vbus)
2219 		usbcfg |= GUSBCFG_ULPI_EXT_VBUS_DRV;
2220 
2221 	/* Set external TS Dline pulsing bit if needed */
2222 	usbcfg &= ~GUSBCFG_TERMSELDLPULSE;
2223 	if (hsotg->params.ts_dline)
2224 		usbcfg |= GUSBCFG_TERMSELDLPULSE;
2225 
2226 	dwc2_writel(usbcfg, hsotg->regs + GUSBCFG);
2227 
2228 	/*
2229 	 * Reset the Controller
2230 	 *
2231 	 * We only need to reset the controller if this is a re-init.
2232 	 * For the first init we know for sure that earlier code reset us (it
2233 	 * needed to in order to properly detect various parameters).
2234 	 */
2235 	if (!initial_setup) {
2236 		retval = dwc2_core_reset_and_force_dr_mode(hsotg);
2237 		if (retval) {
2238 			dev_err(hsotg->dev, "%s(): Reset failed, aborting\n",
2239 				__func__);
2240 			return retval;
2241 		}
2242 	}
2243 
2244 	/*
2245 	 * This needs to happen in FS mode before any other programming occurs
2246 	 */
2247 	retval = dwc2_phy_init(hsotg, initial_setup);
2248 	if (retval)
2249 		return retval;
2250 
2251 	/* Program the GAHBCFG Register */
2252 	retval = dwc2_gahbcfg_init(hsotg);
2253 	if (retval)
2254 		return retval;
2255 
2256 	/* Program the GUSBCFG register */
2257 	dwc2_gusbcfg_init(hsotg);
2258 
2259 	/* Program the GOTGCTL register */
2260 	otgctl = dwc2_readl(hsotg->regs + GOTGCTL);
2261 	otgctl &= ~GOTGCTL_OTGVER;
2262 	dwc2_writel(otgctl, hsotg->regs + GOTGCTL);
2263 
2264 	/* Clear the SRP success bit for FS-I2c */
2265 	hsotg->srp_success = 0;
2266 
2267 	/* Enable common interrupts */
2268 	dwc2_enable_common_interrupts(hsotg);
2269 
2270 	/*
2271 	 * Do device or host initialization based on mode during PCD and
2272 	 * HCD initialization
2273 	 */
2274 	if (dwc2_is_host_mode(hsotg)) {
2275 		dev_dbg(hsotg->dev, "Host Mode\n");
2276 		hsotg->op_state = OTG_STATE_A_HOST;
2277 	} else {
2278 		dev_dbg(hsotg->dev, "Device Mode\n");
2279 		hsotg->op_state = OTG_STATE_B_PERIPHERAL;
2280 	}
2281 
2282 	return 0;
2283 }
2284 
2285 /**
2286  * dwc2_core_host_init() - Initializes the DWC_otg controller registers for
2287  * Host mode
2288  *
2289  * @hsotg: Programming view of DWC_otg controller
2290  *
2291  * This function flushes the Tx and Rx FIFOs and flushes any entries in the
2292  * request queues. Host channels are reset to ensure that they are ready for
2293  * performing transfers.
2294  */
2295 static void dwc2_core_host_init(struct dwc2_hsotg *hsotg)
2296 {
2297 	u32 hcfg, hfir, otgctl;
2298 
2299 	dev_dbg(hsotg->dev, "%s(%p)\n", __func__, hsotg);
2300 
2301 	/* Restart the Phy Clock */
2302 	dwc2_writel(0, hsotg->regs + PCGCTL);
2303 
2304 	/* Initialize Host Configuration Register */
2305 	dwc2_init_fs_ls_pclk_sel(hsotg);
2306 	if (hsotg->params.speed == DWC2_SPEED_PARAM_FULL ||
2307 	    hsotg->params.speed == DWC2_SPEED_PARAM_LOW) {
2308 		hcfg = dwc2_readl(hsotg->regs + HCFG);
2309 		hcfg |= HCFG_FSLSSUPP;
2310 		dwc2_writel(hcfg, hsotg->regs + HCFG);
2311 	}
2312 
2313 	/*
2314 	 * This bit allows dynamic reloading of the HFIR register during
2315 	 * runtime. This bit needs to be programmed during initial configuration
2316 	 * and its value must not be changed during runtime.
2317 	 */
2318 	if (hsotg->params.reload_ctl) {
2319 		hfir = dwc2_readl(hsotg->regs + HFIR);
2320 		hfir |= HFIR_RLDCTRL;
2321 		dwc2_writel(hfir, hsotg->regs + HFIR);
2322 	}
2323 
2324 	if (hsotg->params.dma_desc_enable) {
2325 		u32 op_mode = hsotg->hw_params.op_mode;
2326 
2327 		if (hsotg->hw_params.snpsid < DWC2_CORE_REV_2_90a ||
2328 		    !hsotg->hw_params.dma_desc_enable ||
2329 		    op_mode == GHWCFG2_OP_MODE_SRP_CAPABLE_DEVICE ||
2330 		    op_mode == GHWCFG2_OP_MODE_NO_SRP_CAPABLE_DEVICE ||
2331 		    op_mode == GHWCFG2_OP_MODE_UNDEFINED) {
2332 			dev_err(hsotg->dev,
2333 				"Hardware does not support descriptor DMA mode -\n");
2334 			dev_err(hsotg->dev,
2335 				"falling back to buffer DMA mode.\n");
2336 			hsotg->params.dma_desc_enable = false;
2337 		} else {
2338 			hcfg = dwc2_readl(hsotg->regs + HCFG);
2339 			hcfg |= HCFG_DESCDMA;
2340 			dwc2_writel(hcfg, hsotg->regs + HCFG);
2341 		}
2342 	}
2343 
2344 	/* Configure data FIFO sizes */
2345 	dwc2_config_fifos(hsotg);
2346 
2347 	/* TODO - check this */
2348 	/* Clear Host Set HNP Enable in the OTG Control Register */
2349 	otgctl = dwc2_readl(hsotg->regs + GOTGCTL);
2350 	otgctl &= ~GOTGCTL_HSTSETHNPEN;
2351 	dwc2_writel(otgctl, hsotg->regs + GOTGCTL);
2352 
2353 	/* Make sure the FIFOs are flushed */
2354 	dwc2_flush_tx_fifo(hsotg, 0x10 /* all TX FIFOs */);
2355 	dwc2_flush_rx_fifo(hsotg);
2356 
2357 	/* Clear Host Set HNP Enable in the OTG Control Register */
2358 	otgctl = dwc2_readl(hsotg->regs + GOTGCTL);
2359 	otgctl &= ~GOTGCTL_HSTSETHNPEN;
2360 	dwc2_writel(otgctl, hsotg->regs + GOTGCTL);
2361 
2362 	if (!hsotg->params.dma_desc_enable) {
2363 		int num_channels, i;
2364 		u32 hcchar;
2365 
2366 		/* Flush out any leftover queued requests */
2367 		num_channels = hsotg->params.host_channels;
2368 		for (i = 0; i < num_channels; i++) {
2369 			hcchar = dwc2_readl(hsotg->regs + HCCHAR(i));
2370 			hcchar &= ~HCCHAR_CHENA;
2371 			hcchar |= HCCHAR_CHDIS;
2372 			hcchar &= ~HCCHAR_EPDIR;
2373 			dwc2_writel(hcchar, hsotg->regs + HCCHAR(i));
2374 		}
2375 
2376 		/* Halt all channels to put them into a known state */
2377 		for (i = 0; i < num_channels; i++) {
2378 			int count = 0;
2379 
2380 			hcchar = dwc2_readl(hsotg->regs + HCCHAR(i));
2381 			hcchar |= HCCHAR_CHENA | HCCHAR_CHDIS;
2382 			hcchar &= ~HCCHAR_EPDIR;
2383 			dwc2_writel(hcchar, hsotg->regs + HCCHAR(i));
2384 			dev_dbg(hsotg->dev, "%s: Halt channel %d\n",
2385 				__func__, i);
2386 			do {
2387 				hcchar = dwc2_readl(hsotg->regs + HCCHAR(i));
2388 				if (++count > 1000) {
2389 					dev_err(hsotg->dev,
2390 						"Unable to clear enable on channel %d\n",
2391 						i);
2392 					break;
2393 				}
2394 				udelay(1);
2395 			} while (hcchar & HCCHAR_CHENA);
2396 		}
2397 	}
2398 
2399 	/* Turn on the vbus power */
2400 	dev_dbg(hsotg->dev, "Init: Port Power? op_state=%d\n", hsotg->op_state);
2401 	if (hsotg->op_state == OTG_STATE_A_HOST) {
2402 		u32 hprt0 = dwc2_read_hprt0(hsotg);
2403 
2404 		dev_dbg(hsotg->dev, "Init: Power Port (%d)\n",
2405 			!!(hprt0 & HPRT0_PWR));
2406 		if (!(hprt0 & HPRT0_PWR)) {
2407 			hprt0 |= HPRT0_PWR;
2408 			dwc2_writel(hprt0, hsotg->regs + HPRT0);
2409 		}
2410 	}
2411 
2412 	dwc2_enable_host_interrupts(hsotg);
2413 }
2414 
2415 /*
2416  * Initializes dynamic portions of the DWC_otg HCD state
2417  *
2418  * Must be called with interrupt disabled and spinlock held
2419  */
2420 static void dwc2_hcd_reinit(struct dwc2_hsotg *hsotg)
2421 {
2422 	struct dwc2_host_chan *chan, *chan_tmp;
2423 	int num_channels;
2424 	int i;
2425 
2426 	hsotg->flags.d32 = 0;
2427 	hsotg->non_periodic_qh_ptr = &hsotg->non_periodic_sched_active;
2428 
2429 	if (hsotg->params.uframe_sched) {
2430 		hsotg->available_host_channels =
2431 			hsotg->params.host_channels;
2432 	} else {
2433 		hsotg->non_periodic_channels = 0;
2434 		hsotg->periodic_channels = 0;
2435 	}
2436 
2437 	/*
2438 	 * Put all channels in the free channel list and clean up channel
2439 	 * states
2440 	 */
2441 	list_for_each_entry_safe(chan, chan_tmp, &hsotg->free_hc_list,
2442 				 hc_list_entry)
2443 		list_del_init(&chan->hc_list_entry);
2444 
2445 	num_channels = hsotg->params.host_channels;
2446 	for (i = 0; i < num_channels; i++) {
2447 		chan = hsotg->hc_ptr_array[i];
2448 		list_add_tail(&chan->hc_list_entry, &hsotg->free_hc_list);
2449 		dwc2_hc_cleanup(hsotg, chan);
2450 	}
2451 
2452 	/* Initialize the DWC core for host mode operation */
2453 	dwc2_core_host_init(hsotg);
2454 }
2455 
2456 static void dwc2_hc_init_split(struct dwc2_hsotg *hsotg,
2457 			       struct dwc2_host_chan *chan,
2458 			       struct dwc2_qtd *qtd, struct dwc2_hcd_urb *urb)
2459 {
2460 	int hub_addr, hub_port;
2461 
2462 	chan->do_split = 1;
2463 	chan->xact_pos = qtd->isoc_split_pos;
2464 	chan->complete_split = qtd->complete_split;
2465 	dwc2_host_hub_info(hsotg, urb->priv, &hub_addr, &hub_port);
2466 	chan->hub_addr = (u8)hub_addr;
2467 	chan->hub_port = (u8)hub_port;
2468 }
2469 
2470 static void dwc2_hc_init_xfer(struct dwc2_hsotg *hsotg,
2471 			      struct dwc2_host_chan *chan,
2472 			      struct dwc2_qtd *qtd)
2473 {
2474 	struct dwc2_hcd_urb *urb = qtd->urb;
2475 	struct dwc2_hcd_iso_packet_desc *frame_desc;
2476 
2477 	switch (dwc2_hcd_get_pipe_type(&urb->pipe_info)) {
2478 	case USB_ENDPOINT_XFER_CONTROL:
2479 		chan->ep_type = USB_ENDPOINT_XFER_CONTROL;
2480 
2481 		switch (qtd->control_phase) {
2482 		case DWC2_CONTROL_SETUP:
2483 			dev_vdbg(hsotg->dev, "  Control setup transaction\n");
2484 			chan->do_ping = 0;
2485 			chan->ep_is_in = 0;
2486 			chan->data_pid_start = DWC2_HC_PID_SETUP;
2487 			if (hsotg->params.host_dma)
2488 				chan->xfer_dma = urb->setup_dma;
2489 			else
2490 				chan->xfer_buf = urb->setup_packet;
2491 			chan->xfer_len = 8;
2492 			break;
2493 
2494 		case DWC2_CONTROL_DATA:
2495 			dev_vdbg(hsotg->dev, "  Control data transaction\n");
2496 			chan->data_pid_start = qtd->data_toggle;
2497 			break;
2498 
2499 		case DWC2_CONTROL_STATUS:
2500 			/*
2501 			 * Direction is opposite of data direction or IN if no
2502 			 * data
2503 			 */
2504 			dev_vdbg(hsotg->dev, "  Control status transaction\n");
2505 			if (urb->length == 0)
2506 				chan->ep_is_in = 1;
2507 			else
2508 				chan->ep_is_in =
2509 					dwc2_hcd_is_pipe_out(&urb->pipe_info);
2510 			if (chan->ep_is_in)
2511 				chan->do_ping = 0;
2512 			chan->data_pid_start = DWC2_HC_PID_DATA1;
2513 			chan->xfer_len = 0;
2514 			if (hsotg->params.host_dma)
2515 				chan->xfer_dma = hsotg->status_buf_dma;
2516 			else
2517 				chan->xfer_buf = hsotg->status_buf;
2518 			break;
2519 		}
2520 		break;
2521 
2522 	case USB_ENDPOINT_XFER_BULK:
2523 		chan->ep_type = USB_ENDPOINT_XFER_BULK;
2524 		break;
2525 
2526 	case USB_ENDPOINT_XFER_INT:
2527 		chan->ep_type = USB_ENDPOINT_XFER_INT;
2528 		break;
2529 
2530 	case USB_ENDPOINT_XFER_ISOC:
2531 		chan->ep_type = USB_ENDPOINT_XFER_ISOC;
2532 		if (hsotg->params.dma_desc_enable)
2533 			break;
2534 
2535 		frame_desc = &urb->iso_descs[qtd->isoc_frame_index];
2536 		frame_desc->status = 0;
2537 
2538 		if (hsotg->params.host_dma) {
2539 			chan->xfer_dma = urb->dma;
2540 			chan->xfer_dma += frame_desc->offset +
2541 					qtd->isoc_split_offset;
2542 		} else {
2543 			chan->xfer_buf = urb->buf;
2544 			chan->xfer_buf += frame_desc->offset +
2545 					qtd->isoc_split_offset;
2546 		}
2547 
2548 		chan->xfer_len = frame_desc->length - qtd->isoc_split_offset;
2549 
2550 		if (chan->xact_pos == DWC2_HCSPLT_XACTPOS_ALL) {
2551 			if (chan->xfer_len <= 188)
2552 				chan->xact_pos = DWC2_HCSPLT_XACTPOS_ALL;
2553 			else
2554 				chan->xact_pos = DWC2_HCSPLT_XACTPOS_BEGIN;
2555 		}
2556 		break;
2557 	}
2558 }
2559 
2560 #define DWC2_USB_DMA_ALIGN 4
2561 
2562 struct dma_aligned_buffer {
2563 	void *kmalloc_ptr;
2564 	void *old_xfer_buffer;
2565 	u8 data[0];
2566 };
2567 
2568 static void dwc2_free_dma_aligned_buffer(struct urb *urb)
2569 {
2570 	struct dma_aligned_buffer *temp;
2571 
2572 	if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
2573 		return;
2574 
2575 	temp = container_of(urb->transfer_buffer,
2576 			    struct dma_aligned_buffer, data);
2577 
2578 	if (usb_urb_dir_in(urb))
2579 		memcpy(temp->old_xfer_buffer, temp->data,
2580 		       urb->transfer_buffer_length);
2581 	urb->transfer_buffer = temp->old_xfer_buffer;
2582 	kfree(temp->kmalloc_ptr);
2583 
2584 	urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
2585 }
2586 
2587 static int dwc2_alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags)
2588 {
2589 	struct dma_aligned_buffer *temp, *kmalloc_ptr;
2590 	size_t kmalloc_size;
2591 
2592 	if (urb->num_sgs || urb->sg ||
2593 	    urb->transfer_buffer_length == 0 ||
2594 	    !((uintptr_t)urb->transfer_buffer & (DWC2_USB_DMA_ALIGN - 1)))
2595 		return 0;
2596 
2597 	/* Allocate a buffer with enough padding for alignment */
2598 	kmalloc_size = urb->transfer_buffer_length +
2599 		sizeof(struct dma_aligned_buffer) + DWC2_USB_DMA_ALIGN - 1;
2600 
2601 	kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
2602 	if (!kmalloc_ptr)
2603 		return -ENOMEM;
2604 
2605 	/* Position our struct dma_aligned_buffer such that data is aligned */
2606 	temp = PTR_ALIGN(kmalloc_ptr + 1, DWC2_USB_DMA_ALIGN) - 1;
2607 	temp->kmalloc_ptr = kmalloc_ptr;
2608 	temp->old_xfer_buffer = urb->transfer_buffer;
2609 	if (usb_urb_dir_out(urb))
2610 		memcpy(temp->data, urb->transfer_buffer,
2611 		       urb->transfer_buffer_length);
2612 	urb->transfer_buffer = temp->data;
2613 
2614 	urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
2615 
2616 	return 0;
2617 }
2618 
2619 static int dwc2_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
2620 				gfp_t mem_flags)
2621 {
2622 	int ret;
2623 
2624 	/* We assume setup_dma is always aligned; warn if not */
2625 	WARN_ON_ONCE(urb->setup_dma &&
2626 		     (urb->setup_dma & (DWC2_USB_DMA_ALIGN - 1)));
2627 
2628 	ret = dwc2_alloc_dma_aligned_buffer(urb, mem_flags);
2629 	if (ret)
2630 		return ret;
2631 
2632 	ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
2633 	if (ret)
2634 		dwc2_free_dma_aligned_buffer(urb);
2635 
2636 	return ret;
2637 }
2638 
2639 static void dwc2_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
2640 {
2641 	usb_hcd_unmap_urb_for_dma(hcd, urb);
2642 	dwc2_free_dma_aligned_buffer(urb);
2643 }
2644 
2645 /**
2646  * dwc2_assign_and_init_hc() - Assigns transactions from a QTD to a free host
2647  * channel and initializes the host channel to perform the transactions. The
2648  * host channel is removed from the free list.
2649  *
2650  * @hsotg: The HCD state structure
2651  * @qh:    Transactions from the first QTD for this QH are selected and assigned
2652  *         to a free host channel
2653  */
2654 static int dwc2_assign_and_init_hc(struct dwc2_hsotg *hsotg, struct dwc2_qh *qh)
2655 {
2656 	struct dwc2_host_chan *chan;
2657 	struct dwc2_hcd_urb *urb;
2658 	struct dwc2_qtd *qtd;
2659 
2660 	if (dbg_qh(qh))
2661 		dev_vdbg(hsotg->dev, "%s(%p,%p)\n", __func__, hsotg, qh);
2662 
2663 	if (list_empty(&qh->qtd_list)) {
2664 		dev_dbg(hsotg->dev, "No QTDs in QH list\n");
2665 		return -ENOMEM;
2666 	}
2667 
2668 	if (list_empty(&hsotg->free_hc_list)) {
2669 		dev_dbg(hsotg->dev, "No free channel to assign\n");
2670 		return -ENOMEM;
2671 	}
2672 
2673 	chan = list_first_entry(&hsotg->free_hc_list, struct dwc2_host_chan,
2674 				hc_list_entry);
2675 
2676 	/* Remove host channel from free list */
2677 	list_del_init(&chan->hc_list_entry);
2678 
2679 	qtd = list_first_entry(&qh->qtd_list, struct dwc2_qtd, qtd_list_entry);
2680 	urb = qtd->urb;
2681 	qh->channel = chan;
2682 	qtd->in_process = 1;
2683 
2684 	/*
2685 	 * Use usb_pipedevice to determine device address. This address is
2686 	 * 0 before the SET_ADDRESS command and the correct address afterward.
2687 	 */
2688 	chan->dev_addr = dwc2_hcd_get_dev_addr(&urb->pipe_info);
2689 	chan->ep_num = dwc2_hcd_get_ep_num(&urb->pipe_info);
2690 	chan->speed = qh->dev_speed;
2691 	chan->max_packet = dwc2_max_packet(qh->maxp);
2692 
2693 	chan->xfer_started = 0;
2694 	chan->halt_status = DWC2_HC_XFER_NO_HALT_STATUS;
2695 	chan->error_state = (qtd->error_count > 0);
2696 	chan->halt_on_queue = 0;
2697 	chan->halt_pending = 0;
2698 	chan->requests = 0;
2699 
2700 	/*
2701 	 * The following values may be modified in the transfer type section
2702 	 * below. The xfer_len value may be reduced when the transfer is
2703 	 * started to accommodate the max widths of the XferSize and PktCnt
2704 	 * fields in the HCTSIZn register.
2705 	 */
2706 
2707 	chan->ep_is_in = (dwc2_hcd_is_pipe_in(&urb->pipe_info) != 0);
2708 	if (chan->ep_is_in)
2709 		chan->do_ping = 0;
2710 	else
2711 		chan->do_ping = qh->ping_state;
2712 
2713 	chan->data_pid_start = qh->data_toggle;
2714 	chan->multi_count = 1;
2715 
2716 	if (urb->actual_length > urb->length &&
2717 	    !dwc2_hcd_is_pipe_in(&urb->pipe_info))
2718 		urb->actual_length = urb->length;
2719 
2720 	if (hsotg->params.host_dma)
2721 		chan->xfer_dma = urb->dma + urb->actual_length;
2722 	else
2723 		chan->xfer_buf = (u8 *)urb->buf + urb->actual_length;
2724 
2725 	chan->xfer_len = urb->length - urb->actual_length;
2726 	chan->xfer_count = 0;
2727 
2728 	/* Set the split attributes if required */
2729 	if (qh->do_split)
2730 		dwc2_hc_init_split(hsotg, chan, qtd, urb);
2731 	else
2732 		chan->do_split = 0;
2733 
2734 	/* Set the transfer attributes */
2735 	dwc2_hc_init_xfer(hsotg, chan, qtd);
2736 
2737 	if (chan->ep_type == USB_ENDPOINT_XFER_INT ||
2738 	    chan->ep_type == USB_ENDPOINT_XFER_ISOC)
2739 		/*
2740 		 * This value may be modified when the transfer is started
2741 		 * to reflect the actual transfer length
2742 		 */
2743 		chan->multi_count = dwc2_hb_mult(qh->maxp);
2744 
2745 	if (hsotg->params.dma_desc_enable) {
2746 		chan->desc_list_addr = qh->desc_list_dma;
2747 		chan->desc_list_sz = qh->desc_list_sz;
2748 	}
2749 
2750 	dwc2_hc_init(hsotg, chan);
2751 	chan->qh = qh;
2752 
2753 	return 0;
2754 }
2755 
2756 /**
2757  * dwc2_hcd_select_transactions() - Selects transactions from the HCD transfer
2758  * schedule and assigns them to available host channels. Called from the HCD
2759  * interrupt handler functions.
2760  *
2761  * @hsotg: The HCD state structure
2762  *
2763  * Return: The types of new transactions that were assigned to host channels
2764  */
2765 enum dwc2_transaction_type dwc2_hcd_select_transactions(
2766 		struct dwc2_hsotg *hsotg)
2767 {
2768 	enum dwc2_transaction_type ret_val = DWC2_TRANSACTION_NONE;
2769 	struct list_head *qh_ptr;
2770 	struct dwc2_qh *qh;
2771 	int num_channels;
2772 
2773 #ifdef DWC2_DEBUG_SOF
2774 	dev_vdbg(hsotg->dev, "  Select Transactions\n");
2775 #endif
2776 
2777 	/* Process entries in the periodic ready list */
2778 	qh_ptr = hsotg->periodic_sched_ready.next;
2779 	while (qh_ptr != &hsotg->periodic_sched_ready) {
2780 		if (list_empty(&hsotg->free_hc_list))
2781 			break;
2782 		if (hsotg->params.uframe_sched) {
2783 			if (hsotg->available_host_channels <= 1)
2784 				break;
2785 			hsotg->available_host_channels--;
2786 		}
2787 		qh = list_entry(qh_ptr, struct dwc2_qh, qh_list_entry);
2788 		if (dwc2_assign_and_init_hc(hsotg, qh))
2789 			break;
2790 
2791 		/*
2792 		 * Move the QH from the periodic ready schedule to the
2793 		 * periodic assigned schedule
2794 		 */
2795 		qh_ptr = qh_ptr->next;
2796 		list_move_tail(&qh->qh_list_entry,
2797 			       &hsotg->periodic_sched_assigned);
2798 		ret_val = DWC2_TRANSACTION_PERIODIC;
2799 	}
2800 
2801 	/*
2802 	 * Process entries in the inactive portion of the non-periodic
2803 	 * schedule. Some free host channels may not be used if they are
2804 	 * reserved for periodic transfers.
2805 	 */
2806 	num_channels = hsotg->params.host_channels;
2807 	qh_ptr = hsotg->non_periodic_sched_inactive.next;
2808 	while (qh_ptr != &hsotg->non_periodic_sched_inactive) {
2809 		if (!hsotg->params.uframe_sched &&
2810 		    hsotg->non_periodic_channels >= num_channels -
2811 						hsotg->periodic_channels)
2812 			break;
2813 		if (list_empty(&hsotg->free_hc_list))
2814 			break;
2815 		qh = list_entry(qh_ptr, struct dwc2_qh, qh_list_entry);
2816 		if (hsotg->params.uframe_sched) {
2817 			if (hsotg->available_host_channels < 1)
2818 				break;
2819 			hsotg->available_host_channels--;
2820 		}
2821 
2822 		if (dwc2_assign_and_init_hc(hsotg, qh))
2823 			break;
2824 
2825 		/*
2826 		 * Move the QH from the non-periodic inactive schedule to the
2827 		 * non-periodic active schedule
2828 		 */
2829 		qh_ptr = qh_ptr->next;
2830 		list_move_tail(&qh->qh_list_entry,
2831 			       &hsotg->non_periodic_sched_active);
2832 
2833 		if (ret_val == DWC2_TRANSACTION_NONE)
2834 			ret_val = DWC2_TRANSACTION_NON_PERIODIC;
2835 		else
2836 			ret_val = DWC2_TRANSACTION_ALL;
2837 
2838 		if (!hsotg->params.uframe_sched)
2839 			hsotg->non_periodic_channels++;
2840 	}
2841 
2842 	return ret_val;
2843 }
2844 
2845 /**
2846  * dwc2_queue_transaction() - Attempts to queue a single transaction request for
2847  * a host channel associated with either a periodic or non-periodic transfer
2848  *
2849  * @hsotg: The HCD state structure
2850  * @chan:  Host channel descriptor associated with either a periodic or
2851  *         non-periodic transfer
2852  * @fifo_dwords_avail: Number of DWORDs available in the periodic Tx FIFO
2853  *                     for periodic transfers or the non-periodic Tx FIFO
2854  *                     for non-periodic transfers
2855  *
2856  * Return: 1 if a request is queued and more requests may be needed to
2857  * complete the transfer, 0 if no more requests are required for this
2858  * transfer, -1 if there is insufficient space in the Tx FIFO
2859  *
2860  * This function assumes that there is space available in the appropriate
2861  * request queue. For an OUT transfer or SETUP transaction in Slave mode,
2862  * it checks whether space is available in the appropriate Tx FIFO.
2863  *
2864  * Must be called with interrupt disabled and spinlock held
2865  */
2866 static int dwc2_queue_transaction(struct dwc2_hsotg *hsotg,
2867 				  struct dwc2_host_chan *chan,
2868 				  u16 fifo_dwords_avail)
2869 {
2870 	int retval = 0;
2871 
2872 	if (chan->do_split)
2873 		/* Put ourselves on the list to keep order straight */
2874 		list_move_tail(&chan->split_order_list_entry,
2875 			       &hsotg->split_order);
2876 
2877 	if (hsotg->params.host_dma) {
2878 		if (hsotg->params.dma_desc_enable) {
2879 			if (!chan->xfer_started ||
2880 			    chan->ep_type == USB_ENDPOINT_XFER_ISOC) {
2881 				dwc2_hcd_start_xfer_ddma(hsotg, chan->qh);
2882 				chan->qh->ping_state = 0;
2883 			}
2884 		} else if (!chan->xfer_started) {
2885 			dwc2_hc_start_transfer(hsotg, chan);
2886 			chan->qh->ping_state = 0;
2887 		}
2888 	} else if (chan->halt_pending) {
2889 		/* Don't queue a request if the channel has been halted */
2890 	} else if (chan->halt_on_queue) {
2891 		dwc2_hc_halt(hsotg, chan, chan->halt_status);
2892 	} else if (chan->do_ping) {
2893 		if (!chan->xfer_started)
2894 			dwc2_hc_start_transfer(hsotg, chan);
2895 	} else if (!chan->ep_is_in ||
2896 		   chan->data_pid_start == DWC2_HC_PID_SETUP) {
2897 		if ((fifo_dwords_avail * 4) >= chan->max_packet) {
2898 			if (!chan->xfer_started) {
2899 				dwc2_hc_start_transfer(hsotg, chan);
2900 				retval = 1;
2901 			} else {
2902 				retval = dwc2_hc_continue_transfer(hsotg, chan);
2903 			}
2904 		} else {
2905 			retval = -1;
2906 		}
2907 	} else {
2908 		if (!chan->xfer_started) {
2909 			dwc2_hc_start_transfer(hsotg, chan);
2910 			retval = 1;
2911 		} else {
2912 			retval = dwc2_hc_continue_transfer(hsotg, chan);
2913 		}
2914 	}
2915 
2916 	return retval;
2917 }
2918 
2919 /*
2920  * Processes periodic channels for the next frame and queues transactions for
2921  * these channels to the DWC_otg controller. After queueing transactions, the
2922  * Periodic Tx FIFO Empty interrupt is enabled if there are more transactions
2923  * to queue as Periodic Tx FIFO or request queue space becomes available.
2924  * Otherwise, the Periodic Tx FIFO Empty interrupt is disabled.
2925  *
2926  * Must be called with interrupt disabled and spinlock held
2927  */
2928 static void dwc2_process_periodic_channels(struct dwc2_hsotg *hsotg)
2929 {
2930 	struct list_head *qh_ptr;
2931 	struct dwc2_qh *qh;
2932 	u32 tx_status;
2933 	u32 fspcavail;
2934 	u32 gintmsk;
2935 	int status;
2936 	bool no_queue_space = false;
2937 	bool no_fifo_space = false;
2938 	u32 qspcavail;
2939 
2940 	/* If empty list then just adjust interrupt enables */
2941 	if (list_empty(&hsotg->periodic_sched_assigned))
2942 		goto exit;
2943 
2944 	if (dbg_perio())
2945 		dev_vdbg(hsotg->dev, "Queue periodic transactions\n");
2946 
2947 	tx_status = dwc2_readl(hsotg->regs + HPTXSTS);
2948 	qspcavail = (tx_status & TXSTS_QSPCAVAIL_MASK) >>
2949 		    TXSTS_QSPCAVAIL_SHIFT;
2950 	fspcavail = (tx_status & TXSTS_FSPCAVAIL_MASK) >>
2951 		    TXSTS_FSPCAVAIL_SHIFT;
2952 
2953 	if (dbg_perio()) {
2954 		dev_vdbg(hsotg->dev, "  P Tx Req Queue Space Avail (before queue): %d\n",
2955 			 qspcavail);
2956 		dev_vdbg(hsotg->dev, "  P Tx FIFO Space Avail (before queue): %d\n",
2957 			 fspcavail);
2958 	}
2959 
2960 	qh_ptr = hsotg->periodic_sched_assigned.next;
2961 	while (qh_ptr != &hsotg->periodic_sched_assigned) {
2962 		tx_status = dwc2_readl(hsotg->regs + HPTXSTS);
2963 		qspcavail = (tx_status & TXSTS_QSPCAVAIL_MASK) >>
2964 			    TXSTS_QSPCAVAIL_SHIFT;
2965 		if (qspcavail == 0) {
2966 			no_queue_space = true;
2967 			break;
2968 		}
2969 
2970 		qh = list_entry(qh_ptr, struct dwc2_qh, qh_list_entry);
2971 		if (!qh->channel) {
2972 			qh_ptr = qh_ptr->next;
2973 			continue;
2974 		}
2975 
2976 		/* Make sure EP's TT buffer is clean before queueing qtds */
2977 		if (qh->tt_buffer_dirty) {
2978 			qh_ptr = qh_ptr->next;
2979 			continue;
2980 		}
2981 
2982 		/*
2983 		 * Set a flag if we're queuing high-bandwidth in slave mode.
2984 		 * The flag prevents any halts to get into the request queue in
2985 		 * the middle of multiple high-bandwidth packets getting queued.
2986 		 */
2987 		if (!hsotg->params.host_dma &&
2988 		    qh->channel->multi_count > 1)
2989 			hsotg->queuing_high_bandwidth = 1;
2990 
2991 		fspcavail = (tx_status & TXSTS_FSPCAVAIL_MASK) >>
2992 			    TXSTS_FSPCAVAIL_SHIFT;
2993 		status = dwc2_queue_transaction(hsotg, qh->channel, fspcavail);
2994 		if (status < 0) {
2995 			no_fifo_space = true;
2996 			break;
2997 		}
2998 
2999 		/*
3000 		 * In Slave mode, stay on the current transfer until there is
3001 		 * nothing more to do or the high-bandwidth request count is
3002 		 * reached. In DMA mode, only need to queue one request. The
3003 		 * controller automatically handles multiple packets for
3004 		 * high-bandwidth transfers.
3005 		 */
3006 		if (hsotg->params.host_dma || status == 0 ||
3007 		    qh->channel->requests == qh->channel->multi_count) {
3008 			qh_ptr = qh_ptr->next;
3009 			/*
3010 			 * Move the QH from the periodic assigned schedule to
3011 			 * the periodic queued schedule
3012 			 */
3013 			list_move_tail(&qh->qh_list_entry,
3014 				       &hsotg->periodic_sched_queued);
3015 
3016 			/* done queuing high bandwidth */
3017 			hsotg->queuing_high_bandwidth = 0;
3018 		}
3019 	}
3020 
3021 exit:
3022 	if (no_queue_space || no_fifo_space ||
3023 	    (!hsotg->params.host_dma &&
3024 	     !list_empty(&hsotg->periodic_sched_assigned))) {
3025 		/*
3026 		 * May need to queue more transactions as the request
3027 		 * queue or Tx FIFO empties. Enable the periodic Tx
3028 		 * FIFO empty interrupt. (Always use the half-empty
3029 		 * level to ensure that new requests are loaded as
3030 		 * soon as possible.)
3031 		 */
3032 		gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
3033 		if (!(gintmsk & GINTSTS_PTXFEMP)) {
3034 			gintmsk |= GINTSTS_PTXFEMP;
3035 			dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
3036 		}
3037 	} else {
3038 		/*
3039 		 * Disable the Tx FIFO empty interrupt since there are
3040 		 * no more transactions that need to be queued right
3041 		 * now. This function is called from interrupt
3042 		 * handlers to queue more transactions as transfer
3043 		 * states change.
3044 		 */
3045 		gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
3046 		if (gintmsk & GINTSTS_PTXFEMP) {
3047 			gintmsk &= ~GINTSTS_PTXFEMP;
3048 			dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
3049 		}
3050 	}
3051 }
3052 
3053 /*
3054  * Processes active non-periodic channels and queues transactions for these
3055  * channels to the DWC_otg controller. After queueing transactions, the NP Tx
3056  * FIFO Empty interrupt is enabled if there are more transactions to queue as
3057  * NP Tx FIFO or request queue space becomes available. Otherwise, the NP Tx
3058  * FIFO Empty interrupt is disabled.
3059  *
3060  * Must be called with interrupt disabled and spinlock held
3061  */
3062 static void dwc2_process_non_periodic_channels(struct dwc2_hsotg *hsotg)
3063 {
3064 	struct list_head *orig_qh_ptr;
3065 	struct dwc2_qh *qh;
3066 	u32 tx_status;
3067 	u32 qspcavail;
3068 	u32 fspcavail;
3069 	u32 gintmsk;
3070 	int status;
3071 	int no_queue_space = 0;
3072 	int no_fifo_space = 0;
3073 	int more_to_do = 0;
3074 
3075 	dev_vdbg(hsotg->dev, "Queue non-periodic transactions\n");
3076 
3077 	tx_status = dwc2_readl(hsotg->regs + GNPTXSTS);
3078 	qspcavail = (tx_status & TXSTS_QSPCAVAIL_MASK) >>
3079 		    TXSTS_QSPCAVAIL_SHIFT;
3080 	fspcavail = (tx_status & TXSTS_FSPCAVAIL_MASK) >>
3081 		    TXSTS_FSPCAVAIL_SHIFT;
3082 	dev_vdbg(hsotg->dev, "  NP Tx Req Queue Space Avail (before queue): %d\n",
3083 		 qspcavail);
3084 	dev_vdbg(hsotg->dev, "  NP Tx FIFO Space Avail (before queue): %d\n",
3085 		 fspcavail);
3086 
3087 	/*
3088 	 * Keep track of the starting point. Skip over the start-of-list
3089 	 * entry.
3090 	 */
3091 	if (hsotg->non_periodic_qh_ptr == &hsotg->non_periodic_sched_active)
3092 		hsotg->non_periodic_qh_ptr = hsotg->non_periodic_qh_ptr->next;
3093 	orig_qh_ptr = hsotg->non_periodic_qh_ptr;
3094 
3095 	/*
3096 	 * Process once through the active list or until no more space is
3097 	 * available in the request queue or the Tx FIFO
3098 	 */
3099 	do {
3100 		tx_status = dwc2_readl(hsotg->regs + GNPTXSTS);
3101 		qspcavail = (tx_status & TXSTS_QSPCAVAIL_MASK) >>
3102 			    TXSTS_QSPCAVAIL_SHIFT;
3103 		if (!hsotg->params.host_dma && qspcavail == 0) {
3104 			no_queue_space = 1;
3105 			break;
3106 		}
3107 
3108 		qh = list_entry(hsotg->non_periodic_qh_ptr, struct dwc2_qh,
3109 				qh_list_entry);
3110 		if (!qh->channel)
3111 			goto next;
3112 
3113 		/* Make sure EP's TT buffer is clean before queueing qtds */
3114 		if (qh->tt_buffer_dirty)
3115 			goto next;
3116 
3117 		fspcavail = (tx_status & TXSTS_FSPCAVAIL_MASK) >>
3118 			    TXSTS_FSPCAVAIL_SHIFT;
3119 		status = dwc2_queue_transaction(hsotg, qh->channel, fspcavail);
3120 
3121 		if (status > 0) {
3122 			more_to_do = 1;
3123 		} else if (status < 0) {
3124 			no_fifo_space = 1;
3125 			break;
3126 		}
3127 next:
3128 		/* Advance to next QH, skipping start-of-list entry */
3129 		hsotg->non_periodic_qh_ptr = hsotg->non_periodic_qh_ptr->next;
3130 		if (hsotg->non_periodic_qh_ptr ==
3131 				&hsotg->non_periodic_sched_active)
3132 			hsotg->non_periodic_qh_ptr =
3133 					hsotg->non_periodic_qh_ptr->next;
3134 	} while (hsotg->non_periodic_qh_ptr != orig_qh_ptr);
3135 
3136 	if (!hsotg->params.host_dma) {
3137 		tx_status = dwc2_readl(hsotg->regs + GNPTXSTS);
3138 		qspcavail = (tx_status & TXSTS_QSPCAVAIL_MASK) >>
3139 			    TXSTS_QSPCAVAIL_SHIFT;
3140 		fspcavail = (tx_status & TXSTS_FSPCAVAIL_MASK) >>
3141 			    TXSTS_FSPCAVAIL_SHIFT;
3142 		dev_vdbg(hsotg->dev,
3143 			 "  NP Tx Req Queue Space Avail (after queue): %d\n",
3144 			 qspcavail);
3145 		dev_vdbg(hsotg->dev,
3146 			 "  NP Tx FIFO Space Avail (after queue): %d\n",
3147 			 fspcavail);
3148 
3149 		if (more_to_do || no_queue_space || no_fifo_space) {
3150 			/*
3151 			 * May need to queue more transactions as the request
3152 			 * queue or Tx FIFO empties. Enable the non-periodic
3153 			 * Tx FIFO empty interrupt. (Always use the half-empty
3154 			 * level to ensure that new requests are loaded as
3155 			 * soon as possible.)
3156 			 */
3157 			gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
3158 			gintmsk |= GINTSTS_NPTXFEMP;
3159 			dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
3160 		} else {
3161 			/*
3162 			 * Disable the Tx FIFO empty interrupt since there are
3163 			 * no more transactions that need to be queued right
3164 			 * now. This function is called from interrupt
3165 			 * handlers to queue more transactions as transfer
3166 			 * states change.
3167 			 */
3168 			gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
3169 			gintmsk &= ~GINTSTS_NPTXFEMP;
3170 			dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
3171 		}
3172 	}
3173 }
3174 
3175 /**
3176  * dwc2_hcd_queue_transactions() - Processes the currently active host channels
3177  * and queues transactions for these channels to the DWC_otg controller. Called
3178  * from the HCD interrupt handler functions.
3179  *
3180  * @hsotg:   The HCD state structure
3181  * @tr_type: The type(s) of transactions to queue (non-periodic, periodic,
3182  *           or both)
3183  *
3184  * Must be called with interrupt disabled and spinlock held
3185  */
3186 void dwc2_hcd_queue_transactions(struct dwc2_hsotg *hsotg,
3187 				 enum dwc2_transaction_type tr_type)
3188 {
3189 #ifdef DWC2_DEBUG_SOF
3190 	dev_vdbg(hsotg->dev, "Queue Transactions\n");
3191 #endif
3192 	/* Process host channels associated with periodic transfers */
3193 	if (tr_type == DWC2_TRANSACTION_PERIODIC ||
3194 	    tr_type == DWC2_TRANSACTION_ALL)
3195 		dwc2_process_periodic_channels(hsotg);
3196 
3197 	/* Process host channels associated with non-periodic transfers */
3198 	if (tr_type == DWC2_TRANSACTION_NON_PERIODIC ||
3199 	    tr_type == DWC2_TRANSACTION_ALL) {
3200 		if (!list_empty(&hsotg->non_periodic_sched_active)) {
3201 			dwc2_process_non_periodic_channels(hsotg);
3202 		} else {
3203 			/*
3204 			 * Ensure NP Tx FIFO empty interrupt is disabled when
3205 			 * there are no non-periodic transfers to process
3206 			 */
3207 			u32 gintmsk = dwc2_readl(hsotg->regs + GINTMSK);
3208 
3209 			gintmsk &= ~GINTSTS_NPTXFEMP;
3210 			dwc2_writel(gintmsk, hsotg->regs + GINTMSK);
3211 		}
3212 	}
3213 }
3214 
3215 static void dwc2_conn_id_status_change(struct work_struct *work)
3216 {
3217 	struct dwc2_hsotg *hsotg = container_of(work, struct dwc2_hsotg,
3218 						wf_otg);
3219 	u32 count = 0;
3220 	u32 gotgctl;
3221 	unsigned long flags;
3222 
3223 	dev_dbg(hsotg->dev, "%s()\n", __func__);
3224 
3225 	gotgctl = dwc2_readl(hsotg->regs + GOTGCTL);
3226 	dev_dbg(hsotg->dev, "gotgctl=%0x\n", gotgctl);
3227 	dev_dbg(hsotg->dev, "gotgctl.b.conidsts=%d\n",
3228 		!!(gotgctl & GOTGCTL_CONID_B));
3229 
3230 	/* B-Device connector (Device Mode) */
3231 	if (gotgctl & GOTGCTL_CONID_B) {
3232 		/* Wait for switch to device mode */
3233 		dev_dbg(hsotg->dev, "connId B\n");
3234 		while (!dwc2_is_device_mode(hsotg)) {
3235 			dev_info(hsotg->dev,
3236 				 "Waiting for Peripheral Mode, Mode=%s\n",
3237 				 dwc2_is_host_mode(hsotg) ? "Host" :
3238 				 "Peripheral");
3239 			msleep(20);
3240 			/*
3241 			 * Sometimes the initial GOTGCTRL read is wrong, so
3242 			 * check it again and jump to host mode if that was
3243 			 * the case.
3244 			 */
3245 			gotgctl = dwc2_readl(hsotg->regs + GOTGCTL);
3246 			if (!(gotgctl & GOTGCTL_CONID_B))
3247 				goto host;
3248 			if (++count > 250)
3249 				break;
3250 		}
3251 		if (count > 250)
3252 			dev_err(hsotg->dev,
3253 				"Connection id status change timed out\n");
3254 		hsotg->op_state = OTG_STATE_B_PERIPHERAL;
3255 		dwc2_core_init(hsotg, false);
3256 		dwc2_enable_global_interrupts(hsotg);
3257 		spin_lock_irqsave(&hsotg->lock, flags);
3258 		dwc2_hsotg_core_init_disconnected(hsotg, false);
3259 		spin_unlock_irqrestore(&hsotg->lock, flags);
3260 		dwc2_hsotg_core_connect(hsotg);
3261 	} else {
3262 host:
3263 		/* A-Device connector (Host Mode) */
3264 		dev_dbg(hsotg->dev, "connId A\n");
3265 		while (!dwc2_is_host_mode(hsotg)) {
3266 			dev_info(hsotg->dev, "Waiting for Host Mode, Mode=%s\n",
3267 				 dwc2_is_host_mode(hsotg) ?
3268 				 "Host" : "Peripheral");
3269 			msleep(20);
3270 			if (++count > 250)
3271 				break;
3272 		}
3273 		if (count > 250)
3274 			dev_err(hsotg->dev,
3275 				"Connection id status change timed out\n");
3276 		hsotg->op_state = OTG_STATE_A_HOST;
3277 
3278 		/* Initialize the Core for Host mode */
3279 		dwc2_core_init(hsotg, false);
3280 		dwc2_enable_global_interrupts(hsotg);
3281 		dwc2_hcd_start(hsotg);
3282 	}
3283 }
3284 
3285 static void dwc2_wakeup_detected(unsigned long data)
3286 {
3287 	struct dwc2_hsotg *hsotg = (struct dwc2_hsotg *)data;
3288 	u32 hprt0;
3289 
3290 	dev_dbg(hsotg->dev, "%s()\n", __func__);
3291 
3292 	/*
3293 	 * Clear the Resume after 70ms. (Need 20 ms minimum. Use 70 ms
3294 	 * so that OPT tests pass with all PHYs.)
3295 	 */
3296 	hprt0 = dwc2_read_hprt0(hsotg);
3297 	dev_dbg(hsotg->dev, "Resume: HPRT0=%0x\n", hprt0);
3298 	hprt0 &= ~HPRT0_RES;
3299 	dwc2_writel(hprt0, hsotg->regs + HPRT0);
3300 	dev_dbg(hsotg->dev, "Clear Resume: HPRT0=%0x\n",
3301 		dwc2_readl(hsotg->regs + HPRT0));
3302 
3303 	dwc2_hcd_rem_wakeup(hsotg);
3304 	hsotg->bus_suspended = false;
3305 
3306 	/* Change to L0 state */
3307 	hsotg->lx_state = DWC2_L0;
3308 }
3309 
3310 static int dwc2_host_is_b_hnp_enabled(struct dwc2_hsotg *hsotg)
3311 {
3312 	struct usb_hcd *hcd = dwc2_hsotg_to_hcd(hsotg);
3313 
3314 	return hcd->self.b_hnp_enable;
3315 }
3316 
3317 /* Must NOT be called with interrupt disabled or spinlock held */
3318 static void dwc2_port_suspend(struct dwc2_hsotg *hsotg, u16 windex)
3319 {
3320 	unsigned long flags;
3321 	u32 hprt0;
3322 	u32 pcgctl;
3323 	u32 gotgctl;
3324 
3325 	dev_dbg(hsotg->dev, "%s()\n", __func__);
3326 
3327 	spin_lock_irqsave(&hsotg->lock, flags);
3328 
3329 	if (windex == hsotg->otg_port && dwc2_host_is_b_hnp_enabled(hsotg)) {
3330 		gotgctl = dwc2_readl(hsotg->regs + GOTGCTL);
3331 		gotgctl |= GOTGCTL_HSTSETHNPEN;
3332 		dwc2_writel(gotgctl, hsotg->regs + GOTGCTL);
3333 		hsotg->op_state = OTG_STATE_A_SUSPEND;
3334 	}
3335 
3336 	hprt0 = dwc2_read_hprt0(hsotg);
3337 	hprt0 |= HPRT0_SUSP;
3338 	dwc2_writel(hprt0, hsotg->regs + HPRT0);
3339 
3340 	hsotg->bus_suspended = true;
3341 
3342 	/*
3343 	 * If hibernation is supported, Phy clock will be suspended
3344 	 * after registers are backuped.
3345 	 */
3346 	if (!hsotg->params.hibernation) {
3347 		/* Suspend the Phy Clock */
3348 		pcgctl = dwc2_readl(hsotg->regs + PCGCTL);
3349 		pcgctl |= PCGCTL_STOPPCLK;
3350 		dwc2_writel(pcgctl, hsotg->regs + PCGCTL);
3351 		udelay(10);
3352 	}
3353 
3354 	/* For HNP the bus must be suspended for at least 200ms */
3355 	if (dwc2_host_is_b_hnp_enabled(hsotg)) {
3356 		pcgctl = dwc2_readl(hsotg->regs + PCGCTL);
3357 		pcgctl &= ~PCGCTL_STOPPCLK;
3358 		dwc2_writel(pcgctl, hsotg->regs + PCGCTL);
3359 
3360 		spin_unlock_irqrestore(&hsotg->lock, flags);
3361 
3362 		msleep(200);
3363 	} else {
3364 		spin_unlock_irqrestore(&hsotg->lock, flags);
3365 	}
3366 }
3367 
3368 /* Must NOT be called with interrupt disabled or spinlock held */
3369 static void dwc2_port_resume(struct dwc2_hsotg *hsotg)
3370 {
3371 	unsigned long flags;
3372 	u32 hprt0;
3373 	u32 pcgctl;
3374 
3375 	spin_lock_irqsave(&hsotg->lock, flags);
3376 
3377 	/*
3378 	 * If hibernation is supported, Phy clock is already resumed
3379 	 * after registers restore.
3380 	 */
3381 	if (!hsotg->params.hibernation) {
3382 		pcgctl = dwc2_readl(hsotg->regs + PCGCTL);
3383 		pcgctl &= ~PCGCTL_STOPPCLK;
3384 		dwc2_writel(pcgctl, hsotg->regs + PCGCTL);
3385 		spin_unlock_irqrestore(&hsotg->lock, flags);
3386 		msleep(20);
3387 		spin_lock_irqsave(&hsotg->lock, flags);
3388 	}
3389 
3390 	hprt0 = dwc2_read_hprt0(hsotg);
3391 	hprt0 |= HPRT0_RES;
3392 	hprt0 &= ~HPRT0_SUSP;
3393 	dwc2_writel(hprt0, hsotg->regs + HPRT0);
3394 	spin_unlock_irqrestore(&hsotg->lock, flags);
3395 
3396 	msleep(USB_RESUME_TIMEOUT);
3397 
3398 	spin_lock_irqsave(&hsotg->lock, flags);
3399 	hprt0 = dwc2_read_hprt0(hsotg);
3400 	hprt0 &= ~(HPRT0_RES | HPRT0_SUSP);
3401 	dwc2_writel(hprt0, hsotg->regs + HPRT0);
3402 	hsotg->bus_suspended = false;
3403 	spin_unlock_irqrestore(&hsotg->lock, flags);
3404 }
3405 
3406 /* Handles hub class-specific requests */
3407 static int dwc2_hcd_hub_control(struct dwc2_hsotg *hsotg, u16 typereq,
3408 				u16 wvalue, u16 windex, char *buf, u16 wlength)
3409 {
3410 	struct usb_hub_descriptor *hub_desc;
3411 	int retval = 0;
3412 	u32 hprt0;
3413 	u32 port_status;
3414 	u32 speed;
3415 	u32 pcgctl;
3416 
3417 	switch (typereq) {
3418 	case ClearHubFeature:
3419 		dev_dbg(hsotg->dev, "ClearHubFeature %1xh\n", wvalue);
3420 
3421 		switch (wvalue) {
3422 		case C_HUB_LOCAL_POWER:
3423 		case C_HUB_OVER_CURRENT:
3424 			/* Nothing required here */
3425 			break;
3426 
3427 		default:
3428 			retval = -EINVAL;
3429 			dev_err(hsotg->dev,
3430 				"ClearHubFeature request %1xh unknown\n",
3431 				wvalue);
3432 		}
3433 		break;
3434 
3435 	case ClearPortFeature:
3436 		if (wvalue != USB_PORT_FEAT_L1)
3437 			if (!windex || windex > 1)
3438 				goto error;
3439 		switch (wvalue) {
3440 		case USB_PORT_FEAT_ENABLE:
3441 			dev_dbg(hsotg->dev,
3442 				"ClearPortFeature USB_PORT_FEAT_ENABLE\n");
3443 			hprt0 = dwc2_read_hprt0(hsotg);
3444 			hprt0 |= HPRT0_ENA;
3445 			dwc2_writel(hprt0, hsotg->regs + HPRT0);
3446 			break;
3447 
3448 		case USB_PORT_FEAT_SUSPEND:
3449 			dev_dbg(hsotg->dev,
3450 				"ClearPortFeature USB_PORT_FEAT_SUSPEND\n");
3451 
3452 			if (hsotg->bus_suspended)
3453 				dwc2_port_resume(hsotg);
3454 			break;
3455 
3456 		case USB_PORT_FEAT_POWER:
3457 			dev_dbg(hsotg->dev,
3458 				"ClearPortFeature USB_PORT_FEAT_POWER\n");
3459 			hprt0 = dwc2_read_hprt0(hsotg);
3460 			hprt0 &= ~HPRT0_PWR;
3461 			dwc2_writel(hprt0, hsotg->regs + HPRT0);
3462 			break;
3463 
3464 		case USB_PORT_FEAT_INDICATOR:
3465 			dev_dbg(hsotg->dev,
3466 				"ClearPortFeature USB_PORT_FEAT_INDICATOR\n");
3467 			/* Port indicator not supported */
3468 			break;
3469 
3470 		case USB_PORT_FEAT_C_CONNECTION:
3471 			/*
3472 			 * Clears driver's internal Connect Status Change flag
3473 			 */
3474 			dev_dbg(hsotg->dev,
3475 				"ClearPortFeature USB_PORT_FEAT_C_CONNECTION\n");
3476 			hsotg->flags.b.port_connect_status_change = 0;
3477 			break;
3478 
3479 		case USB_PORT_FEAT_C_RESET:
3480 			/* Clears driver's internal Port Reset Change flag */
3481 			dev_dbg(hsotg->dev,
3482 				"ClearPortFeature USB_PORT_FEAT_C_RESET\n");
3483 			hsotg->flags.b.port_reset_change = 0;
3484 			break;
3485 
3486 		case USB_PORT_FEAT_C_ENABLE:
3487 			/*
3488 			 * Clears the driver's internal Port Enable/Disable
3489 			 * Change flag
3490 			 */
3491 			dev_dbg(hsotg->dev,
3492 				"ClearPortFeature USB_PORT_FEAT_C_ENABLE\n");
3493 			hsotg->flags.b.port_enable_change = 0;
3494 			break;
3495 
3496 		case USB_PORT_FEAT_C_SUSPEND:
3497 			/*
3498 			 * Clears the driver's internal Port Suspend Change
3499 			 * flag, which is set when resume signaling on the host
3500 			 * port is complete
3501 			 */
3502 			dev_dbg(hsotg->dev,
3503 				"ClearPortFeature USB_PORT_FEAT_C_SUSPEND\n");
3504 			hsotg->flags.b.port_suspend_change = 0;
3505 			break;
3506 
3507 		case USB_PORT_FEAT_C_PORT_L1:
3508 			dev_dbg(hsotg->dev,
3509 				"ClearPortFeature USB_PORT_FEAT_C_PORT_L1\n");
3510 			hsotg->flags.b.port_l1_change = 0;
3511 			break;
3512 
3513 		case USB_PORT_FEAT_C_OVER_CURRENT:
3514 			dev_dbg(hsotg->dev,
3515 				"ClearPortFeature USB_PORT_FEAT_C_OVER_CURRENT\n");
3516 			hsotg->flags.b.port_over_current_change = 0;
3517 			break;
3518 
3519 		default:
3520 			retval = -EINVAL;
3521 			dev_err(hsotg->dev,
3522 				"ClearPortFeature request %1xh unknown or unsupported\n",
3523 				wvalue);
3524 		}
3525 		break;
3526 
3527 	case GetHubDescriptor:
3528 		dev_dbg(hsotg->dev, "GetHubDescriptor\n");
3529 		hub_desc = (struct usb_hub_descriptor *)buf;
3530 		hub_desc->bDescLength = 9;
3531 		hub_desc->bDescriptorType = USB_DT_HUB;
3532 		hub_desc->bNbrPorts = 1;
3533 		hub_desc->wHubCharacteristics =
3534 			cpu_to_le16(HUB_CHAR_COMMON_LPSM |
3535 				    HUB_CHAR_INDV_PORT_OCPM);
3536 		hub_desc->bPwrOn2PwrGood = 1;
3537 		hub_desc->bHubContrCurrent = 0;
3538 		hub_desc->u.hs.DeviceRemovable[0] = 0;
3539 		hub_desc->u.hs.DeviceRemovable[1] = 0xff;
3540 		break;
3541 
3542 	case GetHubStatus:
3543 		dev_dbg(hsotg->dev, "GetHubStatus\n");
3544 		memset(buf, 0, 4);
3545 		break;
3546 
3547 	case GetPortStatus:
3548 		dev_vdbg(hsotg->dev,
3549 			 "GetPortStatus wIndex=0x%04x flags=0x%08x\n", windex,
3550 			 hsotg->flags.d32);
3551 		if (!windex || windex > 1)
3552 			goto error;
3553 
3554 		port_status = 0;
3555 		if (hsotg->flags.b.port_connect_status_change)
3556 			port_status |= USB_PORT_STAT_C_CONNECTION << 16;
3557 		if (hsotg->flags.b.port_enable_change)
3558 			port_status |= USB_PORT_STAT_C_ENABLE << 16;
3559 		if (hsotg->flags.b.port_suspend_change)
3560 			port_status |= USB_PORT_STAT_C_SUSPEND << 16;
3561 		if (hsotg->flags.b.port_l1_change)
3562 			port_status |= USB_PORT_STAT_C_L1 << 16;
3563 		if (hsotg->flags.b.port_reset_change)
3564 			port_status |= USB_PORT_STAT_C_RESET << 16;
3565 		if (hsotg->flags.b.port_over_current_change) {
3566 			dev_warn(hsotg->dev, "Overcurrent change detected\n");
3567 			port_status |= USB_PORT_STAT_C_OVERCURRENT << 16;
3568 		}
3569 
3570 		if (!hsotg->flags.b.port_connect_status) {
3571 			/*
3572 			 * The port is disconnected, which means the core is
3573 			 * either in device mode or it soon will be. Just
3574 			 * return 0's for the remainder of the port status
3575 			 * since the port register can't be read if the core
3576 			 * is in device mode.
3577 			 */
3578 			*(__le32 *)buf = cpu_to_le32(port_status);
3579 			break;
3580 		}
3581 
3582 		hprt0 = dwc2_readl(hsotg->regs + HPRT0);
3583 		dev_vdbg(hsotg->dev, "  HPRT0: 0x%08x\n", hprt0);
3584 
3585 		if (hprt0 & HPRT0_CONNSTS)
3586 			port_status |= USB_PORT_STAT_CONNECTION;
3587 		if (hprt0 & HPRT0_ENA)
3588 			port_status |= USB_PORT_STAT_ENABLE;
3589 		if (hprt0 & HPRT0_SUSP)
3590 			port_status |= USB_PORT_STAT_SUSPEND;
3591 		if (hprt0 & HPRT0_OVRCURRACT)
3592 			port_status |= USB_PORT_STAT_OVERCURRENT;
3593 		if (hprt0 & HPRT0_RST)
3594 			port_status |= USB_PORT_STAT_RESET;
3595 		if (hprt0 & HPRT0_PWR)
3596 			port_status |= USB_PORT_STAT_POWER;
3597 
3598 		speed = (hprt0 & HPRT0_SPD_MASK) >> HPRT0_SPD_SHIFT;
3599 		if (speed == HPRT0_SPD_HIGH_SPEED)
3600 			port_status |= USB_PORT_STAT_HIGH_SPEED;
3601 		else if (speed == HPRT0_SPD_LOW_SPEED)
3602 			port_status |= USB_PORT_STAT_LOW_SPEED;
3603 
3604 		if (hprt0 & HPRT0_TSTCTL_MASK)
3605 			port_status |= USB_PORT_STAT_TEST;
3606 		/* USB_PORT_FEAT_INDICATOR unsupported always 0 */
3607 
3608 		if (hsotg->params.dma_desc_fs_enable) {
3609 			/*
3610 			 * Enable descriptor DMA only if a full speed
3611 			 * device is connected.
3612 			 */
3613 			if (hsotg->new_connection &&
3614 			    ((port_status &
3615 			      (USB_PORT_STAT_CONNECTION |
3616 			       USB_PORT_STAT_HIGH_SPEED |
3617 			       USB_PORT_STAT_LOW_SPEED)) ==
3618 			       USB_PORT_STAT_CONNECTION)) {
3619 				u32 hcfg;
3620 
3621 				dev_info(hsotg->dev, "Enabling descriptor DMA mode\n");
3622 				hsotg->params.dma_desc_enable = true;
3623 				hcfg = dwc2_readl(hsotg->regs + HCFG);
3624 				hcfg |= HCFG_DESCDMA;
3625 				dwc2_writel(hcfg, hsotg->regs + HCFG);
3626 				hsotg->new_connection = false;
3627 			}
3628 		}
3629 
3630 		dev_vdbg(hsotg->dev, "port_status=%08x\n", port_status);
3631 		*(__le32 *)buf = cpu_to_le32(port_status);
3632 		break;
3633 
3634 	case SetHubFeature:
3635 		dev_dbg(hsotg->dev, "SetHubFeature\n");
3636 		/* No HUB features supported */
3637 		break;
3638 
3639 	case SetPortFeature:
3640 		dev_dbg(hsotg->dev, "SetPortFeature\n");
3641 		if (wvalue != USB_PORT_FEAT_TEST && (!windex || windex > 1))
3642 			goto error;
3643 
3644 		if (!hsotg->flags.b.port_connect_status) {
3645 			/*
3646 			 * The port is disconnected, which means the core is
3647 			 * either in device mode or it soon will be. Just
3648 			 * return without doing anything since the port
3649 			 * register can't be written if the core is in device
3650 			 * mode.
3651 			 */
3652 			break;
3653 		}
3654 
3655 		switch (wvalue) {
3656 		case USB_PORT_FEAT_SUSPEND:
3657 			dev_dbg(hsotg->dev,
3658 				"SetPortFeature - USB_PORT_FEAT_SUSPEND\n");
3659 			if (windex != hsotg->otg_port)
3660 				goto error;
3661 			dwc2_port_suspend(hsotg, windex);
3662 			break;
3663 
3664 		case USB_PORT_FEAT_POWER:
3665 			dev_dbg(hsotg->dev,
3666 				"SetPortFeature - USB_PORT_FEAT_POWER\n");
3667 			hprt0 = dwc2_read_hprt0(hsotg);
3668 			hprt0 |= HPRT0_PWR;
3669 			dwc2_writel(hprt0, hsotg->regs + HPRT0);
3670 			break;
3671 
3672 		case USB_PORT_FEAT_RESET:
3673 			hprt0 = dwc2_read_hprt0(hsotg);
3674 			dev_dbg(hsotg->dev,
3675 				"SetPortFeature - USB_PORT_FEAT_RESET\n");
3676 			pcgctl = dwc2_readl(hsotg->regs + PCGCTL);
3677 			pcgctl &= ~(PCGCTL_ENBL_SLEEP_GATING | PCGCTL_STOPPCLK);
3678 			dwc2_writel(pcgctl, hsotg->regs + PCGCTL);
3679 			/* ??? Original driver does this */
3680 			dwc2_writel(0, hsotg->regs + PCGCTL);
3681 
3682 			hprt0 = dwc2_read_hprt0(hsotg);
3683 			/* Clear suspend bit if resetting from suspend state */
3684 			hprt0 &= ~HPRT0_SUSP;
3685 
3686 			/*
3687 			 * When B-Host the Port reset bit is set in the Start
3688 			 * HCD Callback function, so that the reset is started
3689 			 * within 1ms of the HNP success interrupt
3690 			 */
3691 			if (!dwc2_hcd_is_b_host(hsotg)) {
3692 				hprt0 |= HPRT0_PWR | HPRT0_RST;
3693 				dev_dbg(hsotg->dev,
3694 					"In host mode, hprt0=%08x\n", hprt0);
3695 				dwc2_writel(hprt0, hsotg->regs + HPRT0);
3696 			}
3697 
3698 			/* Clear reset bit in 10ms (FS/LS) or 50ms (HS) */
3699 			msleep(50);
3700 			hprt0 &= ~HPRT0_RST;
3701 			dwc2_writel(hprt0, hsotg->regs + HPRT0);
3702 			hsotg->lx_state = DWC2_L0; /* Now back to On state */
3703 			break;
3704 
3705 		case USB_PORT_FEAT_INDICATOR:
3706 			dev_dbg(hsotg->dev,
3707 				"SetPortFeature - USB_PORT_FEAT_INDICATOR\n");
3708 			/* Not supported */
3709 			break;
3710 
3711 		case USB_PORT_FEAT_TEST:
3712 			hprt0 = dwc2_read_hprt0(hsotg);
3713 			dev_dbg(hsotg->dev,
3714 				"SetPortFeature - USB_PORT_FEAT_TEST\n");
3715 			hprt0 &= ~HPRT0_TSTCTL_MASK;
3716 			hprt0 |= (windex >> 8) << HPRT0_TSTCTL_SHIFT;
3717 			dwc2_writel(hprt0, hsotg->regs + HPRT0);
3718 			break;
3719 
3720 		default:
3721 			retval = -EINVAL;
3722 			dev_err(hsotg->dev,
3723 				"SetPortFeature %1xh unknown or unsupported\n",
3724 				wvalue);
3725 			break;
3726 		}
3727 		break;
3728 
3729 	default:
3730 error:
3731 		retval = -EINVAL;
3732 		dev_dbg(hsotg->dev,
3733 			"Unknown hub control request: %1xh wIndex: %1xh wValue: %1xh\n",
3734 			typereq, windex, wvalue);
3735 		break;
3736 	}
3737 
3738 	return retval;
3739 }
3740 
3741 static int dwc2_hcd_is_status_changed(struct dwc2_hsotg *hsotg, int port)
3742 {
3743 	int retval;
3744 
3745 	if (port != 1)
3746 		return -EINVAL;
3747 
3748 	retval = (hsotg->flags.b.port_connect_status_change ||
3749 		  hsotg->flags.b.port_reset_change ||
3750 		  hsotg->flags.b.port_enable_change ||
3751 		  hsotg->flags.b.port_suspend_change ||
3752 		  hsotg->flags.b.port_over_current_change);
3753 
3754 	if (retval) {
3755 		dev_dbg(hsotg->dev,
3756 			"DWC OTG HCD HUB STATUS DATA: Root port status changed\n");
3757 		dev_dbg(hsotg->dev, "  port_connect_status_change: %d\n",
3758 			hsotg->flags.b.port_connect_status_change);
3759 		dev_dbg(hsotg->dev, "  port_reset_change: %d\n",
3760 			hsotg->flags.b.port_reset_change);
3761 		dev_dbg(hsotg->dev, "  port_enable_change: %d\n",
3762 			hsotg->flags.b.port_enable_change);
3763 		dev_dbg(hsotg->dev, "  port_suspend_change: %d\n",
3764 			hsotg->flags.b.port_suspend_change);
3765 		dev_dbg(hsotg->dev, "  port_over_current_change: %d\n",
3766 			hsotg->flags.b.port_over_current_change);
3767 	}
3768 
3769 	return retval;
3770 }
3771 
3772 int dwc2_hcd_get_frame_number(struct dwc2_hsotg *hsotg)
3773 {
3774 	u32 hfnum = dwc2_readl(hsotg->regs + HFNUM);
3775 
3776 #ifdef DWC2_DEBUG_SOF
3777 	dev_vdbg(hsotg->dev, "DWC OTG HCD GET FRAME NUMBER %d\n",
3778 		 (hfnum & HFNUM_FRNUM_MASK) >> HFNUM_FRNUM_SHIFT);
3779 #endif
3780 	return (hfnum & HFNUM_FRNUM_MASK) >> HFNUM_FRNUM_SHIFT;
3781 }
3782 
3783 int dwc2_hcd_get_future_frame_number(struct dwc2_hsotg *hsotg, int us)
3784 {
3785 	u32 hprt = dwc2_readl(hsotg->regs + HPRT0);
3786 	u32 hfir = dwc2_readl(hsotg->regs + HFIR);
3787 	u32 hfnum = dwc2_readl(hsotg->regs + HFNUM);
3788 	unsigned int us_per_frame;
3789 	unsigned int frame_number;
3790 	unsigned int remaining;
3791 	unsigned int interval;
3792 	unsigned int phy_clks;
3793 
3794 	/* High speed has 125 us per (micro) frame; others are 1 ms per */
3795 	us_per_frame = (hprt & HPRT0_SPD_MASK) ? 1000 : 125;
3796 
3797 	/* Extract fields */
3798 	frame_number = (hfnum & HFNUM_FRNUM_MASK) >> HFNUM_FRNUM_SHIFT;
3799 	remaining = (hfnum & HFNUM_FRREM_MASK) >> HFNUM_FRREM_SHIFT;
3800 	interval = (hfir & HFIR_FRINT_MASK) >> HFIR_FRINT_SHIFT;
3801 
3802 	/*
3803 	 * Number of phy clocks since the last tick of the frame number after
3804 	 * "us" has passed.
3805 	 */
3806 	phy_clks = (interval - remaining) +
3807 		   DIV_ROUND_UP(interval * us, us_per_frame);
3808 
3809 	return dwc2_frame_num_inc(frame_number, phy_clks / interval);
3810 }
3811 
3812 int dwc2_hcd_is_b_host(struct dwc2_hsotg *hsotg)
3813 {
3814 	return hsotg->op_state == OTG_STATE_B_HOST;
3815 }
3816 
3817 static struct dwc2_hcd_urb *dwc2_hcd_urb_alloc(struct dwc2_hsotg *hsotg,
3818 					       int iso_desc_count,
3819 					       gfp_t mem_flags)
3820 {
3821 	struct dwc2_hcd_urb *urb;
3822 	u32 size = sizeof(*urb) + iso_desc_count *
3823 		   sizeof(struct dwc2_hcd_iso_packet_desc);
3824 
3825 	urb = kzalloc(size, mem_flags);
3826 	if (urb)
3827 		urb->packet_count = iso_desc_count;
3828 	return urb;
3829 }
3830 
3831 static void dwc2_hcd_urb_set_pipeinfo(struct dwc2_hsotg *hsotg,
3832 				      struct dwc2_hcd_urb *urb, u8 dev_addr,
3833 				      u8 ep_num, u8 ep_type, u8 ep_dir, u16 mps)
3834 {
3835 	if (dbg_perio() ||
3836 	    ep_type == USB_ENDPOINT_XFER_BULK ||
3837 	    ep_type == USB_ENDPOINT_XFER_CONTROL)
3838 		dev_vdbg(hsotg->dev,
3839 			 "addr=%d, ep_num=%d, ep_dir=%1x, ep_type=%1x, mps=%d\n",
3840 			 dev_addr, ep_num, ep_dir, ep_type, mps);
3841 	urb->pipe_info.dev_addr = dev_addr;
3842 	urb->pipe_info.ep_num = ep_num;
3843 	urb->pipe_info.pipe_type = ep_type;
3844 	urb->pipe_info.pipe_dir = ep_dir;
3845 	urb->pipe_info.mps = mps;
3846 }
3847 
3848 /*
3849  * NOTE: This function will be removed once the peripheral controller code
3850  * is integrated and the driver is stable
3851  */
3852 void dwc2_hcd_dump_state(struct dwc2_hsotg *hsotg)
3853 {
3854 #ifdef DEBUG
3855 	struct dwc2_host_chan *chan;
3856 	struct dwc2_hcd_urb *urb;
3857 	struct dwc2_qtd *qtd;
3858 	int num_channels;
3859 	u32 np_tx_status;
3860 	u32 p_tx_status;
3861 	int i;
3862 
3863 	num_channels = hsotg->params.host_channels;
3864 	dev_dbg(hsotg->dev, "\n");
3865 	dev_dbg(hsotg->dev,
3866 		"************************************************************\n");
3867 	dev_dbg(hsotg->dev, "HCD State:\n");
3868 	dev_dbg(hsotg->dev, "  Num channels: %d\n", num_channels);
3869 
3870 	for (i = 0; i < num_channels; i++) {
3871 		chan = hsotg->hc_ptr_array[i];
3872 		dev_dbg(hsotg->dev, "  Channel %d:\n", i);
3873 		dev_dbg(hsotg->dev,
3874 			"    dev_addr: %d, ep_num: %d, ep_is_in: %d\n",
3875 			chan->dev_addr, chan->ep_num, chan->ep_is_in);
3876 		dev_dbg(hsotg->dev, "    speed: %d\n", chan->speed);
3877 		dev_dbg(hsotg->dev, "    ep_type: %d\n", chan->ep_type);
3878 		dev_dbg(hsotg->dev, "    max_packet: %d\n", chan->max_packet);
3879 		dev_dbg(hsotg->dev, "    data_pid_start: %d\n",
3880 			chan->data_pid_start);
3881 		dev_dbg(hsotg->dev, "    multi_count: %d\n", chan->multi_count);
3882 		dev_dbg(hsotg->dev, "    xfer_started: %d\n",
3883 			chan->xfer_started);
3884 		dev_dbg(hsotg->dev, "    xfer_buf: %p\n", chan->xfer_buf);
3885 		dev_dbg(hsotg->dev, "    xfer_dma: %08lx\n",
3886 			(unsigned long)chan->xfer_dma);
3887 		dev_dbg(hsotg->dev, "    xfer_len: %d\n", chan->xfer_len);
3888 		dev_dbg(hsotg->dev, "    xfer_count: %d\n", chan->xfer_count);
3889 		dev_dbg(hsotg->dev, "    halt_on_queue: %d\n",
3890 			chan->halt_on_queue);
3891 		dev_dbg(hsotg->dev, "    halt_pending: %d\n",
3892 			chan->halt_pending);
3893 		dev_dbg(hsotg->dev, "    halt_status: %d\n", chan->halt_status);
3894 		dev_dbg(hsotg->dev, "    do_split: %d\n", chan->do_split);
3895 		dev_dbg(hsotg->dev, "    complete_split: %d\n",
3896 			chan->complete_split);
3897 		dev_dbg(hsotg->dev, "    hub_addr: %d\n", chan->hub_addr);
3898 		dev_dbg(hsotg->dev, "    hub_port: %d\n", chan->hub_port);
3899 		dev_dbg(hsotg->dev, "    xact_pos: %d\n", chan->xact_pos);
3900 		dev_dbg(hsotg->dev, "    requests: %d\n", chan->requests);
3901 		dev_dbg(hsotg->dev, "    qh: %p\n", chan->qh);
3902 
3903 		if (chan->xfer_started) {
3904 			u32 hfnum, hcchar, hctsiz, hcint, hcintmsk;
3905 
3906 			hfnum = dwc2_readl(hsotg->regs + HFNUM);
3907 			hcchar = dwc2_readl(hsotg->regs + HCCHAR(i));
3908 			hctsiz = dwc2_readl(hsotg->regs + HCTSIZ(i));
3909 			hcint = dwc2_readl(hsotg->regs + HCINT(i));
3910 			hcintmsk = dwc2_readl(hsotg->regs + HCINTMSK(i));
3911 			dev_dbg(hsotg->dev, "    hfnum: 0x%08x\n", hfnum);
3912 			dev_dbg(hsotg->dev, "    hcchar: 0x%08x\n", hcchar);
3913 			dev_dbg(hsotg->dev, "    hctsiz: 0x%08x\n", hctsiz);
3914 			dev_dbg(hsotg->dev, "    hcint: 0x%08x\n", hcint);
3915 			dev_dbg(hsotg->dev, "    hcintmsk: 0x%08x\n", hcintmsk);
3916 		}
3917 
3918 		if (!(chan->xfer_started && chan->qh))
3919 			continue;
3920 
3921 		list_for_each_entry(qtd, &chan->qh->qtd_list, qtd_list_entry) {
3922 			if (!qtd->in_process)
3923 				break;
3924 			urb = qtd->urb;
3925 			dev_dbg(hsotg->dev, "    URB Info:\n");
3926 			dev_dbg(hsotg->dev, "      qtd: %p, urb: %p\n",
3927 				qtd, urb);
3928 			if (urb) {
3929 				dev_dbg(hsotg->dev,
3930 					"      Dev: %d, EP: %d %s\n",
3931 					dwc2_hcd_get_dev_addr(&urb->pipe_info),
3932 					dwc2_hcd_get_ep_num(&urb->pipe_info),
3933 					dwc2_hcd_is_pipe_in(&urb->pipe_info) ?
3934 					"IN" : "OUT");
3935 				dev_dbg(hsotg->dev,
3936 					"      Max packet size: %d\n",
3937 					dwc2_hcd_get_mps(&urb->pipe_info));
3938 				dev_dbg(hsotg->dev,
3939 					"      transfer_buffer: %p\n",
3940 					urb->buf);
3941 				dev_dbg(hsotg->dev,
3942 					"      transfer_dma: %08lx\n",
3943 					(unsigned long)urb->dma);
3944 				dev_dbg(hsotg->dev,
3945 					"      transfer_buffer_length: %d\n",
3946 					urb->length);
3947 				dev_dbg(hsotg->dev, "      actual_length: %d\n",
3948 					urb->actual_length);
3949 			}
3950 		}
3951 	}
3952 
3953 	dev_dbg(hsotg->dev, "  non_periodic_channels: %d\n",
3954 		hsotg->non_periodic_channels);
3955 	dev_dbg(hsotg->dev, "  periodic_channels: %d\n",
3956 		hsotg->periodic_channels);
3957 	dev_dbg(hsotg->dev, "  periodic_usecs: %d\n", hsotg->periodic_usecs);
3958 	np_tx_status = dwc2_readl(hsotg->regs + GNPTXSTS);
3959 	dev_dbg(hsotg->dev, "  NP Tx Req Queue Space Avail: %d\n",
3960 		(np_tx_status & TXSTS_QSPCAVAIL_MASK) >> TXSTS_QSPCAVAIL_SHIFT);
3961 	dev_dbg(hsotg->dev, "  NP Tx FIFO Space Avail: %d\n",
3962 		(np_tx_status & TXSTS_FSPCAVAIL_MASK) >> TXSTS_FSPCAVAIL_SHIFT);
3963 	p_tx_status = dwc2_readl(hsotg->regs + HPTXSTS);
3964 	dev_dbg(hsotg->dev, "  P Tx Req Queue Space Avail: %d\n",
3965 		(p_tx_status & TXSTS_QSPCAVAIL_MASK) >> TXSTS_QSPCAVAIL_SHIFT);
3966 	dev_dbg(hsotg->dev, "  P Tx FIFO Space Avail: %d\n",
3967 		(p_tx_status & TXSTS_FSPCAVAIL_MASK) >> TXSTS_FSPCAVAIL_SHIFT);
3968 	dwc2_hcd_dump_frrem(hsotg);
3969 	dwc2_dump_global_registers(hsotg);
3970 	dwc2_dump_host_registers(hsotg);
3971 	dev_dbg(hsotg->dev,
3972 		"************************************************************\n");
3973 	dev_dbg(hsotg->dev, "\n");
3974 #endif
3975 }
3976 
3977 /*
3978  * NOTE: This function will be removed once the peripheral controller code
3979  * is integrated and the driver is stable
3980  */
3981 void dwc2_hcd_dump_frrem(struct dwc2_hsotg *hsotg)
3982 {
3983 #ifdef DWC2_DUMP_FRREM
3984 	dev_dbg(hsotg->dev, "Frame remaining at SOF:\n");
3985 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
3986 		hsotg->frrem_samples, hsotg->frrem_accum,
3987 		hsotg->frrem_samples > 0 ?
3988 		hsotg->frrem_accum / hsotg->frrem_samples : 0);
3989 	dev_dbg(hsotg->dev, "\n");
3990 	dev_dbg(hsotg->dev, "Frame remaining at start_transfer (uframe 7):\n");
3991 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
3992 		hsotg->hfnum_7_samples,
3993 		hsotg->hfnum_7_frrem_accum,
3994 		hsotg->hfnum_7_samples > 0 ?
3995 		hsotg->hfnum_7_frrem_accum / hsotg->hfnum_7_samples : 0);
3996 	dev_dbg(hsotg->dev, "Frame remaining at start_transfer (uframe 0):\n");
3997 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
3998 		hsotg->hfnum_0_samples,
3999 		hsotg->hfnum_0_frrem_accum,
4000 		hsotg->hfnum_0_samples > 0 ?
4001 		hsotg->hfnum_0_frrem_accum / hsotg->hfnum_0_samples : 0);
4002 	dev_dbg(hsotg->dev, "Frame remaining at start_transfer (uframe 1-6):\n");
4003 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
4004 		hsotg->hfnum_other_samples,
4005 		hsotg->hfnum_other_frrem_accum,
4006 		hsotg->hfnum_other_samples > 0 ?
4007 		hsotg->hfnum_other_frrem_accum / hsotg->hfnum_other_samples :
4008 		0);
4009 	dev_dbg(hsotg->dev, "\n");
4010 	dev_dbg(hsotg->dev, "Frame remaining at sample point A (uframe 7):\n");
4011 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
4012 		hsotg->hfnum_7_samples_a, hsotg->hfnum_7_frrem_accum_a,
4013 		hsotg->hfnum_7_samples_a > 0 ?
4014 		hsotg->hfnum_7_frrem_accum_a / hsotg->hfnum_7_samples_a : 0);
4015 	dev_dbg(hsotg->dev, "Frame remaining at sample point A (uframe 0):\n");
4016 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
4017 		hsotg->hfnum_0_samples_a, hsotg->hfnum_0_frrem_accum_a,
4018 		hsotg->hfnum_0_samples_a > 0 ?
4019 		hsotg->hfnum_0_frrem_accum_a / hsotg->hfnum_0_samples_a : 0);
4020 	dev_dbg(hsotg->dev, "Frame remaining at sample point A (uframe 1-6):\n");
4021 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
4022 		hsotg->hfnum_other_samples_a, hsotg->hfnum_other_frrem_accum_a,
4023 		hsotg->hfnum_other_samples_a > 0 ?
4024 		hsotg->hfnum_other_frrem_accum_a / hsotg->hfnum_other_samples_a
4025 		: 0);
4026 	dev_dbg(hsotg->dev, "\n");
4027 	dev_dbg(hsotg->dev, "Frame remaining at sample point B (uframe 7):\n");
4028 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
4029 		hsotg->hfnum_7_samples_b, hsotg->hfnum_7_frrem_accum_b,
4030 		hsotg->hfnum_7_samples_b > 0 ?
4031 		hsotg->hfnum_7_frrem_accum_b / hsotg->hfnum_7_samples_b : 0);
4032 	dev_dbg(hsotg->dev, "Frame remaining at sample point B (uframe 0):\n");
4033 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
4034 		hsotg->hfnum_0_samples_b, hsotg->hfnum_0_frrem_accum_b,
4035 		(hsotg->hfnum_0_samples_b > 0) ?
4036 		hsotg->hfnum_0_frrem_accum_b / hsotg->hfnum_0_samples_b : 0);
4037 	dev_dbg(hsotg->dev, "Frame remaining at sample point B (uframe 1-6):\n");
4038 	dev_dbg(hsotg->dev, "  samples %u, accum %llu, avg %llu\n",
4039 		hsotg->hfnum_other_samples_b, hsotg->hfnum_other_frrem_accum_b,
4040 		(hsotg->hfnum_other_samples_b > 0) ?
4041 		hsotg->hfnum_other_frrem_accum_b / hsotg->hfnum_other_samples_b
4042 		: 0);
4043 #endif
4044 }
4045 
4046 struct wrapper_priv_data {
4047 	struct dwc2_hsotg *hsotg;
4048 };
4049 
4050 /* Gets the dwc2_hsotg from a usb_hcd */
4051 static struct dwc2_hsotg *dwc2_hcd_to_hsotg(struct usb_hcd *hcd)
4052 {
4053 	struct wrapper_priv_data *p;
4054 
4055 	p = (struct wrapper_priv_data *)&hcd->hcd_priv;
4056 	return p->hsotg;
4057 }
4058 
4059 /**
4060  * dwc2_host_get_tt_info() - Get the dwc2_tt associated with context
4061  *
4062  * This will get the dwc2_tt structure (and ttport) associated with the given
4063  * context (which is really just a struct urb pointer).
4064  *
4065  * The first time this is called for a given TT we allocate memory for our
4066  * structure.  When everyone is done and has called dwc2_host_put_tt_info()
4067  * then the refcount for the structure will go to 0 and we'll free it.
4068  *
4069  * @hsotg:     The HCD state structure for the DWC OTG controller.
4070  * @qh:        The QH structure.
4071  * @context:   The priv pointer from a struct dwc2_hcd_urb.
4072  * @mem_flags: Flags for allocating memory.
4073  * @ttport:    We'll return this device's port number here.  That's used to
4074  *             reference into the bitmap if we're on a multi_tt hub.
4075  *
4076  * Return: a pointer to a struct dwc2_tt.  Don't forget to call
4077  *         dwc2_host_put_tt_info()!  Returns NULL upon memory alloc failure.
4078  */
4079 
4080 struct dwc2_tt *dwc2_host_get_tt_info(struct dwc2_hsotg *hsotg, void *context,
4081 				      gfp_t mem_flags, int *ttport)
4082 {
4083 	struct urb *urb = context;
4084 	struct dwc2_tt *dwc_tt = NULL;
4085 
4086 	if (urb->dev->tt) {
4087 		*ttport = urb->dev->ttport;
4088 
4089 		dwc_tt = urb->dev->tt->hcpriv;
4090 		if (!dwc_tt) {
4091 			size_t bitmap_size;
4092 
4093 			/*
4094 			 * For single_tt we need one schedule.  For multi_tt
4095 			 * we need one per port.
4096 			 */
4097 			bitmap_size = DWC2_ELEMENTS_PER_LS_BITMAP *
4098 				      sizeof(dwc_tt->periodic_bitmaps[0]);
4099 			if (urb->dev->tt->multi)
4100 				bitmap_size *= urb->dev->tt->hub->maxchild;
4101 
4102 			dwc_tt = kzalloc(sizeof(*dwc_tt) + bitmap_size,
4103 					 mem_flags);
4104 			if (!dwc_tt)
4105 				return NULL;
4106 
4107 			dwc_tt->usb_tt = urb->dev->tt;
4108 			dwc_tt->usb_tt->hcpriv = dwc_tt;
4109 		}
4110 
4111 		dwc_tt->refcount++;
4112 	}
4113 
4114 	return dwc_tt;
4115 }
4116 
4117 /**
4118  * dwc2_host_put_tt_info() - Put the dwc2_tt from dwc2_host_get_tt_info()
4119  *
4120  * Frees resources allocated by dwc2_host_get_tt_info() if all current holders
4121  * of the structure are done.
4122  *
4123  * It's OK to call this with NULL.
4124  *
4125  * @hsotg:     The HCD state structure for the DWC OTG controller.
4126  * @dwc_tt:    The pointer returned by dwc2_host_get_tt_info.
4127  */
4128 void dwc2_host_put_tt_info(struct dwc2_hsotg *hsotg, struct dwc2_tt *dwc_tt)
4129 {
4130 	/* Model kfree and make put of NULL a no-op */
4131 	if (!dwc_tt)
4132 		return;
4133 
4134 	WARN_ON(dwc_tt->refcount < 1);
4135 
4136 	dwc_tt->refcount--;
4137 	if (!dwc_tt->refcount) {
4138 		dwc_tt->usb_tt->hcpriv = NULL;
4139 		kfree(dwc_tt);
4140 	}
4141 }
4142 
4143 int dwc2_host_get_speed(struct dwc2_hsotg *hsotg, void *context)
4144 {
4145 	struct urb *urb = context;
4146 
4147 	return urb->dev->speed;
4148 }
4149 
4150 static void dwc2_allocate_bus_bandwidth(struct usb_hcd *hcd, u16 bw,
4151 					struct urb *urb)
4152 {
4153 	struct usb_bus *bus = hcd_to_bus(hcd);
4154 
4155 	if (urb->interval)
4156 		bus->bandwidth_allocated += bw / urb->interval;
4157 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS)
4158 		bus->bandwidth_isoc_reqs++;
4159 	else
4160 		bus->bandwidth_int_reqs++;
4161 }
4162 
4163 static void dwc2_free_bus_bandwidth(struct usb_hcd *hcd, u16 bw,
4164 				    struct urb *urb)
4165 {
4166 	struct usb_bus *bus = hcd_to_bus(hcd);
4167 
4168 	if (urb->interval)
4169 		bus->bandwidth_allocated -= bw / urb->interval;
4170 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS)
4171 		bus->bandwidth_isoc_reqs--;
4172 	else
4173 		bus->bandwidth_int_reqs--;
4174 }
4175 
4176 /*
4177  * Sets the final status of an URB and returns it to the upper layer. Any
4178  * required cleanup of the URB is performed.
4179  *
4180  * Must be called with interrupt disabled and spinlock held
4181  */
4182 void dwc2_host_complete(struct dwc2_hsotg *hsotg, struct dwc2_qtd *qtd,
4183 			int status)
4184 {
4185 	struct urb *urb;
4186 	int i;
4187 
4188 	if (!qtd) {
4189 		dev_dbg(hsotg->dev, "## %s: qtd is NULL ##\n", __func__);
4190 		return;
4191 	}
4192 
4193 	if (!qtd->urb) {
4194 		dev_dbg(hsotg->dev, "## %s: qtd->urb is NULL ##\n", __func__);
4195 		return;
4196 	}
4197 
4198 	urb = qtd->urb->priv;
4199 	if (!urb) {
4200 		dev_dbg(hsotg->dev, "## %s: urb->priv is NULL ##\n", __func__);
4201 		return;
4202 	}
4203 
4204 	urb->actual_length = dwc2_hcd_urb_get_actual_length(qtd->urb);
4205 
4206 	if (dbg_urb(urb))
4207 		dev_vdbg(hsotg->dev,
4208 			 "%s: urb %p device %d ep %d-%s status %d actual %d\n",
4209 			 __func__, urb, usb_pipedevice(urb->pipe),
4210 			 usb_pipeendpoint(urb->pipe),
4211 			 usb_pipein(urb->pipe) ? "IN" : "OUT", status,
4212 			 urb->actual_length);
4213 
4214 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) {
4215 		urb->error_count = dwc2_hcd_urb_get_error_count(qtd->urb);
4216 		for (i = 0; i < urb->number_of_packets; ++i) {
4217 			urb->iso_frame_desc[i].actual_length =
4218 				dwc2_hcd_urb_get_iso_desc_actual_length(
4219 						qtd->urb, i);
4220 			urb->iso_frame_desc[i].status =
4221 				dwc2_hcd_urb_get_iso_desc_status(qtd->urb, i);
4222 		}
4223 	}
4224 
4225 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS && dbg_perio()) {
4226 		for (i = 0; i < urb->number_of_packets; i++)
4227 			dev_vdbg(hsotg->dev, " ISO Desc %d status %d\n",
4228 				 i, urb->iso_frame_desc[i].status);
4229 	}
4230 
4231 	urb->status = status;
4232 	if (!status) {
4233 		if ((urb->transfer_flags & URB_SHORT_NOT_OK) &&
4234 		    urb->actual_length < urb->transfer_buffer_length)
4235 			urb->status = -EREMOTEIO;
4236 	}
4237 
4238 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS ||
4239 	    usb_pipetype(urb->pipe) == PIPE_INTERRUPT) {
4240 		struct usb_host_endpoint *ep = urb->ep;
4241 
4242 		if (ep)
4243 			dwc2_free_bus_bandwidth(dwc2_hsotg_to_hcd(hsotg),
4244 					dwc2_hcd_get_ep_bandwidth(hsotg, ep),
4245 					urb);
4246 	}
4247 
4248 	usb_hcd_unlink_urb_from_ep(dwc2_hsotg_to_hcd(hsotg), urb);
4249 	urb->hcpriv = NULL;
4250 	kfree(qtd->urb);
4251 	qtd->urb = NULL;
4252 
4253 	usb_hcd_giveback_urb(dwc2_hsotg_to_hcd(hsotg), urb, status);
4254 }
4255 
4256 /*
4257  * Work queue function for starting the HCD when A-Cable is connected
4258  */
4259 static void dwc2_hcd_start_func(struct work_struct *work)
4260 {
4261 	struct dwc2_hsotg *hsotg = container_of(work, struct dwc2_hsotg,
4262 						start_work.work);
4263 
4264 	dev_dbg(hsotg->dev, "%s() %p\n", __func__, hsotg);
4265 	dwc2_host_start(hsotg);
4266 }
4267 
4268 /*
4269  * Reset work queue function
4270  */
4271 static void dwc2_hcd_reset_func(struct work_struct *work)
4272 {
4273 	struct dwc2_hsotg *hsotg = container_of(work, struct dwc2_hsotg,
4274 						reset_work.work);
4275 	unsigned long flags;
4276 	u32 hprt0;
4277 
4278 	dev_dbg(hsotg->dev, "USB RESET function called\n");
4279 
4280 	spin_lock_irqsave(&hsotg->lock, flags);
4281 
4282 	hprt0 = dwc2_read_hprt0(hsotg);
4283 	hprt0 &= ~HPRT0_RST;
4284 	dwc2_writel(hprt0, hsotg->regs + HPRT0);
4285 	hsotg->flags.b.port_reset_change = 1;
4286 
4287 	spin_unlock_irqrestore(&hsotg->lock, flags);
4288 }
4289 
4290 /*
4291  * =========================================================================
4292  *  Linux HC Driver Functions
4293  * =========================================================================
4294  */
4295 
4296 /*
4297  * Initializes the DWC_otg controller and its root hub and prepares it for host
4298  * mode operation. Activates the root port. Returns 0 on success and a negative
4299  * error code on failure.
4300  */
4301 static int _dwc2_hcd_start(struct usb_hcd *hcd)
4302 {
4303 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4304 	struct usb_bus *bus = hcd_to_bus(hcd);
4305 	unsigned long flags;
4306 
4307 	dev_dbg(hsotg->dev, "DWC OTG HCD START\n");
4308 
4309 	spin_lock_irqsave(&hsotg->lock, flags);
4310 	hsotg->lx_state = DWC2_L0;
4311 	hcd->state = HC_STATE_RUNNING;
4312 	set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
4313 
4314 	if (dwc2_is_device_mode(hsotg)) {
4315 		spin_unlock_irqrestore(&hsotg->lock, flags);
4316 		return 0;	/* why 0 ?? */
4317 	}
4318 
4319 	dwc2_hcd_reinit(hsotg);
4320 
4321 	/* Initialize and connect root hub if one is not already attached */
4322 	if (bus->root_hub) {
4323 		dev_dbg(hsotg->dev, "DWC OTG HCD Has Root Hub\n");
4324 		/* Inform the HUB driver to resume */
4325 		usb_hcd_resume_root_hub(hcd);
4326 	}
4327 
4328 	spin_unlock_irqrestore(&hsotg->lock, flags);
4329 	return 0;
4330 }
4331 
4332 /*
4333  * Halts the DWC_otg host mode operations in a clean manner. USB transfers are
4334  * stopped.
4335  */
4336 static void _dwc2_hcd_stop(struct usb_hcd *hcd)
4337 {
4338 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4339 	unsigned long flags;
4340 
4341 	/* Turn off all host-specific interrupts */
4342 	dwc2_disable_host_interrupts(hsotg);
4343 
4344 	/* Wait for interrupt processing to finish */
4345 	synchronize_irq(hcd->irq);
4346 
4347 	spin_lock_irqsave(&hsotg->lock, flags);
4348 	/* Ensure hcd is disconnected */
4349 	dwc2_hcd_disconnect(hsotg, true);
4350 	dwc2_hcd_stop(hsotg);
4351 	hsotg->lx_state = DWC2_L3;
4352 	hcd->state = HC_STATE_HALT;
4353 	clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
4354 	spin_unlock_irqrestore(&hsotg->lock, flags);
4355 
4356 	usleep_range(1000, 3000);
4357 }
4358 
4359 static int _dwc2_hcd_suspend(struct usb_hcd *hcd)
4360 {
4361 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4362 	unsigned long flags;
4363 	int ret = 0;
4364 	u32 hprt0;
4365 
4366 	spin_lock_irqsave(&hsotg->lock, flags);
4367 
4368 	if (hsotg->lx_state != DWC2_L0)
4369 		goto unlock;
4370 
4371 	if (!HCD_HW_ACCESSIBLE(hcd))
4372 		goto unlock;
4373 
4374 	if (!hsotg->params.hibernation)
4375 		goto skip_power_saving;
4376 
4377 	/*
4378 	 * Drive USB suspend and disable port Power
4379 	 * if usb bus is not suspended.
4380 	 */
4381 	if (!hsotg->bus_suspended) {
4382 		hprt0 = dwc2_read_hprt0(hsotg);
4383 		hprt0 |= HPRT0_SUSP;
4384 		hprt0 &= ~HPRT0_PWR;
4385 		dwc2_writel(hprt0, hsotg->regs + HPRT0);
4386 	}
4387 
4388 	/* Enter hibernation */
4389 	ret = dwc2_enter_hibernation(hsotg);
4390 	if (ret) {
4391 		if (ret != -ENOTSUPP)
4392 			dev_err(hsotg->dev,
4393 				"enter hibernation failed\n");
4394 		goto skip_power_saving;
4395 	}
4396 
4397 	/* Ask phy to be suspended */
4398 	if (!IS_ERR_OR_NULL(hsotg->uphy)) {
4399 		spin_unlock_irqrestore(&hsotg->lock, flags);
4400 		usb_phy_set_suspend(hsotg->uphy, true);
4401 		spin_lock_irqsave(&hsotg->lock, flags);
4402 	}
4403 
4404 	/* After entering hibernation, hardware is no more accessible */
4405 	clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
4406 
4407 skip_power_saving:
4408 	hsotg->lx_state = DWC2_L2;
4409 unlock:
4410 	spin_unlock_irqrestore(&hsotg->lock, flags);
4411 
4412 	return ret;
4413 }
4414 
4415 static int _dwc2_hcd_resume(struct usb_hcd *hcd)
4416 {
4417 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4418 	unsigned long flags;
4419 	int ret = 0;
4420 
4421 	spin_lock_irqsave(&hsotg->lock, flags);
4422 
4423 	if (hsotg->lx_state != DWC2_L2)
4424 		goto unlock;
4425 
4426 	if (!hsotg->params.hibernation) {
4427 		hsotg->lx_state = DWC2_L0;
4428 		goto unlock;
4429 	}
4430 
4431 	/*
4432 	 * Set HW accessible bit before powering on the controller
4433 	 * since an interrupt may rise.
4434 	 */
4435 	set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
4436 
4437 	/*
4438 	 * Enable power if not already done.
4439 	 * This must not be spinlocked since duration
4440 	 * of this call is unknown.
4441 	 */
4442 	if (!IS_ERR_OR_NULL(hsotg->uphy)) {
4443 		spin_unlock_irqrestore(&hsotg->lock, flags);
4444 		usb_phy_set_suspend(hsotg->uphy, false);
4445 		spin_lock_irqsave(&hsotg->lock, flags);
4446 	}
4447 
4448 	/* Exit hibernation */
4449 	ret = dwc2_exit_hibernation(hsotg, true);
4450 	if (ret && (ret != -ENOTSUPP))
4451 		dev_err(hsotg->dev, "exit hibernation failed\n");
4452 
4453 	hsotg->lx_state = DWC2_L0;
4454 
4455 	spin_unlock_irqrestore(&hsotg->lock, flags);
4456 
4457 	if (hsotg->bus_suspended) {
4458 		spin_lock_irqsave(&hsotg->lock, flags);
4459 		hsotg->flags.b.port_suspend_change = 1;
4460 		spin_unlock_irqrestore(&hsotg->lock, flags);
4461 		dwc2_port_resume(hsotg);
4462 	} else {
4463 		/* Wait for controller to correctly update D+/D- level */
4464 		usleep_range(3000, 5000);
4465 
4466 		/*
4467 		 * Clear Port Enable and Port Status changes.
4468 		 * Enable Port Power.
4469 		 */
4470 		dwc2_writel(HPRT0_PWR | HPRT0_CONNDET |
4471 				HPRT0_ENACHG, hsotg->regs + HPRT0);
4472 		/* Wait for controller to detect Port Connect */
4473 		usleep_range(5000, 7000);
4474 	}
4475 
4476 	return ret;
4477 unlock:
4478 	spin_unlock_irqrestore(&hsotg->lock, flags);
4479 
4480 	return ret;
4481 }
4482 
4483 /* Returns the current frame number */
4484 static int _dwc2_hcd_get_frame_number(struct usb_hcd *hcd)
4485 {
4486 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4487 
4488 	return dwc2_hcd_get_frame_number(hsotg);
4489 }
4490 
4491 static void dwc2_dump_urb_info(struct usb_hcd *hcd, struct urb *urb,
4492 			       char *fn_name)
4493 {
4494 #ifdef VERBOSE_DEBUG
4495 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4496 	char *pipetype;
4497 	char *speed;
4498 
4499 	dev_vdbg(hsotg->dev, "%s, urb %p\n", fn_name, urb);
4500 	dev_vdbg(hsotg->dev, "  Device address: %d\n",
4501 		 usb_pipedevice(urb->pipe));
4502 	dev_vdbg(hsotg->dev, "  Endpoint: %d, %s\n",
4503 		 usb_pipeendpoint(urb->pipe),
4504 		 usb_pipein(urb->pipe) ? "IN" : "OUT");
4505 
4506 	switch (usb_pipetype(urb->pipe)) {
4507 	case PIPE_CONTROL:
4508 		pipetype = "CONTROL";
4509 		break;
4510 	case PIPE_BULK:
4511 		pipetype = "BULK";
4512 		break;
4513 	case PIPE_INTERRUPT:
4514 		pipetype = "INTERRUPT";
4515 		break;
4516 	case PIPE_ISOCHRONOUS:
4517 		pipetype = "ISOCHRONOUS";
4518 		break;
4519 	}
4520 
4521 	dev_vdbg(hsotg->dev, "  Endpoint type: %s %s (%s)\n", pipetype,
4522 		 usb_urb_dir_in(urb) ? "IN" : "OUT", usb_pipein(urb->pipe) ?
4523 		 "IN" : "OUT");
4524 
4525 	switch (urb->dev->speed) {
4526 	case USB_SPEED_HIGH:
4527 		speed = "HIGH";
4528 		break;
4529 	case USB_SPEED_FULL:
4530 		speed = "FULL";
4531 		break;
4532 	case USB_SPEED_LOW:
4533 		speed = "LOW";
4534 		break;
4535 	default:
4536 		speed = "UNKNOWN";
4537 		break;
4538 	}
4539 
4540 	dev_vdbg(hsotg->dev, "  Speed: %s\n", speed);
4541 	dev_vdbg(hsotg->dev, "  Max packet size: %d\n",
4542 		 usb_maxpacket(urb->dev, urb->pipe, usb_pipeout(urb->pipe)));
4543 	dev_vdbg(hsotg->dev, "  Data buffer length: %d\n",
4544 		 urb->transfer_buffer_length);
4545 	dev_vdbg(hsotg->dev, "  Transfer buffer: %p, Transfer DMA: %08lx\n",
4546 		 urb->transfer_buffer, (unsigned long)urb->transfer_dma);
4547 	dev_vdbg(hsotg->dev, "  Setup buffer: %p, Setup DMA: %08lx\n",
4548 		 urb->setup_packet, (unsigned long)urb->setup_dma);
4549 	dev_vdbg(hsotg->dev, "  Interval: %d\n", urb->interval);
4550 
4551 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) {
4552 		int i;
4553 
4554 		for (i = 0; i < urb->number_of_packets; i++) {
4555 			dev_vdbg(hsotg->dev, "  ISO Desc %d:\n", i);
4556 			dev_vdbg(hsotg->dev, "    offset: %d, length %d\n",
4557 				 urb->iso_frame_desc[i].offset,
4558 				 urb->iso_frame_desc[i].length);
4559 		}
4560 	}
4561 #endif
4562 }
4563 
4564 /*
4565  * Starts processing a USB transfer request specified by a USB Request Block
4566  * (URB). mem_flags indicates the type of memory allocation to use while
4567  * processing this URB.
4568  */
4569 static int _dwc2_hcd_urb_enqueue(struct usb_hcd *hcd, struct urb *urb,
4570 				 gfp_t mem_flags)
4571 {
4572 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4573 	struct usb_host_endpoint *ep = urb->ep;
4574 	struct dwc2_hcd_urb *dwc2_urb;
4575 	int i;
4576 	int retval;
4577 	int alloc_bandwidth = 0;
4578 	u8 ep_type = 0;
4579 	u32 tflags = 0;
4580 	void *buf;
4581 	unsigned long flags;
4582 	struct dwc2_qh *qh;
4583 	bool qh_allocated = false;
4584 	struct dwc2_qtd *qtd;
4585 
4586 	if (dbg_urb(urb)) {
4587 		dev_vdbg(hsotg->dev, "DWC OTG HCD URB Enqueue\n");
4588 		dwc2_dump_urb_info(hcd, urb, "urb_enqueue");
4589 	}
4590 
4591 	if (!ep)
4592 		return -EINVAL;
4593 
4594 	if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS ||
4595 	    usb_pipetype(urb->pipe) == PIPE_INTERRUPT) {
4596 		spin_lock_irqsave(&hsotg->lock, flags);
4597 		if (!dwc2_hcd_is_bandwidth_allocated(hsotg, ep))
4598 			alloc_bandwidth = 1;
4599 		spin_unlock_irqrestore(&hsotg->lock, flags);
4600 	}
4601 
4602 	switch (usb_pipetype(urb->pipe)) {
4603 	case PIPE_CONTROL:
4604 		ep_type = USB_ENDPOINT_XFER_CONTROL;
4605 		break;
4606 	case PIPE_ISOCHRONOUS:
4607 		ep_type = USB_ENDPOINT_XFER_ISOC;
4608 		break;
4609 	case PIPE_BULK:
4610 		ep_type = USB_ENDPOINT_XFER_BULK;
4611 		break;
4612 	case PIPE_INTERRUPT:
4613 		ep_type = USB_ENDPOINT_XFER_INT;
4614 		break;
4615 	}
4616 
4617 	dwc2_urb = dwc2_hcd_urb_alloc(hsotg, urb->number_of_packets,
4618 				      mem_flags);
4619 	if (!dwc2_urb)
4620 		return -ENOMEM;
4621 
4622 	dwc2_hcd_urb_set_pipeinfo(hsotg, dwc2_urb, usb_pipedevice(urb->pipe),
4623 				  usb_pipeendpoint(urb->pipe), ep_type,
4624 				  usb_pipein(urb->pipe),
4625 				  usb_maxpacket(urb->dev, urb->pipe,
4626 						!(usb_pipein(urb->pipe))));
4627 
4628 	buf = urb->transfer_buffer;
4629 
4630 	if (hcd->self.uses_dma) {
4631 		if (!buf && (urb->transfer_dma & 3)) {
4632 			dev_err(hsotg->dev,
4633 				"%s: unaligned transfer with no transfer_buffer",
4634 				__func__);
4635 			retval = -EINVAL;
4636 			goto fail0;
4637 		}
4638 	}
4639 
4640 	if (!(urb->transfer_flags & URB_NO_INTERRUPT))
4641 		tflags |= URB_GIVEBACK_ASAP;
4642 	if (urb->transfer_flags & URB_ZERO_PACKET)
4643 		tflags |= URB_SEND_ZERO_PACKET;
4644 
4645 	dwc2_urb->priv = urb;
4646 	dwc2_urb->buf = buf;
4647 	dwc2_urb->dma = urb->transfer_dma;
4648 	dwc2_urb->length = urb->transfer_buffer_length;
4649 	dwc2_urb->setup_packet = urb->setup_packet;
4650 	dwc2_urb->setup_dma = urb->setup_dma;
4651 	dwc2_urb->flags = tflags;
4652 	dwc2_urb->interval = urb->interval;
4653 	dwc2_urb->status = -EINPROGRESS;
4654 
4655 	for (i = 0; i < urb->number_of_packets; ++i)
4656 		dwc2_hcd_urb_set_iso_desc_params(dwc2_urb, i,
4657 						 urb->iso_frame_desc[i].offset,
4658 						 urb->iso_frame_desc[i].length);
4659 
4660 	urb->hcpriv = dwc2_urb;
4661 	qh = (struct dwc2_qh *)ep->hcpriv;
4662 	/* Create QH for the endpoint if it doesn't exist */
4663 	if (!qh) {
4664 		qh = dwc2_hcd_qh_create(hsotg, dwc2_urb, mem_flags);
4665 		if (!qh) {
4666 			retval = -ENOMEM;
4667 			goto fail0;
4668 		}
4669 		ep->hcpriv = qh;
4670 		qh_allocated = true;
4671 	}
4672 
4673 	qtd = kzalloc(sizeof(*qtd), mem_flags);
4674 	if (!qtd) {
4675 		retval = -ENOMEM;
4676 		goto fail1;
4677 	}
4678 
4679 	spin_lock_irqsave(&hsotg->lock, flags);
4680 	retval = usb_hcd_link_urb_to_ep(hcd, urb);
4681 	if (retval)
4682 		goto fail2;
4683 
4684 	retval = dwc2_hcd_urb_enqueue(hsotg, dwc2_urb, qh, qtd);
4685 	if (retval)
4686 		goto fail3;
4687 
4688 	if (alloc_bandwidth) {
4689 		dwc2_allocate_bus_bandwidth(hcd,
4690 				dwc2_hcd_get_ep_bandwidth(hsotg, ep),
4691 				urb);
4692 	}
4693 
4694 	spin_unlock_irqrestore(&hsotg->lock, flags);
4695 
4696 	return 0;
4697 
4698 fail3:
4699 	dwc2_urb->priv = NULL;
4700 	usb_hcd_unlink_urb_from_ep(hcd, urb);
4701 	if (qh_allocated && qh->channel && qh->channel->qh == qh)
4702 		qh->channel->qh = NULL;
4703 fail2:
4704 	spin_unlock_irqrestore(&hsotg->lock, flags);
4705 	urb->hcpriv = NULL;
4706 	kfree(qtd);
4707 	qtd = NULL;
4708 fail1:
4709 	if (qh_allocated) {
4710 		struct dwc2_qtd *qtd2, *qtd2_tmp;
4711 
4712 		ep->hcpriv = NULL;
4713 		dwc2_hcd_qh_unlink(hsotg, qh);
4714 		/* Free each QTD in the QH's QTD list */
4715 		list_for_each_entry_safe(qtd2, qtd2_tmp, &qh->qtd_list,
4716 					 qtd_list_entry)
4717 			dwc2_hcd_qtd_unlink_and_free(hsotg, qtd2, qh);
4718 		dwc2_hcd_qh_free(hsotg, qh);
4719 	}
4720 fail0:
4721 	kfree(dwc2_urb);
4722 
4723 	return retval;
4724 }
4725 
4726 /*
4727  * Aborts/cancels a USB transfer request. Always returns 0 to indicate success.
4728  */
4729 static int _dwc2_hcd_urb_dequeue(struct usb_hcd *hcd, struct urb *urb,
4730 				 int status)
4731 {
4732 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4733 	int rc;
4734 	unsigned long flags;
4735 
4736 	dev_dbg(hsotg->dev, "DWC OTG HCD URB Dequeue\n");
4737 	dwc2_dump_urb_info(hcd, urb, "urb_dequeue");
4738 
4739 	spin_lock_irqsave(&hsotg->lock, flags);
4740 
4741 	rc = usb_hcd_check_unlink_urb(hcd, urb, status);
4742 	if (rc)
4743 		goto out;
4744 
4745 	if (!urb->hcpriv) {
4746 		dev_dbg(hsotg->dev, "## urb->hcpriv is NULL ##\n");
4747 		goto out;
4748 	}
4749 
4750 	rc = dwc2_hcd_urb_dequeue(hsotg, urb->hcpriv);
4751 
4752 	usb_hcd_unlink_urb_from_ep(hcd, urb);
4753 
4754 	kfree(urb->hcpriv);
4755 	urb->hcpriv = NULL;
4756 
4757 	/* Higher layer software sets URB status */
4758 	spin_unlock(&hsotg->lock);
4759 	usb_hcd_giveback_urb(hcd, urb, status);
4760 	spin_lock(&hsotg->lock);
4761 
4762 	dev_dbg(hsotg->dev, "Called usb_hcd_giveback_urb()\n");
4763 	dev_dbg(hsotg->dev, "  urb->status = %d\n", urb->status);
4764 out:
4765 	spin_unlock_irqrestore(&hsotg->lock, flags);
4766 
4767 	return rc;
4768 }
4769 
4770 /*
4771  * Frees resources in the DWC_otg controller related to a given endpoint. Also
4772  * clears state in the HCD related to the endpoint. Any URBs for the endpoint
4773  * must already be dequeued.
4774  */
4775 static void _dwc2_hcd_endpoint_disable(struct usb_hcd *hcd,
4776 				       struct usb_host_endpoint *ep)
4777 {
4778 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4779 
4780 	dev_dbg(hsotg->dev,
4781 		"DWC OTG HCD EP DISABLE: bEndpointAddress=0x%02x, ep->hcpriv=%p\n",
4782 		ep->desc.bEndpointAddress, ep->hcpriv);
4783 	dwc2_hcd_endpoint_disable(hsotg, ep, 250);
4784 }
4785 
4786 /*
4787  * Resets endpoint specific parameter values, in current version used to reset
4788  * the data toggle (as a WA). This function can be called from usb_clear_halt
4789  * routine.
4790  */
4791 static void _dwc2_hcd_endpoint_reset(struct usb_hcd *hcd,
4792 				     struct usb_host_endpoint *ep)
4793 {
4794 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4795 	unsigned long flags;
4796 
4797 	dev_dbg(hsotg->dev,
4798 		"DWC OTG HCD EP RESET: bEndpointAddress=0x%02x\n",
4799 		ep->desc.bEndpointAddress);
4800 
4801 	spin_lock_irqsave(&hsotg->lock, flags);
4802 	dwc2_hcd_endpoint_reset(hsotg, ep);
4803 	spin_unlock_irqrestore(&hsotg->lock, flags);
4804 }
4805 
4806 /*
4807  * Handles host mode interrupts for the DWC_otg controller. Returns IRQ_NONE if
4808  * there was no interrupt to handle. Returns IRQ_HANDLED if there was a valid
4809  * interrupt.
4810  *
4811  * This function is called by the USB core when an interrupt occurs
4812  */
4813 static irqreturn_t _dwc2_hcd_irq(struct usb_hcd *hcd)
4814 {
4815 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4816 
4817 	return dwc2_handle_hcd_intr(hsotg);
4818 }
4819 
4820 /*
4821  * Creates Status Change bitmap for the root hub and root port. The bitmap is
4822  * returned in buf. Bit 0 is the status change indicator for the root hub. Bit 1
4823  * is the status change indicator for the single root port. Returns 1 if either
4824  * change indicator is 1, otherwise returns 0.
4825  */
4826 static int _dwc2_hcd_hub_status_data(struct usb_hcd *hcd, char *buf)
4827 {
4828 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4829 
4830 	buf[0] = dwc2_hcd_is_status_changed(hsotg, 1) << 1;
4831 	return buf[0] != 0;
4832 }
4833 
4834 /* Handles hub class-specific requests */
4835 static int _dwc2_hcd_hub_control(struct usb_hcd *hcd, u16 typereq, u16 wvalue,
4836 				 u16 windex, char *buf, u16 wlength)
4837 {
4838 	int retval = dwc2_hcd_hub_control(dwc2_hcd_to_hsotg(hcd), typereq,
4839 					  wvalue, windex, buf, wlength);
4840 	return retval;
4841 }
4842 
4843 /* Handles hub TT buffer clear completions */
4844 static void _dwc2_hcd_clear_tt_buffer_complete(struct usb_hcd *hcd,
4845 					       struct usb_host_endpoint *ep)
4846 {
4847 	struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd);
4848 	struct dwc2_qh *qh;
4849 	unsigned long flags;
4850 
4851 	qh = ep->hcpriv;
4852 	if (!qh)
4853 		return;
4854 
4855 	spin_lock_irqsave(&hsotg->lock, flags);
4856 	qh->tt_buffer_dirty = 0;
4857 
4858 	if (hsotg->flags.b.port_connect_status)
4859 		dwc2_hcd_queue_transactions(hsotg, DWC2_TRANSACTION_ALL);
4860 
4861 	spin_unlock_irqrestore(&hsotg->lock, flags);
4862 }
4863 
4864 static struct hc_driver dwc2_hc_driver = {
4865 	.description = "dwc2_hsotg",
4866 	.product_desc = "DWC OTG Controller",
4867 	.hcd_priv_size = sizeof(struct wrapper_priv_data),
4868 
4869 	.irq = _dwc2_hcd_irq,
4870 	.flags = HCD_MEMORY | HCD_USB2 | HCD_BH,
4871 
4872 	.start = _dwc2_hcd_start,
4873 	.stop = _dwc2_hcd_stop,
4874 	.urb_enqueue = _dwc2_hcd_urb_enqueue,
4875 	.urb_dequeue = _dwc2_hcd_urb_dequeue,
4876 	.endpoint_disable = _dwc2_hcd_endpoint_disable,
4877 	.endpoint_reset = _dwc2_hcd_endpoint_reset,
4878 	.get_frame_number = _dwc2_hcd_get_frame_number,
4879 
4880 	.hub_status_data = _dwc2_hcd_hub_status_data,
4881 	.hub_control = _dwc2_hcd_hub_control,
4882 	.clear_tt_buffer_complete = _dwc2_hcd_clear_tt_buffer_complete,
4883 
4884 	.bus_suspend = _dwc2_hcd_suspend,
4885 	.bus_resume = _dwc2_hcd_resume,
4886 
4887 	.map_urb_for_dma	= dwc2_map_urb_for_dma,
4888 	.unmap_urb_for_dma	= dwc2_unmap_urb_for_dma,
4889 };
4890 
4891 /*
4892  * Frees secondary storage associated with the dwc2_hsotg structure contained
4893  * in the struct usb_hcd field
4894  */
4895 static void dwc2_hcd_free(struct dwc2_hsotg *hsotg)
4896 {
4897 	u32 ahbcfg;
4898 	u32 dctl;
4899 	int i;
4900 
4901 	dev_dbg(hsotg->dev, "DWC OTG HCD FREE\n");
4902 
4903 	/* Free memory for QH/QTD lists */
4904 	dwc2_qh_list_free(hsotg, &hsotg->non_periodic_sched_inactive);
4905 	dwc2_qh_list_free(hsotg, &hsotg->non_periodic_sched_active);
4906 	dwc2_qh_list_free(hsotg, &hsotg->periodic_sched_inactive);
4907 	dwc2_qh_list_free(hsotg, &hsotg->periodic_sched_ready);
4908 	dwc2_qh_list_free(hsotg, &hsotg->periodic_sched_assigned);
4909 	dwc2_qh_list_free(hsotg, &hsotg->periodic_sched_queued);
4910 
4911 	/* Free memory for the host channels */
4912 	for (i = 0; i < MAX_EPS_CHANNELS; i++) {
4913 		struct dwc2_host_chan *chan = hsotg->hc_ptr_array[i];
4914 
4915 		if (chan) {
4916 			dev_dbg(hsotg->dev, "HCD Free channel #%i, chan=%p\n",
4917 				i, chan);
4918 			hsotg->hc_ptr_array[i] = NULL;
4919 			kfree(chan);
4920 		}
4921 	}
4922 
4923 	if (hsotg->params.host_dma) {
4924 		if (hsotg->status_buf) {
4925 			dma_free_coherent(hsotg->dev, DWC2_HCD_STATUS_BUF_SIZE,
4926 					  hsotg->status_buf,
4927 					  hsotg->status_buf_dma);
4928 			hsotg->status_buf = NULL;
4929 		}
4930 	} else {
4931 		kfree(hsotg->status_buf);
4932 		hsotg->status_buf = NULL;
4933 	}
4934 
4935 	ahbcfg = dwc2_readl(hsotg->regs + GAHBCFG);
4936 
4937 	/* Disable all interrupts */
4938 	ahbcfg &= ~GAHBCFG_GLBL_INTR_EN;
4939 	dwc2_writel(ahbcfg, hsotg->regs + GAHBCFG);
4940 	dwc2_writel(0, hsotg->regs + GINTMSK);
4941 
4942 	if (hsotg->hw_params.snpsid >= DWC2_CORE_REV_3_00a) {
4943 		dctl = dwc2_readl(hsotg->regs + DCTL);
4944 		dctl |= DCTL_SFTDISCON;
4945 		dwc2_writel(dctl, hsotg->regs + DCTL);
4946 	}
4947 
4948 	if (hsotg->wq_otg) {
4949 		if (!cancel_work_sync(&hsotg->wf_otg))
4950 			flush_workqueue(hsotg->wq_otg);
4951 		destroy_workqueue(hsotg->wq_otg);
4952 	}
4953 
4954 	del_timer(&hsotg->wkp_timer);
4955 }
4956 
4957 static void dwc2_hcd_release(struct dwc2_hsotg *hsotg)
4958 {
4959 	/* Turn off all host-specific interrupts */
4960 	dwc2_disable_host_interrupts(hsotg);
4961 
4962 	dwc2_hcd_free(hsotg);
4963 }
4964 
4965 /*
4966  * Initializes the HCD. This function allocates memory for and initializes the
4967  * static parts of the usb_hcd and dwc2_hsotg structures. It also registers the
4968  * USB bus with the core and calls the hc_driver->start() function. It returns
4969  * a negative error on failure.
4970  */
4971 int dwc2_hcd_init(struct dwc2_hsotg *hsotg, int irq)
4972 {
4973 	struct usb_hcd *hcd;
4974 	struct dwc2_host_chan *channel;
4975 	u32 hcfg;
4976 	int i, num_channels;
4977 	int retval;
4978 
4979 	if (usb_disabled())
4980 		return -ENODEV;
4981 
4982 	dev_dbg(hsotg->dev, "DWC OTG HCD INIT\n");
4983 
4984 	retval = -ENOMEM;
4985 
4986 	hcfg = dwc2_readl(hsotg->regs + HCFG);
4987 	dev_dbg(hsotg->dev, "hcfg=%08x\n", hcfg);
4988 
4989 #ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS
4990 	hsotg->frame_num_array = kzalloc(sizeof(*hsotg->frame_num_array) *
4991 					 FRAME_NUM_ARRAY_SIZE, GFP_KERNEL);
4992 	if (!hsotg->frame_num_array)
4993 		goto error1;
4994 	hsotg->last_frame_num_array = kzalloc(
4995 			sizeof(*hsotg->last_frame_num_array) *
4996 			FRAME_NUM_ARRAY_SIZE, GFP_KERNEL);
4997 	if (!hsotg->last_frame_num_array)
4998 		goto error1;
4999 #endif
5000 	hsotg->last_frame_num = HFNUM_MAX_FRNUM;
5001 
5002 	/* Check if the bus driver or platform code has setup a dma_mask */
5003 	if (hsotg->params.host_dma &&
5004 	    !hsotg->dev->dma_mask) {
5005 		dev_warn(hsotg->dev,
5006 			 "dma_mask not set, disabling DMA\n");
5007 		hsotg->params.host_dma = false;
5008 		hsotg->params.dma_desc_enable = false;
5009 	}
5010 
5011 	/* Set device flags indicating whether the HCD supports DMA */
5012 	if (hsotg->params.host_dma) {
5013 		if (dma_set_mask(hsotg->dev, DMA_BIT_MASK(32)) < 0)
5014 			dev_warn(hsotg->dev, "can't set DMA mask\n");
5015 		if (dma_set_coherent_mask(hsotg->dev, DMA_BIT_MASK(32)) < 0)
5016 			dev_warn(hsotg->dev, "can't set coherent DMA mask\n");
5017 	}
5018 
5019 	hcd = usb_create_hcd(&dwc2_hc_driver, hsotg->dev, dev_name(hsotg->dev));
5020 	if (!hcd)
5021 		goto error1;
5022 
5023 	if (!hsotg->params.host_dma)
5024 		hcd->self.uses_dma = 0;
5025 
5026 	hcd->has_tt = 1;
5027 
5028 	((struct wrapper_priv_data *)&hcd->hcd_priv)->hsotg = hsotg;
5029 	hsotg->priv = hcd;
5030 
5031 	/*
5032 	 * Disable the global interrupt until all the interrupt handlers are
5033 	 * installed
5034 	 */
5035 	dwc2_disable_global_interrupts(hsotg);
5036 
5037 	/* Initialize the DWC_otg core, and select the Phy type */
5038 	retval = dwc2_core_init(hsotg, true);
5039 	if (retval)
5040 		goto error2;
5041 
5042 	/* Create new workqueue and init work */
5043 	retval = -ENOMEM;
5044 	hsotg->wq_otg = alloc_ordered_workqueue("dwc2", 0);
5045 	if (!hsotg->wq_otg) {
5046 		dev_err(hsotg->dev, "Failed to create workqueue\n");
5047 		goto error2;
5048 	}
5049 	INIT_WORK(&hsotg->wf_otg, dwc2_conn_id_status_change);
5050 
5051 	setup_timer(&hsotg->wkp_timer, dwc2_wakeup_detected,
5052 		    (unsigned long)hsotg);
5053 
5054 	/* Initialize the non-periodic schedule */
5055 	INIT_LIST_HEAD(&hsotg->non_periodic_sched_inactive);
5056 	INIT_LIST_HEAD(&hsotg->non_periodic_sched_active);
5057 
5058 	/* Initialize the periodic schedule */
5059 	INIT_LIST_HEAD(&hsotg->periodic_sched_inactive);
5060 	INIT_LIST_HEAD(&hsotg->periodic_sched_ready);
5061 	INIT_LIST_HEAD(&hsotg->periodic_sched_assigned);
5062 	INIT_LIST_HEAD(&hsotg->periodic_sched_queued);
5063 
5064 	INIT_LIST_HEAD(&hsotg->split_order);
5065 
5066 	/*
5067 	 * Create a host channel descriptor for each host channel implemented
5068 	 * in the controller. Initialize the channel descriptor array.
5069 	 */
5070 	INIT_LIST_HEAD(&hsotg->free_hc_list);
5071 	num_channels = hsotg->params.host_channels;
5072 	memset(&hsotg->hc_ptr_array[0], 0, sizeof(hsotg->hc_ptr_array));
5073 
5074 	for (i = 0; i < num_channels; i++) {
5075 		channel = kzalloc(sizeof(*channel), GFP_KERNEL);
5076 		if (!channel)
5077 			goto error3;
5078 		channel->hc_num = i;
5079 		INIT_LIST_HEAD(&channel->split_order_list_entry);
5080 		hsotg->hc_ptr_array[i] = channel;
5081 	}
5082 
5083 	/* Initialize hsotg start work */
5084 	INIT_DELAYED_WORK(&hsotg->start_work, dwc2_hcd_start_func);
5085 
5086 	/* Initialize port reset work */
5087 	INIT_DELAYED_WORK(&hsotg->reset_work, dwc2_hcd_reset_func);
5088 
5089 	/*
5090 	 * Allocate space for storing data on status transactions. Normally no
5091 	 * data is sent, but this space acts as a bit bucket. This must be
5092 	 * done after usb_add_hcd since that function allocates the DMA buffer
5093 	 * pool.
5094 	 */
5095 	if (hsotg->params.host_dma)
5096 		hsotg->status_buf = dma_alloc_coherent(hsotg->dev,
5097 					DWC2_HCD_STATUS_BUF_SIZE,
5098 					&hsotg->status_buf_dma, GFP_KERNEL);
5099 	else
5100 		hsotg->status_buf = kzalloc(DWC2_HCD_STATUS_BUF_SIZE,
5101 					  GFP_KERNEL);
5102 
5103 	if (!hsotg->status_buf)
5104 		goto error3;
5105 
5106 	/*
5107 	 * Create kmem caches to handle descriptor buffers in descriptor
5108 	 * DMA mode.
5109 	 * Alignment must be set to 512 bytes.
5110 	 */
5111 	if (hsotg->params.dma_desc_enable ||
5112 	    hsotg->params.dma_desc_fs_enable) {
5113 		hsotg->desc_gen_cache = kmem_cache_create("dwc2-gen-desc",
5114 				sizeof(struct dwc2_dma_desc) *
5115 				MAX_DMA_DESC_NUM_GENERIC, 512, SLAB_CACHE_DMA,
5116 				NULL);
5117 		if (!hsotg->desc_gen_cache) {
5118 			dev_err(hsotg->dev,
5119 				"unable to create dwc2 generic desc cache\n");
5120 
5121 			/*
5122 			 * Disable descriptor dma mode since it will not be
5123 			 * usable.
5124 			 */
5125 			hsotg->params.dma_desc_enable = false;
5126 			hsotg->params.dma_desc_fs_enable = false;
5127 		}
5128 
5129 		hsotg->desc_hsisoc_cache = kmem_cache_create("dwc2-hsisoc-desc",
5130 				sizeof(struct dwc2_dma_desc) *
5131 				MAX_DMA_DESC_NUM_HS_ISOC, 512, 0, NULL);
5132 		if (!hsotg->desc_hsisoc_cache) {
5133 			dev_err(hsotg->dev,
5134 				"unable to create dwc2 hs isoc desc cache\n");
5135 
5136 			kmem_cache_destroy(hsotg->desc_gen_cache);
5137 
5138 			/*
5139 			 * Disable descriptor dma mode since it will not be
5140 			 * usable.
5141 			 */
5142 			hsotg->params.dma_desc_enable = false;
5143 			hsotg->params.dma_desc_fs_enable = false;
5144 		}
5145 	}
5146 
5147 	hsotg->otg_port = 1;
5148 	hsotg->frame_list = NULL;
5149 	hsotg->frame_list_dma = 0;
5150 	hsotg->periodic_qh_count = 0;
5151 
5152 	/* Initiate lx_state to L3 disconnected state */
5153 	hsotg->lx_state = DWC2_L3;
5154 
5155 	hcd->self.otg_port = hsotg->otg_port;
5156 
5157 	/* Don't support SG list at this point */
5158 	hcd->self.sg_tablesize = 0;
5159 
5160 	if (!IS_ERR_OR_NULL(hsotg->uphy))
5161 		otg_set_host(hsotg->uphy->otg, &hcd->self);
5162 
5163 	/*
5164 	 * Finish generic HCD initialization and start the HCD. This function
5165 	 * allocates the DMA buffer pool, registers the USB bus, requests the
5166 	 * IRQ line, and calls hcd_start method.
5167 	 */
5168 	retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
5169 	if (retval < 0)
5170 		goto error4;
5171 
5172 	device_wakeup_enable(hcd->self.controller);
5173 
5174 	dwc2_hcd_dump_state(hsotg);
5175 
5176 	dwc2_enable_global_interrupts(hsotg);
5177 
5178 	return 0;
5179 
5180 error4:
5181 	kmem_cache_destroy(hsotg->desc_gen_cache);
5182 	kmem_cache_destroy(hsotg->desc_hsisoc_cache);
5183 error3:
5184 	dwc2_hcd_release(hsotg);
5185 error2:
5186 	usb_put_hcd(hcd);
5187 error1:
5188 
5189 #ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS
5190 	kfree(hsotg->last_frame_num_array);
5191 	kfree(hsotg->frame_num_array);
5192 #endif
5193 
5194 	dev_err(hsotg->dev, "%s() FAILED, returning %d\n", __func__, retval);
5195 	return retval;
5196 }
5197 
5198 /*
5199  * Removes the HCD.
5200  * Frees memory and resources associated with the HCD and deregisters the bus.
5201  */
5202 void dwc2_hcd_remove(struct dwc2_hsotg *hsotg)
5203 {
5204 	struct usb_hcd *hcd;
5205 
5206 	dev_dbg(hsotg->dev, "DWC OTG HCD REMOVE\n");
5207 
5208 	hcd = dwc2_hsotg_to_hcd(hsotg);
5209 	dev_dbg(hsotg->dev, "hsotg->hcd = %p\n", hcd);
5210 
5211 	if (!hcd) {
5212 		dev_dbg(hsotg->dev, "%s: dwc2_hsotg_to_hcd(hsotg) NULL!\n",
5213 			__func__);
5214 		return;
5215 	}
5216 
5217 	if (!IS_ERR_OR_NULL(hsotg->uphy))
5218 		otg_set_host(hsotg->uphy->otg, NULL);
5219 
5220 	usb_remove_hcd(hcd);
5221 	hsotg->priv = NULL;
5222 
5223 	kmem_cache_destroy(hsotg->desc_gen_cache);
5224 	kmem_cache_destroy(hsotg->desc_hsisoc_cache);
5225 
5226 	dwc2_hcd_release(hsotg);
5227 	usb_put_hcd(hcd);
5228 
5229 #ifdef CONFIG_USB_DWC2_TRACK_MISSED_SOFS
5230 	kfree(hsotg->last_frame_num_array);
5231 	kfree(hsotg->frame_num_array);
5232 #endif
5233 }
5234 
5235 /**
5236  * dwc2_backup_host_registers() - Backup controller host registers.
5237  * When suspending usb bus, registers needs to be backuped
5238  * if controller power is disabled once suspended.
5239  *
5240  * @hsotg: Programming view of the DWC_otg controller
5241  */
5242 int dwc2_backup_host_registers(struct dwc2_hsotg *hsotg)
5243 {
5244 	struct dwc2_hregs_backup *hr;
5245 	int i;
5246 
5247 	dev_dbg(hsotg->dev, "%s\n", __func__);
5248 
5249 	/* Backup Host regs */
5250 	hr = &hsotg->hr_backup;
5251 	hr->hcfg = dwc2_readl(hsotg->regs + HCFG);
5252 	hr->haintmsk = dwc2_readl(hsotg->regs + HAINTMSK);
5253 	for (i = 0; i < hsotg->params.host_channels; ++i)
5254 		hr->hcintmsk[i] = dwc2_readl(hsotg->regs + HCINTMSK(i));
5255 
5256 	hr->hprt0 = dwc2_read_hprt0(hsotg);
5257 	hr->hfir = dwc2_readl(hsotg->regs + HFIR);
5258 	hr->valid = true;
5259 
5260 	return 0;
5261 }
5262 
5263 /**
5264  * dwc2_restore_host_registers() - Restore controller host registers.
5265  * When resuming usb bus, device registers needs to be restored
5266  * if controller power were disabled.
5267  *
5268  * @hsotg: Programming view of the DWC_otg controller
5269  */
5270 int dwc2_restore_host_registers(struct dwc2_hsotg *hsotg)
5271 {
5272 	struct dwc2_hregs_backup *hr;
5273 	int i;
5274 
5275 	dev_dbg(hsotg->dev, "%s\n", __func__);
5276 
5277 	/* Restore host regs */
5278 	hr = &hsotg->hr_backup;
5279 	if (!hr->valid) {
5280 		dev_err(hsotg->dev, "%s: no host registers to restore\n",
5281 			__func__);
5282 		return -EINVAL;
5283 	}
5284 	hr->valid = false;
5285 
5286 	dwc2_writel(hr->hcfg, hsotg->regs + HCFG);
5287 	dwc2_writel(hr->haintmsk, hsotg->regs + HAINTMSK);
5288 
5289 	for (i = 0; i < hsotg->params.host_channels; ++i)
5290 		dwc2_writel(hr->hcintmsk[i], hsotg->regs + HCINTMSK(i));
5291 
5292 	dwc2_writel(hr->hprt0, hsotg->regs + HPRT0);
5293 	dwc2_writel(hr->hfir, hsotg->regs + HFIR);
5294 	hsotg->frame_number = 0;
5295 
5296 	return 0;
5297 }
5298