blob: b63a630d37c5ee3dcdb0c2d68295ab3e70cb0fef [file] [log] [blame]
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001/*
2 * Copyright (C) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
3 * Copyright (C) 2014 Marek Vasut <marex@denx.de>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Simon Glassf58a41e2015-07-07 20:53:37 -06009#include <dm.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070010#include <errno.h>
11#include <usb.h>
12#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060013#include <memalign.h>
Stephen Warren5c0beb52015-03-24 20:07:35 -060014#include <phys2bus.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070015#include <usbroothubdes.h>
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +010016#include <wait_bit.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070017#include <asm/io.h>
Kever Yang5c735362017-03-10 12:05:14 +080018#include <power/regulator.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070019
20#include "dwc2.h"
21
22/* Use only HC channel 0. */
23#define DWC2_HC_CHANNEL 0
24
25#define DWC2_STATUS_BUF_SIZE 64
Alexey Brodkin42637fd2018-02-28 16:16:58 +030026#define DWC2_DATA_BUF_SIZE (CONFIG_USB_DWC2_BUFFER_SIZE * 1024)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070027
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070028#define MAX_DEVICE 16
29#define MAX_ENDPOINT 16
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070030
Simon Glasscc3e3a92015-07-07 20:53:36 -060031struct dwc2_priv {
Simon Glassf58a41e2015-07-07 20:53:37 -060032#ifdef CONFIG_DM_USB
Alexander Steindb402e02015-07-24 09:22:14 +020033 uint8_t aligned_buffer[DWC2_DATA_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
34 uint8_t status_buffer[DWC2_STATUS_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
Christophe Kerello82e79752018-03-15 18:00:30 +010035#ifdef CONFIG_DM_REGULATOR
36 struct udevice *vbus_supply;
37#endif
Simon Glassf58a41e2015-07-07 20:53:37 -060038#else
Simon Glasscc3e3a92015-07-07 20:53:36 -060039 uint8_t *aligned_buffer;
40 uint8_t *status_buffer;
Simon Glassf58a41e2015-07-07 20:53:37 -060041#endif
Stefan Brüns25612f22016-01-23 01:42:25 +010042 u8 in_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
43 u8 out_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
Simon Glasscc3e3a92015-07-07 20:53:36 -060044 struct dwc2_core_regs *regs;
45 int root_hub_devnum;
Marek Vasut618da562016-04-27 14:55:57 +020046 bool ext_vbus;
Meng Dongyangdd22bac2017-06-28 19:22:43 +080047 /*
48 * The hnp/srp capability must be disabled if the platform
49 * does't support hnp/srp. Otherwise the force mode can't work.
50 */
Meng Dongyangc65a3492017-06-08 15:34:20 +080051 bool hnp_srp_disable;
Marek Vasutb4fbd082016-04-27 14:58:49 +020052 bool oc_disable;
Simon Glasscc3e3a92015-07-07 20:53:36 -060053};
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070054
Simon Glassf58a41e2015-07-07 20:53:37 -060055#ifndef CONFIG_DM_USB
Alexander Steindb402e02015-07-24 09:22:14 +020056/* We need cacheline-aligned buffers for DMA transfers and dcache support */
57DEFINE_ALIGN_BUFFER(uint8_t, aligned_buffer_addr, DWC2_DATA_BUF_SIZE,
58 ARCH_DMA_MINALIGN);
59DEFINE_ALIGN_BUFFER(uint8_t, status_buffer_addr, DWC2_STATUS_BUF_SIZE,
60 ARCH_DMA_MINALIGN);
Simon Glasscc3e3a92015-07-07 20:53:36 -060061
62static struct dwc2_priv local;
Simon Glassf58a41e2015-07-07 20:53:37 -060063#endif
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070064
65/*
66 * DWC2 IP interface
67 */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070068
69/*
70 * Initializes the FSLSPClkSel field of the HCFG register
71 * depending on the PHY type.
72 */
73static void init_fslspclksel(struct dwc2_core_regs *regs)
74{
75 uint32_t phyclk;
76
77#if (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
78 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
79#else
80 /* High speed PHY running at full speed or high speed */
81 phyclk = DWC2_HCFG_FSLSPCLKSEL_30_60_MHZ;
82#endif
83
84#ifdef CONFIG_DWC2_ULPI_FS_LS
85 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
86 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
87 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
88 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
89 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
90
91 if (hval == 2 && fval == 1)
92 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
93#endif
94
95 clrsetbits_le32(&regs->host_regs.hcfg,
96 DWC2_HCFG_FSLSPCLKSEL_MASK,
97 phyclk << DWC2_HCFG_FSLSPCLKSEL_OFFSET);
98}
99
100/*
101 * Flush a Tx FIFO.
102 *
103 * @param regs Programming view of DWC_otg controller.
104 * @param num Tx FIFO to flush.
105 */
106static void dwc_otg_flush_tx_fifo(struct dwc2_core_regs *regs, const int num)
107{
108 int ret;
109
110 writel(DWC2_GRSTCTL_TXFFLSH | (num << DWC2_GRSTCTL_TXFNUM_OFFSET),
111 &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100112 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_TXFFLSH,
113 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700114 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100115 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700116
117 /* Wait for 3 PHY Clocks */
118 udelay(1);
119}
120
121/*
122 * Flush Rx FIFO.
123 *
124 * @param regs Programming view of DWC_otg controller.
125 */
126static void dwc_otg_flush_rx_fifo(struct dwc2_core_regs *regs)
127{
128 int ret;
129
130 writel(DWC2_GRSTCTL_RXFFLSH, &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100131 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_RXFFLSH,
132 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700133 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100134 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700135
136 /* Wait for 3 PHY Clocks */
137 udelay(1);
138}
139
140/*
141 * Do core a soft reset of the core. Be careful with this because it
142 * resets all the internal state machines of the core.
143 */
144static void dwc_otg_core_reset(struct dwc2_core_regs *regs)
145{
146 int ret;
147
148 /* Wait for AHB master IDLE state. */
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100149 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_AHBIDLE,
150 true, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700151 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100152 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700153
154 /* Core Soft Reset */
155 writel(DWC2_GRSTCTL_CSFTRST, &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100156 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_CSFTRST,
157 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700158 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100159 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700160
161 /*
162 * Wait for core to come out of reset.
163 * NOTE: This long sleep is _very_ important, otherwise the core will
164 * not stay in host mode after a connector ID change!
165 */
166 mdelay(100);
167}
168
Kever Yang5c735362017-03-10 12:05:14 +0800169#if defined(CONFIG_DM_USB) && defined(CONFIG_DM_REGULATOR)
170static int dwc_vbus_supply_init(struct udevice *dev)
171{
Christophe Kerello82e79752018-03-15 18:00:30 +0100172 struct dwc2_priv *priv = dev_get_priv(dev);
Kever Yang5c735362017-03-10 12:05:14 +0800173 int ret;
174
Christophe Kerello82e79752018-03-15 18:00:30 +0100175 ret = device_get_supply_regulator(dev, "vbus-supply",
176 &priv->vbus_supply);
Kever Yang5c735362017-03-10 12:05:14 +0800177 if (ret) {
178 debug("%s: No vbus supply\n", dev->name);
179 return 0;
180 }
181
Christophe Kerello82e79752018-03-15 18:00:30 +0100182 ret = regulator_set_enable(priv->vbus_supply, true);
Kever Yang5c735362017-03-10 12:05:14 +0800183 if (ret) {
Patrice Chotardac6c7962018-03-15 18:00:32 +0100184 dev_err(dev, "Error enabling vbus supply\n");
Kever Yang5c735362017-03-10 12:05:14 +0800185 return ret;
186 }
187
188 return 0;
189}
Christophe Kerello82e79752018-03-15 18:00:30 +0100190
191static int dwc_vbus_supply_exit(struct udevice *dev)
192{
193 struct dwc2_priv *priv = dev_get_priv(dev);
194 int ret;
195
196 if (priv->vbus_supply) {
197 ret = regulator_set_enable(priv->vbus_supply, false);
198 if (ret) {
199 dev_err(dev, "Error disabling vbus supply\n");
200 return ret;
201 }
202 }
203
204 return 0;
205}
Kever Yang5c735362017-03-10 12:05:14 +0800206#else
207static int dwc_vbus_supply_init(struct udevice *dev)
208{
209 return 0;
210}
Christophe Kerello82e79752018-03-15 18:00:30 +0100211
212#if defined(CONFIG_DM_USB)
213static int dwc_vbus_supply_exit(struct udevice *dev)
214{
215 return 0;
216}
217#endif
Kever Yang5c735362017-03-10 12:05:14 +0800218#endif
219
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700220/*
221 * This function initializes the DWC_otg controller registers for
222 * host mode.
223 *
224 * This function flushes the Tx and Rx FIFOs and it flushes any entries in the
225 * request queues. Host channels are reset to ensure that they are ready for
226 * performing transfers.
227 *
Kever Yang5c735362017-03-10 12:05:14 +0800228 * @param dev USB Device (NULL if driver model is not being used)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700229 * @param regs Programming view of DWC_otg controller
230 *
231 */
Kever Yang5c735362017-03-10 12:05:14 +0800232static void dwc_otg_core_host_init(struct udevice *dev,
233 struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700234{
235 uint32_t nptxfifosize = 0;
236 uint32_t ptxfifosize = 0;
237 uint32_t hprt0 = 0;
238 int i, ret, num_channels;
239
240 /* Restart the Phy Clock */
241 writel(0, &regs->pcgcctl);
242
243 /* Initialize Host Configuration Register */
244 init_fslspclksel(regs);
245#ifdef CONFIG_DWC2_DFLT_SPEED_FULL
246 setbits_le32(&regs->host_regs.hcfg, DWC2_HCFG_FSLSSUPP);
247#endif
248
249 /* Configure data FIFO sizes */
250#ifdef CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
251 if (readl(&regs->ghwcfg2) & DWC2_HWCFG2_DYNAMIC_FIFO) {
252 /* Rx FIFO */
253 writel(CONFIG_DWC2_HOST_RX_FIFO_SIZE, &regs->grxfsiz);
254
255 /* Non-periodic Tx FIFO */
256 nptxfifosize |= CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE <<
257 DWC2_FIFOSIZE_DEPTH_OFFSET;
258 nptxfifosize |= CONFIG_DWC2_HOST_RX_FIFO_SIZE <<
259 DWC2_FIFOSIZE_STARTADDR_OFFSET;
260 writel(nptxfifosize, &regs->gnptxfsiz);
261
262 /* Periodic Tx FIFO */
263 ptxfifosize |= CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE <<
264 DWC2_FIFOSIZE_DEPTH_OFFSET;
265 ptxfifosize |= (CONFIG_DWC2_HOST_RX_FIFO_SIZE +
266 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE) <<
267 DWC2_FIFOSIZE_STARTADDR_OFFSET;
268 writel(ptxfifosize, &regs->hptxfsiz);
269 }
270#endif
271
272 /* Clear Host Set HNP Enable in the OTG Control Register */
273 clrbits_le32(&regs->gotgctl, DWC2_GOTGCTL_HSTSETHNPEN);
274
275 /* Make sure the FIFOs are flushed. */
276 dwc_otg_flush_tx_fifo(regs, 0x10); /* All Tx FIFOs */
277 dwc_otg_flush_rx_fifo(regs);
278
279 /* Flush out any leftover queued requests. */
280 num_channels = readl(&regs->ghwcfg2);
281 num_channels &= DWC2_HWCFG2_NUM_HOST_CHAN_MASK;
282 num_channels >>= DWC2_HWCFG2_NUM_HOST_CHAN_OFFSET;
283 num_channels += 1;
284
285 for (i = 0; i < num_channels; i++)
286 clrsetbits_le32(&regs->hc_regs[i].hcchar,
287 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_EPDIR,
288 DWC2_HCCHAR_CHDIS);
289
290 /* Halt all channels to put them into a known state. */
291 for (i = 0; i < num_channels; i++) {
292 clrsetbits_le32(&regs->hc_regs[i].hcchar,
293 DWC2_HCCHAR_EPDIR,
294 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100295 ret = wait_for_bit_le32(&regs->hc_regs[i].hcchar,
296 DWC2_HCCHAR_CHEN, false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700297 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100298 dev_info("%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700299 }
300
301 /* Turn on the vbus power. */
302 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST) {
303 hprt0 = readl(&regs->hprt0);
304 hprt0 &= ~(DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET);
305 hprt0 &= ~(DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG);
306 if (!(hprt0 & DWC2_HPRT0_PRTPWR)) {
307 hprt0 |= DWC2_HPRT0_PRTPWR;
308 writel(hprt0, &regs->hprt0);
309 }
310 }
Kever Yang5c735362017-03-10 12:05:14 +0800311
312 if (dev)
313 dwc_vbus_supply_init(dev);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700314}
315
316/*
317 * This function initializes the DWC_otg controller registers and
318 * prepares the core for device mode or host mode operation.
319 *
320 * @param regs Programming view of the DWC_otg controller
321 */
Marek Vasut55901982016-04-27 14:53:33 +0200322static void dwc_otg_core_init(struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700323{
Marek Vasut55901982016-04-27 14:53:33 +0200324 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700325 uint32_t ahbcfg = 0;
326 uint32_t usbcfg = 0;
327 uint8_t brst_sz = CONFIG_DWC2_DMA_BURST_SIZE;
328
329 /* Common Initialization */
330 usbcfg = readl(&regs->gusbcfg);
331
332 /* Program the ULPI External VBUS bit if needed */
Marek Vasut618da562016-04-27 14:55:57 +0200333 if (priv->ext_vbus) {
Marek Vasutb4fbd082016-04-27 14:58:49 +0200334 usbcfg |= DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
335 if (!priv->oc_disable) {
336 usbcfg |= DWC2_GUSBCFG_ULPI_INT_VBUS_INDICATOR |
337 DWC2_GUSBCFG_INDICATOR_PASSTHROUGH;
338 }
Marek Vasut618da562016-04-27 14:55:57 +0200339 } else {
340 usbcfg &= ~DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
341 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700342
343 /* Set external TS Dline pulsing */
344#ifdef CONFIG_DWC2_TS_DLINE
345 usbcfg |= DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
346#else
347 usbcfg &= ~DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
348#endif
349 writel(usbcfg, &regs->gusbcfg);
350
351 /* Reset the Controller */
352 dwc_otg_core_reset(regs);
353
354 /*
355 * This programming sequence needs to happen in FS mode before
356 * any other programming occurs
357 */
358#if defined(CONFIG_DWC2_DFLT_SPEED_FULL) && \
359 (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
360 /* If FS mode with FS PHY */
361 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_PHYSEL);
362
363 /* Reset after a PHY select */
364 dwc_otg_core_reset(regs);
365
366 /*
367 * Program DCFG.DevSpd or HCFG.FSLSPclkSel to 48Mhz in FS.
368 * Also do this on HNP Dev/Host mode switches (done in dev_init
369 * and host_init).
370 */
371 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
372 init_fslspclksel(regs);
373
374#ifdef CONFIG_DWC2_I2C_ENABLE
375 /* Program GUSBCFG.OtgUtmifsSel to I2C */
376 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_OTGUTMIFSSEL);
377
378 /* Program GI2CCTL.I2CEn */
379 clrsetbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN |
380 DWC2_GI2CCTL_I2CDEVADDR_MASK,
381 1 << DWC2_GI2CCTL_I2CDEVADDR_OFFSET);
382 setbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN);
383#endif
384
385#else
386 /* High speed PHY. */
387
388 /*
389 * HS PHY parameters. These parameters are preserved during
390 * soft reset so only program the first time. Do a soft reset
391 * immediately after setting phyif.
392 */
393 usbcfg &= ~(DWC2_GUSBCFG_ULPI_UTMI_SEL | DWC2_GUSBCFG_PHYIF);
394 usbcfg |= CONFIG_DWC2_PHY_TYPE << DWC2_GUSBCFG_ULPI_UTMI_SEL_OFFSET;
395
396 if (usbcfg & DWC2_GUSBCFG_ULPI_UTMI_SEL) { /* ULPI interface */
397#ifdef CONFIG_DWC2_PHY_ULPI_DDR
398 usbcfg |= DWC2_GUSBCFG_DDRSEL;
399#else
400 usbcfg &= ~DWC2_GUSBCFG_DDRSEL;
401#endif
402 } else { /* UTMI+ interface */
Alexey Brodkin163f8852018-01-31 17:56:59 +0300403#if (CONFIG_DWC2_UTMI_WIDTH == 16)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700404 usbcfg |= DWC2_GUSBCFG_PHYIF;
405#endif
406 }
407
408 writel(usbcfg, &regs->gusbcfg);
409
410 /* Reset after setting the PHY parameters */
411 dwc_otg_core_reset(regs);
412#endif
413
414 usbcfg = readl(&regs->gusbcfg);
415 usbcfg &= ~(DWC2_GUSBCFG_ULPI_FSLS | DWC2_GUSBCFG_ULPI_CLK_SUS_M);
416#ifdef CONFIG_DWC2_ULPI_FS_LS
417 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
418 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
419 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
420 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
421 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
422 if (hval == 2 && fval == 1) {
423 usbcfg |= DWC2_GUSBCFG_ULPI_FSLS;
424 usbcfg |= DWC2_GUSBCFG_ULPI_CLK_SUS_M;
425 }
426#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800427 if (priv->hnp_srp_disable)
428 usbcfg |= DWC2_GUSBCFG_FORCEHOSTMODE;
429
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700430 writel(usbcfg, &regs->gusbcfg);
431
432 /* Program the GAHBCFG Register. */
433 switch (readl(&regs->ghwcfg2) & DWC2_HWCFG2_ARCHITECTURE_MASK) {
434 case DWC2_HWCFG2_ARCHITECTURE_SLAVE_ONLY:
435 break;
436 case DWC2_HWCFG2_ARCHITECTURE_EXT_DMA:
437 while (brst_sz > 1) {
438 ahbcfg |= ahbcfg + (1 << DWC2_GAHBCFG_HBURSTLEN_OFFSET);
439 ahbcfg &= DWC2_GAHBCFG_HBURSTLEN_MASK;
440 brst_sz >>= 1;
441 }
442
443#ifdef CONFIG_DWC2_DMA_ENABLE
444 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
445#endif
446 break;
447
448 case DWC2_HWCFG2_ARCHITECTURE_INT_DMA:
449 ahbcfg |= DWC2_GAHBCFG_HBURSTLEN_INCR4;
450#ifdef CONFIG_DWC2_DMA_ENABLE
451 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
452#endif
453 break;
454 }
455
456 writel(ahbcfg, &regs->gahbcfg);
457
Meng Dongyangc65a3492017-06-08 15:34:20 +0800458 /* Program the capabilities in GUSBCFG Register */
459 usbcfg = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700460
Meng Dongyangc65a3492017-06-08 15:34:20 +0800461 if (!priv->hnp_srp_disable)
462 usbcfg |= DWC2_GUSBCFG_HNPCAP | DWC2_GUSBCFG_SRPCAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700463#ifdef CONFIG_DWC2_IC_USB_CAP
Meng Dongyangc65a3492017-06-08 15:34:20 +0800464 usbcfg |= DWC2_GUSBCFG_IC_USB_CAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700465#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800466
467 setbits_le32(&regs->gusbcfg, usbcfg);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700468}
469
470/*
471 * Prepares a host channel for transferring packets to/from a specific
472 * endpoint. The HCCHARn register is set up with the characteristics specified
473 * in _hc. Host channel interrupts that may need to be serviced while this
474 * transfer is in progress are enabled.
475 *
476 * @param regs Programming view of DWC_otg controller
477 * @param hc Information needed to initialize the host channel
478 */
479static void dwc_otg_hc_init(struct dwc2_core_regs *regs, uint8_t hc_num,
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600480 struct usb_device *dev, uint8_t dev_addr, uint8_t ep_num,
481 uint8_t ep_is_in, uint8_t ep_type, uint16_t max_packet)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700482{
483 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[hc_num];
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600484 uint32_t hcchar = (dev_addr << DWC2_HCCHAR_DEVADDR_OFFSET) |
485 (ep_num << DWC2_HCCHAR_EPNUM_OFFSET) |
486 (ep_is_in << DWC2_HCCHAR_EPDIR_OFFSET) |
487 (ep_type << DWC2_HCCHAR_EPTYPE_OFFSET) |
488 (max_packet << DWC2_HCCHAR_MPS_OFFSET);
489
490 if (dev->speed == USB_SPEED_LOW)
491 hcchar |= DWC2_HCCHAR_LSPDDEV;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700492
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700493 /*
494 * Program the HCCHARn register with the endpoint characteristics
495 * for the current transfer.
496 */
497 writel(hcchar, &hc_regs->hcchar);
498
Stefan Brüns890f0ee2016-01-17 04:09:54 +0100499 /* Program the HCSPLIT register, default to no SPLIT */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700500 writel(0, &hc_regs->hcsplt);
501}
502
Stefan Brüns890f0ee2016-01-17 04:09:54 +0100503static void dwc_otg_hc_init_split(struct dwc2_hc_regs *hc_regs,
504 uint8_t hub_devnum, uint8_t hub_port)
505{
506 uint32_t hcsplt = 0;
507
508 hcsplt = DWC2_HCSPLT_SPLTENA;
509 hcsplt |= hub_devnum << DWC2_HCSPLT_HUBADDR_OFFSET;
510 hcsplt |= hub_port << DWC2_HCSPLT_PRTADDR_OFFSET;
511
512 /* Program the HCSPLIT register for SPLITs */
513 writel(hcsplt, &hc_regs->hcsplt);
514}
515
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700516/*
517 * DWC2 to USB API interface
518 */
519/* Direction: In ; Request: Status */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600520static int dwc_otg_submit_rh_msg_in_status(struct dwc2_core_regs *regs,
521 struct usb_device *dev, void *buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700522 int txlen, struct devrequest *cmd)
523{
524 uint32_t hprt0 = 0;
525 uint32_t port_status = 0;
526 uint32_t port_change = 0;
527 int len = 0;
528 int stat = 0;
529
530 switch (cmd->requesttype & ~USB_DIR_IN) {
531 case 0:
532 *(uint16_t *)buffer = cpu_to_le16(1);
533 len = 2;
534 break;
535 case USB_RECIP_INTERFACE:
536 case USB_RECIP_ENDPOINT:
537 *(uint16_t *)buffer = cpu_to_le16(0);
538 len = 2;
539 break;
540 case USB_TYPE_CLASS:
541 *(uint32_t *)buffer = cpu_to_le32(0);
542 len = 4;
543 break;
544 case USB_RECIP_OTHER | USB_TYPE_CLASS:
545 hprt0 = readl(&regs->hprt0);
546 if (hprt0 & DWC2_HPRT0_PRTCONNSTS)
547 port_status |= USB_PORT_STAT_CONNECTION;
548 if (hprt0 & DWC2_HPRT0_PRTENA)
549 port_status |= USB_PORT_STAT_ENABLE;
550 if (hprt0 & DWC2_HPRT0_PRTSUSP)
551 port_status |= USB_PORT_STAT_SUSPEND;
552 if (hprt0 & DWC2_HPRT0_PRTOVRCURRACT)
553 port_status |= USB_PORT_STAT_OVERCURRENT;
554 if (hprt0 & DWC2_HPRT0_PRTRST)
555 port_status |= USB_PORT_STAT_RESET;
556 if (hprt0 & DWC2_HPRT0_PRTPWR)
557 port_status |= USB_PORT_STAT_POWER;
558
Stephen Warren4748cce2015-03-27 21:55:38 -0600559 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) == DWC2_HPRT0_PRTSPD_LOW)
560 port_status |= USB_PORT_STAT_LOW_SPEED;
561 else if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
562 DWC2_HPRT0_PRTSPD_HIGH)
563 port_status |= USB_PORT_STAT_HIGH_SPEED;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700564
565 if (hprt0 & DWC2_HPRT0_PRTENCHNG)
566 port_change |= USB_PORT_STAT_C_ENABLE;
567 if (hprt0 & DWC2_HPRT0_PRTCONNDET)
568 port_change |= USB_PORT_STAT_C_CONNECTION;
569 if (hprt0 & DWC2_HPRT0_PRTOVRCURRCHNG)
570 port_change |= USB_PORT_STAT_C_OVERCURRENT;
571
572 *(uint32_t *)buffer = cpu_to_le32(port_status |
573 (port_change << 16));
574 len = 4;
575 break;
576 default:
577 puts("unsupported root hub command\n");
578 stat = USB_ST_STALLED;
579 }
580
581 dev->act_len = min(len, txlen);
582 dev->status = stat;
583
584 return stat;
585}
586
587/* Direction: In ; Request: Descriptor */
588static int dwc_otg_submit_rh_msg_in_descriptor(struct usb_device *dev,
589 void *buffer, int txlen,
590 struct devrequest *cmd)
591{
592 unsigned char data[32];
593 uint32_t dsc;
594 int len = 0;
595 int stat = 0;
596 uint16_t wValue = cpu_to_le16(cmd->value);
597 uint16_t wLength = cpu_to_le16(cmd->length);
598
599 switch (cmd->requesttype & ~USB_DIR_IN) {
600 case 0:
601 switch (wValue & 0xff00) {
602 case 0x0100: /* device descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900603 len = min3(txlen, (int)sizeof(root_hub_dev_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700604 memcpy(buffer, root_hub_dev_des, len);
605 break;
606 case 0x0200: /* configuration descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900607 len = min3(txlen, (int)sizeof(root_hub_config_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700608 memcpy(buffer, root_hub_config_des, len);
609 break;
610 case 0x0300: /* string descriptors */
611 switch (wValue & 0xff) {
612 case 0x00:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900613 len = min3(txlen, (int)sizeof(root_hub_str_index0),
614 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700615 memcpy(buffer, root_hub_str_index0, len);
616 break;
617 case 0x01:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900618 len = min3(txlen, (int)sizeof(root_hub_str_index1),
619 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700620 memcpy(buffer, root_hub_str_index1, len);
621 break;
622 }
623 break;
624 default:
625 stat = USB_ST_STALLED;
626 }
627 break;
628
629 case USB_TYPE_CLASS:
630 /* Root port config, set 1 port and nothing else. */
631 dsc = 0x00000001;
632
633 data[0] = 9; /* min length; */
634 data[1] = 0x29;
635 data[2] = dsc & RH_A_NDP;
636 data[3] = 0;
637 if (dsc & RH_A_PSM)
638 data[3] |= 0x1;
639 if (dsc & RH_A_NOCP)
640 data[3] |= 0x10;
641 else if (dsc & RH_A_OCPM)
642 data[3] |= 0x8;
643
644 /* corresponds to data[4-7] */
645 data[5] = (dsc & RH_A_POTPGT) >> 24;
646 data[7] = dsc & RH_B_DR;
647 if (data[2] < 7) {
648 data[8] = 0xff;
649 } else {
650 data[0] += 2;
651 data[8] = (dsc & RH_B_DR) >> 8;
652 data[9] = 0xff;
653 data[10] = data[9];
654 }
655
Masahiro Yamadab4141192014-11-07 03:03:31 +0900656 len = min3(txlen, (int)data[0], (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700657 memcpy(buffer, data, len);
658 break;
659 default:
660 puts("unsupported root hub command\n");
661 stat = USB_ST_STALLED;
662 }
663
664 dev->act_len = min(len, txlen);
665 dev->status = stat;
666
667 return stat;
668}
669
670/* Direction: In ; Request: Configuration */
671static int dwc_otg_submit_rh_msg_in_configuration(struct usb_device *dev,
672 void *buffer, int txlen,
673 struct devrequest *cmd)
674{
675 int len = 0;
676 int stat = 0;
677
678 switch (cmd->requesttype & ~USB_DIR_IN) {
679 case 0:
680 *(uint8_t *)buffer = 0x01;
681 len = 1;
682 break;
683 default:
684 puts("unsupported root hub command\n");
685 stat = USB_ST_STALLED;
686 }
687
688 dev->act_len = min(len, txlen);
689 dev->status = stat;
690
691 return stat;
692}
693
694/* Direction: In */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600695static int dwc_otg_submit_rh_msg_in(struct dwc2_priv *priv,
696 struct usb_device *dev, void *buffer,
697 int txlen, struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700698{
699 switch (cmd->request) {
700 case USB_REQ_GET_STATUS:
Simon Glasscc3e3a92015-07-07 20:53:36 -0600701 return dwc_otg_submit_rh_msg_in_status(priv->regs, dev, buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700702 txlen, cmd);
703 case USB_REQ_GET_DESCRIPTOR:
704 return dwc_otg_submit_rh_msg_in_descriptor(dev, buffer,
705 txlen, cmd);
706 case USB_REQ_GET_CONFIGURATION:
707 return dwc_otg_submit_rh_msg_in_configuration(dev, buffer,
708 txlen, cmd);
709 default:
710 puts("unsupported root hub command\n");
711 return USB_ST_STALLED;
712 }
713}
714
715/* Direction: Out */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600716static int dwc_otg_submit_rh_msg_out(struct dwc2_priv *priv,
717 struct usb_device *dev,
718 void *buffer, int txlen,
719 struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700720{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600721 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700722 int len = 0;
723 int stat = 0;
724 uint16_t bmrtype_breq = cmd->requesttype | (cmd->request << 8);
725 uint16_t wValue = cpu_to_le16(cmd->value);
726
727 switch (bmrtype_breq & ~USB_DIR_IN) {
728 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_ENDPOINT:
729 case (USB_REQ_CLEAR_FEATURE << 8) | USB_TYPE_CLASS:
730 break;
731
732 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
733 switch (wValue) {
734 case USB_PORT_FEAT_C_CONNECTION:
735 setbits_le32(&regs->hprt0, DWC2_HPRT0_PRTCONNDET);
736 break;
737 }
738 break;
739
740 case (USB_REQ_SET_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
741 switch (wValue) {
742 case USB_PORT_FEAT_SUSPEND:
743 break;
744
745 case USB_PORT_FEAT_RESET:
746 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
747 DWC2_HPRT0_PRTCONNDET |
748 DWC2_HPRT0_PRTENCHNG |
749 DWC2_HPRT0_PRTOVRCURRCHNG,
750 DWC2_HPRT0_PRTRST);
751 mdelay(50);
752 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTRST);
753 break;
754
755 case USB_PORT_FEAT_POWER:
756 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
757 DWC2_HPRT0_PRTCONNDET |
758 DWC2_HPRT0_PRTENCHNG |
759 DWC2_HPRT0_PRTOVRCURRCHNG,
760 DWC2_HPRT0_PRTRST);
761 break;
762
763 case USB_PORT_FEAT_ENABLE:
764 break;
765 }
766 break;
767 case (USB_REQ_SET_ADDRESS << 8):
Simon Glasscc3e3a92015-07-07 20:53:36 -0600768 priv->root_hub_devnum = wValue;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700769 break;
770 case (USB_REQ_SET_CONFIGURATION << 8):
771 break;
772 default:
773 puts("unsupported root hub command\n");
774 stat = USB_ST_STALLED;
775 }
776
777 len = min(len, txlen);
778
779 dev->act_len = len;
780 dev->status = stat;
781
782 return stat;
783}
784
Simon Glasscc3e3a92015-07-07 20:53:36 -0600785static int dwc_otg_submit_rh_msg(struct dwc2_priv *priv, struct usb_device *dev,
786 unsigned long pipe, void *buffer, int txlen,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700787 struct devrequest *cmd)
788{
789 int stat = 0;
790
791 if (usb_pipeint(pipe)) {
792 puts("Root-Hub submit IRQ: NOT implemented\n");
793 return 0;
794 }
795
796 if (cmd->requesttype & USB_DIR_IN)
Simon Glasscc3e3a92015-07-07 20:53:36 -0600797 stat = dwc_otg_submit_rh_msg_in(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700798 else
Simon Glasscc3e3a92015-07-07 20:53:36 -0600799 stat = dwc_otg_submit_rh_msg_out(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700800
801 mdelay(1);
802
803 return stat;
804}
805
Stefan Brüns25612f22016-01-23 01:42:25 +0100806int wait_for_chhltd(struct dwc2_hc_regs *hc_regs, uint32_t *sub, u8 *toggle)
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700807{
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700808 int ret;
809 uint32_t hcint, hctsiz;
810
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100811 ret = wait_for_bit_le32(&hc_regs->hcint, DWC2_HCINT_CHHLTD, true,
Christophe Kerelloc2e4c862018-03-15 18:00:31 +0100812 2000, false);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700813 if (ret)
814 return ret;
815
816 hcint = readl(&hc_regs->hcint);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700817 hctsiz = readl(&hc_regs->hctsiz);
818 *sub = (hctsiz & DWC2_HCTSIZ_XFERSIZE_MASK) >>
819 DWC2_HCTSIZ_XFERSIZE_OFFSET;
Stephen Warren66ffc872015-03-07 22:48:55 -0700820 *toggle = (hctsiz & DWC2_HCTSIZ_PID_MASK) >> DWC2_HCTSIZ_PID_OFFSET;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700821
Stefan Brüns03460cd2016-01-17 04:09:52 +0100822 debug("%s: HCINT=%08x sub=%u toggle=%d\n", __func__, hcint, *sub,
823 *toggle);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700824
Stefan Brüns03460cd2016-01-17 04:09:52 +0100825 if (hcint & DWC2_HCINT_XFERCOMP)
826 return 0;
827
828 if (hcint & (DWC2_HCINT_NAK | DWC2_HCINT_FRMOVRUN))
829 return -EAGAIN;
830
831 debug("%s: Error (HCINT=%08x)\n", __func__, hcint);
832 return -EINVAL;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700833}
834
Stephen Warren7b5e5042015-03-07 22:48:52 -0700835static int dwc2_eptype[] = {
836 DWC2_HCCHAR_EPTYPE_ISOC,
837 DWC2_HCCHAR_EPTYPE_INTR,
838 DWC2_HCCHAR_EPTYPE_CONTROL,
839 DWC2_HCCHAR_EPTYPE_BULK,
840};
841
Stefan Brünsdaed3052016-01-17 04:09:53 +0100842static int transfer_chunk(struct dwc2_hc_regs *hc_regs, void *aligned_buffer,
Stefan Brüns25612f22016-01-23 01:42:25 +0100843 u8 *pid, int in, void *buffer, int num_packets,
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100844 int xfer_len, int *actual_len, int odd_frame)
Stefan Brünsdaed3052016-01-17 04:09:53 +0100845{
846 int ret = 0;
847 uint32_t sub;
848
849 debug("%s: chunk: pid %d xfer_len %u pkts %u\n", __func__,
850 *pid, xfer_len, num_packets);
851
852 writel((xfer_len << DWC2_HCTSIZ_XFERSIZE_OFFSET) |
853 (num_packets << DWC2_HCTSIZ_PKTCNT_OFFSET) |
854 (*pid << DWC2_HCTSIZ_PID_OFFSET),
855 &hc_regs->hctsiz);
856
Eddie Cai57ca63b2017-04-06 11:37:04 +0800857 if (xfer_len) {
858 if (in) {
859 invalidate_dcache_range(
860 (uintptr_t)aligned_buffer,
861 (uintptr_t)aligned_buffer +
862 roundup(xfer_len, ARCH_DMA_MINALIGN));
863 } else {
864 memcpy(aligned_buffer, buffer, xfer_len);
865 flush_dcache_range(
866 (uintptr_t)aligned_buffer,
867 (uintptr_t)aligned_buffer +
868 roundup(xfer_len, ARCH_DMA_MINALIGN));
869 }
Stefan Brünsdaed3052016-01-17 04:09:53 +0100870 }
871
872 writel(phys_to_bus((unsigned long)aligned_buffer), &hc_regs->hcdma);
873
874 /* Clear old interrupt conditions for this host channel. */
875 writel(0x3fff, &hc_regs->hcint);
876
877 /* Set host channel enable after all other setup is complete. */
878 clrsetbits_le32(&hc_regs->hcchar, DWC2_HCCHAR_MULTICNT_MASK |
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100879 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS |
880 DWC2_HCCHAR_ODDFRM,
Stefan Brünsdaed3052016-01-17 04:09:53 +0100881 (1 << DWC2_HCCHAR_MULTICNT_OFFSET) |
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100882 (odd_frame << DWC2_HCCHAR_ODDFRM_OFFSET) |
Stefan Brünsdaed3052016-01-17 04:09:53 +0100883 DWC2_HCCHAR_CHEN);
884
885 ret = wait_for_chhltd(hc_regs, &sub, pid);
886 if (ret < 0)
887 return ret;
888
889 if (in) {
890 xfer_len -= sub;
891
892 invalidate_dcache_range((unsigned long)aligned_buffer,
893 (unsigned long)aligned_buffer +
894 roundup(xfer_len, ARCH_DMA_MINALIGN));
895
896 memcpy(buffer, aligned_buffer, xfer_len);
897 }
898 *actual_len = xfer_len;
899
900 return ret;
901}
902
Simon Glasscc3e3a92015-07-07 20:53:36 -0600903int chunk_msg(struct dwc2_priv *priv, struct usb_device *dev,
Stefan Brüns25612f22016-01-23 01:42:25 +0100904 unsigned long pipe, u8 *pid, int in, void *buffer, int len)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700905{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600906 struct dwc2_core_regs *regs = priv->regs;
Stephen Warren7b5e5042015-03-07 22:48:52 -0700907 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[DWC2_HC_CHANNEL];
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100908 struct dwc2_host_regs *host_regs = &regs->host_regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700909 int devnum = usb_pipedevice(pipe);
910 int ep = usb_pipeendpoint(pipe);
911 int max = usb_maxpacket(dev, pipe);
Stephen Warren7b5e5042015-03-07 22:48:52 -0700912 int eptype = dwc2_eptype[usb_pipetype(pipe)];
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700913 int done = 0;
Stephen Warren5877de92015-04-11 21:52:02 -0600914 int ret = 0;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100915 int do_split = 0;
916 int complete_split = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700917 uint32_t xfer_len;
918 uint32_t num_packets;
919 int stop_transfer = 0;
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100920 uint32_t max_xfer_len;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100921 int ssplit_frame_num = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700922
Stephen Warren7b5e5042015-03-07 22:48:52 -0700923 debug("%s: msg: pipe %lx pid %d in %d len %d\n", __func__, pipe, *pid,
924 in, len);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700925
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100926 max_xfer_len = CONFIG_DWC2_MAX_PACKET_COUNT * max;
927 if (max_xfer_len > CONFIG_DWC2_MAX_TRANSFER_SIZE)
928 max_xfer_len = CONFIG_DWC2_MAX_TRANSFER_SIZE;
929 if (max_xfer_len > DWC2_DATA_BUF_SIZE)
930 max_xfer_len = DWC2_DATA_BUF_SIZE;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700931
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100932 /* Make sure that max_xfer_len is a multiple of max packet size. */
933 num_packets = max_xfer_len / max;
934 max_xfer_len = num_packets * max;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700935
Stefan Brünsdaed3052016-01-17 04:09:53 +0100936 /* Initialize channel */
937 dwc_otg_hc_init(regs, DWC2_HC_CHANNEL, dev, devnum, ep, in,
938 eptype, max);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700939
Stefan Brünsb54e4472016-01-17 04:09:55 +0100940 /* Check if the target is a FS/LS device behind a HS hub */
941 if (dev->speed != USB_SPEED_HIGH) {
942 uint8_t hub_addr;
943 uint8_t hub_port;
944 uint32_t hprt0 = readl(&regs->hprt0);
945 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
946 DWC2_HPRT0_PRTSPD_HIGH) {
947 usb_find_usb2_hub_address_port(dev, &hub_addr,
948 &hub_port);
949 dwc_otg_hc_init_split(hc_regs, hub_addr, hub_port);
950
951 do_split = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700952 num_packets = 1;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100953 max_xfer_len = max;
954 }
955 }
956
Stefan Brünsdaed3052016-01-17 04:09:53 +0100957 do {
958 int actual_len = 0;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100959 uint32_t hcint;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100960 int odd_frame = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700961 xfer_len = len - done;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700962
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100963 if (xfer_len > max_xfer_len)
964 xfer_len = max_xfer_len;
965 else if (xfer_len > max)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700966 num_packets = (xfer_len + max - 1) / max;
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100967 else
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700968 num_packets = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700969
Stefan Brünsb54e4472016-01-17 04:09:55 +0100970 if (complete_split)
971 setbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
972 else if (do_split)
973 clrbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
974
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100975 if (eptype == DWC2_HCCHAR_EPTYPE_INTR) {
976 int uframe_num = readl(&host_regs->hfnum);
977 if (!(uframe_num & 0x1))
978 odd_frame = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700979 }
980
Stefan Brünsdaed3052016-01-17 04:09:53 +0100981 ret = transfer_chunk(hc_regs, priv->aligned_buffer, pid,
982 in, (char *)buffer + done, num_packets,
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100983 xfer_len, &actual_len, odd_frame);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700984
Stefan Brünsb54e4472016-01-17 04:09:55 +0100985 hcint = readl(&hc_regs->hcint);
986 if (complete_split) {
987 stop_transfer = 0;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100988 if (hcint & DWC2_HCINT_NYET) {
Stefan Brünsb54e4472016-01-17 04:09:55 +0100989 ret = 0;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100990 int frame_num = DWC2_HFNUM_MAX_FRNUM &
991 readl(&host_regs->hfnum);
992 if (((frame_num - ssplit_frame_num) &
993 DWC2_HFNUM_MAX_FRNUM) > 4)
994 ret = -EAGAIN;
995 } else
Stefan Brünsb54e4472016-01-17 04:09:55 +0100996 complete_split = 0;
997 } else if (do_split) {
998 if (hcint & DWC2_HCINT_ACK) {
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100999 ssplit_frame_num = DWC2_HFNUM_MAX_FRNUM &
1000 readl(&host_regs->hfnum);
Stefan Brünsb54e4472016-01-17 04:09:55 +01001001 ret = 0;
1002 complete_split = 1;
1003 }
Simon Glasscc3e3a92015-07-07 20:53:36 -06001004 }
Stephen Warrend1c880c2015-03-08 11:08:13 -06001005
Stephen Warren5877de92015-04-11 21:52:02 -06001006 if (ret)
Stephen Warren4a1d21f2015-03-07 22:48:51 -07001007 break;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001008
Stefan Brünsdaed3052016-01-17 04:09:53 +01001009 if (actual_len < xfer_len)
1010 stop_transfer = 1;
Alexander Steindb402e02015-07-24 09:22:14 +02001011
Stefan Brünsdaed3052016-01-17 04:09:53 +01001012 done += actual_len;
Alexander Steindb402e02015-07-24 09:22:14 +02001013
Stefan Brünsb54e4472016-01-17 04:09:55 +01001014 /* Transactions are done when when either all data is transferred or
1015 * there is a short transfer. In case of a SPLIT make sure the CSPLIT
1016 * is executed.
1017 */
1018 } while (((done < len) && !stop_transfer) || complete_split);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001019
1020 writel(0, &hc_regs->hcintmsk);
1021 writel(0xFFFFFFFF, &hc_regs->hcint);
1022
1023 dev->status = 0;
1024 dev->act_len = done;
1025
Stephen Warren5877de92015-04-11 21:52:02 -06001026 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001027}
1028
Stephen Warren7b5e5042015-03-07 22:48:52 -07001029/* U-Boot USB transmission interface */
Simon Glasscc3e3a92015-07-07 20:53:36 -06001030int _submit_bulk_msg(struct dwc2_priv *priv, struct usb_device *dev,
1031 unsigned long pipe, void *buffer, int len)
Stephen Warren7b5e5042015-03-07 22:48:52 -07001032{
1033 int devnum = usb_pipedevice(pipe);
1034 int ep = usb_pipeendpoint(pipe);
Stefan Brüns25612f22016-01-23 01:42:25 +01001035 u8* pid;
Stephen Warren7b5e5042015-03-07 22:48:52 -07001036
Stefan Brüns25612f22016-01-23 01:42:25 +01001037 if ((devnum >= MAX_DEVICE) || (devnum == priv->root_hub_devnum)) {
Stephen Warren7b5e5042015-03-07 22:48:52 -07001038 dev->status = 0;
1039 return -EINVAL;
1040 }
1041
Stefan Brüns25612f22016-01-23 01:42:25 +01001042 if (usb_pipein(pipe))
1043 pid = &priv->in_data_toggle[devnum][ep];
1044 else
1045 pid = &priv->out_data_toggle[devnum][ep];
1046
1047 return chunk_msg(priv, dev, pipe, pid, usb_pipein(pipe), buffer, len);
Stephen Warren7b5e5042015-03-07 22:48:52 -07001048}
1049
Simon Glasscc3e3a92015-07-07 20:53:36 -06001050static int _submit_control_msg(struct dwc2_priv *priv, struct usb_device *dev,
1051 unsigned long pipe, void *buffer, int len,
1052 struct devrequest *setup)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001053{
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001054 int devnum = usb_pipedevice(pipe);
Stefan Brüns25612f22016-01-23 01:42:25 +01001055 int ret, act_len;
1056 u8 pid;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001057 /* For CONTROL endpoint pid should start with DATA1 */
1058 int status_direction;
1059
Simon Glasscc3e3a92015-07-07 20:53:36 -06001060 if (devnum == priv->root_hub_devnum) {
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001061 dev->status = 0;
1062 dev->speed = USB_SPEED_HIGH;
Simon Glasscc3e3a92015-07-07 20:53:36 -06001063 return dwc_otg_submit_rh_msg(priv, dev, pipe, buffer, len,
1064 setup);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001065 }
1066
Stefan Brünsb54e4472016-01-17 04:09:55 +01001067 /* SETUP stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001068 pid = DWC2_HC_PID_SETUP;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001069 do {
1070 ret = chunk_msg(priv, dev, pipe, &pid, 0, setup, 8);
1071 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001072 if (ret)
1073 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001074
Stefan Brünsb54e4472016-01-17 04:09:55 +01001075 /* DATA stage */
1076 act_len = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001077 if (buffer) {
Stephen Warren282685e2015-03-07 22:48:54 -07001078 pid = DWC2_HC_PID_DATA1;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001079 do {
1080 ret = chunk_msg(priv, dev, pipe, &pid, usb_pipein(pipe),
1081 buffer, len);
1082 act_len += dev->act_len;
1083 buffer += dev->act_len;
1084 len -= dev->act_len;
1085 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001086 if (ret)
1087 return ret;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001088 status_direction = usb_pipeout(pipe);
1089 } else {
1090 /* No-data CONTROL always ends with an IN transaction */
1091 status_direction = 1;
1092 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001093
1094 /* STATUS stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001095 pid = DWC2_HC_PID_DATA1;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001096 do {
1097 ret = chunk_msg(priv, dev, pipe, &pid, status_direction,
1098 priv->status_buffer, 0);
1099 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001100 if (ret)
1101 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001102
Stephen Warrenee837552015-03-07 22:48:53 -07001103 dev->act_len = act_len;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001104
Stephen Warren4a1d21f2015-03-07 22:48:51 -07001105 return 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001106}
1107
Simon Glasscc3e3a92015-07-07 20:53:36 -06001108int _submit_int_msg(struct dwc2_priv *priv, struct usb_device *dev,
1109 unsigned long pipe, void *buffer, int len, int interval)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001110{
Stephen Warren5877de92015-04-11 21:52:02 -06001111 unsigned long timeout;
1112 int ret;
1113
Stephen Warrene2365192015-04-10 21:05:22 -06001114 /* FIXME: what is interval? */
Stephen Warren5877de92015-04-11 21:52:02 -06001115
1116 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
1117 for (;;) {
1118 if (get_timer(0) > timeout) {
Patrice Chotardac6c7962018-03-15 18:00:32 +01001119 dev_err(dev, "Timeout poll on interrupt endpoint\n");
Stephen Warren5877de92015-04-11 21:52:02 -06001120 return -ETIMEDOUT;
1121 }
Simon Glasscc3e3a92015-07-07 20:53:36 -06001122 ret = _submit_bulk_msg(priv, dev, pipe, buffer, len);
Stephen Warren5877de92015-04-11 21:52:02 -06001123 if (ret != -EAGAIN)
1124 return ret;
1125 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001126}
1127
Kever Yang5c735362017-03-10 12:05:14 +08001128static int dwc2_init_common(struct udevice *dev, struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001129{
Simon Glasscc3e3a92015-07-07 20:53:36 -06001130 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001131 uint32_t snpsid;
1132 int i, j;
1133
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001134 snpsid = readl(&regs->gsnpsid);
Patrice Chotardac6c7962018-03-15 18:00:32 +01001135 dev_info(dev, "Core Release: %x.%03x\n",
1136 snpsid >> 12 & 0xf, snpsid & 0xfff);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001137
Peter Griffin5cfd6c02015-05-12 14:38:27 +01001138 if ((snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_2xx &&
1139 (snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_3xx) {
Patrice Chotardac6c7962018-03-15 18:00:32 +01001140 dev_info(dev, "SNPSID invalid (not DWC2 OTG device): %08x\n",
1141 snpsid);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001142 return -ENODEV;
1143 }
1144
Marek Vasut618da562016-04-27 14:55:57 +02001145#ifdef CONFIG_DWC2_PHY_ULPI_EXT_VBUS
1146 priv->ext_vbus = 1;
1147#else
1148 priv->ext_vbus = 0;
1149#endif
1150
Marek Vasut55901982016-04-27 14:53:33 +02001151 dwc_otg_core_init(priv);
Kever Yang5c735362017-03-10 12:05:14 +08001152 dwc_otg_core_host_init(dev, regs);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001153
1154 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1155 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1156 DWC2_HPRT0_PRTOVRCURRCHNG,
1157 DWC2_HPRT0_PRTRST);
1158 mdelay(50);
1159 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET |
1160 DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG |
1161 DWC2_HPRT0_PRTRST);
1162
1163 for (i = 0; i < MAX_DEVICE; i++) {
Stefan Brüns25612f22016-01-23 01:42:25 +01001164 for (j = 0; j < MAX_ENDPOINT; j++) {
1165 priv->in_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1166 priv->out_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1167 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001168 }
1169
Stefan Roese2bf352f2016-05-06 13:53:37 +02001170 /*
1171 * Add a 1 second delay here. This gives the host controller
1172 * a bit time before the comminucation with the USB devices
1173 * is started (the bus is scanned) and fixes the USB detection
1174 * problems with some problematic USB keys.
1175 */
1176 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
1177 mdelay(1000);
1178
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001179 return 0;
1180}
1181
Simon Glasscc3e3a92015-07-07 20:53:36 -06001182static void dwc2_uninit_common(struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001183{
1184 /* Put everything in reset. */
1185 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1186 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1187 DWC2_HPRT0_PRTOVRCURRCHNG,
1188 DWC2_HPRT0_PRTRST);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001189}
1190
Simon Glassf58a41e2015-07-07 20:53:37 -06001191#ifndef CONFIG_DM_USB
Simon Glasscc3e3a92015-07-07 20:53:36 -06001192int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1193 int len, struct devrequest *setup)
1194{
1195 return _submit_control_msg(&local, dev, pipe, buffer, len, setup);
1196}
1197
1198int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1199 int len)
1200{
1201 return _submit_bulk_msg(&local, dev, pipe, buffer, len);
1202}
1203
1204int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1205 int len, int interval)
1206{
1207 return _submit_int_msg(&local, dev, pipe, buffer, len, interval);
1208}
1209
1210/* U-Boot USB control interface */
1211int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1212{
1213 struct dwc2_priv *priv = &local;
1214
1215 memset(priv, '\0', sizeof(*priv));
1216 priv->root_hub_devnum = 0;
1217 priv->regs = (struct dwc2_core_regs *)CONFIG_USB_DWC2_REG_ADDR;
1218 priv->aligned_buffer = aligned_buffer_addr;
1219 priv->status_buffer = status_buffer_addr;
1220
1221 /* board-dependant init */
1222 if (board_usb_init(index, USB_INIT_HOST))
1223 return -1;
1224
Kever Yang5c735362017-03-10 12:05:14 +08001225 return dwc2_init_common(NULL, priv);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001226}
1227
1228int usb_lowlevel_stop(int index)
1229{
1230 dwc2_uninit_common(local.regs);
1231
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001232 return 0;
1233}
Simon Glassf58a41e2015-07-07 20:53:37 -06001234#endif
1235
1236#ifdef CONFIG_DM_USB
1237static int dwc2_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1238 unsigned long pipe, void *buffer, int length,
1239 struct devrequest *setup)
1240{
1241 struct dwc2_priv *priv = dev_get_priv(dev);
1242
1243 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1244 dev->name, udev, udev->dev->name, udev->portnr);
1245
1246 return _submit_control_msg(priv, udev, pipe, buffer, length, setup);
1247}
1248
1249static int dwc2_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1250 unsigned long pipe, void *buffer, int length)
1251{
1252 struct dwc2_priv *priv = dev_get_priv(dev);
1253
1254 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1255
1256 return _submit_bulk_msg(priv, udev, pipe, buffer, length);
1257}
1258
1259static int dwc2_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1260 unsigned long pipe, void *buffer, int length,
1261 int interval)
1262{
1263 struct dwc2_priv *priv = dev_get_priv(dev);
1264
1265 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1266
1267 return _submit_int_msg(priv, udev, pipe, buffer, length, interval);
1268}
1269
1270static int dwc2_usb_ofdata_to_platdata(struct udevice *dev)
1271{
1272 struct dwc2_priv *priv = dev_get_priv(dev);
1273 fdt_addr_t addr;
1274
Philipp Tomsicha9d30372017-09-12 17:32:27 +02001275 addr = dev_read_addr(dev);
Simon Glassf58a41e2015-07-07 20:53:37 -06001276 if (addr == FDT_ADDR_T_NONE)
1277 return -EINVAL;
1278 priv->regs = (struct dwc2_core_regs *)addr;
1279
Meng Dongyangdd22bac2017-06-28 19:22:43 +08001280 priv->oc_disable = dev_read_bool(dev, "disable-over-current");
1281 priv->hnp_srp_disable = dev_read_bool(dev, "hnp-srp-disable");
Meng Dongyangc65a3492017-06-08 15:34:20 +08001282
Simon Glassf58a41e2015-07-07 20:53:37 -06001283 return 0;
1284}
1285
1286static int dwc2_usb_probe(struct udevice *dev)
1287{
1288 struct dwc2_priv *priv = dev_get_priv(dev);
Marek Vasute96e0642016-04-26 03:02:35 +02001289 struct usb_bus_priv *bus_priv = dev_get_uclass_priv(dev);
1290
1291 bus_priv->desc_before_addr = true;
Simon Glassf58a41e2015-07-07 20:53:37 -06001292
Kever Yang5c735362017-03-10 12:05:14 +08001293 return dwc2_init_common(dev, priv);
Simon Glassf58a41e2015-07-07 20:53:37 -06001294}
1295
1296static int dwc2_usb_remove(struct udevice *dev)
1297{
1298 struct dwc2_priv *priv = dev_get_priv(dev);
Christophe Kerello82e79752018-03-15 18:00:30 +01001299 int ret;
1300
1301 ret = dwc_vbus_supply_exit(dev);
1302 if (ret)
1303 return ret;
Simon Glassf58a41e2015-07-07 20:53:37 -06001304
1305 dwc2_uninit_common(priv->regs);
1306
1307 return 0;
1308}
1309
1310struct dm_usb_ops dwc2_usb_ops = {
1311 .control = dwc2_submit_control_msg,
1312 .bulk = dwc2_submit_bulk_msg,
1313 .interrupt = dwc2_submit_int_msg,
1314};
1315
1316static const struct udevice_id dwc2_usb_ids[] = {
1317 { .compatible = "brcm,bcm2835-usb" },
Marek Vasutf522f942015-08-12 22:19:14 +02001318 { .compatible = "snps,dwc2" },
Simon Glassf58a41e2015-07-07 20:53:37 -06001319 { }
1320};
1321
1322U_BOOT_DRIVER(usb_dwc2) = {
Marek Vasut7a1386f2015-08-12 22:19:15 +02001323 .name = "dwc2_usb",
Simon Glassf58a41e2015-07-07 20:53:37 -06001324 .id = UCLASS_USB,
1325 .of_match = dwc2_usb_ids,
1326 .ofdata_to_platdata = dwc2_usb_ofdata_to_platdata,
1327 .probe = dwc2_usb_probe,
1328 .remove = dwc2_usb_remove,
1329 .ops = &dwc2_usb_ops,
1330 .priv_auto_alloc_size = sizeof(struct dwc2_priv),
1331 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1332};
1333#endif