blob: 64c42ac47153bd7f20b50f55e22efd3b99e02a70 [file] [log] [blame]
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001/*
2 * Copyright (C) 2012 Oleksandr Tymoshenko <gonzo@freebsd.org>
3 * Copyright (C) 2014 Marek Vasut <marex@denx.de>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Simon Glassf58a41e2015-07-07 20:53:37 -06009#include <dm.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070010#include <errno.h>
11#include <usb.h>
12#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060013#include <memalign.h>
Stephen Warren5c0beb52015-03-24 20:07:35 -060014#include <phys2bus.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070015#include <usbroothubdes.h>
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +010016#include <wait_bit.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070017#include <asm/io.h>
Kever Yang5c735362017-03-10 12:05:14 +080018#include <power/regulator.h>
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070019
20#include "dwc2.h"
21
Marek Vasutb4fbd082016-04-27 14:58:49 +020022DECLARE_GLOBAL_DATA_PTR;
23
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070024/* Use only HC channel 0. */
25#define DWC2_HC_CHANNEL 0
26
27#define DWC2_STATUS_BUF_SIZE 64
28#define DWC2_DATA_BUF_SIZE (64 * 1024)
29
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070030#define MAX_DEVICE 16
31#define MAX_ENDPOINT 16
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070032
Simon Glasscc3e3a92015-07-07 20:53:36 -060033struct dwc2_priv {
Simon Glassf58a41e2015-07-07 20:53:37 -060034#ifdef CONFIG_DM_USB
Alexander Steindb402e02015-07-24 09:22:14 +020035 uint8_t aligned_buffer[DWC2_DATA_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
36 uint8_t status_buffer[DWC2_STATUS_BUF_SIZE] __aligned(ARCH_DMA_MINALIGN);
Simon Glassf58a41e2015-07-07 20:53:37 -060037#else
Simon Glasscc3e3a92015-07-07 20:53:36 -060038 uint8_t *aligned_buffer;
39 uint8_t *status_buffer;
Simon Glassf58a41e2015-07-07 20:53:37 -060040#endif
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +010041 u8 in_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
42 u8 out_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
Simon Glasscc3e3a92015-07-07 20:53:36 -060043 struct dwc2_core_regs *regs;
44 int root_hub_devnum;
Marek Vasut618da562016-04-27 14:55:57 +020045 bool ext_vbus;
Meng Dongyangdd22bac2017-06-28 19:22:43 +080046 /*
47 * The hnp/srp capability must be disabled if the platform
48 * does't support hnp/srp. Otherwise the force mode can't work.
49 */
Meng Dongyangc65a3492017-06-08 15:34:20 +080050 bool hnp_srp_disable;
Marek Vasutb4fbd082016-04-27 14:58:49 +020051 bool oc_disable;
Simon Glasscc3e3a92015-07-07 20:53:36 -060052};
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070053
Simon Glassf58a41e2015-07-07 20:53:37 -060054#ifndef CONFIG_DM_USB
Alexander Steindb402e02015-07-24 09:22:14 +020055/* We need cacheline-aligned buffers for DMA transfers and dcache support */
56DEFINE_ALIGN_BUFFER(uint8_t, aligned_buffer_addr, DWC2_DATA_BUF_SIZE,
57 ARCH_DMA_MINALIGN);
58DEFINE_ALIGN_BUFFER(uint8_t, status_buffer_addr, DWC2_STATUS_BUF_SIZE,
59 ARCH_DMA_MINALIGN);
Simon Glasscc3e3a92015-07-07 20:53:36 -060060
61static struct dwc2_priv local;
Simon Glassf58a41e2015-07-07 20:53:37 -060062#endif
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070063
64/*
65 * DWC2 IP interface
66 */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -070067
68/*
69 * Initializes the FSLSPClkSel field of the HCFG register
70 * depending on the PHY type.
71 */
72static void init_fslspclksel(struct dwc2_core_regs *regs)
73{
74 uint32_t phyclk;
75
76#if (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
77 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
78#else
79 /* High speed PHY running at full speed or high speed */
80 phyclk = DWC2_HCFG_FSLSPCLKSEL_30_60_MHZ;
81#endif
82
83#ifdef CONFIG_DWC2_ULPI_FS_LS
84 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
85 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
86 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
87 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
88 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
89
90 if (hval == 2 && fval == 1)
91 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
92#endif
93
94 clrsetbits_le32(&regs->host_regs.hcfg,
95 DWC2_HCFG_FSLSPCLKSEL_MASK,
96 phyclk << DWC2_HCFG_FSLSPCLKSEL_OFFSET);
97}
98
99/*
100 * Flush a Tx FIFO.
101 *
102 * @param regs Programming view of DWC_otg controller.
103 * @param num Tx FIFO to flush.
104 */
105static void dwc_otg_flush_tx_fifo(struct dwc2_core_regs *regs, const int num)
106{
107 int ret;
108
109 writel(DWC2_GRSTCTL_TXFFLSH | (num << DWC2_GRSTCTL_TXFNUM_OFFSET),
110 &regs->grstctl);
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +0100111 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_TXFFLSH,
112 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700113 if (ret)
114 printf("%s: Timeout!\n", __func__);
115
116 /* Wait for 3 PHY Clocks */
117 udelay(1);
118}
119
120/*
121 * Flush Rx FIFO.
122 *
123 * @param regs Programming view of DWC_otg controller.
124 */
125static void dwc_otg_flush_rx_fifo(struct dwc2_core_regs *regs)
126{
127 int ret;
128
129 writel(DWC2_GRSTCTL_RXFFLSH, &regs->grstctl);
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +0100130 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_RXFFLSH,
131 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700132 if (ret)
133 printf("%s: Timeout!\n", __func__);
134
135 /* Wait for 3 PHY Clocks */
136 udelay(1);
137}
138
139/*
140 * Do core a soft reset of the core. Be careful with this because it
141 * resets all the internal state machines of the core.
142 */
143static void dwc_otg_core_reset(struct dwc2_core_regs *regs)
144{
145 int ret;
146
147 /* Wait for AHB master IDLE state. */
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +0100148 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_AHBIDLE,
149 true, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700150 if (ret)
151 printf("%s: Timeout!\n", __func__);
152
153 /* Core Soft Reset */
154 writel(DWC2_GRSTCTL_CSFTRST, &regs->grstctl);
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +0100155 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_CSFTRST,
156 false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700157 if (ret)
158 printf("%s: Timeout!\n", __func__);
159
160 /*
161 * Wait for core to come out of reset.
162 * NOTE: This long sleep is _very_ important, otherwise the core will
163 * not stay in host mode after a connector ID change!
164 */
165 mdelay(100);
166}
167
Kever Yang5c735362017-03-10 12:05:14 +0800168#if defined(CONFIG_DM_USB) && defined(CONFIG_DM_REGULATOR)
169static int dwc_vbus_supply_init(struct udevice *dev)
170{
171 struct udevice *vbus_supply;
172 int ret;
173
174 ret = device_get_supply_regulator(dev, "vbus-supply", &vbus_supply);
175 if (ret) {
176 debug("%s: No vbus supply\n", dev->name);
177 return 0;
178 }
179
180 ret = regulator_set_enable(vbus_supply, true);
181 if (ret) {
182 error("Error enabling vbus supply\n");
183 return ret;
184 }
185
186 return 0;
187}
188#else
189static int dwc_vbus_supply_init(struct udevice *dev)
190{
191 return 0;
192}
193#endif
194
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700195/*
196 * This function initializes the DWC_otg controller registers for
197 * host mode.
198 *
199 * This function flushes the Tx and Rx FIFOs and it flushes any entries in the
200 * request queues. Host channels are reset to ensure that they are ready for
201 * performing transfers.
202 *
Kever Yang5c735362017-03-10 12:05:14 +0800203 * @param dev USB Device (NULL if driver model is not being used)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700204 * @param regs Programming view of DWC_otg controller
205 *
206 */
Kever Yang5c735362017-03-10 12:05:14 +0800207static void dwc_otg_core_host_init(struct udevice *dev,
208 struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700209{
210 uint32_t nptxfifosize = 0;
211 uint32_t ptxfifosize = 0;
212 uint32_t hprt0 = 0;
213 int i, ret, num_channels;
214
215 /* Restart the Phy Clock */
216 writel(0, &regs->pcgcctl);
217
218 /* Initialize Host Configuration Register */
219 init_fslspclksel(regs);
220#ifdef CONFIG_DWC2_DFLT_SPEED_FULL
221 setbits_le32(&regs->host_regs.hcfg, DWC2_HCFG_FSLSSUPP);
222#endif
223
224 /* Configure data FIFO sizes */
225#ifdef CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
226 if (readl(&regs->ghwcfg2) & DWC2_HWCFG2_DYNAMIC_FIFO) {
227 /* Rx FIFO */
228 writel(CONFIG_DWC2_HOST_RX_FIFO_SIZE, &regs->grxfsiz);
229
230 /* Non-periodic Tx FIFO */
231 nptxfifosize |= CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE <<
232 DWC2_FIFOSIZE_DEPTH_OFFSET;
233 nptxfifosize |= CONFIG_DWC2_HOST_RX_FIFO_SIZE <<
234 DWC2_FIFOSIZE_STARTADDR_OFFSET;
235 writel(nptxfifosize, &regs->gnptxfsiz);
236
237 /* Periodic Tx FIFO */
238 ptxfifosize |= CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE <<
239 DWC2_FIFOSIZE_DEPTH_OFFSET;
240 ptxfifosize |= (CONFIG_DWC2_HOST_RX_FIFO_SIZE +
241 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE) <<
242 DWC2_FIFOSIZE_STARTADDR_OFFSET;
243 writel(ptxfifosize, &regs->hptxfsiz);
244 }
245#endif
246
247 /* Clear Host Set HNP Enable in the OTG Control Register */
248 clrbits_le32(&regs->gotgctl, DWC2_GOTGCTL_HSTSETHNPEN);
249
250 /* Make sure the FIFOs are flushed. */
251 dwc_otg_flush_tx_fifo(regs, 0x10); /* All Tx FIFOs */
252 dwc_otg_flush_rx_fifo(regs);
253
254 /* Flush out any leftover queued requests. */
255 num_channels = readl(&regs->ghwcfg2);
256 num_channels &= DWC2_HWCFG2_NUM_HOST_CHAN_MASK;
257 num_channels >>= DWC2_HWCFG2_NUM_HOST_CHAN_OFFSET;
258 num_channels += 1;
259
260 for (i = 0; i < num_channels; i++)
261 clrsetbits_le32(&regs->hc_regs[i].hcchar,
262 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_EPDIR,
263 DWC2_HCCHAR_CHDIS);
264
265 /* Halt all channels to put them into a known state. */
266 for (i = 0; i < num_channels; i++) {
267 clrsetbits_le32(&regs->hc_regs[i].hcchar,
268 DWC2_HCCHAR_EPDIR,
269 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS);
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +0100270 ret = wait_for_bit(__func__, &regs->hc_regs[i].hcchar,
271 DWC2_HCCHAR_CHEN, false, 1000, false);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700272 if (ret)
273 printf("%s: Timeout!\n", __func__);
274 }
275
276 /* Turn on the vbus power. */
277 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST) {
278 hprt0 = readl(&regs->hprt0);
279 hprt0 &= ~(DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET);
280 hprt0 &= ~(DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG);
281 if (!(hprt0 & DWC2_HPRT0_PRTPWR)) {
282 hprt0 |= DWC2_HPRT0_PRTPWR;
283 writel(hprt0, &regs->hprt0);
284 }
285 }
Kever Yang5c735362017-03-10 12:05:14 +0800286
287 if (dev)
288 dwc_vbus_supply_init(dev);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700289}
290
291/*
292 * This function initializes the DWC_otg controller registers and
293 * prepares the core for device mode or host mode operation.
294 *
295 * @param regs Programming view of the DWC_otg controller
296 */
Marek Vasut55901982016-04-27 14:53:33 +0200297static void dwc_otg_core_init(struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700298{
Marek Vasut55901982016-04-27 14:53:33 +0200299 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700300 uint32_t ahbcfg = 0;
301 uint32_t usbcfg = 0;
302 uint8_t brst_sz = CONFIG_DWC2_DMA_BURST_SIZE;
303
304 /* Common Initialization */
305 usbcfg = readl(&regs->gusbcfg);
306
307 /* Program the ULPI External VBUS bit if needed */
Marek Vasut618da562016-04-27 14:55:57 +0200308 if (priv->ext_vbus) {
Marek Vasutb4fbd082016-04-27 14:58:49 +0200309 usbcfg |= DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
310 if (!priv->oc_disable) {
311 usbcfg |= DWC2_GUSBCFG_ULPI_INT_VBUS_INDICATOR |
312 DWC2_GUSBCFG_INDICATOR_PASSTHROUGH;
313 }
Marek Vasut618da562016-04-27 14:55:57 +0200314 } else {
315 usbcfg &= ~DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
316 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700317
318 /* Set external TS Dline pulsing */
319#ifdef CONFIG_DWC2_TS_DLINE
320 usbcfg |= DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
321#else
322 usbcfg &= ~DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
323#endif
324 writel(usbcfg, &regs->gusbcfg);
325
326 /* Reset the Controller */
327 dwc_otg_core_reset(regs);
328
329 /*
330 * This programming sequence needs to happen in FS mode before
331 * any other programming occurs
332 */
333#if defined(CONFIG_DWC2_DFLT_SPEED_FULL) && \
334 (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
335 /* If FS mode with FS PHY */
336 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_PHYSEL);
337
338 /* Reset after a PHY select */
339 dwc_otg_core_reset(regs);
340
341 /*
342 * Program DCFG.DevSpd or HCFG.FSLSPclkSel to 48Mhz in FS.
343 * Also do this on HNP Dev/Host mode switches (done in dev_init
344 * and host_init).
345 */
346 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
347 init_fslspclksel(regs);
348
349#ifdef CONFIG_DWC2_I2C_ENABLE
350 /* Program GUSBCFG.OtgUtmifsSel to I2C */
351 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_OTGUTMIFSSEL);
352
353 /* Program GI2CCTL.I2CEn */
354 clrsetbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN |
355 DWC2_GI2CCTL_I2CDEVADDR_MASK,
356 1 << DWC2_GI2CCTL_I2CDEVADDR_OFFSET);
357 setbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN);
358#endif
359
360#else
361 /* High speed PHY. */
362
363 /*
364 * HS PHY parameters. These parameters are preserved during
365 * soft reset so only program the first time. Do a soft reset
366 * immediately after setting phyif.
367 */
368 usbcfg &= ~(DWC2_GUSBCFG_ULPI_UTMI_SEL | DWC2_GUSBCFG_PHYIF);
369 usbcfg |= CONFIG_DWC2_PHY_TYPE << DWC2_GUSBCFG_ULPI_UTMI_SEL_OFFSET;
370
371 if (usbcfg & DWC2_GUSBCFG_ULPI_UTMI_SEL) { /* ULPI interface */
372#ifdef CONFIG_DWC2_PHY_ULPI_DDR
373 usbcfg |= DWC2_GUSBCFG_DDRSEL;
374#else
375 usbcfg &= ~DWC2_GUSBCFG_DDRSEL;
376#endif
377 } else { /* UTMI+ interface */
378#if (CONFIG_DWC2_UTMI_PHY_WIDTH == 16)
379 usbcfg |= DWC2_GUSBCFG_PHYIF;
380#endif
381 }
382
383 writel(usbcfg, &regs->gusbcfg);
384
385 /* Reset after setting the PHY parameters */
386 dwc_otg_core_reset(regs);
387#endif
388
389 usbcfg = readl(&regs->gusbcfg);
390 usbcfg &= ~(DWC2_GUSBCFG_ULPI_FSLS | DWC2_GUSBCFG_ULPI_CLK_SUS_M);
391#ifdef CONFIG_DWC2_ULPI_FS_LS
392 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
393 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
394 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
395 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
396 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
397 if (hval == 2 && fval == 1) {
398 usbcfg |= DWC2_GUSBCFG_ULPI_FSLS;
399 usbcfg |= DWC2_GUSBCFG_ULPI_CLK_SUS_M;
400 }
401#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800402 if (priv->hnp_srp_disable)
403 usbcfg |= DWC2_GUSBCFG_FORCEHOSTMODE;
404
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700405 writel(usbcfg, &regs->gusbcfg);
406
407 /* Program the GAHBCFG Register. */
408 switch (readl(&regs->ghwcfg2) & DWC2_HWCFG2_ARCHITECTURE_MASK) {
409 case DWC2_HWCFG2_ARCHITECTURE_SLAVE_ONLY:
410 break;
411 case DWC2_HWCFG2_ARCHITECTURE_EXT_DMA:
412 while (brst_sz > 1) {
413 ahbcfg |= ahbcfg + (1 << DWC2_GAHBCFG_HBURSTLEN_OFFSET);
414 ahbcfg &= DWC2_GAHBCFG_HBURSTLEN_MASK;
415 brst_sz >>= 1;
416 }
417
418#ifdef CONFIG_DWC2_DMA_ENABLE
419 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
420#endif
421 break;
422
423 case DWC2_HWCFG2_ARCHITECTURE_INT_DMA:
424 ahbcfg |= DWC2_GAHBCFG_HBURSTLEN_INCR4;
425#ifdef CONFIG_DWC2_DMA_ENABLE
426 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
427#endif
428 break;
429 }
430
431 writel(ahbcfg, &regs->gahbcfg);
432
Meng Dongyangc65a3492017-06-08 15:34:20 +0800433 /* Program the capabilities in GUSBCFG Register */
434 usbcfg = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700435
Meng Dongyangc65a3492017-06-08 15:34:20 +0800436 if (!priv->hnp_srp_disable)
437 usbcfg |= DWC2_GUSBCFG_HNPCAP | DWC2_GUSBCFG_SRPCAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700438#ifdef CONFIG_DWC2_IC_USB_CAP
Meng Dongyangc65a3492017-06-08 15:34:20 +0800439 usbcfg |= DWC2_GUSBCFG_IC_USB_CAP;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700440#endif
Meng Dongyangc65a3492017-06-08 15:34:20 +0800441
442 setbits_le32(&regs->gusbcfg, usbcfg);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700443}
444
445/*
446 * Prepares a host channel for transferring packets to/from a specific
447 * endpoint. The HCCHARn register is set up with the characteristics specified
448 * in _hc. Host channel interrupts that may need to be serviced while this
449 * transfer is in progress are enabled.
450 *
451 * @param regs Programming view of DWC_otg controller
452 * @param hc Information needed to initialize the host channel
453 */
454static void dwc_otg_hc_init(struct dwc2_core_regs *regs, uint8_t hc_num,
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600455 struct usb_device *dev, uint8_t dev_addr, uint8_t ep_num,
456 uint8_t ep_is_in, uint8_t ep_type, uint16_t max_packet)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700457{
458 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[hc_num];
Stephen Warrened9bcbc2015-04-10 21:05:21 -0600459 uint32_t hcchar = (dev_addr << DWC2_HCCHAR_DEVADDR_OFFSET) |
460 (ep_num << DWC2_HCCHAR_EPNUM_OFFSET) |
461 (ep_is_in << DWC2_HCCHAR_EPDIR_OFFSET) |
462 (ep_type << DWC2_HCCHAR_EPTYPE_OFFSET) |
463 (max_packet << DWC2_HCCHAR_MPS_OFFSET);
464
465 if (dev->speed == USB_SPEED_LOW)
466 hcchar |= DWC2_HCCHAR_LSPDDEV;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700467
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700468 /*
469 * Program the HCCHARn register with the endpoint characteristics
470 * for the current transfer.
471 */
472 writel(hcchar, &hc_regs->hcchar);
473
Stefan BrĂ¼ns890f0ee2016-01-17 04:09:54 +0100474 /* Program the HCSPLIT register, default to no SPLIT */
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700475 writel(0, &hc_regs->hcsplt);
476}
477
Stefan BrĂ¼ns890f0ee2016-01-17 04:09:54 +0100478static void dwc_otg_hc_init_split(struct dwc2_hc_regs *hc_regs,
479 uint8_t hub_devnum, uint8_t hub_port)
480{
481 uint32_t hcsplt = 0;
482
483 hcsplt = DWC2_HCSPLT_SPLTENA;
484 hcsplt |= hub_devnum << DWC2_HCSPLT_HUBADDR_OFFSET;
485 hcsplt |= hub_port << DWC2_HCSPLT_PRTADDR_OFFSET;
486
487 /* Program the HCSPLIT register for SPLITs */
488 writel(hcsplt, &hc_regs->hcsplt);
489}
490
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700491/*
492 * DWC2 to USB API interface
493 */
494/* Direction: In ; Request: Status */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600495static int dwc_otg_submit_rh_msg_in_status(struct dwc2_core_regs *regs,
496 struct usb_device *dev, void *buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700497 int txlen, struct devrequest *cmd)
498{
499 uint32_t hprt0 = 0;
500 uint32_t port_status = 0;
501 uint32_t port_change = 0;
502 int len = 0;
503 int stat = 0;
504
505 switch (cmd->requesttype & ~USB_DIR_IN) {
506 case 0:
507 *(uint16_t *)buffer = cpu_to_le16(1);
508 len = 2;
509 break;
510 case USB_RECIP_INTERFACE:
511 case USB_RECIP_ENDPOINT:
512 *(uint16_t *)buffer = cpu_to_le16(0);
513 len = 2;
514 break;
515 case USB_TYPE_CLASS:
516 *(uint32_t *)buffer = cpu_to_le32(0);
517 len = 4;
518 break;
519 case USB_RECIP_OTHER | USB_TYPE_CLASS:
520 hprt0 = readl(&regs->hprt0);
521 if (hprt0 & DWC2_HPRT0_PRTCONNSTS)
522 port_status |= USB_PORT_STAT_CONNECTION;
523 if (hprt0 & DWC2_HPRT0_PRTENA)
524 port_status |= USB_PORT_STAT_ENABLE;
525 if (hprt0 & DWC2_HPRT0_PRTSUSP)
526 port_status |= USB_PORT_STAT_SUSPEND;
527 if (hprt0 & DWC2_HPRT0_PRTOVRCURRACT)
528 port_status |= USB_PORT_STAT_OVERCURRENT;
529 if (hprt0 & DWC2_HPRT0_PRTRST)
530 port_status |= USB_PORT_STAT_RESET;
531 if (hprt0 & DWC2_HPRT0_PRTPWR)
532 port_status |= USB_PORT_STAT_POWER;
533
Stephen Warren4748cce2015-03-27 21:55:38 -0600534 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) == DWC2_HPRT0_PRTSPD_LOW)
535 port_status |= USB_PORT_STAT_LOW_SPEED;
536 else if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
537 DWC2_HPRT0_PRTSPD_HIGH)
538 port_status |= USB_PORT_STAT_HIGH_SPEED;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700539
540 if (hprt0 & DWC2_HPRT0_PRTENCHNG)
541 port_change |= USB_PORT_STAT_C_ENABLE;
542 if (hprt0 & DWC2_HPRT0_PRTCONNDET)
543 port_change |= USB_PORT_STAT_C_CONNECTION;
544 if (hprt0 & DWC2_HPRT0_PRTOVRCURRCHNG)
545 port_change |= USB_PORT_STAT_C_OVERCURRENT;
546
547 *(uint32_t *)buffer = cpu_to_le32(port_status |
548 (port_change << 16));
549 len = 4;
550 break;
551 default:
552 puts("unsupported root hub command\n");
553 stat = USB_ST_STALLED;
554 }
555
556 dev->act_len = min(len, txlen);
557 dev->status = stat;
558
559 return stat;
560}
561
562/* Direction: In ; Request: Descriptor */
563static int dwc_otg_submit_rh_msg_in_descriptor(struct usb_device *dev,
564 void *buffer, int txlen,
565 struct devrequest *cmd)
566{
567 unsigned char data[32];
568 uint32_t dsc;
569 int len = 0;
570 int stat = 0;
571 uint16_t wValue = cpu_to_le16(cmd->value);
572 uint16_t wLength = cpu_to_le16(cmd->length);
573
574 switch (cmd->requesttype & ~USB_DIR_IN) {
575 case 0:
576 switch (wValue & 0xff00) {
577 case 0x0100: /* device descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900578 len = min3(txlen, (int)sizeof(root_hub_dev_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700579 memcpy(buffer, root_hub_dev_des, len);
580 break;
581 case 0x0200: /* configuration descriptor */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900582 len = min3(txlen, (int)sizeof(root_hub_config_des), (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700583 memcpy(buffer, root_hub_config_des, len);
584 break;
585 case 0x0300: /* string descriptors */
586 switch (wValue & 0xff) {
587 case 0x00:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900588 len = min3(txlen, (int)sizeof(root_hub_str_index0),
589 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700590 memcpy(buffer, root_hub_str_index0, len);
591 break;
592 case 0x01:
Masahiro Yamadab4141192014-11-07 03:03:31 +0900593 len = min3(txlen, (int)sizeof(root_hub_str_index1),
594 (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700595 memcpy(buffer, root_hub_str_index1, len);
596 break;
597 }
598 break;
599 default:
600 stat = USB_ST_STALLED;
601 }
602 break;
603
604 case USB_TYPE_CLASS:
605 /* Root port config, set 1 port and nothing else. */
606 dsc = 0x00000001;
607
608 data[0] = 9; /* min length; */
609 data[1] = 0x29;
610 data[2] = dsc & RH_A_NDP;
611 data[3] = 0;
612 if (dsc & RH_A_PSM)
613 data[3] |= 0x1;
614 if (dsc & RH_A_NOCP)
615 data[3] |= 0x10;
616 else if (dsc & RH_A_OCPM)
617 data[3] |= 0x8;
618
619 /* corresponds to data[4-7] */
620 data[5] = (dsc & RH_A_POTPGT) >> 24;
621 data[7] = dsc & RH_B_DR;
622 if (data[2] < 7) {
623 data[8] = 0xff;
624 } else {
625 data[0] += 2;
626 data[8] = (dsc & RH_B_DR) >> 8;
627 data[9] = 0xff;
628 data[10] = data[9];
629 }
630
Masahiro Yamadab4141192014-11-07 03:03:31 +0900631 len = min3(txlen, (int)data[0], (int)wLength);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700632 memcpy(buffer, data, len);
633 break;
634 default:
635 puts("unsupported root hub command\n");
636 stat = USB_ST_STALLED;
637 }
638
639 dev->act_len = min(len, txlen);
640 dev->status = stat;
641
642 return stat;
643}
644
645/* Direction: In ; Request: Configuration */
646static int dwc_otg_submit_rh_msg_in_configuration(struct usb_device *dev,
647 void *buffer, int txlen,
648 struct devrequest *cmd)
649{
650 int len = 0;
651 int stat = 0;
652
653 switch (cmd->requesttype & ~USB_DIR_IN) {
654 case 0:
655 *(uint8_t *)buffer = 0x01;
656 len = 1;
657 break;
658 default:
659 puts("unsupported root hub command\n");
660 stat = USB_ST_STALLED;
661 }
662
663 dev->act_len = min(len, txlen);
664 dev->status = stat;
665
666 return stat;
667}
668
669/* Direction: In */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600670static int dwc_otg_submit_rh_msg_in(struct dwc2_priv *priv,
671 struct usb_device *dev, void *buffer,
672 int txlen, struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700673{
674 switch (cmd->request) {
675 case USB_REQ_GET_STATUS:
Simon Glasscc3e3a92015-07-07 20:53:36 -0600676 return dwc_otg_submit_rh_msg_in_status(priv->regs, dev, buffer,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700677 txlen, cmd);
678 case USB_REQ_GET_DESCRIPTOR:
679 return dwc_otg_submit_rh_msg_in_descriptor(dev, buffer,
680 txlen, cmd);
681 case USB_REQ_GET_CONFIGURATION:
682 return dwc_otg_submit_rh_msg_in_configuration(dev, buffer,
683 txlen, cmd);
684 default:
685 puts("unsupported root hub command\n");
686 return USB_ST_STALLED;
687 }
688}
689
690/* Direction: Out */
Simon Glasscc3e3a92015-07-07 20:53:36 -0600691static int dwc_otg_submit_rh_msg_out(struct dwc2_priv *priv,
692 struct usb_device *dev,
693 void *buffer, int txlen,
694 struct devrequest *cmd)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700695{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600696 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700697 int len = 0;
698 int stat = 0;
699 uint16_t bmrtype_breq = cmd->requesttype | (cmd->request << 8);
700 uint16_t wValue = cpu_to_le16(cmd->value);
701
702 switch (bmrtype_breq & ~USB_DIR_IN) {
703 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_ENDPOINT:
704 case (USB_REQ_CLEAR_FEATURE << 8) | USB_TYPE_CLASS:
705 break;
706
707 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
708 switch (wValue) {
709 case USB_PORT_FEAT_C_CONNECTION:
710 setbits_le32(&regs->hprt0, DWC2_HPRT0_PRTCONNDET);
711 break;
712 }
713 break;
714
715 case (USB_REQ_SET_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
716 switch (wValue) {
717 case USB_PORT_FEAT_SUSPEND:
718 break;
719
720 case USB_PORT_FEAT_RESET:
721 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
722 DWC2_HPRT0_PRTCONNDET |
723 DWC2_HPRT0_PRTENCHNG |
724 DWC2_HPRT0_PRTOVRCURRCHNG,
725 DWC2_HPRT0_PRTRST);
726 mdelay(50);
727 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTRST);
728 break;
729
730 case USB_PORT_FEAT_POWER:
731 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
732 DWC2_HPRT0_PRTCONNDET |
733 DWC2_HPRT0_PRTENCHNG |
734 DWC2_HPRT0_PRTOVRCURRCHNG,
735 DWC2_HPRT0_PRTRST);
736 break;
737
738 case USB_PORT_FEAT_ENABLE:
739 break;
740 }
741 break;
742 case (USB_REQ_SET_ADDRESS << 8):
Simon Glasscc3e3a92015-07-07 20:53:36 -0600743 priv->root_hub_devnum = wValue;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700744 break;
745 case (USB_REQ_SET_CONFIGURATION << 8):
746 break;
747 default:
748 puts("unsupported root hub command\n");
749 stat = USB_ST_STALLED;
750 }
751
752 len = min(len, txlen);
753
754 dev->act_len = len;
755 dev->status = stat;
756
757 return stat;
758}
759
Simon Glasscc3e3a92015-07-07 20:53:36 -0600760static int dwc_otg_submit_rh_msg(struct dwc2_priv *priv, struct usb_device *dev,
761 unsigned long pipe, void *buffer, int txlen,
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700762 struct devrequest *cmd)
763{
764 int stat = 0;
765
766 if (usb_pipeint(pipe)) {
767 puts("Root-Hub submit IRQ: NOT implemented\n");
768 return 0;
769 }
770
771 if (cmd->requesttype & USB_DIR_IN)
Simon Glasscc3e3a92015-07-07 20:53:36 -0600772 stat = dwc_otg_submit_rh_msg_in(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700773 else
Simon Glasscc3e3a92015-07-07 20:53:36 -0600774 stat = dwc_otg_submit_rh_msg_out(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700775
776 mdelay(1);
777
778 return stat;
779}
780
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +0100781int wait_for_chhltd(struct dwc2_hc_regs *hc_regs, uint32_t *sub, u8 *toggle)
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700782{
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700783 int ret;
784 uint32_t hcint, hctsiz;
785
Mateusz Kulikowskifd2cd662016-01-23 11:54:30 +0100786 ret = wait_for_bit(__func__, &hc_regs->hcint, DWC2_HCINT_CHHLTD, true,
787 1000, false);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700788 if (ret)
789 return ret;
790
791 hcint = readl(&hc_regs->hcint);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700792 hctsiz = readl(&hc_regs->hctsiz);
793 *sub = (hctsiz & DWC2_HCTSIZ_XFERSIZE_MASK) >>
794 DWC2_HCTSIZ_XFERSIZE_OFFSET;
Stephen Warren66ffc872015-03-07 22:48:55 -0700795 *toggle = (hctsiz & DWC2_HCTSIZ_PID_MASK) >> DWC2_HCTSIZ_PID_OFFSET;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700796
Stefan BrĂ¼ns03460cd2016-01-17 04:09:52 +0100797 debug("%s: HCINT=%08x sub=%u toggle=%d\n", __func__, hcint, *sub,
798 *toggle);
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700799
Stefan BrĂ¼ns03460cd2016-01-17 04:09:52 +0100800 if (hcint & DWC2_HCINT_XFERCOMP)
801 return 0;
802
803 if (hcint & (DWC2_HCINT_NAK | DWC2_HCINT_FRMOVRUN))
804 return -EAGAIN;
805
806 debug("%s: Error (HCINT=%08x)\n", __func__, hcint);
807 return -EINVAL;
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700808}
809
Stephen Warren7b5e5042015-03-07 22:48:52 -0700810static int dwc2_eptype[] = {
811 DWC2_HCCHAR_EPTYPE_ISOC,
812 DWC2_HCCHAR_EPTYPE_INTR,
813 DWC2_HCCHAR_EPTYPE_CONTROL,
814 DWC2_HCCHAR_EPTYPE_BULK,
815};
816
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100817static int transfer_chunk(struct dwc2_hc_regs *hc_regs, void *aligned_buffer,
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +0100818 u8 *pid, int in, void *buffer, int num_packets,
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100819 int xfer_len, int *actual_len, int odd_frame)
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100820{
821 int ret = 0;
822 uint32_t sub;
823
824 debug("%s: chunk: pid %d xfer_len %u pkts %u\n", __func__,
825 *pid, xfer_len, num_packets);
826
827 writel((xfer_len << DWC2_HCTSIZ_XFERSIZE_OFFSET) |
828 (num_packets << DWC2_HCTSIZ_PKTCNT_OFFSET) |
829 (*pid << DWC2_HCTSIZ_PID_OFFSET),
830 &hc_regs->hctsiz);
831
Eddie Cai57ca63b2017-04-06 11:37:04 +0800832 if (xfer_len) {
833 if (in) {
834 invalidate_dcache_range(
835 (uintptr_t)aligned_buffer,
836 (uintptr_t)aligned_buffer +
837 roundup(xfer_len, ARCH_DMA_MINALIGN));
838 } else {
839 memcpy(aligned_buffer, buffer, xfer_len);
840 flush_dcache_range(
841 (uintptr_t)aligned_buffer,
842 (uintptr_t)aligned_buffer +
843 roundup(xfer_len, ARCH_DMA_MINALIGN));
844 }
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100845 }
846
847 writel(phys_to_bus((unsigned long)aligned_buffer), &hc_regs->hcdma);
848
849 /* Clear old interrupt conditions for this host channel. */
850 writel(0x3fff, &hc_regs->hcint);
851
852 /* Set host channel enable after all other setup is complete. */
853 clrsetbits_le32(&hc_regs->hcchar, DWC2_HCCHAR_MULTICNT_MASK |
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100854 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS |
855 DWC2_HCCHAR_ODDFRM,
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100856 (1 << DWC2_HCCHAR_MULTICNT_OFFSET) |
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100857 (odd_frame << DWC2_HCCHAR_ODDFRM_OFFSET) |
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100858 DWC2_HCCHAR_CHEN);
859
860 ret = wait_for_chhltd(hc_regs, &sub, pid);
861 if (ret < 0)
862 return ret;
863
864 if (in) {
865 xfer_len -= sub;
866
867 invalidate_dcache_range((unsigned long)aligned_buffer,
868 (unsigned long)aligned_buffer +
869 roundup(xfer_len, ARCH_DMA_MINALIGN));
870
871 memcpy(buffer, aligned_buffer, xfer_len);
872 }
873 *actual_len = xfer_len;
874
875 return ret;
876}
877
Simon Glasscc3e3a92015-07-07 20:53:36 -0600878int chunk_msg(struct dwc2_priv *priv, struct usb_device *dev,
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +0100879 unsigned long pipe, u8 *pid, int in, void *buffer, int len)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700880{
Simon Glasscc3e3a92015-07-07 20:53:36 -0600881 struct dwc2_core_regs *regs = priv->regs;
Stephen Warren7b5e5042015-03-07 22:48:52 -0700882 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[DWC2_HC_CHANNEL];
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100883 struct dwc2_host_regs *host_regs = &regs->host_regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700884 int devnum = usb_pipedevice(pipe);
885 int ep = usb_pipeendpoint(pipe);
886 int max = usb_maxpacket(dev, pipe);
Stephen Warren7b5e5042015-03-07 22:48:52 -0700887 int eptype = dwc2_eptype[usb_pipetype(pipe)];
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700888 int done = 0;
Stephen Warren5877de92015-04-11 21:52:02 -0600889 int ret = 0;
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100890 int do_split = 0;
891 int complete_split = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700892 uint32_t xfer_len;
893 uint32_t num_packets;
894 int stop_transfer = 0;
Stefan BrĂ¼ns56a7bbd2016-01-17 04:09:51 +0100895 uint32_t max_xfer_len;
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100896 int ssplit_frame_num = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700897
Stephen Warren7b5e5042015-03-07 22:48:52 -0700898 debug("%s: msg: pipe %lx pid %d in %d len %d\n", __func__, pipe, *pid,
899 in, len);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700900
Stefan BrĂ¼ns56a7bbd2016-01-17 04:09:51 +0100901 max_xfer_len = CONFIG_DWC2_MAX_PACKET_COUNT * max;
902 if (max_xfer_len > CONFIG_DWC2_MAX_TRANSFER_SIZE)
903 max_xfer_len = CONFIG_DWC2_MAX_TRANSFER_SIZE;
904 if (max_xfer_len > DWC2_DATA_BUF_SIZE)
905 max_xfer_len = DWC2_DATA_BUF_SIZE;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700906
Stefan BrĂ¼ns56a7bbd2016-01-17 04:09:51 +0100907 /* Make sure that max_xfer_len is a multiple of max packet size. */
908 num_packets = max_xfer_len / max;
909 max_xfer_len = num_packets * max;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700910
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100911 /* Initialize channel */
912 dwc_otg_hc_init(regs, DWC2_HC_CHANNEL, dev, devnum, ep, in,
913 eptype, max);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700914
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100915 /* Check if the target is a FS/LS device behind a HS hub */
916 if (dev->speed != USB_SPEED_HIGH) {
917 uint8_t hub_addr;
918 uint8_t hub_port;
919 uint32_t hprt0 = readl(&regs->hprt0);
920 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
921 DWC2_HPRT0_PRTSPD_HIGH) {
922 usb_find_usb2_hub_address_port(dev, &hub_addr,
923 &hub_port);
924 dwc_otg_hc_init_split(hc_regs, hub_addr, hub_port);
925
926 do_split = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700927 num_packets = 1;
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100928 max_xfer_len = max;
929 }
930 }
931
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100932 do {
933 int actual_len = 0;
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100934 uint32_t hcint;
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100935 int odd_frame = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700936 xfer_len = len - done;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700937
Stefan BrĂ¼ns56a7bbd2016-01-17 04:09:51 +0100938 if (xfer_len > max_xfer_len)
939 xfer_len = max_xfer_len;
940 else if (xfer_len > max)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700941 num_packets = (xfer_len + max - 1) / max;
Stefan BrĂ¼ns56a7bbd2016-01-17 04:09:51 +0100942 else
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700943 num_packets = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700944
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100945 if (complete_split)
946 setbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
947 else if (do_split)
948 clrbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
949
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100950 if (eptype == DWC2_HCCHAR_EPTYPE_INTR) {
951 int uframe_num = readl(&host_regs->hfnum);
952 if (!(uframe_num & 0x1))
953 odd_frame = 1;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700954 }
955
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100956 ret = transfer_chunk(hc_regs, priv->aligned_buffer, pid,
957 in, (char *)buffer + done, num_packets,
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100958 xfer_len, &actual_len, odd_frame);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700959
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100960 hcint = readl(&hc_regs->hcint);
961 if (complete_split) {
962 stop_transfer = 0;
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100963 if (hcint & DWC2_HCINT_NYET) {
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100964 ret = 0;
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100965 int frame_num = DWC2_HFNUM_MAX_FRNUM &
966 readl(&host_regs->hfnum);
967 if (((frame_num - ssplit_frame_num) &
968 DWC2_HFNUM_MAX_FRNUM) > 4)
969 ret = -EAGAIN;
970 } else
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100971 complete_split = 0;
972 } else if (do_split) {
973 if (hcint & DWC2_HCINT_ACK) {
Stefan BrĂ¼nsd2ff51b2016-01-17 04:09:56 +0100974 ssplit_frame_num = DWC2_HFNUM_MAX_FRNUM &
975 readl(&host_regs->hfnum);
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100976 ret = 0;
977 complete_split = 1;
978 }
Simon Glasscc3e3a92015-07-07 20:53:36 -0600979 }
Stephen Warrend1c880c2015-03-08 11:08:13 -0600980
Stephen Warren5877de92015-04-11 21:52:02 -0600981 if (ret)
Stephen Warren4a1d21f2015-03-07 22:48:51 -0700982 break;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700983
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100984 if (actual_len < xfer_len)
985 stop_transfer = 1;
Alexander Steindb402e02015-07-24 09:22:14 +0200986
Stefan BrĂ¼nsdaed3052016-01-17 04:09:53 +0100987 done += actual_len;
Alexander Steindb402e02015-07-24 09:22:14 +0200988
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +0100989 /* Transactions are done when when either all data is transferred or
990 * there is a short transfer. In case of a SPLIT make sure the CSPLIT
991 * is executed.
992 */
993 } while (((done < len) && !stop_transfer) || complete_split);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -0700994
995 writel(0, &hc_regs->hcintmsk);
996 writel(0xFFFFFFFF, &hc_regs->hcint);
997
998 dev->status = 0;
999 dev->act_len = done;
1000
Stephen Warren5877de92015-04-11 21:52:02 -06001001 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001002}
1003
Stephen Warren7b5e5042015-03-07 22:48:52 -07001004/* U-Boot USB transmission interface */
Simon Glasscc3e3a92015-07-07 20:53:36 -06001005int _submit_bulk_msg(struct dwc2_priv *priv, struct usb_device *dev,
1006 unsigned long pipe, void *buffer, int len)
Stephen Warren7b5e5042015-03-07 22:48:52 -07001007{
1008 int devnum = usb_pipedevice(pipe);
1009 int ep = usb_pipeendpoint(pipe);
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +01001010 u8* pid;
Stephen Warren7b5e5042015-03-07 22:48:52 -07001011
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +01001012 if ((devnum >= MAX_DEVICE) || (devnum == priv->root_hub_devnum)) {
Stephen Warren7b5e5042015-03-07 22:48:52 -07001013 dev->status = 0;
1014 return -EINVAL;
1015 }
1016
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +01001017 if (usb_pipein(pipe))
1018 pid = &priv->in_data_toggle[devnum][ep];
1019 else
1020 pid = &priv->out_data_toggle[devnum][ep];
1021
1022 return chunk_msg(priv, dev, pipe, pid, usb_pipein(pipe), buffer, len);
Stephen Warren7b5e5042015-03-07 22:48:52 -07001023}
1024
Simon Glasscc3e3a92015-07-07 20:53:36 -06001025static int _submit_control_msg(struct dwc2_priv *priv, struct usb_device *dev,
1026 unsigned long pipe, void *buffer, int len,
1027 struct devrequest *setup)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001028{
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001029 int devnum = usb_pipedevice(pipe);
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +01001030 int ret, act_len;
1031 u8 pid;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001032 /* For CONTROL endpoint pid should start with DATA1 */
1033 int status_direction;
1034
Simon Glasscc3e3a92015-07-07 20:53:36 -06001035 if (devnum == priv->root_hub_devnum) {
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001036 dev->status = 0;
1037 dev->speed = USB_SPEED_HIGH;
Simon Glasscc3e3a92015-07-07 20:53:36 -06001038 return dwc_otg_submit_rh_msg(priv, dev, pipe, buffer, len,
1039 setup);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001040 }
1041
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +01001042 /* SETUP stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001043 pid = DWC2_HC_PID_SETUP;
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +01001044 do {
1045 ret = chunk_msg(priv, dev, pipe, &pid, 0, setup, 8);
1046 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001047 if (ret)
1048 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001049
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +01001050 /* DATA stage */
1051 act_len = 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001052 if (buffer) {
Stephen Warren282685e2015-03-07 22:48:54 -07001053 pid = DWC2_HC_PID_DATA1;
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +01001054 do {
1055 ret = chunk_msg(priv, dev, pipe, &pid, usb_pipein(pipe),
1056 buffer, len);
1057 act_len += dev->act_len;
1058 buffer += dev->act_len;
1059 len -= dev->act_len;
1060 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001061 if (ret)
1062 return ret;
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +01001063 status_direction = usb_pipeout(pipe);
1064 } else {
1065 /* No-data CONTROL always ends with an IN transaction */
1066 status_direction = 1;
1067 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001068
1069 /* STATUS stage */
Stephen Warrenee837552015-03-07 22:48:53 -07001070 pid = DWC2_HC_PID_DATA1;
Stefan BrĂ¼nsb54e4472016-01-17 04:09:55 +01001071 do {
1072 ret = chunk_msg(priv, dev, pipe, &pid, status_direction,
1073 priv->status_buffer, 0);
1074 } while (ret == -EAGAIN);
Stephen Warrenee837552015-03-07 22:48:53 -07001075 if (ret)
1076 return ret;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001077
Stephen Warrenee837552015-03-07 22:48:53 -07001078 dev->act_len = act_len;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001079
Stephen Warren4a1d21f2015-03-07 22:48:51 -07001080 return 0;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001081}
1082
Simon Glasscc3e3a92015-07-07 20:53:36 -06001083int _submit_int_msg(struct dwc2_priv *priv, struct usb_device *dev,
1084 unsigned long pipe, void *buffer, int len, int interval)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001085{
Stephen Warren5877de92015-04-11 21:52:02 -06001086 unsigned long timeout;
1087 int ret;
1088
Stephen Warrene2365192015-04-10 21:05:22 -06001089 /* FIXME: what is interval? */
Stephen Warren5877de92015-04-11 21:52:02 -06001090
1091 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
1092 for (;;) {
1093 if (get_timer(0) > timeout) {
1094 printf("Timeout poll on interrupt endpoint\n");
1095 return -ETIMEDOUT;
1096 }
Simon Glasscc3e3a92015-07-07 20:53:36 -06001097 ret = _submit_bulk_msg(priv, dev, pipe, buffer, len);
Stephen Warren5877de92015-04-11 21:52:02 -06001098 if (ret != -EAGAIN)
1099 return ret;
1100 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001101}
1102
Kever Yang5c735362017-03-10 12:05:14 +08001103static int dwc2_init_common(struct udevice *dev, struct dwc2_priv *priv)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001104{
Simon Glasscc3e3a92015-07-07 20:53:36 -06001105 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001106 uint32_t snpsid;
1107 int i, j;
1108
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001109 snpsid = readl(&regs->gsnpsid);
1110 printf("Core Release: %x.%03x\n", snpsid >> 12 & 0xf, snpsid & 0xfff);
1111
Peter Griffin5cfd6c02015-05-12 14:38:27 +01001112 if ((snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_2xx &&
1113 (snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_3xx) {
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001114 printf("SNPSID invalid (not DWC2 OTG device): %08x\n", snpsid);
1115 return -ENODEV;
1116 }
1117
Marek Vasut618da562016-04-27 14:55:57 +02001118#ifdef CONFIG_DWC2_PHY_ULPI_EXT_VBUS
1119 priv->ext_vbus = 1;
1120#else
1121 priv->ext_vbus = 0;
1122#endif
1123
Marek Vasut55901982016-04-27 14:53:33 +02001124 dwc_otg_core_init(priv);
Kever Yang5c735362017-03-10 12:05:14 +08001125 dwc_otg_core_host_init(dev, regs);
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001126
1127 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1128 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1129 DWC2_HPRT0_PRTOVRCURRCHNG,
1130 DWC2_HPRT0_PRTRST);
1131 mdelay(50);
1132 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET |
1133 DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG |
1134 DWC2_HPRT0_PRTRST);
1135
1136 for (i = 0; i < MAX_DEVICE; i++) {
Stefan BrĂ¼ns25612f22016-01-23 01:42:25 +01001137 for (j = 0; j < MAX_ENDPOINT; j++) {
1138 priv->in_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1139 priv->out_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1140 }
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001141 }
1142
Stefan Roese2bf352f2016-05-06 13:53:37 +02001143 /*
1144 * Add a 1 second delay here. This gives the host controller
1145 * a bit time before the comminucation with the USB devices
1146 * is started (the bus is scanned) and fixes the USB detection
1147 * problems with some problematic USB keys.
1148 */
1149 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
1150 mdelay(1000);
1151
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001152 return 0;
1153}
1154
Simon Glasscc3e3a92015-07-07 20:53:36 -06001155static void dwc2_uninit_common(struct dwc2_core_regs *regs)
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001156{
1157 /* Put everything in reset. */
1158 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1159 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1160 DWC2_HPRT0_PRTOVRCURRCHNG,
1161 DWC2_HPRT0_PRTRST);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001162}
1163
Simon Glassf58a41e2015-07-07 20:53:37 -06001164#ifndef CONFIG_DM_USB
Simon Glasscc3e3a92015-07-07 20:53:36 -06001165int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1166 int len, struct devrequest *setup)
1167{
1168 return _submit_control_msg(&local, dev, pipe, buffer, len, setup);
1169}
1170
1171int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1172 int len)
1173{
1174 return _submit_bulk_msg(&local, dev, pipe, buffer, len);
1175}
1176
1177int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1178 int len, int interval)
1179{
1180 return _submit_int_msg(&local, dev, pipe, buffer, len, interval);
1181}
1182
1183/* U-Boot USB control interface */
1184int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1185{
1186 struct dwc2_priv *priv = &local;
1187
1188 memset(priv, '\0', sizeof(*priv));
1189 priv->root_hub_devnum = 0;
1190 priv->regs = (struct dwc2_core_regs *)CONFIG_USB_DWC2_REG_ADDR;
1191 priv->aligned_buffer = aligned_buffer_addr;
1192 priv->status_buffer = status_buffer_addr;
1193
1194 /* board-dependant init */
1195 if (board_usb_init(index, USB_INIT_HOST))
1196 return -1;
1197
Kever Yang5c735362017-03-10 12:05:14 +08001198 return dwc2_init_common(NULL, priv);
Simon Glasscc3e3a92015-07-07 20:53:36 -06001199}
1200
1201int usb_lowlevel_stop(int index)
1202{
1203 dwc2_uninit_common(local.regs);
1204
Oleksandr Tymoshenko6e9e0622014-02-01 21:51:25 -07001205 return 0;
1206}
Simon Glassf58a41e2015-07-07 20:53:37 -06001207#endif
1208
1209#ifdef CONFIG_DM_USB
1210static int dwc2_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1211 unsigned long pipe, void *buffer, int length,
1212 struct devrequest *setup)
1213{
1214 struct dwc2_priv *priv = dev_get_priv(dev);
1215
1216 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1217 dev->name, udev, udev->dev->name, udev->portnr);
1218
1219 return _submit_control_msg(priv, udev, pipe, buffer, length, setup);
1220}
1221
1222static int dwc2_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1223 unsigned long pipe, void *buffer, int length)
1224{
1225 struct dwc2_priv *priv = dev_get_priv(dev);
1226
1227 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1228
1229 return _submit_bulk_msg(priv, udev, pipe, buffer, length);
1230}
1231
1232static int dwc2_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1233 unsigned long pipe, void *buffer, int length,
1234 int interval)
1235{
1236 struct dwc2_priv *priv = dev_get_priv(dev);
1237
1238 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1239
1240 return _submit_int_msg(priv, udev, pipe, buffer, length, interval);
1241}
1242
1243static int dwc2_usb_ofdata_to_platdata(struct udevice *dev)
1244{
1245 struct dwc2_priv *priv = dev_get_priv(dev);
1246 fdt_addr_t addr;
1247
Simon Glassa821c4a2017-05-17 17:18:05 -06001248 addr = devfdt_get_addr(dev);
Simon Glassf58a41e2015-07-07 20:53:37 -06001249 if (addr == FDT_ADDR_T_NONE)
1250 return -EINVAL;
1251 priv->regs = (struct dwc2_core_regs *)addr;
1252
Meng Dongyangdd22bac2017-06-28 19:22:43 +08001253 priv->oc_disable = dev_read_bool(dev, "disable-over-current");
1254 priv->hnp_srp_disable = dev_read_bool(dev, "hnp-srp-disable");
Meng Dongyangc65a3492017-06-08 15:34:20 +08001255
Simon Glassf58a41e2015-07-07 20:53:37 -06001256 return 0;
1257}
1258
1259static int dwc2_usb_probe(struct udevice *dev)
1260{
1261 struct dwc2_priv *priv = dev_get_priv(dev);
Marek Vasute96e0642016-04-26 03:02:35 +02001262 struct usb_bus_priv *bus_priv = dev_get_uclass_priv(dev);
1263
1264 bus_priv->desc_before_addr = true;
Simon Glassf58a41e2015-07-07 20:53:37 -06001265
Kever Yang5c735362017-03-10 12:05:14 +08001266 return dwc2_init_common(dev, priv);
Simon Glassf58a41e2015-07-07 20:53:37 -06001267}
1268
1269static int dwc2_usb_remove(struct udevice *dev)
1270{
1271 struct dwc2_priv *priv = dev_get_priv(dev);
1272
1273 dwc2_uninit_common(priv->regs);
1274
1275 return 0;
1276}
1277
1278struct dm_usb_ops dwc2_usb_ops = {
1279 .control = dwc2_submit_control_msg,
1280 .bulk = dwc2_submit_bulk_msg,
1281 .interrupt = dwc2_submit_int_msg,
1282};
1283
1284static const struct udevice_id dwc2_usb_ids[] = {
1285 { .compatible = "brcm,bcm2835-usb" },
Marek Vasutf522f942015-08-12 22:19:14 +02001286 { .compatible = "snps,dwc2" },
Simon Glassf58a41e2015-07-07 20:53:37 -06001287 { }
1288};
1289
1290U_BOOT_DRIVER(usb_dwc2) = {
Marek Vasut7a1386f2015-08-12 22:19:15 +02001291 .name = "dwc2_usb",
Simon Glassf58a41e2015-07-07 20:53:37 -06001292 .id = UCLASS_USB,
1293 .of_match = dwc2_usb_ids,
1294 .ofdata_to_platdata = dwc2_usb_ofdata_to_platdata,
1295 .probe = dwc2_usb_probe,
1296 .remove = dwc2_usb_remove,
1297 .ops = &dwc2_usb_ops,
1298 .priv_auto_alloc_size = sizeof(struct dwc2_priv),
1299 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1300};
1301#endif