blob: 02ca119bc7acfc77ff20d8ccc5c5c4597dc6c4e4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07002/*
3 * Copyright (C) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
4 * Copyright (C) 2014 Marek Vasut <marex@denx.de>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07005 */
6
7#include <common.h>
Patrick Delaunay0bc632c2020-04-27 15:29:59 +02008#include <clk.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07009#include <cpu_func.h>
Simon Glassf58a41e2015-07-07 20:53:37 -060010#include <dm.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070011#include <errno.h>
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +020012#include <generic-phy.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070013#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060014#include <memalign.h>
Stephen Warren5c0beb52015-03-24 20:07:35 -060015#include <phys2bus.h>
Patrick Delaunay0bc632c2020-04-27 15:29:59 +020016#include <usb.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070017#include <usbroothubdes.h>
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +010018#include <wait_bit.h>
Simon Glass90526e92020-05-10 11:39:56 -060019#include <asm/cache.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070020#include <asm/io.h>
Simon Glass336d4612020-02-03 07:36:16 -070021#include <dm/device_compat.h>
Kever Yang5c735362017-03-10 12:05:14 +080022#include <power/regulator.h>
Ley Foon Tan88c34b82018-08-29 00:08:48 +080023#include <reset.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070024
25#include "dwc2.h"
26
27/* Use only HC channel 0. */
28#define DWC2_HC_CHANNEL 0
29
30#define DWC2_STATUS_BUF_SIZE 64
Alexey Brodkin42637fd2018-02-28 16:16:58 +030031#define DWC2_DATA_BUF_SIZE (CONFIG_USB_DWC2_BUFFER_SIZE * 1024)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070032
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070033#define MAX_DEVICE 16
34#define MAX_ENDPOINT 16
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070035
Simon Glasscc3e3a92015-07-07 20:53:36 -060036struct dwc2_priv {
Sven Schwermerfd09c202018-11-21 08:43:56 +010037#if CONFIG_IS_ENABLED(DM_USB)
Alexander Steindb402e02015-07-24 09:22:14 +020038 uint8_t aligned_buffer[DWC2_DATA_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
39 uint8_t status_buffer[DWC2_STATUS_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
Christophe Kerello82e79752018-03-15 18:00:30 +010040#ifdef CONFIG_DM_REGULATOR
41 struct udevice *vbus_supply;
42#endif
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +020043 struct phy phy;
Patrick Delaunay0bc632c2020-04-27 15:29:59 +020044 struct clk_bulk clks;
Simon Glassf58a41e2015-07-07 20:53:37 -060045#else
Simon Glasscc3e3a92015-07-07 20:53:36 -060046 uint8_t *aligned_buffer;
47 uint8_t *status_buffer;
Simon Glassf58a41e2015-07-07 20:53:37 -060048#endif
Stefan Brüns25612f22016-01-23 01:42:25 +010049 u8 in_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
50 u8 out_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
Simon Glasscc3e3a92015-07-07 20:53:36 -060051 struct dwc2_core_regs *regs;
52 int root_hub_devnum;
Marek Vasut618da562016-04-27 14:55:57 +020053 bool ext_vbus;
Meng Dongyangdd22bac2017-06-28 19:22:43 +080054 /*
55 * The hnp/srp capability must be disabled if the platform
56 * does't support hnp/srp. Otherwise the force mode can't work.
57 */
Meng Dongyangc65a3492017-06-08 15:34:20 +080058 bool hnp_srp_disable;
Marek Vasutb4fbd082016-04-27 14:58:49 +020059 bool oc_disable;
Ley Foon Tan88c34b82018-08-29 00:08:48 +080060
61 struct reset_ctl_bulk resets;
Simon Glasscc3e3a92015-07-07 20:53:36 -060062};
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070063
Sven Schwermerfd09c202018-11-21 08:43:56 +010064#if !CONFIG_IS_ENABLED(DM_USB)
Alexander Steindb402e02015-07-24 09:22:14 +020065/* We need cacheline-aligned buffers for DMA transfers and dcache support */
66DEFINE_ALIGN_BUFFER(uint8_t, aligned_buffer_addr, DWC2_DATA_BUF_SIZE,
67 ARCH_DMA_MINALIGN);
68DEFINE_ALIGN_BUFFER(uint8_t, status_buffer_addr, DWC2_STATUS_BUF_SIZE,
69 ARCH_DMA_MINALIGN);
Simon Glasscc3e3a92015-07-07 20:53:36 -060070
71static struct dwc2_priv local;
Simon Glassf58a41e2015-07-07 20:53:37 -060072#endif
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070073
74/*
75 * DWC2 IP interface
76 */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070077
78/*
79 * Initializes the FSLSPClkSel field of the HCFG register
80 * depending on the PHY type.
81 */
82static void init_fslspclksel(struct dwc2_core_regs *regs)
83{
84 uint32_t phyclk;
85
86#if (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
87 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
88#else
89 /* High speed PHY running at full speed or high speed */
90 phyclk = DWC2_HCFG_FSLSPCLKSEL_30_60_MHZ;
91#endif
92
93#ifdef CONFIG_DWC2_ULPI_FS_LS
94 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
95 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
96 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
97 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
98 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
99
100 if (hval == 2 && fval == 1)
101 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
102#endif
103
104 clrsetbits_le32(&regs->host_regs.hcfg,
105 DWC2_HCFG_FSLSPCLKSEL_MASK,
106 phyclk << DWC2_HCFG_FSLSPCLKSEL_OFFSET);
107}
108
109/*
110 * Flush a Tx FIFO.
111 *
112 * @param regs Programming view of DWC_otg controller.
113 * @param num Tx FIFO to flush.
114 */
115static void dwc_otg_flush_tx_fifo(struct dwc2_core_regs *regs, const int num)
116{
117 int ret;
118
119 writel(DWC2_GRSTCTL_TXFFLSH | (num << DWC2_GRSTCTL_TXFNUM_OFFSET),
120 &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100121 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_TXFFLSH,
122 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700123 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100124 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700125
126 /* Wait for 3 PHY Clocks */
127 udelay(1);
128}
129
130/*
131 * Flush Rx FIFO.
132 *
133 * @param regs Programming view of DWC_otg controller.
134 */
135static void dwc_otg_flush_rx_fifo(struct dwc2_core_regs *regs)
136{
137 int ret;
138
139 writel(DWC2_GRSTCTL_RXFFLSH, &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100140 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_RXFFLSH,
141 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700142 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100143 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700144
145 /* Wait for 3 PHY Clocks */
146 udelay(1);
147}
148
149/*
150 * Do core a soft reset of the core. Be careful with this because it
151 * resets all the internal state machines of the core.
152 */
153static void dwc_otg_core_reset(struct dwc2_core_regs *regs)
154{
155 int ret;
156
157 /* Wait for AHB master IDLE state. */
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100158 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_AHBIDLE,
159 true, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700160 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100161 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700162
163 /* Core Soft Reset */
164 writel(DWC2_GRSTCTL_CSFTRST, &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100165 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_CSFTRST,
166 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700167 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100168 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700169
170 /*
171 * Wait for core to come out of reset.
172 * NOTE: This long sleep is _very_ important, otherwise the core will
173 * not stay in host mode after a connector ID change!
174 */
175 mdelay(100);
176}
177
Sven Schwermerfd09c202018-11-21 08:43:56 +0100178#if CONFIG_IS_ENABLED(DM_USB) && defined(CONFIG_DM_REGULATOR)
Kever Yang5c735362017-03-10 12:05:14 +0800179static int dwc_vbus_supply_init(struct udevice *dev)
180{
Christophe Kerello82e79752018-03-15 18:00:30 +0100181 struct dwc2_priv *priv = dev_get_priv(dev);
Kever Yang5c735362017-03-10 12:05:14 +0800182 int ret;
183
Christophe Kerello82e79752018-03-15 18:00:30 +0100184 ret = device_get_supply_regulator(dev, "vbus-supply",
185 &priv->vbus_supply);
Kever Yang5c735362017-03-10 12:05:14 +0800186 if (ret) {
187 debug("%s: No vbus supply\n", dev->name);
188 return 0;
189 }
190
Christophe Kerello82e79752018-03-15 18:00:30 +0100191 ret = regulator_set_enable(priv->vbus_supply, true);
Kever Yang5c735362017-03-10 12:05:14 +0800192 if (ret) {
Patrice Chotardac6c7962018-03-15 18:00:32 +0100193 dev_err(dev, "Error enabling vbus supply\n");
Kever Yang5c735362017-03-10 12:05:14 +0800194 return ret;
195 }
196
197 return 0;
198}
Christophe Kerello82e79752018-03-15 18:00:30 +0100199
200static int dwc_vbus_supply_exit(struct udevice *dev)
201{
202 struct dwc2_priv *priv = dev_get_priv(dev);
203 int ret;
204
205 if (priv->vbus_supply) {
206 ret = regulator_set_enable(priv->vbus_supply, false);
207 if (ret) {
208 dev_err(dev, "Error disabling vbus supply\n");
209 return ret;
210 }
211 }
212
213 return 0;
214}
Kever Yang5c735362017-03-10 12:05:14 +0800215#else
216static int dwc_vbus_supply_init(struct udevice *dev)
217{
218 return 0;
219}
Christophe Kerello82e79752018-03-15 18:00:30 +0100220
Sven Schwermerfd09c202018-11-21 08:43:56 +0100221#if CONFIG_IS_ENABLED(DM_USB)
Christophe Kerello82e79752018-03-15 18:00:30 +0100222static int dwc_vbus_supply_exit(struct udevice *dev)
223{
224 return 0;
225}
226#endif
Kever Yang5c735362017-03-10 12:05:14 +0800227#endif
228
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700229/*
230 * This function initializes the DWC_otg controller registers for
231 * host mode.
232 *
233 * This function flushes the Tx and Rx FIFOs and it flushes any entries in the
234 * request queues. Host channels are reset to ensure that they are ready for
235 * performing transfers.
236 *
Kever Yang5c735362017-03-10 12:05:14 +0800237 * @param dev USB Device (NULL if driver model is not being used)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700238 * @param regs Programming view of DWC_otg controller
239 *
240 */
Kever Yang5c735362017-03-10 12:05:14 +0800241static void dwc_otg_core_host_init(struct udevice *dev,
242 struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700243{
244 uint32_t nptxfifosize = 0;
245 uint32_t ptxfifosize = 0;
246 uint32_t hprt0 = 0;
247 int i, ret, num_channels;
248
249 /* Restart the Phy Clock */
250 writel(0, &regs->pcgcctl);
251
252 /* Initialize Host Configuration Register */
253 init_fslspclksel(regs);
254#ifdef CONFIG_DWC2_DFLT_SPEED_FULL
255 setbits_le32(&regs->host_regs.hcfg, DWC2_HCFG_FSLSSUPP);
256#endif
257
258 /* Configure data FIFO sizes */
259#ifdef CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
260 if (readl(&regs->ghwcfg2) & DWC2_HWCFG2_DYNAMIC_FIFO) {
261 /* Rx FIFO */
262 writel(CONFIG_DWC2_HOST_RX_FIFO_SIZE, &regs->grxfsiz);
263
264 /* Non-periodic Tx FIFO */
265 nptxfifosize |= CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE <<
266 DWC2_FIFOSIZE_DEPTH_OFFSET;
267 nptxfifosize |= CONFIG_DWC2_HOST_RX_FIFO_SIZE <<
268 DWC2_FIFOSIZE_STARTADDR_OFFSET;
269 writel(nptxfifosize, &regs->gnptxfsiz);
270
271 /* Periodic Tx FIFO */
272 ptxfifosize |= CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE <<
273 DWC2_FIFOSIZE_DEPTH_OFFSET;
274 ptxfifosize |= (CONFIG_DWC2_HOST_RX_FIFO_SIZE +
275 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE) <<
276 DWC2_FIFOSIZE_STARTADDR_OFFSET;
277 writel(ptxfifosize, &regs->hptxfsiz);
278 }
279#endif
280
281 /* Clear Host Set HNP Enable in the OTG Control Register */
282 clrbits_le32(&regs->gotgctl, DWC2_GOTGCTL_HSTSETHNPEN);
283
284 /* Make sure the FIFOs are flushed. */
285 dwc_otg_flush_tx_fifo(regs, 0x10); /* All Tx FIFOs */
286 dwc_otg_flush_rx_fifo(regs);
287
288 /* Flush out any leftover queued requests. */
289 num_channels = readl(&regs->ghwcfg2);
290 num_channels &= DWC2_HWCFG2_NUM_HOST_CHAN_MASK;
291 num_channels >>= DWC2_HWCFG2_NUM_HOST_CHAN_OFFSET;
292 num_channels += 1;
293
294 for (i = 0; i < num_channels; i++)
295 clrsetbits_le32(&regs->hc_regs[i].hcchar,
296 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_EPDIR,
297 DWC2_HCCHAR_CHDIS);
298
299 /* Halt all channels to put them into a known state. */
300 for (i = 0; i < num_channels; i++) {
301 clrsetbits_le32(&regs->hc_regs[i].hcchar,
302 DWC2_HCCHAR_EPDIR,
303 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100304 ret = wait_for_bit_le32(&regs->hc_regs[i].hcchar,
305 DWC2_HCCHAR_CHEN, false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700306 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100307 dev_info("%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700308 }
309
310 /* Turn on the vbus power. */
311 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST) {
312 hprt0 = readl(&regs->hprt0);
313 hprt0 &= ~(DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET);
314 hprt0 &= ~(DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG);
315 if (!(hprt0 & DWC2_HPRT0_PRTPWR)) {
316 hprt0 |= DWC2_HPRT0_PRTPWR;
317 writel(hprt0, &regs->hprt0);
318 }
319 }
Kever Yang5c735362017-03-10 12:05:14 +0800320
321 if (dev)
322 dwc_vbus_supply_init(dev);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700323}
324
325/*
326 * This function initializes the DWC_otg controller registers and
327 * prepares the core for device mode or host mode operation.
328 *
329 * @param regs Programming view of the DWC_otg controller
330 */
Marek Vasut55901982016-04-27 14:53:33 +0200331static void dwc_otg_core_init(struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700332{
Marek Vasut55901982016-04-27 14:53:33 +0200333 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700334 uint32_t ahbcfg = 0;
335 uint32_t usbcfg = 0;
336 uint8_t brst_sz = CONFIG_DWC2_DMA_BURST_SIZE;
337
338 /* Common Initialization */
339 usbcfg = readl(&regs->gusbcfg);
340
341 /* Program the ULPI External VBUS bit if needed */
Marek Vasut618da562016-04-27 14:55:57 +0200342 if (priv->ext_vbus) {
Marek Vasutb4fbd082016-04-27 14:58:49 +0200343 usbcfg |= DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
344 if (!priv->oc_disable) {
345 usbcfg |= DWC2_GUSBCFG_ULPI_INT_VBUS_INDICATOR |
346 DWC2_GUSBCFG_INDICATOR_PASSTHROUGH;
347 }
Marek Vasut618da562016-04-27 14:55:57 +0200348 } else {
349 usbcfg &= ~DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
350 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700351
352 /* Set external TS Dline pulsing */
353#ifdef CONFIG_DWC2_TS_DLINE
354 usbcfg |= DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
355#else
356 usbcfg &= ~DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
357#endif
358 writel(usbcfg, &regs->gusbcfg);
359
360 /* Reset the Controller */
361 dwc_otg_core_reset(regs);
362
363 /*
364 * This programming sequence needs to happen in FS mode before
365 * any other programming occurs
366 */
367#if defined(CONFIG_DWC2_DFLT_SPEED_FULL) && \
368 (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
369 /* If FS mode with FS PHY */
370 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_PHYSEL);
371
372 /* Reset after a PHY select */
373 dwc_otg_core_reset(regs);
374
375 /*
376 * Program DCFG.DevSpd or HCFG.FSLSPclkSel to 48Mhz in FS.
377 * Also do this on HNP Dev/Host mode switches (done in dev_init
378 * and host_init).
379 */
380 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
381 init_fslspclksel(regs);
382
383#ifdef CONFIG_DWC2_I2C_ENABLE
384 /* Program GUSBCFG.OtgUtmifsSel to I2C */
385 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_OTGUTMIFSSEL);
386
387 /* Program GI2CCTL.I2CEn */
388 clrsetbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN |
389 DWC2_GI2CCTL_I2CDEVADDR_MASK,
390 1 << DWC2_GI2CCTL_I2CDEVADDR_OFFSET);
391 setbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN);
392#endif
393
394#else
395 /* High speed PHY. */
396
397 /*
398 * HS PHY parameters. These parameters are preserved during
399 * soft reset so only program the first time. Do a soft reset
400 * immediately after setting phyif.
401 */
402 usbcfg &= ~(DWC2_GUSBCFG_ULPI_UTMI_SEL | DWC2_GUSBCFG_PHYIF);
403 usbcfg |= CONFIG_DWC2_PHY_TYPE << DWC2_GUSBCFG_ULPI_UTMI_SEL_OFFSET;
404
405 if (usbcfg & DWC2_GUSBCFG_ULPI_UTMI_SEL) { /* ULPI interface */
406#ifdef CONFIG_DWC2_PHY_ULPI_DDR
407 usbcfg |= DWC2_GUSBCFG_DDRSEL;
408#else
409 usbcfg &= ~DWC2_GUSBCFG_DDRSEL;
410#endif
411 } else { /* UTMI+ interface */
Alexey Brodkin163f8852018-01-31 17:56:59 +0300412#if (CONFIG_DWC2_UTMI_WIDTH == 16)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700413 usbcfg |= DWC2_GUSBCFG_PHYIF;
414#endif
415 }
416
417 writel(usbcfg, &regs->gusbcfg);
418
419 /* Reset after setting the PHY parameters */
420 dwc_otg_core_reset(regs);
421#endif
422
423 usbcfg = readl(&regs->gusbcfg);
424 usbcfg &= ~(DWC2_GUSBCFG_ULPI_FSLS | DWC2_GUSBCFG_ULPI_CLK_SUS_M);
425#ifdef CONFIG_DWC2_ULPI_FS_LS
426 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
427 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
428 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
429 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
430 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
431 if (hval == 2 && fval == 1) {
432 usbcfg |= DWC2_GUSBCFG_ULPI_FSLS;
433 usbcfg |= DWC2_GUSBCFG_ULPI_CLK_SUS_M;
434 }
435#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800436 if (priv->hnp_srp_disable)
437 usbcfg |= DWC2_GUSBCFG_FORCEHOSTMODE;
438
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700439 writel(usbcfg, &regs->gusbcfg);
440
441 /* Program the GAHBCFG Register. */
442 switch (readl(&regs->ghwcfg2) & DWC2_HWCFG2_ARCHITECTURE_MASK) {
443 case DWC2_HWCFG2_ARCHITECTURE_SLAVE_ONLY:
444 break;
445 case DWC2_HWCFG2_ARCHITECTURE_EXT_DMA:
446 while (brst_sz > 1) {
447 ahbcfg |= ahbcfg + (1 << DWC2_GAHBCFG_HBURSTLEN_OFFSET);
448 ahbcfg &= DWC2_GAHBCFG_HBURSTLEN_MASK;
449 brst_sz >>= 1;
450 }
451
452#ifdef CONFIG_DWC2_DMA_ENABLE
453 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
454#endif
455 break;
456
457 case DWC2_HWCFG2_ARCHITECTURE_INT_DMA:
458 ahbcfg |= DWC2_GAHBCFG_HBURSTLEN_INCR4;
459#ifdef CONFIG_DWC2_DMA_ENABLE
460 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
461#endif
462 break;
463 }
464
465 writel(ahbcfg, &regs->gahbcfg);
466
Meng Dongyangc65a3492017-06-08 15:34:20 +0800467 /* Program the capabilities in GUSBCFG Register */
468 usbcfg = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700469
Meng Dongyangc65a3492017-06-08 15:34:20 +0800470 if (!priv->hnp_srp_disable)
471 usbcfg |= DWC2_GUSBCFG_HNPCAP | DWC2_GUSBCFG_SRPCAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700472#ifdef CONFIG_DWC2_IC_USB_CAP
Meng Dongyangc65a3492017-06-08 15:34:20 +0800473 usbcfg |= DWC2_GUSBCFG_IC_USB_CAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700474#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800475
476 setbits_le32(&regs->gusbcfg, usbcfg);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700477}
478
479/*
480 * Prepares a host channel for transferring packets to/from a specific
481 * endpoint. The HCCHARn register is set up with the characteristics specified
482 * in _hc. Host channel interrupts that may need to be serviced while this
483 * transfer is in progress are enabled.
484 *
485 * @param regs Programming view of DWC_otg controller
486 * @param hc Information needed to initialize the host channel
487 */
488static void dwc_otg_hc_init(struct dwc2_core_regs *regs, uint8_t hc_num,
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600489 struct usb_device *dev, uint8_t dev_addr, uint8_t ep_num,
490 uint8_t ep_is_in, uint8_t ep_type, uint16_t max_packet)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700491{
492 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[hc_num];
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600493 uint32_t hcchar = (dev_addr << DWC2_HCCHAR_DEVADDR_OFFSET) |
494 (ep_num << DWC2_HCCHAR_EPNUM_OFFSET) |
495 (ep_is_in << DWC2_HCCHAR_EPDIR_OFFSET) |
496 (ep_type << DWC2_HCCHAR_EPTYPE_OFFSET) |
497 (max_packet << DWC2_HCCHAR_MPS_OFFSET);
498
499 if (dev->speed == USB_SPEED_LOW)
500 hcchar |= DWC2_HCCHAR_LSPDDEV;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700501
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700502 /*
503 * Program the HCCHARn register with the endpoint characteristics
504 * for the current transfer.
505 */
506 writel(hcchar, &hc_regs->hcchar);
507
Stefan Brüns890f0ee2016-01-17 04:09:54 +0100508 /* Program the HCSPLIT register, default to no SPLIT */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700509 writel(0, &hc_regs->hcsplt);
510}
511
Stefan Brüns890f0ee2016-01-17 04:09:54 +0100512static void dwc_otg_hc_init_split(struct dwc2_hc_regs *hc_regs,
513 uint8_t hub_devnum, uint8_t hub_port)
514{
515 uint32_t hcsplt = 0;
516
517 hcsplt = DWC2_HCSPLT_SPLTENA;
518 hcsplt |= hub_devnum << DWC2_HCSPLT_HUBADDR_OFFSET;
519 hcsplt |= hub_port << DWC2_HCSPLT_PRTADDR_OFFSET;
520
521 /* Program the HCSPLIT register for SPLITs */
522 writel(hcsplt, &hc_regs->hcsplt);
523}
524
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700525/*
526 * DWC2 to USB API interface
527 */
528/* Direction: In ; Request: Status */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600529static int dwc_otg_submit_rh_msg_in_status(struct dwc2_core_regs *regs,
530 struct usb_device *dev, void *buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700531 int txlen, struct devrequest *cmd)
532{
533 uint32_t hprt0 = 0;
534 uint32_t port_status = 0;
535 uint32_t port_change = 0;
536 int len = 0;
537 int stat = 0;
538
539 switch (cmd->requesttype & ~USB_DIR_IN) {
540 case 0:
541 *(uint16_t *)buffer = cpu_to_le16(1);
542 len = 2;
543 break;
544 case USB_RECIP_INTERFACE:
545 case USB_RECIP_ENDPOINT:
546 *(uint16_t *)buffer = cpu_to_le16(0);
547 len = 2;
548 break;
549 case USB_TYPE_CLASS:
550 *(uint32_t *)buffer = cpu_to_le32(0);
551 len = 4;
552 break;
553 case USB_RECIP_OTHER | USB_TYPE_CLASS:
554 hprt0 = readl(&regs->hprt0);
555 if (hprt0 & DWC2_HPRT0_PRTCONNSTS)
556 port_status |= USB_PORT_STAT_CONNECTION;
557 if (hprt0 & DWC2_HPRT0_PRTENA)
558 port_status |= USB_PORT_STAT_ENABLE;
559 if (hprt0 & DWC2_HPRT0_PRTSUSP)
560 port_status |= USB_PORT_STAT_SUSPEND;
561 if (hprt0 & DWC2_HPRT0_PRTOVRCURRACT)
562 port_status |= USB_PORT_STAT_OVERCURRENT;
563 if (hprt0 & DWC2_HPRT0_PRTRST)
564 port_status |= USB_PORT_STAT_RESET;
565 if (hprt0 & DWC2_HPRT0_PRTPWR)
566 port_status |= USB_PORT_STAT_POWER;
567
Stephen Warren4748cce2015-03-27 21:55:38 -0600568 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) == DWC2_HPRT0_PRTSPD_LOW)
569 port_status |= USB_PORT_STAT_LOW_SPEED;
570 else if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
571 DWC2_HPRT0_PRTSPD_HIGH)
572 port_status |= USB_PORT_STAT_HIGH_SPEED;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700573
574 if (hprt0 & DWC2_HPRT0_PRTENCHNG)
575 port_change |= USB_PORT_STAT_C_ENABLE;
576 if (hprt0 & DWC2_HPRT0_PRTCONNDET)
577 port_change |= USB_PORT_STAT_C_CONNECTION;
578 if (hprt0 & DWC2_HPRT0_PRTOVRCURRCHNG)
579 port_change |= USB_PORT_STAT_C_OVERCURRENT;
580
581 *(uint32_t *)buffer = cpu_to_le32(port_status |
582 (port_change << 16));
583 len = 4;
584 break;
585 default:
586 puts("unsupported root hub command\n");
587 stat = USB_ST_STALLED;
588 }
589
590 dev->act_len = min(len, txlen);
591 dev->status = stat;
592
593 return stat;
594}
595
596/* Direction: In ; Request: Descriptor */
597static int dwc_otg_submit_rh_msg_in_descriptor(struct usb_device *dev,
598 void *buffer, int txlen,
599 struct devrequest *cmd)
600{
601 unsigned char data[32];
602 uint32_t dsc;
603 int len = 0;
604 int stat = 0;
605 uint16_t wValue = cpu_to_le16(cmd->value);
606 uint16_t wLength = cpu_to_le16(cmd->length);
607
608 switch (cmd->requesttype & ~USB_DIR_IN) {
609 case 0:
610 switch (wValue & 0xff00) {
611 case 0x0100: /* device descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900612 len = min3(txlen, (int)sizeof(root_hub_dev_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700613 memcpy(buffer, root_hub_dev_des, len);
614 break;
615 case 0x0200: /* configuration descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900616 len = min3(txlen, (int)sizeof(root_hub_config_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700617 memcpy(buffer, root_hub_config_des, len);
618 break;
619 case 0x0300: /* string descriptors */
620 switch (wValue & 0xff) {
621 case 0x00:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900622 len = min3(txlen, (int)sizeof(root_hub_str_index0),
623 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700624 memcpy(buffer, root_hub_str_index0, len);
625 break;
626 case 0x01:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900627 len = min3(txlen, (int)sizeof(root_hub_str_index1),
628 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700629 memcpy(buffer, root_hub_str_index1, len);
630 break;
631 }
632 break;
633 default:
634 stat = USB_ST_STALLED;
635 }
636 break;
637
638 case USB_TYPE_CLASS:
639 /* Root port config, set 1 port and nothing else. */
640 dsc = 0x00000001;
641
642 data[0] = 9; /* min length; */
643 data[1] = 0x29;
644 data[2] = dsc & RH_A_NDP;
645 data[3] = 0;
646 if (dsc & RH_A_PSM)
647 data[3] |= 0x1;
648 if (dsc & RH_A_NOCP)
649 data[3] |= 0x10;
650 else if (dsc & RH_A_OCPM)
651 data[3] |= 0x8;
652
653 /* corresponds to data[4-7] */
654 data[5] = (dsc & RH_A_POTPGT) >> 24;
655 data[7] = dsc & RH_B_DR;
656 if (data[2] < 7) {
657 data[8] = 0xff;
658 } else {
659 data[0] += 2;
660 data[8] = (dsc & RH_B_DR) >> 8;
661 data[9] = 0xff;
662 data[10] = data[9];
663 }
664
Masahiro Yamadab4141192014-11-07 03:03:31 +0900665 len = min3(txlen, (int)data[0], (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700666 memcpy(buffer, data, len);
667 break;
668 default:
669 puts("unsupported root hub command\n");
670 stat = USB_ST_STALLED;
671 }
672
673 dev->act_len = min(len, txlen);
674 dev->status = stat;
675
676 return stat;
677}
678
679/* Direction: In ; Request: Configuration */
680static int dwc_otg_submit_rh_msg_in_configuration(struct usb_device *dev,
681 void *buffer, int txlen,
682 struct devrequest *cmd)
683{
684 int len = 0;
685 int stat = 0;
686
687 switch (cmd->requesttype & ~USB_DIR_IN) {
688 case 0:
689 *(uint8_t *)buffer = 0x01;
690 len = 1;
691 break;
692 default:
693 puts("unsupported root hub command\n");
694 stat = USB_ST_STALLED;
695 }
696
697 dev->act_len = min(len, txlen);
698 dev->status = stat;
699
700 return stat;
701}
702
703/* Direction: In */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600704static int dwc_otg_submit_rh_msg_in(struct dwc2_priv *priv,
705 struct usb_device *dev, void *buffer,
706 int txlen, struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700707{
708 switch (cmd->request) {
709 case USB_REQ_GET_STATUS:
Simon Glasscc3e3a92015-07-07 20:53:36 -0600710 return dwc_otg_submit_rh_msg_in_status(priv->regs, dev, buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700711 txlen, cmd);
712 case USB_REQ_GET_DESCRIPTOR:
713 return dwc_otg_submit_rh_msg_in_descriptor(dev, buffer,
714 txlen, cmd);
715 case USB_REQ_GET_CONFIGURATION:
716 return dwc_otg_submit_rh_msg_in_configuration(dev, buffer,
717 txlen, cmd);
718 default:
719 puts("unsupported root hub command\n");
720 return USB_ST_STALLED;
721 }
722}
723
724/* Direction: Out */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600725static int dwc_otg_submit_rh_msg_out(struct dwc2_priv *priv,
726 struct usb_device *dev,
727 void *buffer, int txlen,
728 struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700729{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600730 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700731 int len = 0;
732 int stat = 0;
733 uint16_t bmrtype_breq = cmd->requesttype | (cmd->request << 8);
734 uint16_t wValue = cpu_to_le16(cmd->value);
735
736 switch (bmrtype_breq & ~USB_DIR_IN) {
737 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_ENDPOINT:
738 case (USB_REQ_CLEAR_FEATURE << 8) | USB_TYPE_CLASS:
739 break;
740
741 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
742 switch (wValue) {
743 case USB_PORT_FEAT_C_CONNECTION:
744 setbits_le32(&regs->hprt0, DWC2_HPRT0_PRTCONNDET);
745 break;
746 }
747 break;
748
749 case (USB_REQ_SET_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
750 switch (wValue) {
751 case USB_PORT_FEAT_SUSPEND:
752 break;
753
754 case USB_PORT_FEAT_RESET:
755 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
756 DWC2_HPRT0_PRTCONNDET |
757 DWC2_HPRT0_PRTENCHNG |
758 DWC2_HPRT0_PRTOVRCURRCHNG,
759 DWC2_HPRT0_PRTRST);
760 mdelay(50);
761 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTRST);
762 break;
763
764 case USB_PORT_FEAT_POWER:
765 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
766 DWC2_HPRT0_PRTCONNDET |
767 DWC2_HPRT0_PRTENCHNG |
768 DWC2_HPRT0_PRTOVRCURRCHNG,
769 DWC2_HPRT0_PRTRST);
770 break;
771
772 case USB_PORT_FEAT_ENABLE:
773 break;
774 }
775 break;
776 case (USB_REQ_SET_ADDRESS << 8):
Simon Glasscc3e3a92015-07-07 20:53:36 -0600777 priv->root_hub_devnum = wValue;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700778 break;
779 case (USB_REQ_SET_CONFIGURATION << 8):
780 break;
781 default:
782 puts("unsupported root hub command\n");
783 stat = USB_ST_STALLED;
784 }
785
786 len = min(len, txlen);
787
788 dev->act_len = len;
789 dev->status = stat;
790
791 return stat;
792}
793
Simon Glasscc3e3a92015-07-07 20:53:36 -0600794static int dwc_otg_submit_rh_msg(struct dwc2_priv *priv, struct usb_device *dev,
795 unsigned long pipe, void *buffer, int txlen,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700796 struct devrequest *cmd)
797{
798 int stat = 0;
799
800 if (usb_pipeint(pipe)) {
801 puts("Root-Hub submit IRQ: NOT implemented\n");
802 return 0;
803 }
804
805 if (cmd->requesttype & USB_DIR_IN)
Simon Glasscc3e3a92015-07-07 20:53:36 -0600806 stat = dwc_otg_submit_rh_msg_in(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700807 else
Simon Glasscc3e3a92015-07-07 20:53:36 -0600808 stat = dwc_otg_submit_rh_msg_out(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700809
810 mdelay(1);
811
812 return stat;
813}
814
Stefan Brüns25612f22016-01-23 01:42:25 +0100815int wait_for_chhltd(struct dwc2_hc_regs *hc_regs, uint32_t *sub, u8 *toggle)
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700816{
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700817 int ret;
818 uint32_t hcint, hctsiz;
819
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100820 ret = wait_for_bit_le32(&hc_regs->hcint, DWC2_HCINT_CHHLTD, true,
Christophe Kerelloc2e4c862018-03-15 18:00:31 +0100821 2000, false);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700822 if (ret)
823 return ret;
824
825 hcint = readl(&hc_regs->hcint);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700826 hctsiz = readl(&hc_regs->hctsiz);
827 *sub = (hctsiz & DWC2_HCTSIZ_XFERSIZE_MASK) >>
828 DWC2_HCTSIZ_XFERSIZE_OFFSET;
Stephen Warren66ffc872015-03-07 22:48:55 -0700829 *toggle = (hctsiz & DWC2_HCTSIZ_PID_MASK) >> DWC2_HCTSIZ_PID_OFFSET;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700830
Stefan Brüns03460cd2016-01-17 04:09:52 +0100831 debug("%s: HCINT=%08x sub=%u toggle=%d\n", __func__, hcint, *sub,
832 *toggle);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700833
Stefan Brüns03460cd2016-01-17 04:09:52 +0100834 if (hcint & DWC2_HCINT_XFERCOMP)
835 return 0;
836
837 if (hcint & (DWC2_HCINT_NAK | DWC2_HCINT_FRMOVRUN))
838 return -EAGAIN;
839
840 debug("%s: Error (HCINT=%08x)\n", __func__, hcint);
841 return -EINVAL;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700842}
843
Stephen Warren7b5e5042015-03-07 22:48:52 -0700844static int dwc2_eptype[] = {
845 DWC2_HCCHAR_EPTYPE_ISOC,
846 DWC2_HCCHAR_EPTYPE_INTR,
847 DWC2_HCCHAR_EPTYPE_CONTROL,
848 DWC2_HCCHAR_EPTYPE_BULK,
849};
850
Stefan Brünsdaed3052016-01-17 04:09:53 +0100851static int transfer_chunk(struct dwc2_hc_regs *hc_regs, void *aligned_buffer,
Stefan Brüns25612f22016-01-23 01:42:25 +0100852 u8 *pid, int in, void *buffer, int num_packets,
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100853 int xfer_len, int *actual_len, int odd_frame)
Stefan Brünsdaed3052016-01-17 04:09:53 +0100854{
855 int ret = 0;
856 uint32_t sub;
857
858 debug("%s: chunk: pid %d xfer_len %u pkts %u\n", __func__,
859 *pid, xfer_len, num_packets);
860
861 writel((xfer_len << DWC2_HCTSIZ_XFERSIZE_OFFSET) |
862 (num_packets << DWC2_HCTSIZ_PKTCNT_OFFSET) |
863 (*pid << DWC2_HCTSIZ_PID_OFFSET),
864 &hc_regs->hctsiz);
865
Eddie Cai57ca63b2017-04-06 11:37:04 +0800866 if (xfer_len) {
867 if (in) {
868 invalidate_dcache_range(
869 (uintptr_t)aligned_buffer,
870 (uintptr_t)aligned_buffer +
871 roundup(xfer_len, ARCH_DMA_MINALIGN));
872 } else {
873 memcpy(aligned_buffer, buffer, xfer_len);
874 flush_dcache_range(
875 (uintptr_t)aligned_buffer,
876 (uintptr_t)aligned_buffer +
877 roundup(xfer_len, ARCH_DMA_MINALIGN));
878 }
Stefan Brünsdaed3052016-01-17 04:09:53 +0100879 }
880
881 writel(phys_to_bus((unsigned long)aligned_buffer), &hc_regs->hcdma);
882
883 /* Clear old interrupt conditions for this host channel. */
884 writel(0x3fff, &hc_regs->hcint);
885
886 /* Set host channel enable after all other setup is complete. */
887 clrsetbits_le32(&hc_regs->hcchar, DWC2_HCCHAR_MULTICNT_MASK |
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100888 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS |
889 DWC2_HCCHAR_ODDFRM,
Stefan Brünsdaed3052016-01-17 04:09:53 +0100890 (1 << DWC2_HCCHAR_MULTICNT_OFFSET) |
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100891 (odd_frame << DWC2_HCCHAR_ODDFRM_OFFSET) |
Stefan Brünsdaed3052016-01-17 04:09:53 +0100892 DWC2_HCCHAR_CHEN);
893
894 ret = wait_for_chhltd(hc_regs, &sub, pid);
895 if (ret < 0)
896 return ret;
897
898 if (in) {
899 xfer_len -= sub;
900
901 invalidate_dcache_range((unsigned long)aligned_buffer,
902 (unsigned long)aligned_buffer +
903 roundup(xfer_len, ARCH_DMA_MINALIGN));
904
905 memcpy(buffer, aligned_buffer, xfer_len);
906 }
907 *actual_len = xfer_len;
908
909 return ret;
910}
911
Simon Glasscc3e3a92015-07-07 20:53:36 -0600912int chunk_msg(struct dwc2_priv *priv, struct usb_device *dev,
Stefan Brüns25612f22016-01-23 01:42:25 +0100913 unsigned long pipe, u8 *pid, int in, void *buffer, int len)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700914{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600915 struct dwc2_core_regs *regs = priv->regs;
Stephen Warren7b5e5042015-03-07 22:48:52 -0700916 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[DWC2_HC_CHANNEL];
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100917 struct dwc2_host_regs *host_regs = &regs->host_regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700918 int devnum = usb_pipedevice(pipe);
919 int ep = usb_pipeendpoint(pipe);
920 int max = usb_maxpacket(dev, pipe);
Stephen Warren7b5e5042015-03-07 22:48:52 -0700921 int eptype = dwc2_eptype[usb_pipetype(pipe)];
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700922 int done = 0;
Stephen Warren5877de92015-04-11 21:52:02 -0600923 int ret = 0;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100924 int do_split = 0;
925 int complete_split = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700926 uint32_t xfer_len;
927 uint32_t num_packets;
928 int stop_transfer = 0;
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100929 uint32_t max_xfer_len;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100930 int ssplit_frame_num = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700931
Stephen Warren7b5e5042015-03-07 22:48:52 -0700932 debug("%s: msg: pipe %lx pid %d in %d len %d\n", __func__, pipe, *pid,
933 in, len);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700934
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100935 max_xfer_len = CONFIG_DWC2_MAX_PACKET_COUNT * max;
936 if (max_xfer_len > CONFIG_DWC2_MAX_TRANSFER_SIZE)
937 max_xfer_len = CONFIG_DWC2_MAX_TRANSFER_SIZE;
938 if (max_xfer_len > DWC2_DATA_BUF_SIZE)
939 max_xfer_len = DWC2_DATA_BUF_SIZE;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700940
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100941 /* Make sure that max_xfer_len is a multiple of max packet size. */
942 num_packets = max_xfer_len / max;
943 max_xfer_len = num_packets * max;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700944
Stefan Brünsdaed3052016-01-17 04:09:53 +0100945 /* Initialize channel */
946 dwc_otg_hc_init(regs, DWC2_HC_CHANNEL, dev, devnum, ep, in,
947 eptype, max);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700948
Stefan Brünsb54e4472016-01-17 04:09:55 +0100949 /* Check if the target is a FS/LS device behind a HS hub */
950 if (dev->speed != USB_SPEED_HIGH) {
951 uint8_t hub_addr;
952 uint8_t hub_port;
953 uint32_t hprt0 = readl(&regs->hprt0);
954 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
955 DWC2_HPRT0_PRTSPD_HIGH) {
956 usb_find_usb2_hub_address_port(dev, &hub_addr,
957 &hub_port);
958 dwc_otg_hc_init_split(hc_regs, hub_addr, hub_port);
959
960 do_split = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700961 num_packets = 1;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100962 max_xfer_len = max;
963 }
964 }
965
Stefan Brünsdaed3052016-01-17 04:09:53 +0100966 do {
967 int actual_len = 0;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100968 uint32_t hcint;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100969 int odd_frame = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700970 xfer_len = len - done;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700971
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100972 if (xfer_len > max_xfer_len)
973 xfer_len = max_xfer_len;
974 else if (xfer_len > max)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700975 num_packets = (xfer_len + max - 1) / max;
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100976 else
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700977 num_packets = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700978
Stefan Brünsb54e4472016-01-17 04:09:55 +0100979 if (complete_split)
980 setbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
981 else if (do_split)
982 clrbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
983
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100984 if (eptype == DWC2_HCCHAR_EPTYPE_INTR) {
985 int uframe_num = readl(&host_regs->hfnum);
986 if (!(uframe_num & 0x1))
987 odd_frame = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700988 }
989
Stefan Brünsdaed3052016-01-17 04:09:53 +0100990 ret = transfer_chunk(hc_regs, priv->aligned_buffer, pid,
991 in, (char *)buffer + done, num_packets,
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100992 xfer_len, &actual_len, odd_frame);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700993
Stefan Brünsb54e4472016-01-17 04:09:55 +0100994 hcint = readl(&hc_regs->hcint);
995 if (complete_split) {
996 stop_transfer = 0;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100997 if (hcint & DWC2_HCINT_NYET) {
Stefan Brünsb54e4472016-01-17 04:09:55 +0100998 ret = 0;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100999 int frame_num = DWC2_HFNUM_MAX_FRNUM &
1000 readl(&host_regs->hfnum);
1001 if (((frame_num - ssplit_frame_num) &
1002 DWC2_HFNUM_MAX_FRNUM) > 4)
1003 ret = -EAGAIN;
1004 } else
Stefan Brünsb54e4472016-01-17 04:09:55 +01001005 complete_split = 0;
1006 } else if (do_split) {
1007 if (hcint & DWC2_HCINT_ACK) {
Stefan Brünsd2ff51b2016-01-17 04:09:56 +01001008 ssplit_frame_num = DWC2_HFNUM_MAX_FRNUM &
1009 readl(&host_regs->hfnum);
Stefan Brünsb54e4472016-01-17 04:09:55 +01001010 ret = 0;
1011 complete_split = 1;
1012 }
Simon Glasscc3e3a92015-07-07 20:53:36 -06001013 }
Stephen Warrend1c880c2015-03-08 11:08:13 -06001014
Stephen Warren5877de92015-04-11 21:52:02 -06001015 if (ret)
Stephen Warren4a1d21f2015-03-07 22:48:51 -07001016 break;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001017
Stefan Brünsdaed3052016-01-17 04:09:53 +01001018 if (actual_len < xfer_len)
1019 stop_transfer = 1;
Alexander Steindb402e02015-07-24 09:22:14 +02001020
Stefan Brünsdaed3052016-01-17 04:09:53 +01001021 done += actual_len;
Alexander Steindb402e02015-07-24 09:22:14 +02001022
Stefan Brünsb54e4472016-01-17 04:09:55 +01001023 /* Transactions are done when when either all data is transferred or
1024 * there is a short transfer. In case of a SPLIT make sure the CSPLIT
1025 * is executed.
1026 */
1027 } while (((done < len) && !stop_transfer) || complete_split);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001028
1029 writel(0, &hc_regs->hcintmsk);
1030 writel(0xFFFFFFFF, &hc_regs->hcint);
1031
1032 dev->status = 0;
1033 dev->act_len = done;
1034
Stephen Warren5877de92015-04-11 21:52:02 -06001035 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001036}
1037
Stephen Warren7b5e5042015-03-07 22:48:52 -07001038/* U-Boot USB transmission interface */
Simon Glasscc3e3a92015-07-07 20:53:36 -06001039int _submit_bulk_msg(struct dwc2_priv *priv, struct usb_device *dev,
1040 unsigned long pipe, void *buffer, int len)
Stephen Warren7b5e5042015-03-07 22:48:52 -07001041{
1042 int devnum = usb_pipedevice(pipe);
1043 int ep = usb_pipeendpoint(pipe);
Stefan Brüns25612f22016-01-23 01:42:25 +01001044 u8* pid;
Stephen Warren7b5e5042015-03-07 22:48:52 -07001045
Stefan Brüns25612f22016-01-23 01:42:25 +01001046 if ((devnum >= MAX_DEVICE) || (devnum == priv->root_hub_devnum)) {
Stephen Warren7b5e5042015-03-07 22:48:52 -07001047 dev->status = 0;
1048 return -EINVAL;
1049 }
1050
Stefan Brüns25612f22016-01-23 01:42:25 +01001051 if (usb_pipein(pipe))
1052 pid = &priv->in_data_toggle[devnum][ep];
1053 else
1054 pid = &priv->out_data_toggle[devnum][ep];
1055
1056 return chunk_msg(priv, dev, pipe, pid, usb_pipein(pipe), buffer, len);
Stephen Warren7b5e5042015-03-07 22:48:52 -07001057}
1058
Simon Glasscc3e3a92015-07-07 20:53:36 -06001059static int _submit_control_msg(struct dwc2_priv *priv, struct usb_device *dev,
1060 unsigned long pipe, void *buffer, int len,
1061 struct devrequest *setup)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001062{
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001063 int devnum = usb_pipedevice(pipe);
Stefan Brüns25612f22016-01-23 01:42:25 +01001064 int ret, act_len;
1065 u8 pid;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001066 /* For CONTROL endpoint pid should start with DATA1 */
1067 int status_direction;
1068
Simon Glasscc3e3a92015-07-07 20:53:36 -06001069 if (devnum == priv->root_hub_devnum) {
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001070 dev->status = 0;
1071 dev->speed = USB_SPEED_HIGH;
Simon Glasscc3e3a92015-07-07 20:53:36 -06001072 return dwc_otg_submit_rh_msg(priv, dev, pipe, buffer, len,
1073 setup);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001074 }
1075
Stefan Brünsb54e4472016-01-17 04:09:55 +01001076 /* SETUP stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001077 pid = DWC2_HC_PID_SETUP;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001078 do {
1079 ret = chunk_msg(priv, dev, pipe, &pid, 0, setup, 8);
1080 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001081 if (ret)
1082 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001083
Stefan Brünsb54e4472016-01-17 04:09:55 +01001084 /* DATA stage */
1085 act_len = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001086 if (buffer) {
Stephen Warren282685e2015-03-07 22:48:54 -07001087 pid = DWC2_HC_PID_DATA1;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001088 do {
1089 ret = chunk_msg(priv, dev, pipe, &pid, usb_pipein(pipe),
1090 buffer, len);
1091 act_len += dev->act_len;
1092 buffer += dev->act_len;
1093 len -= dev->act_len;
1094 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001095 if (ret)
1096 return ret;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001097 status_direction = usb_pipeout(pipe);
1098 } else {
1099 /* No-data CONTROL always ends with an IN transaction */
1100 status_direction = 1;
1101 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001102
1103 /* STATUS stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001104 pid = DWC2_HC_PID_DATA1;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001105 do {
1106 ret = chunk_msg(priv, dev, pipe, &pid, status_direction,
1107 priv->status_buffer, 0);
1108 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001109 if (ret)
1110 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001111
Stephen Warrenee837552015-03-07 22:48:53 -07001112 dev->act_len = act_len;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001113
Stephen Warren4a1d21f2015-03-07 22:48:51 -07001114 return 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001115}
1116
Simon Glasscc3e3a92015-07-07 20:53:36 -06001117int _submit_int_msg(struct dwc2_priv *priv, struct usb_device *dev,
Michal Suchanek34371212019-08-18 10:55:27 +02001118 unsigned long pipe, void *buffer, int len, int interval,
1119 bool nonblock)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001120{
Stephen Warren5877de92015-04-11 21:52:02 -06001121 unsigned long timeout;
1122 int ret;
1123
Stephen Warrene2365192015-04-10 21:05:22 -06001124 /* FIXME: what is interval? */
Stephen Warren5877de92015-04-11 21:52:02 -06001125
1126 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
1127 for (;;) {
1128 if (get_timer(0) > timeout) {
Patrice Chotardac6c7962018-03-15 18:00:32 +01001129 dev_err(dev, "Timeout poll on interrupt endpoint\n");
Stephen Warren5877de92015-04-11 21:52:02 -06001130 return -ETIMEDOUT;
1131 }
Simon Glasscc3e3a92015-07-07 20:53:36 -06001132 ret = _submit_bulk_msg(priv, dev, pipe, buffer, len);
Michal Suchanek9dcab2c2019-08-18 10:55:28 +02001133 if ((ret != -EAGAIN) || nonblock)
Stephen Warren5877de92015-04-11 21:52:02 -06001134 return ret;
1135 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001136}
1137
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001138static int dwc2_reset(struct udevice *dev)
1139{
1140 int ret;
1141 struct dwc2_priv *priv = dev_get_priv(dev);
1142
1143 ret = reset_get_bulk(dev, &priv->resets);
1144 if (ret) {
1145 dev_warn(dev, "Can't get reset: %d\n", ret);
1146 /* Return 0 if error due to !CONFIG_DM_RESET and reset
1147 * DT property is not present.
1148 */
1149 if (ret == -ENOENT || ret == -ENOTSUPP)
1150 return 0;
1151 else
1152 return ret;
1153 }
1154
Patrick Delaunay66004382020-04-27 15:30:00 +02001155 /* force reset to clear all IP register */
1156 reset_assert_bulk(&priv->resets);
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001157 ret = reset_deassert_bulk(&priv->resets);
1158 if (ret) {
1159 reset_release_bulk(&priv->resets);
1160 dev_err(dev, "Failed to reset: %d\n", ret);
1161 return ret;
1162 }
1163
1164 return 0;
1165}
1166
Kever Yang5c735362017-03-10 12:05:14 +08001167static int dwc2_init_common(struct udevice *dev, struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001168{
Simon Glasscc3e3a92015-07-07 20:53:36 -06001169 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001170 uint32_t snpsid;
1171 int i, j;
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001172 int ret;
1173
1174 ret = dwc2_reset(dev);
1175 if (ret)
1176 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001177
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001178 snpsid = readl(&regs->gsnpsid);
Patrice Chotardac6c7962018-03-15 18:00:32 +01001179 dev_info(dev, "Core Release: %x.%03x\n",
1180 snpsid >> 12 & 0xf, snpsid & 0xfff);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001181
Peter Griffin5cfd6c02015-05-12 14:38:27 +01001182 if ((snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_2xx &&
1183 (snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_3xx) {
Patrice Chotardac6c7962018-03-15 18:00:32 +01001184 dev_info(dev, "SNPSID invalid (not DWC2 OTG device): %08x\n",
1185 snpsid);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001186 return -ENODEV;
1187 }
1188
Marek Vasut618da562016-04-27 14:55:57 +02001189#ifdef CONFIG_DWC2_PHY_ULPI_EXT_VBUS
1190 priv->ext_vbus = 1;
1191#else
1192 priv->ext_vbus = 0;
1193#endif
1194
Marek Vasut55901982016-04-27 14:53:33 +02001195 dwc_otg_core_init(priv);
Kever Yang5c735362017-03-10 12:05:14 +08001196 dwc_otg_core_host_init(dev, regs);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001197
1198 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1199 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1200 DWC2_HPRT0_PRTOVRCURRCHNG,
1201 DWC2_HPRT0_PRTRST);
1202 mdelay(50);
1203 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET |
1204 DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG |
1205 DWC2_HPRT0_PRTRST);
1206
1207 for (i = 0; i < MAX_DEVICE; i++) {
Stefan Brüns25612f22016-01-23 01:42:25 +01001208 for (j = 0; j < MAX_ENDPOINT; j++) {
1209 priv->in_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1210 priv->out_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1211 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001212 }
1213
Stefan Roese2bf352f2016-05-06 13:53:37 +02001214 /*
1215 * Add a 1 second delay here. This gives the host controller
1216 * a bit time before the comminucation with the USB devices
1217 * is started (the bus is scanned) and fixes the USB detection
1218 * problems with some problematic USB keys.
1219 */
1220 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
1221 mdelay(1000);
1222
Patrick Delaunay245847f2020-04-27 15:30:01 +02001223 printf("USB DWC2\n");
1224
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001225 return 0;
1226}
1227
Simon Glasscc3e3a92015-07-07 20:53:36 -06001228static void dwc2_uninit_common(struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001229{
1230 /* Put everything in reset. */
1231 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1232 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1233 DWC2_HPRT0_PRTOVRCURRCHNG,
1234 DWC2_HPRT0_PRTRST);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001235}
1236
Sven Schwermerfd09c202018-11-21 08:43:56 +01001237#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glasscc3e3a92015-07-07 20:53:36 -06001238int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1239 int len, struct devrequest *setup)
1240{
1241 return _submit_control_msg(&local, dev, pipe, buffer, len, setup);
1242}
1243
1244int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1245 int len)
1246{
1247 return _submit_bulk_msg(&local, dev, pipe, buffer, len);
1248}
1249
1250int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michal Suchanek34371212019-08-18 10:55:27 +02001251 int len, int interval, bool nonblock)
Simon Glasscc3e3a92015-07-07 20:53:36 -06001252{
Michal Suchanek34371212019-08-18 10:55:27 +02001253 return _submit_int_msg(&local, dev, pipe, buffer, len, interval,
1254 nonblock);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001255}
1256
1257/* U-Boot USB control interface */
1258int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1259{
1260 struct dwc2_priv *priv = &local;
1261
1262 memset(priv, '\0', sizeof(*priv));
1263 priv->root_hub_devnum = 0;
1264 priv->regs = (struct dwc2_core_regs *)CONFIG_USB_DWC2_REG_ADDR;
1265 priv->aligned_buffer = aligned_buffer_addr;
1266 priv->status_buffer = status_buffer_addr;
1267
1268 /* board-dependant init */
1269 if (board_usb_init(index, USB_INIT_HOST))
1270 return -1;
1271
Kever Yang5c735362017-03-10 12:05:14 +08001272 return dwc2_init_common(NULL, priv);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001273}
1274
1275int usb_lowlevel_stop(int index)
1276{
1277 dwc2_uninit_common(local.regs);
1278
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001279 return 0;
1280}
Simon Glassf58a41e2015-07-07 20:53:37 -06001281#endif
1282
Sven Schwermerfd09c202018-11-21 08:43:56 +01001283#if CONFIG_IS_ENABLED(DM_USB)
Simon Glassf58a41e2015-07-07 20:53:37 -06001284static int dwc2_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1285 unsigned long pipe, void *buffer, int length,
1286 struct devrequest *setup)
1287{
1288 struct dwc2_priv *priv = dev_get_priv(dev);
1289
1290 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1291 dev->name, udev, udev->dev->name, udev->portnr);
1292
1293 return _submit_control_msg(priv, udev, pipe, buffer, length, setup);
1294}
1295
1296static int dwc2_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1297 unsigned long pipe, void *buffer, int length)
1298{
1299 struct dwc2_priv *priv = dev_get_priv(dev);
1300
1301 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1302
1303 return _submit_bulk_msg(priv, udev, pipe, buffer, length);
1304}
1305
1306static int dwc2_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1307 unsigned long pipe, void *buffer, int length,
Michal Suchanek34371212019-08-18 10:55:27 +02001308 int interval, bool nonblock)
Simon Glassf58a41e2015-07-07 20:53:37 -06001309{
1310 struct dwc2_priv *priv = dev_get_priv(dev);
1311
1312 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1313
Michal Suchanek34371212019-08-18 10:55:27 +02001314 return _submit_int_msg(priv, udev, pipe, buffer, length, interval,
1315 nonblock);
Simon Glassf58a41e2015-07-07 20:53:37 -06001316}
1317
1318static int dwc2_usb_ofdata_to_platdata(struct udevice *dev)
1319{
1320 struct dwc2_priv *priv = dev_get_priv(dev);
1321 fdt_addr_t addr;
1322
Philipp Tomsicha9d30372017-09-12 17:32:27 +02001323 addr = dev_read_addr(dev);
Simon Glassf58a41e2015-07-07 20:53:37 -06001324 if (addr == FDT_ADDR_T_NONE)
1325 return -EINVAL;
1326 priv->regs = (struct dwc2_core_regs *)addr;
1327
Meng Dongyangdd22bac2017-06-28 19:22:43 +08001328 priv->oc_disable = dev_read_bool(dev, "disable-over-current");
1329 priv->hnp_srp_disable = dev_read_bool(dev, "hnp-srp-disable");
Meng Dongyangc65a3492017-06-08 15:34:20 +08001330
Simon Glassf58a41e2015-07-07 20:53:37 -06001331 return 0;
1332}
1333
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001334static int dwc2_setup_phy(struct udevice *dev)
1335{
1336 struct dwc2_priv *priv = dev_get_priv(dev);
1337 int ret;
1338
1339 ret = generic_phy_get_by_index(dev, 0, &priv->phy);
1340 if (ret) {
1341 if (ret == -ENOENT)
1342 return 0; /* no PHY, nothing to do */
1343 dev_err(dev, "Failed to get USB PHY: %d.\n", ret);
1344 return ret;
1345 }
1346
1347 ret = generic_phy_init(&priv->phy);
1348 if (ret) {
1349 dev_dbg(dev, "Failed to init USB PHY: %d.\n", ret);
1350 return ret;
1351 }
1352
1353 ret = generic_phy_power_on(&priv->phy);
1354 if (ret) {
1355 dev_dbg(dev, "Failed to power on USB PHY: %d.\n", ret);
1356 generic_phy_exit(&priv->phy);
1357 return ret;
1358 }
1359
1360 return 0;
1361}
1362
1363static int dwc2_shutdown_phy(struct udevice *dev)
1364{
1365 struct dwc2_priv *priv = dev_get_priv(dev);
1366 int ret;
1367
1368 /* PHY is not valid when generic_phy_get_by_index() = -ENOENT */
1369 if (!generic_phy_valid(&priv->phy))
1370 return 0; /* no PHY, nothing to do */
1371
1372 ret = generic_phy_power_off(&priv->phy);
1373 if (ret) {
1374 dev_dbg(dev, "Failed to power off USB PHY: %d.\n", ret);
1375 return ret;
1376 }
1377
1378 ret = generic_phy_exit(&priv->phy);
1379 if (ret) {
1380 dev_dbg(dev, "Failed to power off USB PHY: %d.\n", ret);
1381 return ret;
1382 }
1383
1384 return 0;
1385}
1386
Patrick Delaunay0bc632c2020-04-27 15:29:59 +02001387static int dwc2_clk_init(struct udevice *dev)
1388{
1389 struct dwc2_priv *priv = dev_get_priv(dev);
1390 int ret;
1391
1392 ret = clk_get_bulk(dev, &priv->clks);
1393 if (ret == -ENOSYS || ret == -ENOENT)
1394 return 0;
1395 if (ret)
1396 return ret;
1397
1398 ret = clk_enable_bulk(&priv->clks);
1399 if (ret) {
1400 clk_release_bulk(&priv->clks);
1401 return ret;
1402 }
1403
1404 return 0;
1405}
1406
Simon Glassf58a41e2015-07-07 20:53:37 -06001407static int dwc2_usb_probe(struct udevice *dev)
1408{
1409 struct dwc2_priv *priv = dev_get_priv(dev);
Marek Vasute96e0642016-04-26 03:02:35 +02001410 struct usb_bus_priv *bus_priv = dev_get_uclass_priv(dev);
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001411 int ret;
Marek Vasute96e0642016-04-26 03:02:35 +02001412
1413 bus_priv->desc_before_addr = true;
Simon Glassf58a41e2015-07-07 20:53:37 -06001414
Patrick Delaunay0bc632c2020-04-27 15:29:59 +02001415 ret = dwc2_clk_init(dev);
1416 if (ret)
1417 return ret;
1418
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001419 ret = dwc2_setup_phy(dev);
1420 if (ret)
1421 return ret;
1422
Kever Yang5c735362017-03-10 12:05:14 +08001423 return dwc2_init_common(dev, priv);
Simon Glassf58a41e2015-07-07 20:53:37 -06001424}
1425
1426static int dwc2_usb_remove(struct udevice *dev)
1427{
1428 struct dwc2_priv *priv = dev_get_priv(dev);
Christophe Kerello82e79752018-03-15 18:00:30 +01001429 int ret;
1430
1431 ret = dwc_vbus_supply_exit(dev);
1432 if (ret)
1433 return ret;
Simon Glassf58a41e2015-07-07 20:53:37 -06001434
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001435 ret = dwc2_shutdown_phy(dev);
1436 if (ret) {
1437 dev_dbg(dev, "Failed to shutdown USB PHY: %d.\n", ret);
1438 return ret;
1439 }
1440
Simon Glassf58a41e2015-07-07 20:53:37 -06001441 dwc2_uninit_common(priv->regs);
1442
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001443 reset_release_bulk(&priv->resets);
Patrick Delaunay0bc632c2020-04-27 15:29:59 +02001444 clk_disable_bulk(&priv->clks);
1445 clk_release_bulk(&priv->clks);
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001446
Simon Glassf58a41e2015-07-07 20:53:37 -06001447 return 0;
1448}
1449
1450struct dm_usb_ops dwc2_usb_ops = {
1451 .control = dwc2_submit_control_msg,
1452 .bulk = dwc2_submit_bulk_msg,
1453 .interrupt = dwc2_submit_int_msg,
1454};
1455
1456static const struct udevice_id dwc2_usb_ids[] = {
1457 { .compatible = "brcm,bcm2835-usb" },
Emmanuel Vadotff5d5cc2018-07-02 14:34:23 +02001458 { .compatible = "brcm,bcm2708-usb" },
Marek Vasutf522f942015-08-12 22:19:14 +02001459 { .compatible = "snps,dwc2" },
Simon Glassf58a41e2015-07-07 20:53:37 -06001460 { }
1461};
1462
1463U_BOOT_DRIVER(usb_dwc2) = {
Marek Vasut7a1386f2015-08-12 22:19:15 +02001464 .name = "dwc2_usb",
Simon Glassf58a41e2015-07-07 20:53:37 -06001465 .id = UCLASS_USB,
1466 .of_match = dwc2_usb_ids,
1467 .ofdata_to_platdata = dwc2_usb_ofdata_to_platdata,
1468 .probe = dwc2_usb_probe,
1469 .remove = dwc2_usb_remove,
1470 .ops = &dwc2_usb_ops,
1471 .priv_auto_alloc_size = sizeof(struct dwc2_priv),
1472 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1473};
1474#endif