blob: cefe9d83b1dc860f6616ac5e36ae5282c3b82f5f [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>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070014#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060015#include <memalign.h>
Stephen Warren5c0beb52015-03-24 20:07:35 -060016#include <phys2bus.h>
Patrick Delaunay0bc632c2020-04-27 15:29:59 +020017#include <usb.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070018#include <usbroothubdes.h>
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +010019#include <wait_bit.h>
Simon Glass90526e92020-05-10 11:39:56 -060020#include <asm/cache.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070021#include <asm/io.h>
Simon Glass336d4612020-02-03 07:36:16 -070022#include <dm/device_compat.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Kever Yang5c735362017-03-10 12:05:14 +080024#include <power/regulator.h>
Ley Foon Tan88c34b82018-08-29 00:08:48 +080025#include <reset.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070026
27#include "dwc2.h"
28
29/* Use only HC channel 0. */
30#define DWC2_HC_CHANNEL 0
31
32#define DWC2_STATUS_BUF_SIZE 64
Alexey Brodkin42637fd2018-02-28 16:16:58 +030033#define DWC2_DATA_BUF_SIZE (CONFIG_USB_DWC2_BUFFER_SIZE * 1024)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070034
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070035#define MAX_DEVICE 16
36#define MAX_ENDPOINT 16
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070037
Simon Glasscc3e3a92015-07-07 20:53:36 -060038struct dwc2_priv {
Sven Schwermerfd09c202018-11-21 08:43:56 +010039#if CONFIG_IS_ENABLED(DM_USB)
Alexander Steindb402e02015-07-24 09:22:14 +020040 uint8_t aligned_buffer[DWC2_DATA_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
41 uint8_t status_buffer[DWC2_STATUS_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
Christophe Kerello82e79752018-03-15 18:00:30 +010042#ifdef CONFIG_DM_REGULATOR
43 struct udevice *vbus_supply;
44#endif
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +020045 struct phy phy;
Patrick Delaunay0bc632c2020-04-27 15:29:59 +020046 struct clk_bulk clks;
Simon Glassf58a41e2015-07-07 20:53:37 -060047#else
Simon Glasscc3e3a92015-07-07 20:53:36 -060048 uint8_t *aligned_buffer;
49 uint8_t *status_buffer;
Simon Glassf58a41e2015-07-07 20:53:37 -060050#endif
Stefan Brüns25612f22016-01-23 01:42:25 +010051 u8 in_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
52 u8 out_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
Simon Glasscc3e3a92015-07-07 20:53:36 -060053 struct dwc2_core_regs *regs;
54 int root_hub_devnum;
Marek Vasut618da562016-04-27 14:55:57 +020055 bool ext_vbus;
Meng Dongyangdd22bac2017-06-28 19:22:43 +080056 /*
57 * The hnp/srp capability must be disabled if the platform
58 * does't support hnp/srp. Otherwise the force mode can't work.
59 */
Meng Dongyangc65a3492017-06-08 15:34:20 +080060 bool hnp_srp_disable;
Marek Vasutb4fbd082016-04-27 14:58:49 +020061 bool oc_disable;
Ley Foon Tan88c34b82018-08-29 00:08:48 +080062
63 struct reset_ctl_bulk resets;
Simon Glasscc3e3a92015-07-07 20:53:36 -060064};
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070065
Sven Schwermerfd09c202018-11-21 08:43:56 +010066#if !CONFIG_IS_ENABLED(DM_USB)
Alexander Steindb402e02015-07-24 09:22:14 +020067/* We need cacheline-aligned buffers for DMA transfers and dcache support */
68DEFINE_ALIGN_BUFFER(uint8_t, aligned_buffer_addr, DWC2_DATA_BUF_SIZE,
69 ARCH_DMA_MINALIGN);
70DEFINE_ALIGN_BUFFER(uint8_t, status_buffer_addr, DWC2_STATUS_BUF_SIZE,
71 ARCH_DMA_MINALIGN);
Simon Glasscc3e3a92015-07-07 20:53:36 -060072
73static struct dwc2_priv local;
Simon Glassf58a41e2015-07-07 20:53:37 -060074#endif
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070075
76/*
77 * DWC2 IP interface
78 */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070079
80/*
81 * Initializes the FSLSPClkSel field of the HCFG register
82 * depending on the PHY type.
83 */
84static void init_fslspclksel(struct dwc2_core_regs *regs)
85{
86 uint32_t phyclk;
87
88#if (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
89 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
90#else
91 /* High speed PHY running at full speed or high speed */
92 phyclk = DWC2_HCFG_FSLSPCLKSEL_30_60_MHZ;
93#endif
94
95#ifdef CONFIG_DWC2_ULPI_FS_LS
96 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
97 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
98 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
99 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
100 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
101
102 if (hval == 2 && fval == 1)
103 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
104#endif
105
106 clrsetbits_le32(&regs->host_regs.hcfg,
107 DWC2_HCFG_FSLSPCLKSEL_MASK,
108 phyclk << DWC2_HCFG_FSLSPCLKSEL_OFFSET);
109}
110
111/*
112 * Flush a Tx FIFO.
113 *
114 * @param regs Programming view of DWC_otg controller.
115 * @param num Tx FIFO to flush.
116 */
117static void dwc_otg_flush_tx_fifo(struct dwc2_core_regs *regs, const int num)
118{
119 int ret;
120
121 writel(DWC2_GRSTCTL_TXFFLSH | (num << DWC2_GRSTCTL_TXFNUM_OFFSET),
122 &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100123 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_TXFFLSH,
124 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700125 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100126 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700127
128 /* Wait for 3 PHY Clocks */
129 udelay(1);
130}
131
132/*
133 * Flush Rx FIFO.
134 *
135 * @param regs Programming view of DWC_otg controller.
136 */
137static void dwc_otg_flush_rx_fifo(struct dwc2_core_regs *regs)
138{
139 int ret;
140
141 writel(DWC2_GRSTCTL_RXFFLSH, &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100142 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_RXFFLSH,
143 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700144 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100145 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700146
147 /* Wait for 3 PHY Clocks */
148 udelay(1);
149}
150
151/*
152 * Do core a soft reset of the core. Be careful with this because it
153 * resets all the internal state machines of the core.
154 */
155static void dwc_otg_core_reset(struct dwc2_core_regs *regs)
156{
157 int ret;
158
159 /* Wait for AHB master IDLE state. */
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100160 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_AHBIDLE,
161 true, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700162 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100163 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700164
165 /* Core Soft Reset */
166 writel(DWC2_GRSTCTL_CSFTRST, &regs->grstctl);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100167 ret = wait_for_bit_le32(&regs->grstctl, DWC2_GRSTCTL_CSFTRST,
168 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700169 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100170 dev_info(dev, "%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700171
172 /*
173 * Wait for core to come out of reset.
174 * NOTE: This long sleep is _very_ important, otherwise the core will
175 * not stay in host mode after a connector ID change!
176 */
177 mdelay(100);
178}
179
Sven Schwermerfd09c202018-11-21 08:43:56 +0100180#if CONFIG_IS_ENABLED(DM_USB) && defined(CONFIG_DM_REGULATOR)
Kever Yang5c735362017-03-10 12:05:14 +0800181static int dwc_vbus_supply_init(struct udevice *dev)
182{
Christophe Kerello82e79752018-03-15 18:00:30 +0100183 struct dwc2_priv *priv = dev_get_priv(dev);
Kever Yang5c735362017-03-10 12:05:14 +0800184 int ret;
185
Christophe Kerello82e79752018-03-15 18:00:30 +0100186 ret = device_get_supply_regulator(dev, "vbus-supply",
187 &priv->vbus_supply);
Kever Yang5c735362017-03-10 12:05:14 +0800188 if (ret) {
189 debug("%s: No vbus supply\n", dev->name);
190 return 0;
191 }
192
Christophe Kerello82e79752018-03-15 18:00:30 +0100193 ret = regulator_set_enable(priv->vbus_supply, true);
Kever Yang5c735362017-03-10 12:05:14 +0800194 if (ret) {
Patrice Chotardac6c7962018-03-15 18:00:32 +0100195 dev_err(dev, "Error enabling vbus supply\n");
Kever Yang5c735362017-03-10 12:05:14 +0800196 return ret;
197 }
198
199 return 0;
200}
Christophe Kerello82e79752018-03-15 18:00:30 +0100201
202static int dwc_vbus_supply_exit(struct udevice *dev)
203{
204 struct dwc2_priv *priv = dev_get_priv(dev);
205 int ret;
206
207 if (priv->vbus_supply) {
208 ret = regulator_set_enable(priv->vbus_supply, false);
209 if (ret) {
210 dev_err(dev, "Error disabling vbus supply\n");
211 return ret;
212 }
213 }
214
215 return 0;
216}
Kever Yang5c735362017-03-10 12:05:14 +0800217#else
218static int dwc_vbus_supply_init(struct udevice *dev)
219{
220 return 0;
221}
Christophe Kerello82e79752018-03-15 18:00:30 +0100222
Sven Schwermerfd09c202018-11-21 08:43:56 +0100223#if CONFIG_IS_ENABLED(DM_USB)
Christophe Kerello82e79752018-03-15 18:00:30 +0100224static int dwc_vbus_supply_exit(struct udevice *dev)
225{
226 return 0;
227}
228#endif
Kever Yang5c735362017-03-10 12:05:14 +0800229#endif
230
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700231/*
232 * This function initializes the DWC_otg controller registers for
233 * host mode.
234 *
235 * This function flushes the Tx and Rx FIFOs and it flushes any entries in the
236 * request queues. Host channels are reset to ensure that they are ready for
237 * performing transfers.
238 *
Kever Yang5c735362017-03-10 12:05:14 +0800239 * @param dev USB Device (NULL if driver model is not being used)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700240 * @param regs Programming view of DWC_otg controller
241 *
242 */
Kever Yang5c735362017-03-10 12:05:14 +0800243static void dwc_otg_core_host_init(struct udevice *dev,
244 struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700245{
246 uint32_t nptxfifosize = 0;
247 uint32_t ptxfifosize = 0;
248 uint32_t hprt0 = 0;
249 int i, ret, num_channels;
250
251 /* Restart the Phy Clock */
252 writel(0, &regs->pcgcctl);
253
254 /* Initialize Host Configuration Register */
255 init_fslspclksel(regs);
256#ifdef CONFIG_DWC2_DFLT_SPEED_FULL
257 setbits_le32(&regs->host_regs.hcfg, DWC2_HCFG_FSLSSUPP);
258#endif
259
260 /* Configure data FIFO sizes */
261#ifdef CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
262 if (readl(&regs->ghwcfg2) & DWC2_HWCFG2_DYNAMIC_FIFO) {
263 /* Rx FIFO */
264 writel(CONFIG_DWC2_HOST_RX_FIFO_SIZE, &regs->grxfsiz);
265
266 /* Non-periodic Tx FIFO */
267 nptxfifosize |= CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE <<
268 DWC2_FIFOSIZE_DEPTH_OFFSET;
269 nptxfifosize |= CONFIG_DWC2_HOST_RX_FIFO_SIZE <<
270 DWC2_FIFOSIZE_STARTADDR_OFFSET;
271 writel(nptxfifosize, &regs->gnptxfsiz);
272
273 /* Periodic Tx FIFO */
274 ptxfifosize |= CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE <<
275 DWC2_FIFOSIZE_DEPTH_OFFSET;
276 ptxfifosize |= (CONFIG_DWC2_HOST_RX_FIFO_SIZE +
277 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE) <<
278 DWC2_FIFOSIZE_STARTADDR_OFFSET;
279 writel(ptxfifosize, &regs->hptxfsiz);
280 }
281#endif
282
283 /* Clear Host Set HNP Enable in the OTG Control Register */
284 clrbits_le32(&regs->gotgctl, DWC2_GOTGCTL_HSTSETHNPEN);
285
286 /* Make sure the FIFOs are flushed. */
287 dwc_otg_flush_tx_fifo(regs, 0x10); /* All Tx FIFOs */
288 dwc_otg_flush_rx_fifo(regs);
289
290 /* Flush out any leftover queued requests. */
291 num_channels = readl(&regs->ghwcfg2);
292 num_channels &= DWC2_HWCFG2_NUM_HOST_CHAN_MASK;
293 num_channels >>= DWC2_HWCFG2_NUM_HOST_CHAN_OFFSET;
294 num_channels += 1;
295
296 for (i = 0; i < num_channels; i++)
297 clrsetbits_le32(&regs->hc_regs[i].hcchar,
298 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_EPDIR,
299 DWC2_HCCHAR_CHDIS);
300
301 /* Halt all channels to put them into a known state. */
302 for (i = 0; i < num_channels; i++) {
303 clrsetbits_le32(&regs->hc_regs[i].hcchar,
304 DWC2_HCCHAR_EPDIR,
305 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS);
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100306 ret = wait_for_bit_le32(&regs->hc_regs[i].hcchar,
307 DWC2_HCCHAR_CHEN, false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700308 if (ret)
Patrice Chotardac6c7962018-03-15 18:00:32 +0100309 dev_info("%s: Timeout!\n", __func__);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700310 }
311
312 /* Turn on the vbus power. */
313 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST) {
314 hprt0 = readl(&regs->hprt0);
315 hprt0 &= ~(DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET);
316 hprt0 &= ~(DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG);
317 if (!(hprt0 & DWC2_HPRT0_PRTPWR)) {
318 hprt0 |= DWC2_HPRT0_PRTPWR;
319 writel(hprt0, &regs->hprt0);
320 }
321 }
Kever Yang5c735362017-03-10 12:05:14 +0800322
323 if (dev)
324 dwc_vbus_supply_init(dev);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700325}
326
327/*
328 * This function initializes the DWC_otg controller registers and
329 * prepares the core for device mode or host mode operation.
330 *
331 * @param regs Programming view of the DWC_otg controller
332 */
Marek Vasut55901982016-04-27 14:53:33 +0200333static void dwc_otg_core_init(struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700334{
Marek Vasut55901982016-04-27 14:53:33 +0200335 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700336 uint32_t ahbcfg = 0;
337 uint32_t usbcfg = 0;
338 uint8_t brst_sz = CONFIG_DWC2_DMA_BURST_SIZE;
339
340 /* Common Initialization */
341 usbcfg = readl(&regs->gusbcfg);
342
343 /* Program the ULPI External VBUS bit if needed */
Marek Vasut618da562016-04-27 14:55:57 +0200344 if (priv->ext_vbus) {
Marek Vasutb4fbd082016-04-27 14:58:49 +0200345 usbcfg |= DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
346 if (!priv->oc_disable) {
347 usbcfg |= DWC2_GUSBCFG_ULPI_INT_VBUS_INDICATOR |
348 DWC2_GUSBCFG_INDICATOR_PASSTHROUGH;
349 }
Marek Vasut618da562016-04-27 14:55:57 +0200350 } else {
351 usbcfg &= ~DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
352 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700353
354 /* Set external TS Dline pulsing */
355#ifdef CONFIG_DWC2_TS_DLINE
356 usbcfg |= DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
357#else
358 usbcfg &= ~DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
359#endif
360 writel(usbcfg, &regs->gusbcfg);
361
362 /* Reset the Controller */
363 dwc_otg_core_reset(regs);
364
365 /*
366 * This programming sequence needs to happen in FS mode before
367 * any other programming occurs
368 */
369#if defined(CONFIG_DWC2_DFLT_SPEED_FULL) && \
370 (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
371 /* If FS mode with FS PHY */
372 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_PHYSEL);
373
374 /* Reset after a PHY select */
375 dwc_otg_core_reset(regs);
376
377 /*
378 * Program DCFG.DevSpd or HCFG.FSLSPclkSel to 48Mhz in FS.
379 * Also do this on HNP Dev/Host mode switches (done in dev_init
380 * and host_init).
381 */
382 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
383 init_fslspclksel(regs);
384
385#ifdef CONFIG_DWC2_I2C_ENABLE
386 /* Program GUSBCFG.OtgUtmifsSel to I2C */
387 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_OTGUTMIFSSEL);
388
389 /* Program GI2CCTL.I2CEn */
390 clrsetbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN |
391 DWC2_GI2CCTL_I2CDEVADDR_MASK,
392 1 << DWC2_GI2CCTL_I2CDEVADDR_OFFSET);
393 setbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN);
394#endif
395
396#else
397 /* High speed PHY. */
398
399 /*
400 * HS PHY parameters. These parameters are preserved during
401 * soft reset so only program the first time. Do a soft reset
402 * immediately after setting phyif.
403 */
404 usbcfg &= ~(DWC2_GUSBCFG_ULPI_UTMI_SEL | DWC2_GUSBCFG_PHYIF);
405 usbcfg |= CONFIG_DWC2_PHY_TYPE << DWC2_GUSBCFG_ULPI_UTMI_SEL_OFFSET;
406
407 if (usbcfg & DWC2_GUSBCFG_ULPI_UTMI_SEL) { /* ULPI interface */
408#ifdef CONFIG_DWC2_PHY_ULPI_DDR
409 usbcfg |= DWC2_GUSBCFG_DDRSEL;
410#else
411 usbcfg &= ~DWC2_GUSBCFG_DDRSEL;
412#endif
413 } else { /* UTMI+ interface */
Alexey Brodkin163f8852018-01-31 17:56:59 +0300414#if (CONFIG_DWC2_UTMI_WIDTH == 16)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700415 usbcfg |= DWC2_GUSBCFG_PHYIF;
416#endif
417 }
418
419 writel(usbcfg, &regs->gusbcfg);
420
421 /* Reset after setting the PHY parameters */
422 dwc_otg_core_reset(regs);
423#endif
424
425 usbcfg = readl(&regs->gusbcfg);
426 usbcfg &= ~(DWC2_GUSBCFG_ULPI_FSLS | DWC2_GUSBCFG_ULPI_CLK_SUS_M);
427#ifdef CONFIG_DWC2_ULPI_FS_LS
428 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
429 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
430 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
431 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
432 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
433 if (hval == 2 && fval == 1) {
434 usbcfg |= DWC2_GUSBCFG_ULPI_FSLS;
435 usbcfg |= DWC2_GUSBCFG_ULPI_CLK_SUS_M;
436 }
437#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800438 if (priv->hnp_srp_disable)
439 usbcfg |= DWC2_GUSBCFG_FORCEHOSTMODE;
440
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700441 writel(usbcfg, &regs->gusbcfg);
442
443 /* Program the GAHBCFG Register. */
444 switch (readl(&regs->ghwcfg2) & DWC2_HWCFG2_ARCHITECTURE_MASK) {
445 case DWC2_HWCFG2_ARCHITECTURE_SLAVE_ONLY:
446 break;
447 case DWC2_HWCFG2_ARCHITECTURE_EXT_DMA:
448 while (brst_sz > 1) {
449 ahbcfg |= ahbcfg + (1 << DWC2_GAHBCFG_HBURSTLEN_OFFSET);
450 ahbcfg &= DWC2_GAHBCFG_HBURSTLEN_MASK;
451 brst_sz >>= 1;
452 }
453
454#ifdef CONFIG_DWC2_DMA_ENABLE
455 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
456#endif
457 break;
458
459 case DWC2_HWCFG2_ARCHITECTURE_INT_DMA:
460 ahbcfg |= DWC2_GAHBCFG_HBURSTLEN_INCR4;
461#ifdef CONFIG_DWC2_DMA_ENABLE
462 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
463#endif
464 break;
465 }
466
467 writel(ahbcfg, &regs->gahbcfg);
468
Meng Dongyangc65a3492017-06-08 15:34:20 +0800469 /* Program the capabilities in GUSBCFG Register */
470 usbcfg = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700471
Meng Dongyangc65a3492017-06-08 15:34:20 +0800472 if (!priv->hnp_srp_disable)
473 usbcfg |= DWC2_GUSBCFG_HNPCAP | DWC2_GUSBCFG_SRPCAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700474#ifdef CONFIG_DWC2_IC_USB_CAP
Meng Dongyangc65a3492017-06-08 15:34:20 +0800475 usbcfg |= DWC2_GUSBCFG_IC_USB_CAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700476#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800477
478 setbits_le32(&regs->gusbcfg, usbcfg);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700479}
480
481/*
482 * Prepares a host channel for transferring packets to/from a specific
483 * endpoint. The HCCHARn register is set up with the characteristics specified
484 * in _hc. Host channel interrupts that may need to be serviced while this
485 * transfer is in progress are enabled.
486 *
487 * @param regs Programming view of DWC_otg controller
488 * @param hc Information needed to initialize the host channel
489 */
490static void dwc_otg_hc_init(struct dwc2_core_regs *regs, uint8_t hc_num,
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600491 struct usb_device *dev, uint8_t dev_addr, uint8_t ep_num,
492 uint8_t ep_is_in, uint8_t ep_type, uint16_t max_packet)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700493{
494 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[hc_num];
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600495 uint32_t hcchar = (dev_addr << DWC2_HCCHAR_DEVADDR_OFFSET) |
496 (ep_num << DWC2_HCCHAR_EPNUM_OFFSET) |
497 (ep_is_in << DWC2_HCCHAR_EPDIR_OFFSET) |
498 (ep_type << DWC2_HCCHAR_EPTYPE_OFFSET) |
499 (max_packet << DWC2_HCCHAR_MPS_OFFSET);
500
501 if (dev->speed == USB_SPEED_LOW)
502 hcchar |= DWC2_HCCHAR_LSPDDEV;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700503
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700504 /*
505 * Program the HCCHARn register with the endpoint characteristics
506 * for the current transfer.
507 */
508 writel(hcchar, &hc_regs->hcchar);
509
Stefan Brüns890f0ee2016-01-17 04:09:54 +0100510 /* Program the HCSPLIT register, default to no SPLIT */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700511 writel(0, &hc_regs->hcsplt);
512}
513
Stefan Brüns890f0ee2016-01-17 04:09:54 +0100514static void dwc_otg_hc_init_split(struct dwc2_hc_regs *hc_regs,
515 uint8_t hub_devnum, uint8_t hub_port)
516{
517 uint32_t hcsplt = 0;
518
519 hcsplt = DWC2_HCSPLT_SPLTENA;
520 hcsplt |= hub_devnum << DWC2_HCSPLT_HUBADDR_OFFSET;
521 hcsplt |= hub_port << DWC2_HCSPLT_PRTADDR_OFFSET;
522
523 /* Program the HCSPLIT register for SPLITs */
524 writel(hcsplt, &hc_regs->hcsplt);
525}
526
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700527/*
528 * DWC2 to USB API interface
529 */
530/* Direction: In ; Request: Status */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600531static int dwc_otg_submit_rh_msg_in_status(struct dwc2_core_regs *regs,
532 struct usb_device *dev, void *buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700533 int txlen, struct devrequest *cmd)
534{
535 uint32_t hprt0 = 0;
536 uint32_t port_status = 0;
537 uint32_t port_change = 0;
538 int len = 0;
539 int stat = 0;
540
541 switch (cmd->requesttype & ~USB_DIR_IN) {
542 case 0:
543 *(uint16_t *)buffer = cpu_to_le16(1);
544 len = 2;
545 break;
546 case USB_RECIP_INTERFACE:
547 case USB_RECIP_ENDPOINT:
548 *(uint16_t *)buffer = cpu_to_le16(0);
549 len = 2;
550 break;
551 case USB_TYPE_CLASS:
552 *(uint32_t *)buffer = cpu_to_le32(0);
553 len = 4;
554 break;
555 case USB_RECIP_OTHER | USB_TYPE_CLASS:
556 hprt0 = readl(&regs->hprt0);
557 if (hprt0 & DWC2_HPRT0_PRTCONNSTS)
558 port_status |= USB_PORT_STAT_CONNECTION;
559 if (hprt0 & DWC2_HPRT0_PRTENA)
560 port_status |= USB_PORT_STAT_ENABLE;
561 if (hprt0 & DWC2_HPRT0_PRTSUSP)
562 port_status |= USB_PORT_STAT_SUSPEND;
563 if (hprt0 & DWC2_HPRT0_PRTOVRCURRACT)
564 port_status |= USB_PORT_STAT_OVERCURRENT;
565 if (hprt0 & DWC2_HPRT0_PRTRST)
566 port_status |= USB_PORT_STAT_RESET;
567 if (hprt0 & DWC2_HPRT0_PRTPWR)
568 port_status |= USB_PORT_STAT_POWER;
569
Stephen Warren4748cce2015-03-27 21:55:38 -0600570 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) == DWC2_HPRT0_PRTSPD_LOW)
571 port_status |= USB_PORT_STAT_LOW_SPEED;
572 else if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
573 DWC2_HPRT0_PRTSPD_HIGH)
574 port_status |= USB_PORT_STAT_HIGH_SPEED;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700575
576 if (hprt0 & DWC2_HPRT0_PRTENCHNG)
577 port_change |= USB_PORT_STAT_C_ENABLE;
578 if (hprt0 & DWC2_HPRT0_PRTCONNDET)
579 port_change |= USB_PORT_STAT_C_CONNECTION;
580 if (hprt0 & DWC2_HPRT0_PRTOVRCURRCHNG)
581 port_change |= USB_PORT_STAT_C_OVERCURRENT;
582
583 *(uint32_t *)buffer = cpu_to_le32(port_status |
584 (port_change << 16));
585 len = 4;
586 break;
587 default:
588 puts("unsupported root hub command\n");
589 stat = USB_ST_STALLED;
590 }
591
592 dev->act_len = min(len, txlen);
593 dev->status = stat;
594
595 return stat;
596}
597
598/* Direction: In ; Request: Descriptor */
599static int dwc_otg_submit_rh_msg_in_descriptor(struct usb_device *dev,
600 void *buffer, int txlen,
601 struct devrequest *cmd)
602{
603 unsigned char data[32];
604 uint32_t dsc;
605 int len = 0;
606 int stat = 0;
607 uint16_t wValue = cpu_to_le16(cmd->value);
608 uint16_t wLength = cpu_to_le16(cmd->length);
609
610 switch (cmd->requesttype & ~USB_DIR_IN) {
611 case 0:
612 switch (wValue & 0xff00) {
613 case 0x0100: /* device descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900614 len = min3(txlen, (int)sizeof(root_hub_dev_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700615 memcpy(buffer, root_hub_dev_des, len);
616 break;
617 case 0x0200: /* configuration descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900618 len = min3(txlen, (int)sizeof(root_hub_config_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700619 memcpy(buffer, root_hub_config_des, len);
620 break;
621 case 0x0300: /* string descriptors */
622 switch (wValue & 0xff) {
623 case 0x00:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900624 len = min3(txlen, (int)sizeof(root_hub_str_index0),
625 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700626 memcpy(buffer, root_hub_str_index0, len);
627 break;
628 case 0x01:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900629 len = min3(txlen, (int)sizeof(root_hub_str_index1),
630 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700631 memcpy(buffer, root_hub_str_index1, len);
632 break;
633 }
634 break;
635 default:
636 stat = USB_ST_STALLED;
637 }
638 break;
639
640 case USB_TYPE_CLASS:
641 /* Root port config, set 1 port and nothing else. */
642 dsc = 0x00000001;
643
644 data[0] = 9; /* min length; */
645 data[1] = 0x29;
646 data[2] = dsc & RH_A_NDP;
647 data[3] = 0;
648 if (dsc & RH_A_PSM)
649 data[3] |= 0x1;
650 if (dsc & RH_A_NOCP)
651 data[3] |= 0x10;
652 else if (dsc & RH_A_OCPM)
653 data[3] |= 0x8;
654
655 /* corresponds to data[4-7] */
656 data[5] = (dsc & RH_A_POTPGT) >> 24;
657 data[7] = dsc & RH_B_DR;
658 if (data[2] < 7) {
659 data[8] = 0xff;
660 } else {
661 data[0] += 2;
662 data[8] = (dsc & RH_B_DR) >> 8;
663 data[9] = 0xff;
664 data[10] = data[9];
665 }
666
Masahiro Yamadab4141192014-11-07 03:03:31 +0900667 len = min3(txlen, (int)data[0], (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700668 memcpy(buffer, data, len);
669 break;
670 default:
671 puts("unsupported root hub command\n");
672 stat = USB_ST_STALLED;
673 }
674
675 dev->act_len = min(len, txlen);
676 dev->status = stat;
677
678 return stat;
679}
680
681/* Direction: In ; Request: Configuration */
682static int dwc_otg_submit_rh_msg_in_configuration(struct usb_device *dev,
683 void *buffer, int txlen,
684 struct devrequest *cmd)
685{
686 int len = 0;
687 int stat = 0;
688
689 switch (cmd->requesttype & ~USB_DIR_IN) {
690 case 0:
691 *(uint8_t *)buffer = 0x01;
692 len = 1;
693 break;
694 default:
695 puts("unsupported root hub command\n");
696 stat = USB_ST_STALLED;
697 }
698
699 dev->act_len = min(len, txlen);
700 dev->status = stat;
701
702 return stat;
703}
704
705/* Direction: In */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600706static int dwc_otg_submit_rh_msg_in(struct dwc2_priv *priv,
707 struct usb_device *dev, void *buffer,
708 int txlen, struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700709{
710 switch (cmd->request) {
711 case USB_REQ_GET_STATUS:
Simon Glasscc3e3a92015-07-07 20:53:36 -0600712 return dwc_otg_submit_rh_msg_in_status(priv->regs, dev, buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700713 txlen, cmd);
714 case USB_REQ_GET_DESCRIPTOR:
715 return dwc_otg_submit_rh_msg_in_descriptor(dev, buffer,
716 txlen, cmd);
717 case USB_REQ_GET_CONFIGURATION:
718 return dwc_otg_submit_rh_msg_in_configuration(dev, buffer,
719 txlen, cmd);
720 default:
721 puts("unsupported root hub command\n");
722 return USB_ST_STALLED;
723 }
724}
725
726/* Direction: Out */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600727static int dwc_otg_submit_rh_msg_out(struct dwc2_priv *priv,
728 struct usb_device *dev,
729 void *buffer, int txlen,
730 struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700731{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600732 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700733 int len = 0;
734 int stat = 0;
735 uint16_t bmrtype_breq = cmd->requesttype | (cmd->request << 8);
736 uint16_t wValue = cpu_to_le16(cmd->value);
737
738 switch (bmrtype_breq & ~USB_DIR_IN) {
739 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_ENDPOINT:
740 case (USB_REQ_CLEAR_FEATURE << 8) | USB_TYPE_CLASS:
741 break;
742
743 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
744 switch (wValue) {
745 case USB_PORT_FEAT_C_CONNECTION:
746 setbits_le32(&regs->hprt0, DWC2_HPRT0_PRTCONNDET);
747 break;
748 }
749 break;
750
751 case (USB_REQ_SET_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
752 switch (wValue) {
753 case USB_PORT_FEAT_SUSPEND:
754 break;
755
756 case USB_PORT_FEAT_RESET:
757 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
758 DWC2_HPRT0_PRTCONNDET |
759 DWC2_HPRT0_PRTENCHNG |
760 DWC2_HPRT0_PRTOVRCURRCHNG,
761 DWC2_HPRT0_PRTRST);
762 mdelay(50);
763 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTRST);
764 break;
765
766 case USB_PORT_FEAT_POWER:
767 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
768 DWC2_HPRT0_PRTCONNDET |
769 DWC2_HPRT0_PRTENCHNG |
770 DWC2_HPRT0_PRTOVRCURRCHNG,
771 DWC2_HPRT0_PRTRST);
772 break;
773
774 case USB_PORT_FEAT_ENABLE:
775 break;
776 }
777 break;
778 case (USB_REQ_SET_ADDRESS << 8):
Simon Glasscc3e3a92015-07-07 20:53:36 -0600779 priv->root_hub_devnum = wValue;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700780 break;
781 case (USB_REQ_SET_CONFIGURATION << 8):
782 break;
783 default:
784 puts("unsupported root hub command\n");
785 stat = USB_ST_STALLED;
786 }
787
788 len = min(len, txlen);
789
790 dev->act_len = len;
791 dev->status = stat;
792
793 return stat;
794}
795
Simon Glasscc3e3a92015-07-07 20:53:36 -0600796static int dwc_otg_submit_rh_msg(struct dwc2_priv *priv, struct usb_device *dev,
797 unsigned long pipe, void *buffer, int txlen,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700798 struct devrequest *cmd)
799{
800 int stat = 0;
801
802 if (usb_pipeint(pipe)) {
803 puts("Root-Hub submit IRQ: NOT implemented\n");
804 return 0;
805 }
806
807 if (cmd->requesttype & USB_DIR_IN)
Simon Glasscc3e3a92015-07-07 20:53:36 -0600808 stat = dwc_otg_submit_rh_msg_in(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700809 else
Simon Glasscc3e3a92015-07-07 20:53:36 -0600810 stat = dwc_otg_submit_rh_msg_out(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700811
812 mdelay(1);
813
814 return stat;
815}
816
Stefan Brüns25612f22016-01-23 01:42:25 +0100817int wait_for_chhltd(struct dwc2_hc_regs *hc_regs, uint32_t *sub, u8 *toggle)
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700818{
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700819 int ret;
820 uint32_t hcint, hctsiz;
821
Álvaro Fernández Rojas48263502018-01-23 17:14:55 +0100822 ret = wait_for_bit_le32(&hc_regs->hcint, DWC2_HCINT_CHHLTD, true,
Christophe Kerelloc2e4c862018-03-15 18:00:31 +0100823 2000, false);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700824 if (ret)
825 return ret;
826
827 hcint = readl(&hc_regs->hcint);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700828 hctsiz = readl(&hc_regs->hctsiz);
829 *sub = (hctsiz & DWC2_HCTSIZ_XFERSIZE_MASK) >>
830 DWC2_HCTSIZ_XFERSIZE_OFFSET;
Stephen Warren66ffc872015-03-07 22:48:55 -0700831 *toggle = (hctsiz & DWC2_HCTSIZ_PID_MASK) >> DWC2_HCTSIZ_PID_OFFSET;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700832
Stefan Brüns03460cd2016-01-17 04:09:52 +0100833 debug("%s: HCINT=%08x sub=%u toggle=%d\n", __func__, hcint, *sub,
834 *toggle);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700835
Stefan Brüns03460cd2016-01-17 04:09:52 +0100836 if (hcint & DWC2_HCINT_XFERCOMP)
837 return 0;
838
839 if (hcint & (DWC2_HCINT_NAK | DWC2_HCINT_FRMOVRUN))
840 return -EAGAIN;
841
842 debug("%s: Error (HCINT=%08x)\n", __func__, hcint);
843 return -EINVAL;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700844}
845
Stephen Warren7b5e5042015-03-07 22:48:52 -0700846static int dwc2_eptype[] = {
847 DWC2_HCCHAR_EPTYPE_ISOC,
848 DWC2_HCCHAR_EPTYPE_INTR,
849 DWC2_HCCHAR_EPTYPE_CONTROL,
850 DWC2_HCCHAR_EPTYPE_BULK,
851};
852
Stefan Brünsdaed3052016-01-17 04:09:53 +0100853static int transfer_chunk(struct dwc2_hc_regs *hc_regs, void *aligned_buffer,
Stefan Brüns25612f22016-01-23 01:42:25 +0100854 u8 *pid, int in, void *buffer, int num_packets,
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100855 int xfer_len, int *actual_len, int odd_frame)
Stefan Brünsdaed3052016-01-17 04:09:53 +0100856{
857 int ret = 0;
858 uint32_t sub;
859
860 debug("%s: chunk: pid %d xfer_len %u pkts %u\n", __func__,
861 *pid, xfer_len, num_packets);
862
863 writel((xfer_len << DWC2_HCTSIZ_XFERSIZE_OFFSET) |
864 (num_packets << DWC2_HCTSIZ_PKTCNT_OFFSET) |
865 (*pid << DWC2_HCTSIZ_PID_OFFSET),
866 &hc_regs->hctsiz);
867
Eddie Cai57ca63b2017-04-06 11:37:04 +0800868 if (xfer_len) {
869 if (in) {
870 invalidate_dcache_range(
871 (uintptr_t)aligned_buffer,
872 (uintptr_t)aligned_buffer +
873 roundup(xfer_len, ARCH_DMA_MINALIGN));
874 } else {
875 memcpy(aligned_buffer, buffer, xfer_len);
876 flush_dcache_range(
877 (uintptr_t)aligned_buffer,
878 (uintptr_t)aligned_buffer +
879 roundup(xfer_len, ARCH_DMA_MINALIGN));
880 }
Stefan Brünsdaed3052016-01-17 04:09:53 +0100881 }
882
883 writel(phys_to_bus((unsigned long)aligned_buffer), &hc_regs->hcdma);
884
885 /* Clear old interrupt conditions for this host channel. */
886 writel(0x3fff, &hc_regs->hcint);
887
888 /* Set host channel enable after all other setup is complete. */
889 clrsetbits_le32(&hc_regs->hcchar, DWC2_HCCHAR_MULTICNT_MASK |
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100890 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS |
891 DWC2_HCCHAR_ODDFRM,
Stefan Brünsdaed3052016-01-17 04:09:53 +0100892 (1 << DWC2_HCCHAR_MULTICNT_OFFSET) |
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100893 (odd_frame << DWC2_HCCHAR_ODDFRM_OFFSET) |
Stefan Brünsdaed3052016-01-17 04:09:53 +0100894 DWC2_HCCHAR_CHEN);
895
896 ret = wait_for_chhltd(hc_regs, &sub, pid);
897 if (ret < 0)
898 return ret;
899
900 if (in) {
901 xfer_len -= sub;
902
903 invalidate_dcache_range((unsigned long)aligned_buffer,
904 (unsigned long)aligned_buffer +
905 roundup(xfer_len, ARCH_DMA_MINALIGN));
906
907 memcpy(buffer, aligned_buffer, xfer_len);
908 }
909 *actual_len = xfer_len;
910
911 return ret;
912}
913
Simon Glasscc3e3a92015-07-07 20:53:36 -0600914int chunk_msg(struct dwc2_priv *priv, struct usb_device *dev,
Stefan Brüns25612f22016-01-23 01:42:25 +0100915 unsigned long pipe, u8 *pid, int in, void *buffer, int len)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700916{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600917 struct dwc2_core_regs *regs = priv->regs;
Stephen Warren7b5e5042015-03-07 22:48:52 -0700918 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[DWC2_HC_CHANNEL];
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100919 struct dwc2_host_regs *host_regs = &regs->host_regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700920 int devnum = usb_pipedevice(pipe);
921 int ep = usb_pipeendpoint(pipe);
922 int max = usb_maxpacket(dev, pipe);
Stephen Warren7b5e5042015-03-07 22:48:52 -0700923 int eptype = dwc2_eptype[usb_pipetype(pipe)];
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700924 int done = 0;
Stephen Warren5877de92015-04-11 21:52:02 -0600925 int ret = 0;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100926 int do_split = 0;
927 int complete_split = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700928 uint32_t xfer_len;
929 uint32_t num_packets;
930 int stop_transfer = 0;
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100931 uint32_t max_xfer_len;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100932 int ssplit_frame_num = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700933
Stephen Warren7b5e5042015-03-07 22:48:52 -0700934 debug("%s: msg: pipe %lx pid %d in %d len %d\n", __func__, pipe, *pid,
935 in, len);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700936
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100937 max_xfer_len = CONFIG_DWC2_MAX_PACKET_COUNT * max;
938 if (max_xfer_len > CONFIG_DWC2_MAX_TRANSFER_SIZE)
939 max_xfer_len = CONFIG_DWC2_MAX_TRANSFER_SIZE;
940 if (max_xfer_len > DWC2_DATA_BUF_SIZE)
941 max_xfer_len = DWC2_DATA_BUF_SIZE;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700942
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100943 /* Make sure that max_xfer_len is a multiple of max packet size. */
944 num_packets = max_xfer_len / max;
945 max_xfer_len = num_packets * max;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700946
Stefan Brünsdaed3052016-01-17 04:09:53 +0100947 /* Initialize channel */
948 dwc_otg_hc_init(regs, DWC2_HC_CHANNEL, dev, devnum, ep, in,
949 eptype, max);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700950
Stefan Brünsb54e4472016-01-17 04:09:55 +0100951 /* Check if the target is a FS/LS device behind a HS hub */
952 if (dev->speed != USB_SPEED_HIGH) {
953 uint8_t hub_addr;
954 uint8_t hub_port;
955 uint32_t hprt0 = readl(&regs->hprt0);
956 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
957 DWC2_HPRT0_PRTSPD_HIGH) {
958 usb_find_usb2_hub_address_port(dev, &hub_addr,
959 &hub_port);
960 dwc_otg_hc_init_split(hc_regs, hub_addr, hub_port);
961
962 do_split = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700963 num_packets = 1;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100964 max_xfer_len = max;
965 }
966 }
967
Stefan Brünsdaed3052016-01-17 04:09:53 +0100968 do {
969 int actual_len = 0;
Stefan Brünsb54e4472016-01-17 04:09:55 +0100970 uint32_t hcint;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100971 int odd_frame = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700972 xfer_len = len - done;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700973
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100974 if (xfer_len > max_xfer_len)
975 xfer_len = max_xfer_len;
976 else if (xfer_len > max)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700977 num_packets = (xfer_len + max - 1) / max;
Stefan Brüns56a7bbd2016-01-17 04:09:51 +0100978 else
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700979 num_packets = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700980
Stefan Brünsb54e4472016-01-17 04:09:55 +0100981 if (complete_split)
982 setbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
983 else if (do_split)
984 clrbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
985
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100986 if (eptype == DWC2_HCCHAR_EPTYPE_INTR) {
987 int uframe_num = readl(&host_regs->hfnum);
988 if (!(uframe_num & 0x1))
989 odd_frame = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700990 }
991
Stefan Brünsdaed3052016-01-17 04:09:53 +0100992 ret = transfer_chunk(hc_regs, priv->aligned_buffer, pid,
993 in, (char *)buffer + done, num_packets,
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100994 xfer_len, &actual_len, odd_frame);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700995
Stefan Brünsb54e4472016-01-17 04:09:55 +0100996 hcint = readl(&hc_regs->hcint);
997 if (complete_split) {
998 stop_transfer = 0;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +0100999 if (hcint & DWC2_HCINT_NYET) {
Stefan Brünsb54e4472016-01-17 04:09:55 +01001000 ret = 0;
Stefan Brünsd2ff51b2016-01-17 04:09:56 +01001001 int frame_num = DWC2_HFNUM_MAX_FRNUM &
1002 readl(&host_regs->hfnum);
1003 if (((frame_num - ssplit_frame_num) &
1004 DWC2_HFNUM_MAX_FRNUM) > 4)
1005 ret = -EAGAIN;
1006 } else
Stefan Brünsb54e4472016-01-17 04:09:55 +01001007 complete_split = 0;
1008 } else if (do_split) {
1009 if (hcint & DWC2_HCINT_ACK) {
Stefan Brünsd2ff51b2016-01-17 04:09:56 +01001010 ssplit_frame_num = DWC2_HFNUM_MAX_FRNUM &
1011 readl(&host_regs->hfnum);
Stefan Brünsb54e4472016-01-17 04:09:55 +01001012 ret = 0;
1013 complete_split = 1;
1014 }
Simon Glasscc3e3a92015-07-07 20:53:36 -06001015 }
Stephen Warrend1c880c2015-03-08 11:08:13 -06001016
Stephen Warren5877de92015-04-11 21:52:02 -06001017 if (ret)
Stephen Warren4a1d21f2015-03-07 22:48:51 -07001018 break;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001019
Stefan Brünsdaed3052016-01-17 04:09:53 +01001020 if (actual_len < xfer_len)
1021 stop_transfer = 1;
Alexander Steindb402e02015-07-24 09:22:14 +02001022
Stefan Brünsdaed3052016-01-17 04:09:53 +01001023 done += actual_len;
Alexander Steindb402e02015-07-24 09:22:14 +02001024
Stefan Brünsb54e4472016-01-17 04:09:55 +01001025 /* Transactions are done when when either all data is transferred or
1026 * there is a short transfer. In case of a SPLIT make sure the CSPLIT
1027 * is executed.
1028 */
1029 } while (((done < len) && !stop_transfer) || complete_split);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001030
1031 writel(0, &hc_regs->hcintmsk);
1032 writel(0xFFFFFFFF, &hc_regs->hcint);
1033
1034 dev->status = 0;
1035 dev->act_len = done;
1036
Stephen Warren5877de92015-04-11 21:52:02 -06001037 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001038}
1039
Stephen Warren7b5e5042015-03-07 22:48:52 -07001040/* U-Boot USB transmission interface */
Simon Glasscc3e3a92015-07-07 20:53:36 -06001041int _submit_bulk_msg(struct dwc2_priv *priv, struct usb_device *dev,
1042 unsigned long pipe, void *buffer, int len)
Stephen Warren7b5e5042015-03-07 22:48:52 -07001043{
1044 int devnum = usb_pipedevice(pipe);
1045 int ep = usb_pipeendpoint(pipe);
Stefan Brüns25612f22016-01-23 01:42:25 +01001046 u8* pid;
Stephen Warren7b5e5042015-03-07 22:48:52 -07001047
Stefan Brüns25612f22016-01-23 01:42:25 +01001048 if ((devnum >= MAX_DEVICE) || (devnum == priv->root_hub_devnum)) {
Stephen Warren7b5e5042015-03-07 22:48:52 -07001049 dev->status = 0;
1050 return -EINVAL;
1051 }
1052
Stefan Brüns25612f22016-01-23 01:42:25 +01001053 if (usb_pipein(pipe))
1054 pid = &priv->in_data_toggle[devnum][ep];
1055 else
1056 pid = &priv->out_data_toggle[devnum][ep];
1057
1058 return chunk_msg(priv, dev, pipe, pid, usb_pipein(pipe), buffer, len);
Stephen Warren7b5e5042015-03-07 22:48:52 -07001059}
1060
Simon Glasscc3e3a92015-07-07 20:53:36 -06001061static int _submit_control_msg(struct dwc2_priv *priv, struct usb_device *dev,
1062 unsigned long pipe, void *buffer, int len,
1063 struct devrequest *setup)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001064{
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001065 int devnum = usb_pipedevice(pipe);
Stefan Brüns25612f22016-01-23 01:42:25 +01001066 int ret, act_len;
1067 u8 pid;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001068 /* For CONTROL endpoint pid should start with DATA1 */
1069 int status_direction;
1070
Simon Glasscc3e3a92015-07-07 20:53:36 -06001071 if (devnum == priv->root_hub_devnum) {
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001072 dev->status = 0;
1073 dev->speed = USB_SPEED_HIGH;
Simon Glasscc3e3a92015-07-07 20:53:36 -06001074 return dwc_otg_submit_rh_msg(priv, dev, pipe, buffer, len,
1075 setup);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001076 }
1077
Stefan Brünsb54e4472016-01-17 04:09:55 +01001078 /* SETUP stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001079 pid = DWC2_HC_PID_SETUP;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001080 do {
1081 ret = chunk_msg(priv, dev, pipe, &pid, 0, setup, 8);
1082 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001083 if (ret)
1084 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001085
Stefan Brünsb54e4472016-01-17 04:09:55 +01001086 /* DATA stage */
1087 act_len = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001088 if (buffer) {
Stephen Warren282685e2015-03-07 22:48:54 -07001089 pid = DWC2_HC_PID_DATA1;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001090 do {
1091 ret = chunk_msg(priv, dev, pipe, &pid, usb_pipein(pipe),
1092 buffer, len);
1093 act_len += dev->act_len;
1094 buffer += dev->act_len;
1095 len -= dev->act_len;
1096 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001097 if (ret)
1098 return ret;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001099 status_direction = usb_pipeout(pipe);
1100 } else {
1101 /* No-data CONTROL always ends with an IN transaction */
1102 status_direction = 1;
1103 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001104
1105 /* STATUS stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001106 pid = DWC2_HC_PID_DATA1;
Stefan Brünsb54e4472016-01-17 04:09:55 +01001107 do {
1108 ret = chunk_msg(priv, dev, pipe, &pid, status_direction,
1109 priv->status_buffer, 0);
1110 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001111 if (ret)
1112 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001113
Stephen Warrenee837552015-03-07 22:48:53 -07001114 dev->act_len = act_len;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001115
Stephen Warren4a1d21f2015-03-07 22:48:51 -07001116 return 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001117}
1118
Simon Glasscc3e3a92015-07-07 20:53:36 -06001119int _submit_int_msg(struct dwc2_priv *priv, struct usb_device *dev,
Michal Suchanek34371212019-08-18 10:55:27 +02001120 unsigned long pipe, void *buffer, int len, int interval,
1121 bool nonblock)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001122{
Stephen Warren5877de92015-04-11 21:52:02 -06001123 unsigned long timeout;
1124 int ret;
1125
Stephen Warrene2365192015-04-10 21:05:22 -06001126 /* FIXME: what is interval? */
Stephen Warren5877de92015-04-11 21:52:02 -06001127
1128 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
1129 for (;;) {
1130 if (get_timer(0) > timeout) {
Patrice Chotardac6c7962018-03-15 18:00:32 +01001131 dev_err(dev, "Timeout poll on interrupt endpoint\n");
Stephen Warren5877de92015-04-11 21:52:02 -06001132 return -ETIMEDOUT;
1133 }
Simon Glasscc3e3a92015-07-07 20:53:36 -06001134 ret = _submit_bulk_msg(priv, dev, pipe, buffer, len);
Michal Suchanek9dcab2c2019-08-18 10:55:28 +02001135 if ((ret != -EAGAIN) || nonblock)
Stephen Warren5877de92015-04-11 21:52:02 -06001136 return ret;
1137 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001138}
1139
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001140static int dwc2_reset(struct udevice *dev)
1141{
1142 int ret;
1143 struct dwc2_priv *priv = dev_get_priv(dev);
1144
1145 ret = reset_get_bulk(dev, &priv->resets);
1146 if (ret) {
1147 dev_warn(dev, "Can't get reset: %d\n", ret);
1148 /* Return 0 if error due to !CONFIG_DM_RESET and reset
1149 * DT property is not present.
1150 */
1151 if (ret == -ENOENT || ret == -ENOTSUPP)
1152 return 0;
1153 else
1154 return ret;
1155 }
1156
Patrick Delaunay66004382020-04-27 15:30:00 +02001157 /* force reset to clear all IP register */
1158 reset_assert_bulk(&priv->resets);
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001159 ret = reset_deassert_bulk(&priv->resets);
1160 if (ret) {
1161 reset_release_bulk(&priv->resets);
1162 dev_err(dev, "Failed to reset: %d\n", ret);
1163 return ret;
1164 }
1165
1166 return 0;
1167}
1168
Kever Yang5c735362017-03-10 12:05:14 +08001169static int dwc2_init_common(struct udevice *dev, struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001170{
Simon Glasscc3e3a92015-07-07 20:53:36 -06001171 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001172 uint32_t snpsid;
1173 int i, j;
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001174 int ret;
1175
1176 ret = dwc2_reset(dev);
1177 if (ret)
1178 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001179
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001180 snpsid = readl(&regs->gsnpsid);
Patrice Chotardac6c7962018-03-15 18:00:32 +01001181 dev_info(dev, "Core Release: %x.%03x\n",
1182 snpsid >> 12 & 0xf, snpsid & 0xfff);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001183
Peter Griffin5cfd6c02015-05-12 14:38:27 +01001184 if ((snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_2xx &&
1185 (snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_3xx) {
Patrice Chotardac6c7962018-03-15 18:00:32 +01001186 dev_info(dev, "SNPSID invalid (not DWC2 OTG device): %08x\n",
1187 snpsid);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001188 return -ENODEV;
1189 }
1190
Marek Vasut618da562016-04-27 14:55:57 +02001191#ifdef CONFIG_DWC2_PHY_ULPI_EXT_VBUS
1192 priv->ext_vbus = 1;
1193#else
1194 priv->ext_vbus = 0;
1195#endif
1196
Marek Vasut55901982016-04-27 14:53:33 +02001197 dwc_otg_core_init(priv);
Kever Yang5c735362017-03-10 12:05:14 +08001198 dwc_otg_core_host_init(dev, regs);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001199
1200 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1201 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1202 DWC2_HPRT0_PRTOVRCURRCHNG,
1203 DWC2_HPRT0_PRTRST);
1204 mdelay(50);
1205 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET |
1206 DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG |
1207 DWC2_HPRT0_PRTRST);
1208
1209 for (i = 0; i < MAX_DEVICE; i++) {
Stefan Brüns25612f22016-01-23 01:42:25 +01001210 for (j = 0; j < MAX_ENDPOINT; j++) {
1211 priv->in_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1212 priv->out_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1213 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001214 }
1215
Stefan Roese2bf352f2016-05-06 13:53:37 +02001216 /*
1217 * Add a 1 second delay here. This gives the host controller
1218 * a bit time before the comminucation with the USB devices
1219 * is started (the bus is scanned) and fixes the USB detection
1220 * problems with some problematic USB keys.
1221 */
1222 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
1223 mdelay(1000);
1224
Patrick Delaunay245847f2020-04-27 15:30:01 +02001225 printf("USB DWC2\n");
1226
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001227 return 0;
1228}
1229
Simon Glasscc3e3a92015-07-07 20:53:36 -06001230static void dwc2_uninit_common(struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001231{
1232 /* Put everything in reset. */
1233 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1234 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1235 DWC2_HPRT0_PRTOVRCURRCHNG,
1236 DWC2_HPRT0_PRTRST);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001237}
1238
Sven Schwermerfd09c202018-11-21 08:43:56 +01001239#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glasscc3e3a92015-07-07 20:53:36 -06001240int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1241 int len, struct devrequest *setup)
1242{
1243 return _submit_control_msg(&local, dev, pipe, buffer, len, setup);
1244}
1245
1246int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1247 int len)
1248{
1249 return _submit_bulk_msg(&local, dev, pipe, buffer, len);
1250}
1251
1252int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
Michal Suchanek34371212019-08-18 10:55:27 +02001253 int len, int interval, bool nonblock)
Simon Glasscc3e3a92015-07-07 20:53:36 -06001254{
Michal Suchanek34371212019-08-18 10:55:27 +02001255 return _submit_int_msg(&local, dev, pipe, buffer, len, interval,
1256 nonblock);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001257}
1258
1259/* U-Boot USB control interface */
1260int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1261{
1262 struct dwc2_priv *priv = &local;
1263
1264 memset(priv, '\0', sizeof(*priv));
1265 priv->root_hub_devnum = 0;
1266 priv->regs = (struct dwc2_core_regs *)CONFIG_USB_DWC2_REG_ADDR;
1267 priv->aligned_buffer = aligned_buffer_addr;
1268 priv->status_buffer = status_buffer_addr;
1269
1270 /* board-dependant init */
1271 if (board_usb_init(index, USB_INIT_HOST))
1272 return -1;
1273
Kever Yang5c735362017-03-10 12:05:14 +08001274 return dwc2_init_common(NULL, priv);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001275}
1276
1277int usb_lowlevel_stop(int index)
1278{
1279 dwc2_uninit_common(local.regs);
1280
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001281 return 0;
1282}
Simon Glassf58a41e2015-07-07 20:53:37 -06001283#endif
1284
Sven Schwermerfd09c202018-11-21 08:43:56 +01001285#if CONFIG_IS_ENABLED(DM_USB)
Simon Glassf58a41e2015-07-07 20:53:37 -06001286static int dwc2_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1287 unsigned long pipe, void *buffer, int length,
1288 struct devrequest *setup)
1289{
1290 struct dwc2_priv *priv = dev_get_priv(dev);
1291
1292 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1293 dev->name, udev, udev->dev->name, udev->portnr);
1294
1295 return _submit_control_msg(priv, udev, pipe, buffer, length, setup);
1296}
1297
1298static int dwc2_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1299 unsigned long pipe, void *buffer, int length)
1300{
1301 struct dwc2_priv *priv = dev_get_priv(dev);
1302
1303 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1304
1305 return _submit_bulk_msg(priv, udev, pipe, buffer, length);
1306}
1307
1308static int dwc2_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1309 unsigned long pipe, void *buffer, int length,
Michal Suchanek34371212019-08-18 10:55:27 +02001310 int interval, bool nonblock)
Simon Glassf58a41e2015-07-07 20:53:37 -06001311{
1312 struct dwc2_priv *priv = dev_get_priv(dev);
1313
1314 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1315
Michal Suchanek34371212019-08-18 10:55:27 +02001316 return _submit_int_msg(priv, udev, pipe, buffer, length, interval,
1317 nonblock);
Simon Glassf58a41e2015-07-07 20:53:37 -06001318}
1319
1320static int dwc2_usb_ofdata_to_platdata(struct udevice *dev)
1321{
1322 struct dwc2_priv *priv = dev_get_priv(dev);
1323 fdt_addr_t addr;
1324
Philipp Tomsicha9d30372017-09-12 17:32:27 +02001325 addr = dev_read_addr(dev);
Simon Glassf58a41e2015-07-07 20:53:37 -06001326 if (addr == FDT_ADDR_T_NONE)
1327 return -EINVAL;
1328 priv->regs = (struct dwc2_core_regs *)addr;
1329
Meng Dongyangdd22bac2017-06-28 19:22:43 +08001330 priv->oc_disable = dev_read_bool(dev, "disable-over-current");
1331 priv->hnp_srp_disable = dev_read_bool(dev, "hnp-srp-disable");
Meng Dongyangc65a3492017-06-08 15:34:20 +08001332
Simon Glassf58a41e2015-07-07 20:53:37 -06001333 return 0;
1334}
1335
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001336static int dwc2_setup_phy(struct udevice *dev)
1337{
1338 struct dwc2_priv *priv = dev_get_priv(dev);
1339 int ret;
1340
1341 ret = generic_phy_get_by_index(dev, 0, &priv->phy);
1342 if (ret) {
1343 if (ret == -ENOENT)
1344 return 0; /* no PHY, nothing to do */
1345 dev_err(dev, "Failed to get USB PHY: %d.\n", ret);
1346 return ret;
1347 }
1348
1349 ret = generic_phy_init(&priv->phy);
1350 if (ret) {
1351 dev_dbg(dev, "Failed to init USB PHY: %d.\n", ret);
1352 return ret;
1353 }
1354
1355 ret = generic_phy_power_on(&priv->phy);
1356 if (ret) {
1357 dev_dbg(dev, "Failed to power on USB PHY: %d.\n", ret);
1358 generic_phy_exit(&priv->phy);
1359 return ret;
1360 }
1361
1362 return 0;
1363}
1364
1365static int dwc2_shutdown_phy(struct udevice *dev)
1366{
1367 struct dwc2_priv *priv = dev_get_priv(dev);
1368 int ret;
1369
1370 /* PHY is not valid when generic_phy_get_by_index() = -ENOENT */
1371 if (!generic_phy_valid(&priv->phy))
1372 return 0; /* no PHY, nothing to do */
1373
1374 ret = generic_phy_power_off(&priv->phy);
1375 if (ret) {
1376 dev_dbg(dev, "Failed to power off USB PHY: %d.\n", ret);
1377 return ret;
1378 }
1379
1380 ret = generic_phy_exit(&priv->phy);
1381 if (ret) {
1382 dev_dbg(dev, "Failed to power off USB PHY: %d.\n", ret);
1383 return ret;
1384 }
1385
1386 return 0;
1387}
1388
Patrick Delaunay0bc632c2020-04-27 15:29:59 +02001389static int dwc2_clk_init(struct udevice *dev)
1390{
1391 struct dwc2_priv *priv = dev_get_priv(dev);
1392 int ret;
1393
1394 ret = clk_get_bulk(dev, &priv->clks);
1395 if (ret == -ENOSYS || ret == -ENOENT)
1396 return 0;
1397 if (ret)
1398 return ret;
1399
1400 ret = clk_enable_bulk(&priv->clks);
1401 if (ret) {
1402 clk_release_bulk(&priv->clks);
1403 return ret;
1404 }
1405
1406 return 0;
1407}
1408
Simon Glassf58a41e2015-07-07 20:53:37 -06001409static int dwc2_usb_probe(struct udevice *dev)
1410{
1411 struct dwc2_priv *priv = dev_get_priv(dev);
Marek Vasute96e0642016-04-26 03:02:35 +02001412 struct usb_bus_priv *bus_priv = dev_get_uclass_priv(dev);
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001413 int ret;
Marek Vasute96e0642016-04-26 03:02:35 +02001414
1415 bus_priv->desc_before_addr = true;
Simon Glassf58a41e2015-07-07 20:53:37 -06001416
Patrick Delaunay0bc632c2020-04-27 15:29:59 +02001417 ret = dwc2_clk_init(dev);
1418 if (ret)
1419 return ret;
1420
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001421 ret = dwc2_setup_phy(dev);
1422 if (ret)
1423 return ret;
1424
Kever Yang5c735362017-03-10 12:05:14 +08001425 return dwc2_init_common(dev, priv);
Simon Glassf58a41e2015-07-07 20:53:37 -06001426}
1427
1428static int dwc2_usb_remove(struct udevice *dev)
1429{
1430 struct dwc2_priv *priv = dev_get_priv(dev);
Christophe Kerello82e79752018-03-15 18:00:30 +01001431 int ret;
1432
1433 ret = dwc_vbus_supply_exit(dev);
1434 if (ret)
1435 return ret;
Simon Glassf58a41e2015-07-07 20:53:37 -06001436
Patrick Delaunaye17a4bf2020-04-27 15:29:58 +02001437 ret = dwc2_shutdown_phy(dev);
1438 if (ret) {
1439 dev_dbg(dev, "Failed to shutdown USB PHY: %d.\n", ret);
1440 return ret;
1441 }
1442
Simon Glassf58a41e2015-07-07 20:53:37 -06001443 dwc2_uninit_common(priv->regs);
1444
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001445 reset_release_bulk(&priv->resets);
Patrick Delaunay0bc632c2020-04-27 15:29:59 +02001446 clk_disable_bulk(&priv->clks);
1447 clk_release_bulk(&priv->clks);
Ley Foon Tan88c34b82018-08-29 00:08:48 +08001448
Simon Glassf58a41e2015-07-07 20:53:37 -06001449 return 0;
1450}
1451
1452struct dm_usb_ops dwc2_usb_ops = {
1453 .control = dwc2_submit_control_msg,
1454 .bulk = dwc2_submit_bulk_msg,
1455 .interrupt = dwc2_submit_int_msg,
1456};
1457
1458static const struct udevice_id dwc2_usb_ids[] = {
1459 { .compatible = "brcm,bcm2835-usb" },
Emmanuel Vadotff5d5cc2018-07-02 14:34:23 +02001460 { .compatible = "brcm,bcm2708-usb" },
Marek Vasutf522f942015-08-12 22:19:14 +02001461 { .compatible = "snps,dwc2" },
Simon Glassf58a41e2015-07-07 20:53:37 -06001462 { }
1463};
1464
1465U_BOOT_DRIVER(usb_dwc2) = {
Marek Vasut7a1386f2015-08-12 22:19:15 +02001466 .name = "dwc2_usb",
Simon Glassf58a41e2015-07-07 20:53:37 -06001467 .id = UCLASS_USB,
1468 .of_match = dwc2_usb_ids,
1469 .ofdata_to_platdata = dwc2_usb_ofdata_to_platdata,
1470 .probe = dwc2_usb_probe,
1471 .remove = dwc2_usb_remove,
1472 .ops = &dwc2_usb_ops,
1473 .priv_auto_alloc_size = sizeof(struct dwc2_priv),
1474 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1475};
1476#endif