blob: 0e5df15a0de0420393a35f1f1f3236c8a1024549 [file] [log] [blame]
Oleksandr Tymoshenko7a881752014-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 Glassa7ea72c2015-07-07 20:53:37 -06009#include <dm.h>
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070010#include <errno.h>
11#include <usb.h>
12#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060013#include <memalign.h>
Stephen Warren79beb282015-03-24 20:07:35 -060014#include <phys2bus.h>
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070015#include <usbroothubdes.h>
Mateusz Kulikowski2765f1e2016-01-23 11:54:30 +010016#include <wait_bit.h>
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070017#include <asm/io.h>
Kever Yang327c24d2017-03-10 12:05:14 +080018#include <power/regulator.h>
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070019
20#include "dwc2.h"
21
Marek Vasut43db5a62016-04-27 14:58:49 +020022DECLARE_GLOBAL_DATA_PTR;
23
Oleksandr Tymoshenko7a881752014-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 Tymoshenko7a881752014-02-01 21:51:25 -070030#define MAX_DEVICE 16
31#define MAX_ENDPOINT 16
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070032
Simon Glasse3c23a02015-07-07 20:53:36 -060033struct dwc2_priv {
Simon Glassa7ea72c2015-07-07 20:53:37 -060034#ifdef CONFIG_DM_USB
Alexander Stein76fac502015-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 Glassa7ea72c2015-07-07 20:53:37 -060037#else
Simon Glasse3c23a02015-07-07 20:53:36 -060038 uint8_t *aligned_buffer;
39 uint8_t *status_buffer;
Simon Glassa7ea72c2015-07-07 20:53:37 -060040#endif
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +010041 u8 in_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
42 u8 out_data_toggle[MAX_DEVICE][MAX_ENDPOINT];
Simon Glasse3c23a02015-07-07 20:53:36 -060043 struct dwc2_core_regs *regs;
44 int root_hub_devnum;
Marek Vasut39209492016-04-27 14:55:57 +020045 bool ext_vbus;
Marek Vasut43db5a62016-04-27 14:58:49 +020046 bool oc_disable;
Simon Glasse3c23a02015-07-07 20:53:36 -060047};
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070048
Simon Glassa7ea72c2015-07-07 20:53:37 -060049#ifndef CONFIG_DM_USB
Alexander Stein76fac502015-07-24 09:22:14 +020050/* We need cacheline-aligned buffers for DMA transfers and dcache support */
51DEFINE_ALIGN_BUFFER(uint8_t, aligned_buffer_addr, DWC2_DATA_BUF_SIZE,
52 ARCH_DMA_MINALIGN);
53DEFINE_ALIGN_BUFFER(uint8_t, status_buffer_addr, DWC2_STATUS_BUF_SIZE,
54 ARCH_DMA_MINALIGN);
Simon Glasse3c23a02015-07-07 20:53:36 -060055
56static struct dwc2_priv local;
Simon Glassa7ea72c2015-07-07 20:53:37 -060057#endif
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070058
59/*
60 * DWC2 IP interface
61 */
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -070062
63/*
64 * Initializes the FSLSPClkSel field of the HCFG register
65 * depending on the PHY type.
66 */
67static void init_fslspclksel(struct dwc2_core_regs *regs)
68{
69 uint32_t phyclk;
70
71#if (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
72 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
73#else
74 /* High speed PHY running at full speed or high speed */
75 phyclk = DWC2_HCFG_FSLSPCLKSEL_30_60_MHZ;
76#endif
77
78#ifdef CONFIG_DWC2_ULPI_FS_LS
79 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
80 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
81 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
82 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
83 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
84
85 if (hval == 2 && fval == 1)
86 phyclk = DWC2_HCFG_FSLSPCLKSEL_48_MHZ; /* Full speed PHY */
87#endif
88
89 clrsetbits_le32(&regs->host_regs.hcfg,
90 DWC2_HCFG_FSLSPCLKSEL_MASK,
91 phyclk << DWC2_HCFG_FSLSPCLKSEL_OFFSET);
92}
93
94/*
95 * Flush a Tx FIFO.
96 *
97 * @param regs Programming view of DWC_otg controller.
98 * @param num Tx FIFO to flush.
99 */
100static void dwc_otg_flush_tx_fifo(struct dwc2_core_regs *regs, const int num)
101{
102 int ret;
103
104 writel(DWC2_GRSTCTL_TXFFLSH | (num << DWC2_GRSTCTL_TXFNUM_OFFSET),
105 &regs->grstctl);
Mateusz Kulikowski2765f1e2016-01-23 11:54:30 +0100106 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_TXFFLSH,
107 false, 1000, false);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700108 if (ret)
109 printf("%s: Timeout!\n", __func__);
110
111 /* Wait for 3 PHY Clocks */
112 udelay(1);
113}
114
115/*
116 * Flush Rx FIFO.
117 *
118 * @param regs Programming view of DWC_otg controller.
119 */
120static void dwc_otg_flush_rx_fifo(struct dwc2_core_regs *regs)
121{
122 int ret;
123
124 writel(DWC2_GRSTCTL_RXFFLSH, &regs->grstctl);
Mateusz Kulikowski2765f1e2016-01-23 11:54:30 +0100125 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_RXFFLSH,
126 false, 1000, false);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700127 if (ret)
128 printf("%s: Timeout!\n", __func__);
129
130 /* Wait for 3 PHY Clocks */
131 udelay(1);
132}
133
134/*
135 * Do core a soft reset of the core. Be careful with this because it
136 * resets all the internal state machines of the core.
137 */
138static void dwc_otg_core_reset(struct dwc2_core_regs *regs)
139{
140 int ret;
141
142 /* Wait for AHB master IDLE state. */
Mateusz Kulikowski2765f1e2016-01-23 11:54:30 +0100143 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_AHBIDLE,
144 true, 1000, false);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700145 if (ret)
146 printf("%s: Timeout!\n", __func__);
147
148 /* Core Soft Reset */
149 writel(DWC2_GRSTCTL_CSFTRST, &regs->grstctl);
Mateusz Kulikowski2765f1e2016-01-23 11:54:30 +0100150 ret = wait_for_bit(__func__, &regs->grstctl, DWC2_GRSTCTL_CSFTRST,
151 false, 1000, false);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700152 if (ret)
153 printf("%s: Timeout!\n", __func__);
154
155 /*
156 * Wait for core to come out of reset.
157 * NOTE: This long sleep is _very_ important, otherwise the core will
158 * not stay in host mode after a connector ID change!
159 */
160 mdelay(100);
161}
162
Kever Yang327c24d2017-03-10 12:05:14 +0800163#if defined(CONFIG_DM_USB) && defined(CONFIG_DM_REGULATOR)
164static int dwc_vbus_supply_init(struct udevice *dev)
165{
166 struct udevice *vbus_supply;
167 int ret;
168
169 ret = device_get_supply_regulator(dev, "vbus-supply", &vbus_supply);
170 if (ret) {
171 debug("%s: No vbus supply\n", dev->name);
172 return 0;
173 }
174
175 ret = regulator_set_enable(vbus_supply, true);
176 if (ret) {
177 error("Error enabling vbus supply\n");
178 return ret;
179 }
180
181 return 0;
182}
183#else
184static int dwc_vbus_supply_init(struct udevice *dev)
185{
186 return 0;
187}
188#endif
189
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700190/*
191 * This function initializes the DWC_otg controller registers for
192 * host mode.
193 *
194 * This function flushes the Tx and Rx FIFOs and it flushes any entries in the
195 * request queues. Host channels are reset to ensure that they are ready for
196 * performing transfers.
197 *
Kever Yang327c24d2017-03-10 12:05:14 +0800198 * @param dev USB Device (NULL if driver model is not being used)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700199 * @param regs Programming view of DWC_otg controller
200 *
201 */
Kever Yang327c24d2017-03-10 12:05:14 +0800202static void dwc_otg_core_host_init(struct udevice *dev,
203 struct dwc2_core_regs *regs)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700204{
205 uint32_t nptxfifosize = 0;
206 uint32_t ptxfifosize = 0;
207 uint32_t hprt0 = 0;
208 int i, ret, num_channels;
209
210 /* Restart the Phy Clock */
211 writel(0, &regs->pcgcctl);
212
213 /* Initialize Host Configuration Register */
214 init_fslspclksel(regs);
215#ifdef CONFIG_DWC2_DFLT_SPEED_FULL
216 setbits_le32(&regs->host_regs.hcfg, DWC2_HCFG_FSLSSUPP);
217#endif
218
219 /* Configure data FIFO sizes */
220#ifdef CONFIG_DWC2_ENABLE_DYNAMIC_FIFO
221 if (readl(&regs->ghwcfg2) & DWC2_HWCFG2_DYNAMIC_FIFO) {
222 /* Rx FIFO */
223 writel(CONFIG_DWC2_HOST_RX_FIFO_SIZE, &regs->grxfsiz);
224
225 /* Non-periodic Tx FIFO */
226 nptxfifosize |= CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE <<
227 DWC2_FIFOSIZE_DEPTH_OFFSET;
228 nptxfifosize |= CONFIG_DWC2_HOST_RX_FIFO_SIZE <<
229 DWC2_FIFOSIZE_STARTADDR_OFFSET;
230 writel(nptxfifosize, &regs->gnptxfsiz);
231
232 /* Periodic Tx FIFO */
233 ptxfifosize |= CONFIG_DWC2_HOST_PERIO_TX_FIFO_SIZE <<
234 DWC2_FIFOSIZE_DEPTH_OFFSET;
235 ptxfifosize |= (CONFIG_DWC2_HOST_RX_FIFO_SIZE +
236 CONFIG_DWC2_HOST_NPERIO_TX_FIFO_SIZE) <<
237 DWC2_FIFOSIZE_STARTADDR_OFFSET;
238 writel(ptxfifosize, &regs->hptxfsiz);
239 }
240#endif
241
242 /* Clear Host Set HNP Enable in the OTG Control Register */
243 clrbits_le32(&regs->gotgctl, DWC2_GOTGCTL_HSTSETHNPEN);
244
245 /* Make sure the FIFOs are flushed. */
246 dwc_otg_flush_tx_fifo(regs, 0x10); /* All Tx FIFOs */
247 dwc_otg_flush_rx_fifo(regs);
248
249 /* Flush out any leftover queued requests. */
250 num_channels = readl(&regs->ghwcfg2);
251 num_channels &= DWC2_HWCFG2_NUM_HOST_CHAN_MASK;
252 num_channels >>= DWC2_HWCFG2_NUM_HOST_CHAN_OFFSET;
253 num_channels += 1;
254
255 for (i = 0; i < num_channels; i++)
256 clrsetbits_le32(&regs->hc_regs[i].hcchar,
257 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_EPDIR,
258 DWC2_HCCHAR_CHDIS);
259
260 /* Halt all channels to put them into a known state. */
261 for (i = 0; i < num_channels; i++) {
262 clrsetbits_le32(&regs->hc_regs[i].hcchar,
263 DWC2_HCCHAR_EPDIR,
264 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS);
Mateusz Kulikowski2765f1e2016-01-23 11:54:30 +0100265 ret = wait_for_bit(__func__, &regs->hc_regs[i].hcchar,
266 DWC2_HCCHAR_CHEN, false, 1000, false);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700267 if (ret)
268 printf("%s: Timeout!\n", __func__);
269 }
270
271 /* Turn on the vbus power. */
272 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST) {
273 hprt0 = readl(&regs->hprt0);
274 hprt0 &= ~(DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET);
275 hprt0 &= ~(DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG);
276 if (!(hprt0 & DWC2_HPRT0_PRTPWR)) {
277 hprt0 |= DWC2_HPRT0_PRTPWR;
278 writel(hprt0, &regs->hprt0);
279 }
280 }
Kever Yang327c24d2017-03-10 12:05:14 +0800281
282 if (dev)
283 dwc_vbus_supply_init(dev);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700284}
285
286/*
287 * This function initializes the DWC_otg controller registers and
288 * prepares the core for device mode or host mode operation.
289 *
290 * @param regs Programming view of the DWC_otg controller
291 */
Marek Vasut36fc5692016-04-27 14:53:33 +0200292static void dwc_otg_core_init(struct dwc2_priv *priv)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700293{
Marek Vasut36fc5692016-04-27 14:53:33 +0200294 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700295 uint32_t ahbcfg = 0;
296 uint32_t usbcfg = 0;
297 uint8_t brst_sz = CONFIG_DWC2_DMA_BURST_SIZE;
298
299 /* Common Initialization */
300 usbcfg = readl(&regs->gusbcfg);
301
302 /* Program the ULPI External VBUS bit if needed */
Marek Vasut39209492016-04-27 14:55:57 +0200303 if (priv->ext_vbus) {
Marek Vasut43db5a62016-04-27 14:58:49 +0200304 usbcfg |= DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
305 if (!priv->oc_disable) {
306 usbcfg |= DWC2_GUSBCFG_ULPI_INT_VBUS_INDICATOR |
307 DWC2_GUSBCFG_INDICATOR_PASSTHROUGH;
308 }
Marek Vasut39209492016-04-27 14:55:57 +0200309 } else {
310 usbcfg &= ~DWC2_GUSBCFG_ULPI_EXT_VBUS_DRV;
311 }
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700312
313 /* Set external TS Dline pulsing */
314#ifdef CONFIG_DWC2_TS_DLINE
315 usbcfg |= DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
316#else
317 usbcfg &= ~DWC2_GUSBCFG_TERM_SEL_DL_PULSE;
318#endif
319 writel(usbcfg, &regs->gusbcfg);
320
321 /* Reset the Controller */
322 dwc_otg_core_reset(regs);
323
324 /*
325 * This programming sequence needs to happen in FS mode before
326 * any other programming occurs
327 */
328#if defined(CONFIG_DWC2_DFLT_SPEED_FULL) && \
329 (CONFIG_DWC2_PHY_TYPE == DWC2_PHY_TYPE_FS)
330 /* If FS mode with FS PHY */
331 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_PHYSEL);
332
333 /* Reset after a PHY select */
334 dwc_otg_core_reset(regs);
335
336 /*
337 * Program DCFG.DevSpd or HCFG.FSLSPclkSel to 48Mhz in FS.
338 * Also do this on HNP Dev/Host mode switches (done in dev_init
339 * and host_init).
340 */
341 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
342 init_fslspclksel(regs);
343
344#ifdef CONFIG_DWC2_I2C_ENABLE
345 /* Program GUSBCFG.OtgUtmifsSel to I2C */
346 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_OTGUTMIFSSEL);
347
348 /* Program GI2CCTL.I2CEn */
349 clrsetbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN |
350 DWC2_GI2CCTL_I2CDEVADDR_MASK,
351 1 << DWC2_GI2CCTL_I2CDEVADDR_OFFSET);
352 setbits_le32(&regs->gi2cctl, DWC2_GI2CCTL_I2CEN);
353#endif
354
355#else
356 /* High speed PHY. */
357
358 /*
359 * HS PHY parameters. These parameters are preserved during
360 * soft reset so only program the first time. Do a soft reset
361 * immediately after setting phyif.
362 */
363 usbcfg &= ~(DWC2_GUSBCFG_ULPI_UTMI_SEL | DWC2_GUSBCFG_PHYIF);
364 usbcfg |= CONFIG_DWC2_PHY_TYPE << DWC2_GUSBCFG_ULPI_UTMI_SEL_OFFSET;
365
366 if (usbcfg & DWC2_GUSBCFG_ULPI_UTMI_SEL) { /* ULPI interface */
367#ifdef CONFIG_DWC2_PHY_ULPI_DDR
368 usbcfg |= DWC2_GUSBCFG_DDRSEL;
369#else
370 usbcfg &= ~DWC2_GUSBCFG_DDRSEL;
371#endif
372 } else { /* UTMI+ interface */
373#if (CONFIG_DWC2_UTMI_PHY_WIDTH == 16)
374 usbcfg |= DWC2_GUSBCFG_PHYIF;
375#endif
376 }
377
378 writel(usbcfg, &regs->gusbcfg);
379
380 /* Reset after setting the PHY parameters */
381 dwc_otg_core_reset(regs);
382#endif
383
384 usbcfg = readl(&regs->gusbcfg);
385 usbcfg &= ~(DWC2_GUSBCFG_ULPI_FSLS | DWC2_GUSBCFG_ULPI_CLK_SUS_M);
386#ifdef CONFIG_DWC2_ULPI_FS_LS
387 uint32_t hwcfg2 = readl(&regs->ghwcfg2);
388 uint32_t hval = (ghwcfg2 & DWC2_HWCFG2_HS_PHY_TYPE_MASK) >>
389 DWC2_HWCFG2_HS_PHY_TYPE_OFFSET;
390 uint32_t fval = (ghwcfg2 & DWC2_HWCFG2_FS_PHY_TYPE_MASK) >>
391 DWC2_HWCFG2_FS_PHY_TYPE_OFFSET;
392 if (hval == 2 && fval == 1) {
393 usbcfg |= DWC2_GUSBCFG_ULPI_FSLS;
394 usbcfg |= DWC2_GUSBCFG_ULPI_CLK_SUS_M;
395 }
396#endif
397 writel(usbcfg, &regs->gusbcfg);
398
399 /* Program the GAHBCFG Register. */
400 switch (readl(&regs->ghwcfg2) & DWC2_HWCFG2_ARCHITECTURE_MASK) {
401 case DWC2_HWCFG2_ARCHITECTURE_SLAVE_ONLY:
402 break;
403 case DWC2_HWCFG2_ARCHITECTURE_EXT_DMA:
404 while (brst_sz > 1) {
405 ahbcfg |= ahbcfg + (1 << DWC2_GAHBCFG_HBURSTLEN_OFFSET);
406 ahbcfg &= DWC2_GAHBCFG_HBURSTLEN_MASK;
407 brst_sz >>= 1;
408 }
409
410#ifdef CONFIG_DWC2_DMA_ENABLE
411 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
412#endif
413 break;
414
415 case DWC2_HWCFG2_ARCHITECTURE_INT_DMA:
416 ahbcfg |= DWC2_GAHBCFG_HBURSTLEN_INCR4;
417#ifdef CONFIG_DWC2_DMA_ENABLE
418 ahbcfg |= DWC2_GAHBCFG_DMAENABLE;
419#endif
420 break;
421 }
422
423 writel(ahbcfg, &regs->gahbcfg);
424
425 /* Program the GUSBCFG register for HNP/SRP. */
426 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_HNPCAP | DWC2_GUSBCFG_SRPCAP);
427
428#ifdef CONFIG_DWC2_IC_USB_CAP
429 setbits_le32(&regs->gusbcfg, DWC2_GUSBCFG_IC_USB_CAP);
430#endif
431}
432
433/*
434 * Prepares a host channel for transferring packets to/from a specific
435 * endpoint. The HCCHARn register is set up with the characteristics specified
436 * in _hc. Host channel interrupts that may need to be serviced while this
437 * transfer is in progress are enabled.
438 *
439 * @param regs Programming view of DWC_otg controller
440 * @param hc Information needed to initialize the host channel
441 */
442static void dwc_otg_hc_init(struct dwc2_core_regs *regs, uint8_t hc_num,
Stephen Warrendead8db2015-04-10 21:05:21 -0600443 struct usb_device *dev, uint8_t dev_addr, uint8_t ep_num,
444 uint8_t ep_is_in, uint8_t ep_type, uint16_t max_packet)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700445{
446 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[hc_num];
Stephen Warrendead8db2015-04-10 21:05:21 -0600447 uint32_t hcchar = (dev_addr << DWC2_HCCHAR_DEVADDR_OFFSET) |
448 (ep_num << DWC2_HCCHAR_EPNUM_OFFSET) |
449 (ep_is_in << DWC2_HCCHAR_EPDIR_OFFSET) |
450 (ep_type << DWC2_HCCHAR_EPTYPE_OFFSET) |
451 (max_packet << DWC2_HCCHAR_MPS_OFFSET);
452
453 if (dev->speed == USB_SPEED_LOW)
454 hcchar |= DWC2_HCCHAR_LSPDDEV;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700455
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700456 /*
457 * Program the HCCHARn register with the endpoint characteristics
458 * for the current transfer.
459 */
460 writel(hcchar, &hc_regs->hcchar);
461
Stefan BrĂ¼ns2e194e22016-01-17 04:09:54 +0100462 /* Program the HCSPLIT register, default to no SPLIT */
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700463 writel(0, &hc_regs->hcsplt);
464}
465
Stefan BrĂ¼ns2e194e22016-01-17 04:09:54 +0100466static void dwc_otg_hc_init_split(struct dwc2_hc_regs *hc_regs,
467 uint8_t hub_devnum, uint8_t hub_port)
468{
469 uint32_t hcsplt = 0;
470
471 hcsplt = DWC2_HCSPLT_SPLTENA;
472 hcsplt |= hub_devnum << DWC2_HCSPLT_HUBADDR_OFFSET;
473 hcsplt |= hub_port << DWC2_HCSPLT_PRTADDR_OFFSET;
474
475 /* Program the HCSPLIT register for SPLITs */
476 writel(hcsplt, &hc_regs->hcsplt);
477}
478
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700479/*
480 * DWC2 to USB API interface
481 */
482/* Direction: In ; Request: Status */
Simon Glasse3c23a02015-07-07 20:53:36 -0600483static int dwc_otg_submit_rh_msg_in_status(struct dwc2_core_regs *regs,
484 struct usb_device *dev, void *buffer,
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700485 int txlen, struct devrequest *cmd)
486{
487 uint32_t hprt0 = 0;
488 uint32_t port_status = 0;
489 uint32_t port_change = 0;
490 int len = 0;
491 int stat = 0;
492
493 switch (cmd->requesttype & ~USB_DIR_IN) {
494 case 0:
495 *(uint16_t *)buffer = cpu_to_le16(1);
496 len = 2;
497 break;
498 case USB_RECIP_INTERFACE:
499 case USB_RECIP_ENDPOINT:
500 *(uint16_t *)buffer = cpu_to_le16(0);
501 len = 2;
502 break;
503 case USB_TYPE_CLASS:
504 *(uint32_t *)buffer = cpu_to_le32(0);
505 len = 4;
506 break;
507 case USB_RECIP_OTHER | USB_TYPE_CLASS:
508 hprt0 = readl(&regs->hprt0);
509 if (hprt0 & DWC2_HPRT0_PRTCONNSTS)
510 port_status |= USB_PORT_STAT_CONNECTION;
511 if (hprt0 & DWC2_HPRT0_PRTENA)
512 port_status |= USB_PORT_STAT_ENABLE;
513 if (hprt0 & DWC2_HPRT0_PRTSUSP)
514 port_status |= USB_PORT_STAT_SUSPEND;
515 if (hprt0 & DWC2_HPRT0_PRTOVRCURRACT)
516 port_status |= USB_PORT_STAT_OVERCURRENT;
517 if (hprt0 & DWC2_HPRT0_PRTRST)
518 port_status |= USB_PORT_STAT_RESET;
519 if (hprt0 & DWC2_HPRT0_PRTPWR)
520 port_status |= USB_PORT_STAT_POWER;
521
Stephen Warrend3388f82015-03-27 21:55:38 -0600522 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) == DWC2_HPRT0_PRTSPD_LOW)
523 port_status |= USB_PORT_STAT_LOW_SPEED;
524 else if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
525 DWC2_HPRT0_PRTSPD_HIGH)
526 port_status |= USB_PORT_STAT_HIGH_SPEED;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700527
528 if (hprt0 & DWC2_HPRT0_PRTENCHNG)
529 port_change |= USB_PORT_STAT_C_ENABLE;
530 if (hprt0 & DWC2_HPRT0_PRTCONNDET)
531 port_change |= USB_PORT_STAT_C_CONNECTION;
532 if (hprt0 & DWC2_HPRT0_PRTOVRCURRCHNG)
533 port_change |= USB_PORT_STAT_C_OVERCURRENT;
534
535 *(uint32_t *)buffer = cpu_to_le32(port_status |
536 (port_change << 16));
537 len = 4;
538 break;
539 default:
540 puts("unsupported root hub command\n");
541 stat = USB_ST_STALLED;
542 }
543
544 dev->act_len = min(len, txlen);
545 dev->status = stat;
546
547 return stat;
548}
549
550/* Direction: In ; Request: Descriptor */
551static int dwc_otg_submit_rh_msg_in_descriptor(struct usb_device *dev,
552 void *buffer, int txlen,
553 struct devrequest *cmd)
554{
555 unsigned char data[32];
556 uint32_t dsc;
557 int len = 0;
558 int stat = 0;
559 uint16_t wValue = cpu_to_le16(cmd->value);
560 uint16_t wLength = cpu_to_le16(cmd->length);
561
562 switch (cmd->requesttype & ~USB_DIR_IN) {
563 case 0:
564 switch (wValue & 0xff00) {
565 case 0x0100: /* device descriptor */
Masahiro Yamadadb204642014-11-07 03:03:31 +0900566 len = min3(txlen, (int)sizeof(root_hub_dev_des), (int)wLength);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700567 memcpy(buffer, root_hub_dev_des, len);
568 break;
569 case 0x0200: /* configuration descriptor */
Masahiro Yamadadb204642014-11-07 03:03:31 +0900570 len = min3(txlen, (int)sizeof(root_hub_config_des), (int)wLength);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700571 memcpy(buffer, root_hub_config_des, len);
572 break;
573 case 0x0300: /* string descriptors */
574 switch (wValue & 0xff) {
575 case 0x00:
Masahiro Yamadadb204642014-11-07 03:03:31 +0900576 len = min3(txlen, (int)sizeof(root_hub_str_index0),
577 (int)wLength);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700578 memcpy(buffer, root_hub_str_index0, len);
579 break;
580 case 0x01:
Masahiro Yamadadb204642014-11-07 03:03:31 +0900581 len = min3(txlen, (int)sizeof(root_hub_str_index1),
582 (int)wLength);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700583 memcpy(buffer, root_hub_str_index1, len);
584 break;
585 }
586 break;
587 default:
588 stat = USB_ST_STALLED;
589 }
590 break;
591
592 case USB_TYPE_CLASS:
593 /* Root port config, set 1 port and nothing else. */
594 dsc = 0x00000001;
595
596 data[0] = 9; /* min length; */
597 data[1] = 0x29;
598 data[2] = dsc & RH_A_NDP;
599 data[3] = 0;
600 if (dsc & RH_A_PSM)
601 data[3] |= 0x1;
602 if (dsc & RH_A_NOCP)
603 data[3] |= 0x10;
604 else if (dsc & RH_A_OCPM)
605 data[3] |= 0x8;
606
607 /* corresponds to data[4-7] */
608 data[5] = (dsc & RH_A_POTPGT) >> 24;
609 data[7] = dsc & RH_B_DR;
610 if (data[2] < 7) {
611 data[8] = 0xff;
612 } else {
613 data[0] += 2;
614 data[8] = (dsc & RH_B_DR) >> 8;
615 data[9] = 0xff;
616 data[10] = data[9];
617 }
618
Masahiro Yamadadb204642014-11-07 03:03:31 +0900619 len = min3(txlen, (int)data[0], (int)wLength);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700620 memcpy(buffer, data, len);
621 break;
622 default:
623 puts("unsupported root hub command\n");
624 stat = USB_ST_STALLED;
625 }
626
627 dev->act_len = min(len, txlen);
628 dev->status = stat;
629
630 return stat;
631}
632
633/* Direction: In ; Request: Configuration */
634static int dwc_otg_submit_rh_msg_in_configuration(struct usb_device *dev,
635 void *buffer, int txlen,
636 struct devrequest *cmd)
637{
638 int len = 0;
639 int stat = 0;
640
641 switch (cmd->requesttype & ~USB_DIR_IN) {
642 case 0:
643 *(uint8_t *)buffer = 0x01;
644 len = 1;
645 break;
646 default:
647 puts("unsupported root hub command\n");
648 stat = USB_ST_STALLED;
649 }
650
651 dev->act_len = min(len, txlen);
652 dev->status = stat;
653
654 return stat;
655}
656
657/* Direction: In */
Simon Glasse3c23a02015-07-07 20:53:36 -0600658static int dwc_otg_submit_rh_msg_in(struct dwc2_priv *priv,
659 struct usb_device *dev, void *buffer,
660 int txlen, struct devrequest *cmd)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700661{
662 switch (cmd->request) {
663 case USB_REQ_GET_STATUS:
Simon Glasse3c23a02015-07-07 20:53:36 -0600664 return dwc_otg_submit_rh_msg_in_status(priv->regs, dev, buffer,
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700665 txlen, cmd);
666 case USB_REQ_GET_DESCRIPTOR:
667 return dwc_otg_submit_rh_msg_in_descriptor(dev, buffer,
668 txlen, cmd);
669 case USB_REQ_GET_CONFIGURATION:
670 return dwc_otg_submit_rh_msg_in_configuration(dev, buffer,
671 txlen, cmd);
672 default:
673 puts("unsupported root hub command\n");
674 return USB_ST_STALLED;
675 }
676}
677
678/* Direction: Out */
Simon Glasse3c23a02015-07-07 20:53:36 -0600679static int dwc_otg_submit_rh_msg_out(struct dwc2_priv *priv,
680 struct usb_device *dev,
681 void *buffer, int txlen,
682 struct devrequest *cmd)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700683{
Simon Glasse3c23a02015-07-07 20:53:36 -0600684 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700685 int len = 0;
686 int stat = 0;
687 uint16_t bmrtype_breq = cmd->requesttype | (cmd->request << 8);
688 uint16_t wValue = cpu_to_le16(cmd->value);
689
690 switch (bmrtype_breq & ~USB_DIR_IN) {
691 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_ENDPOINT:
692 case (USB_REQ_CLEAR_FEATURE << 8) | USB_TYPE_CLASS:
693 break;
694
695 case (USB_REQ_CLEAR_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
696 switch (wValue) {
697 case USB_PORT_FEAT_C_CONNECTION:
698 setbits_le32(&regs->hprt0, DWC2_HPRT0_PRTCONNDET);
699 break;
700 }
701 break;
702
703 case (USB_REQ_SET_FEATURE << 8) | USB_RECIP_OTHER | USB_TYPE_CLASS:
704 switch (wValue) {
705 case USB_PORT_FEAT_SUSPEND:
706 break;
707
708 case USB_PORT_FEAT_RESET:
709 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
710 DWC2_HPRT0_PRTCONNDET |
711 DWC2_HPRT0_PRTENCHNG |
712 DWC2_HPRT0_PRTOVRCURRCHNG,
713 DWC2_HPRT0_PRTRST);
714 mdelay(50);
715 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTRST);
716 break;
717
718 case USB_PORT_FEAT_POWER:
719 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
720 DWC2_HPRT0_PRTCONNDET |
721 DWC2_HPRT0_PRTENCHNG |
722 DWC2_HPRT0_PRTOVRCURRCHNG,
723 DWC2_HPRT0_PRTRST);
724 break;
725
726 case USB_PORT_FEAT_ENABLE:
727 break;
728 }
729 break;
730 case (USB_REQ_SET_ADDRESS << 8):
Simon Glasse3c23a02015-07-07 20:53:36 -0600731 priv->root_hub_devnum = wValue;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700732 break;
733 case (USB_REQ_SET_CONFIGURATION << 8):
734 break;
735 default:
736 puts("unsupported root hub command\n");
737 stat = USB_ST_STALLED;
738 }
739
740 len = min(len, txlen);
741
742 dev->act_len = len;
743 dev->status = stat;
744
745 return stat;
746}
747
Simon Glasse3c23a02015-07-07 20:53:36 -0600748static int dwc_otg_submit_rh_msg(struct dwc2_priv *priv, struct usb_device *dev,
749 unsigned long pipe, void *buffer, int txlen,
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700750 struct devrequest *cmd)
751{
752 int stat = 0;
753
754 if (usb_pipeint(pipe)) {
755 puts("Root-Hub submit IRQ: NOT implemented\n");
756 return 0;
757 }
758
759 if (cmd->requesttype & USB_DIR_IN)
Simon Glasse3c23a02015-07-07 20:53:36 -0600760 stat = dwc_otg_submit_rh_msg_in(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700761 else
Simon Glasse3c23a02015-07-07 20:53:36 -0600762 stat = dwc_otg_submit_rh_msg_out(priv, dev, buffer, txlen, cmd);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700763
764 mdelay(1);
765
766 return stat;
767}
768
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +0100769int wait_for_chhltd(struct dwc2_hc_regs *hc_regs, uint32_t *sub, u8 *toggle)
Stephen Warren8a346662015-03-07 22:48:51 -0700770{
Stephen Warren8a346662015-03-07 22:48:51 -0700771 int ret;
772 uint32_t hcint, hctsiz;
773
Mateusz Kulikowski2765f1e2016-01-23 11:54:30 +0100774 ret = wait_for_bit(__func__, &hc_regs->hcint, DWC2_HCINT_CHHLTD, true,
775 1000, false);
Stephen Warren8a346662015-03-07 22:48:51 -0700776 if (ret)
777 return ret;
778
779 hcint = readl(&hc_regs->hcint);
Stephen Warren8a346662015-03-07 22:48:51 -0700780 hctsiz = readl(&hc_regs->hctsiz);
781 *sub = (hctsiz & DWC2_HCTSIZ_XFERSIZE_MASK) >>
782 DWC2_HCTSIZ_XFERSIZE_OFFSET;
Stephen Warren9f80e742015-03-07 22:48:55 -0700783 *toggle = (hctsiz & DWC2_HCTSIZ_PID_MASK) >> DWC2_HCTSIZ_PID_OFFSET;
Stephen Warren8a346662015-03-07 22:48:51 -0700784
Stefan BrĂ¼nsaa9506e2016-01-17 04:09:52 +0100785 debug("%s: HCINT=%08x sub=%u toggle=%d\n", __func__, hcint, *sub,
786 *toggle);
Stephen Warren8a346662015-03-07 22:48:51 -0700787
Stefan BrĂ¼nsaa9506e2016-01-17 04:09:52 +0100788 if (hcint & DWC2_HCINT_XFERCOMP)
789 return 0;
790
791 if (hcint & (DWC2_HCINT_NAK | DWC2_HCINT_FRMOVRUN))
792 return -EAGAIN;
Stephen Warren8a346662015-03-07 22:48:51 -0700793
Stefan BrĂ¼nsaa9506e2016-01-17 04:09:52 +0100794 debug("%s: Error (HCINT=%08x)\n", __func__, hcint);
795 return -EINVAL;
Stephen Warren8a346662015-03-07 22:48:51 -0700796}
797
Stephen Warren972ad642015-03-07 22:48:52 -0700798static int dwc2_eptype[] = {
799 DWC2_HCCHAR_EPTYPE_ISOC,
800 DWC2_HCCHAR_EPTYPE_INTR,
801 DWC2_HCCHAR_EPTYPE_CONTROL,
802 DWC2_HCCHAR_EPTYPE_BULK,
803};
804
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100805static int transfer_chunk(struct dwc2_hc_regs *hc_regs, void *aligned_buffer,
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +0100806 u8 *pid, int in, void *buffer, int num_packets,
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100807 int xfer_len, int *actual_len, int odd_frame)
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100808{
809 int ret = 0;
810 uint32_t sub;
811
812 debug("%s: chunk: pid %d xfer_len %u pkts %u\n", __func__,
813 *pid, xfer_len, num_packets);
814
815 writel((xfer_len << DWC2_HCTSIZ_XFERSIZE_OFFSET) |
816 (num_packets << DWC2_HCTSIZ_PKTCNT_OFFSET) |
817 (*pid << DWC2_HCTSIZ_PID_OFFSET),
818 &hc_regs->hctsiz);
819
Eddie Cai408bdee2017-04-06 11:37:04 +0800820 if (xfer_len) {
821 if (in) {
822 invalidate_dcache_range(
823 (uintptr_t)aligned_buffer,
824 (uintptr_t)aligned_buffer +
825 roundup(xfer_len, ARCH_DMA_MINALIGN));
826 } else {
827 memcpy(aligned_buffer, buffer, xfer_len);
828 flush_dcache_range(
829 (uintptr_t)aligned_buffer,
830 (uintptr_t)aligned_buffer +
831 roundup(xfer_len, ARCH_DMA_MINALIGN));
832 }
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100833 }
834
835 writel(phys_to_bus((unsigned long)aligned_buffer), &hc_regs->hcdma);
836
837 /* Clear old interrupt conditions for this host channel. */
838 writel(0x3fff, &hc_regs->hcint);
839
840 /* Set host channel enable after all other setup is complete. */
841 clrsetbits_le32(&hc_regs->hcchar, DWC2_HCCHAR_MULTICNT_MASK |
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100842 DWC2_HCCHAR_CHEN | DWC2_HCCHAR_CHDIS |
843 DWC2_HCCHAR_ODDFRM,
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100844 (1 << DWC2_HCCHAR_MULTICNT_OFFSET) |
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100845 (odd_frame << DWC2_HCCHAR_ODDFRM_OFFSET) |
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100846 DWC2_HCCHAR_CHEN);
847
848 ret = wait_for_chhltd(hc_regs, &sub, pid);
849 if (ret < 0)
850 return ret;
851
852 if (in) {
853 xfer_len -= sub;
854
855 invalidate_dcache_range((unsigned long)aligned_buffer,
856 (unsigned long)aligned_buffer +
857 roundup(xfer_len, ARCH_DMA_MINALIGN));
858
859 memcpy(buffer, aligned_buffer, xfer_len);
860 }
861 *actual_len = xfer_len;
862
863 return ret;
864}
865
Simon Glasse3c23a02015-07-07 20:53:36 -0600866int chunk_msg(struct dwc2_priv *priv, struct usb_device *dev,
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +0100867 unsigned long pipe, u8 *pid, int in, void *buffer, int len)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700868{
Simon Glasse3c23a02015-07-07 20:53:36 -0600869 struct dwc2_core_regs *regs = priv->regs;
Stephen Warren972ad642015-03-07 22:48:52 -0700870 struct dwc2_hc_regs *hc_regs = &regs->hc_regs[DWC2_HC_CHANNEL];
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100871 struct dwc2_host_regs *host_regs = &regs->host_regs;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700872 int devnum = usb_pipedevice(pipe);
873 int ep = usb_pipeendpoint(pipe);
874 int max = usb_maxpacket(dev, pipe);
Stephen Warren972ad642015-03-07 22:48:52 -0700875 int eptype = dwc2_eptype[usb_pipetype(pipe)];
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700876 int done = 0;
Stephen Warren766fe412015-04-11 21:52:02 -0600877 int ret = 0;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100878 int do_split = 0;
879 int complete_split = 0;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700880 uint32_t xfer_len;
881 uint32_t num_packets;
882 int stop_transfer = 0;
Stefan BrĂ¼ns575b0eb2016-01-17 04:09:51 +0100883 uint32_t max_xfer_len;
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100884 int ssplit_frame_num = 0;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700885
Stephen Warren972ad642015-03-07 22:48:52 -0700886 debug("%s: msg: pipe %lx pid %d in %d len %d\n", __func__, pipe, *pid,
887 in, len);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700888
Stefan BrĂ¼ns575b0eb2016-01-17 04:09:51 +0100889 max_xfer_len = CONFIG_DWC2_MAX_PACKET_COUNT * max;
890 if (max_xfer_len > CONFIG_DWC2_MAX_TRANSFER_SIZE)
891 max_xfer_len = CONFIG_DWC2_MAX_TRANSFER_SIZE;
892 if (max_xfer_len > DWC2_DATA_BUF_SIZE)
893 max_xfer_len = DWC2_DATA_BUF_SIZE;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700894
Stefan BrĂ¼ns575b0eb2016-01-17 04:09:51 +0100895 /* Make sure that max_xfer_len is a multiple of max packet size. */
896 num_packets = max_xfer_len / max;
897 max_xfer_len = num_packets * max;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700898
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100899 /* Initialize channel */
900 dwc_otg_hc_init(regs, DWC2_HC_CHANNEL, dev, devnum, ep, in,
901 eptype, max);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700902
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100903 /* Check if the target is a FS/LS device behind a HS hub */
904 if (dev->speed != USB_SPEED_HIGH) {
905 uint8_t hub_addr;
906 uint8_t hub_port;
907 uint32_t hprt0 = readl(&regs->hprt0);
908 if ((hprt0 & DWC2_HPRT0_PRTSPD_MASK) ==
909 DWC2_HPRT0_PRTSPD_HIGH) {
910 usb_find_usb2_hub_address_port(dev, &hub_addr,
911 &hub_port);
912 dwc_otg_hc_init_split(hc_regs, hub_addr, hub_port);
913
914 do_split = 1;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700915 num_packets = 1;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100916 max_xfer_len = max;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700917 }
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100918 }
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700919
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100920 do {
921 int actual_len = 0;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100922 uint32_t hcint;
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100923 int odd_frame = 0;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700924 xfer_len = len - done;
Stephen Warren972ad642015-03-07 22:48:52 -0700925
Stefan BrĂ¼ns575b0eb2016-01-17 04:09:51 +0100926 if (xfer_len > max_xfer_len)
927 xfer_len = max_xfer_len;
928 else if (xfer_len > max)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700929 num_packets = (xfer_len + max - 1) / max;
Stefan BrĂ¼ns575b0eb2016-01-17 04:09:51 +0100930 else
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700931 num_packets = 1;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700932
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100933 if (complete_split)
934 setbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
935 else if (do_split)
936 clrbits_le32(&hc_regs->hcsplt, DWC2_HCSPLT_COMPSPLT);
Alexander Stein76fac502015-07-24 09:22:14 +0200937
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100938 if (eptype == DWC2_HCCHAR_EPTYPE_INTR) {
939 int uframe_num = readl(&host_regs->hfnum);
940 if (!(uframe_num & 0x1))
941 odd_frame = 1;
Simon Glasse3c23a02015-07-07 20:53:36 -0600942 }
Stephen Warren7100da32015-03-08 11:08:13 -0600943
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100944 ret = transfer_chunk(hc_regs, priv->aligned_buffer, pid,
945 in, (char *)buffer + done, num_packets,
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100946 xfer_len, &actual_len, odd_frame);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700947
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100948 hcint = readl(&hc_regs->hcint);
949 if (complete_split) {
950 stop_transfer = 0;
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100951 if (hcint & DWC2_HCINT_NYET) {
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100952 ret = 0;
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100953 int frame_num = DWC2_HFNUM_MAX_FRNUM &
954 readl(&host_regs->hfnum);
955 if (((frame_num - ssplit_frame_num) &
956 DWC2_HFNUM_MAX_FRNUM) > 4)
957 ret = -EAGAIN;
958 } else
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100959 complete_split = 0;
960 } else if (do_split) {
961 if (hcint & DWC2_HCINT_ACK) {
Stefan BrĂ¼ns247241e2016-01-17 04:09:56 +0100962 ssplit_frame_num = DWC2_HFNUM_MAX_FRNUM &
963 readl(&host_regs->hfnum);
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100964 ret = 0;
965 complete_split = 1;
966 }
967 }
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700968
Stephen Warren766fe412015-04-11 21:52:02 -0600969 if (ret)
Stephen Warren8a346662015-03-07 22:48:51 -0700970 break;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700971
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100972 if (actual_len < xfer_len)
973 stop_transfer = 1;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700974
Stefan BrĂ¼ns2385db32016-01-17 04:09:53 +0100975 done += actual_len;
Stephen Warren7100da32015-03-08 11:08:13 -0600976
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +0100977 /* Transactions are done when when either all data is transferred or
978 * there is a short transfer. In case of a SPLIT make sure the CSPLIT
979 * is executed.
980 */
981 } while (((done < len) && !stop_transfer) || complete_split);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700982
983 writel(0, &hc_regs->hcintmsk);
984 writel(0xFFFFFFFF, &hc_regs->hcint);
985
986 dev->status = 0;
987 dev->act_len = done;
988
Stephen Warren766fe412015-04-11 21:52:02 -0600989 return ret;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -0700990}
991
Stephen Warren972ad642015-03-07 22:48:52 -0700992/* U-Boot USB transmission interface */
Simon Glasse3c23a02015-07-07 20:53:36 -0600993int _submit_bulk_msg(struct dwc2_priv *priv, struct usb_device *dev,
994 unsigned long pipe, void *buffer, int len)
Stephen Warren972ad642015-03-07 22:48:52 -0700995{
996 int devnum = usb_pipedevice(pipe);
997 int ep = usb_pipeendpoint(pipe);
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +0100998 u8* pid;
Stephen Warren972ad642015-03-07 22:48:52 -0700999
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +01001000 if ((devnum >= MAX_DEVICE) || (devnum == priv->root_hub_devnum)) {
Stephen Warren972ad642015-03-07 22:48:52 -07001001 dev->status = 0;
1002 return -EINVAL;
1003 }
1004
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +01001005 if (usb_pipein(pipe))
1006 pid = &priv->in_data_toggle[devnum][ep];
1007 else
1008 pid = &priv->out_data_toggle[devnum][ep];
1009
1010 return chunk_msg(priv, dev, pipe, pid, usb_pipein(pipe), buffer, len);
Stephen Warren972ad642015-03-07 22:48:52 -07001011}
1012
Simon Glasse3c23a02015-07-07 20:53:36 -06001013static int _submit_control_msg(struct dwc2_priv *priv, struct usb_device *dev,
1014 unsigned long pipe, void *buffer, int len,
1015 struct devrequest *setup)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001016{
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001017 int devnum = usb_pipedevice(pipe);
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +01001018 int ret, act_len;
1019 u8 pid;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001020 /* For CONTROL endpoint pid should start with DATA1 */
1021 int status_direction;
1022
Simon Glasse3c23a02015-07-07 20:53:36 -06001023 if (devnum == priv->root_hub_devnum) {
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001024 dev->status = 0;
1025 dev->speed = USB_SPEED_HIGH;
Simon Glasse3c23a02015-07-07 20:53:36 -06001026 return dwc_otg_submit_rh_msg(priv, dev, pipe, buffer, len,
1027 setup);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001028 }
1029
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001030 /* SETUP stage */
Stephen Warren4db200e2015-03-07 22:48:53 -07001031 pid = DWC2_HC_PID_SETUP;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001032 do {
1033 ret = chunk_msg(priv, dev, pipe, &pid, 0, setup, 8);
1034 } while (ret == -EAGAIN);
Stephen Warren4db200e2015-03-07 22:48:53 -07001035 if (ret)
1036 return ret;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001037
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001038 /* DATA stage */
1039 act_len = 0;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001040 if (buffer) {
Stephen Warrenb0ad4a32015-03-07 22:48:54 -07001041 pid = DWC2_HC_PID_DATA1;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001042 do {
1043 ret = chunk_msg(priv, dev, pipe, &pid, usb_pipein(pipe),
1044 buffer, len);
1045 act_len += dev->act_len;
1046 buffer += dev->act_len;
1047 len -= dev->act_len;
1048 } while (ret == -EAGAIN);
Stephen Warren4db200e2015-03-07 22:48:53 -07001049 if (ret)
1050 return ret;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001051 status_direction = usb_pipeout(pipe);
1052 } else {
1053 /* No-data CONTROL always ends with an IN transaction */
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001054 status_direction = 1;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001055 }
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001056
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001057 /* STATUS stage */
Stephen Warren4db200e2015-03-07 22:48:53 -07001058 pid = DWC2_HC_PID_DATA1;
Stefan BrĂ¼ns0c4b0652016-01-17 04:09:55 +01001059 do {
1060 ret = chunk_msg(priv, dev, pipe, &pid, status_direction,
1061 priv->status_buffer, 0);
1062 } while (ret == -EAGAIN);
Stephen Warren4db200e2015-03-07 22:48:53 -07001063 if (ret)
1064 return ret;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001065
Stephen Warren4db200e2015-03-07 22:48:53 -07001066 dev->act_len = act_len;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001067
Stephen Warren8a346662015-03-07 22:48:51 -07001068 return 0;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001069}
1070
Simon Glasse3c23a02015-07-07 20:53:36 -06001071int _submit_int_msg(struct dwc2_priv *priv, struct usb_device *dev,
1072 unsigned long pipe, void *buffer, int len, int interval)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001073{
Stephen Warren766fe412015-04-11 21:52:02 -06001074 unsigned long timeout;
1075 int ret;
1076
Stephen Warrendf7b37d2015-04-10 21:05:22 -06001077 /* FIXME: what is interval? */
Stephen Warren766fe412015-04-11 21:52:02 -06001078
1079 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
1080 for (;;) {
1081 if (get_timer(0) > timeout) {
1082 printf("Timeout poll on interrupt endpoint\n");
1083 return -ETIMEDOUT;
1084 }
Simon Glasse3c23a02015-07-07 20:53:36 -06001085 ret = _submit_bulk_msg(priv, dev, pipe, buffer, len);
Stephen Warren766fe412015-04-11 21:52:02 -06001086 if (ret != -EAGAIN)
1087 return ret;
1088 }
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001089}
1090
Kever Yang327c24d2017-03-10 12:05:14 +08001091static int dwc2_init_common(struct udevice *dev, struct dwc2_priv *priv)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001092{
Simon Glasse3c23a02015-07-07 20:53:36 -06001093 struct dwc2_core_regs *regs = priv->regs;
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001094 uint32_t snpsid;
1095 int i, j;
1096
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001097 snpsid = readl(&regs->gsnpsid);
1098 printf("Core Release: %x.%03x\n", snpsid >> 12 & 0xf, snpsid & 0xfff);
1099
Peter Griffin79d657d2015-05-12 14:38:27 +01001100 if ((snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_2xx &&
1101 (snpsid & DWC2_SNPSID_DEVID_MASK) != DWC2_SNPSID_DEVID_VER_3xx) {
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001102 printf("SNPSID invalid (not DWC2 OTG device): %08x\n", snpsid);
1103 return -ENODEV;
1104 }
1105
Marek Vasut39209492016-04-27 14:55:57 +02001106#ifdef CONFIG_DWC2_PHY_ULPI_EXT_VBUS
1107 priv->ext_vbus = 1;
1108#else
1109 priv->ext_vbus = 0;
1110#endif
1111
Marek Vasut36fc5692016-04-27 14:53:33 +02001112 dwc_otg_core_init(priv);
Kever Yang327c24d2017-03-10 12:05:14 +08001113 dwc_otg_core_host_init(dev, regs);
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001114
1115 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1116 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1117 DWC2_HPRT0_PRTOVRCURRCHNG,
1118 DWC2_HPRT0_PRTRST);
1119 mdelay(50);
1120 clrbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA | DWC2_HPRT0_PRTCONNDET |
1121 DWC2_HPRT0_PRTENCHNG | DWC2_HPRT0_PRTOVRCURRCHNG |
1122 DWC2_HPRT0_PRTRST);
1123
1124 for (i = 0; i < MAX_DEVICE; i++) {
Stefan BrĂ¼ns081dcc72016-01-23 01:42:25 +01001125 for (j = 0; j < MAX_ENDPOINT; j++) {
1126 priv->in_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1127 priv->out_data_toggle[i][j] = DWC2_HC_PID_DATA0;
1128 }
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001129 }
1130
Stefan Roesec526e832016-05-06 13:53:37 +02001131 /*
1132 * Add a 1 second delay here. This gives the host controller
1133 * a bit time before the comminucation with the USB devices
1134 * is started (the bus is scanned) and fixes the USB detection
1135 * problems with some problematic USB keys.
1136 */
1137 if (readl(&regs->gintsts) & DWC2_GINTSTS_CURMODE_HOST)
1138 mdelay(1000);
1139
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001140 return 0;
1141}
1142
Simon Glasse3c23a02015-07-07 20:53:36 -06001143static void dwc2_uninit_common(struct dwc2_core_regs *regs)
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001144{
1145 /* Put everything in reset. */
1146 clrsetbits_le32(&regs->hprt0, DWC2_HPRT0_PRTENA |
1147 DWC2_HPRT0_PRTCONNDET | DWC2_HPRT0_PRTENCHNG |
1148 DWC2_HPRT0_PRTOVRCURRCHNG,
1149 DWC2_HPRT0_PRTRST);
Simon Glasse3c23a02015-07-07 20:53:36 -06001150}
1151
Simon Glassa7ea72c2015-07-07 20:53:37 -06001152#ifndef CONFIG_DM_USB
Simon Glasse3c23a02015-07-07 20:53:36 -06001153int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1154 int len, struct devrequest *setup)
1155{
1156 return _submit_control_msg(&local, dev, pipe, buffer, len, setup);
1157}
1158
1159int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1160 int len)
1161{
1162 return _submit_bulk_msg(&local, dev, pipe, buffer, len);
1163}
1164
1165int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1166 int len, int interval)
1167{
1168 return _submit_int_msg(&local, dev, pipe, buffer, len, interval);
1169}
1170
1171/* U-Boot USB control interface */
1172int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1173{
1174 struct dwc2_priv *priv = &local;
1175
1176 memset(priv, '\0', sizeof(*priv));
1177 priv->root_hub_devnum = 0;
1178 priv->regs = (struct dwc2_core_regs *)CONFIG_USB_DWC2_REG_ADDR;
1179 priv->aligned_buffer = aligned_buffer_addr;
1180 priv->status_buffer = status_buffer_addr;
1181
1182 /* board-dependant init */
1183 if (board_usb_init(index, USB_INIT_HOST))
1184 return -1;
1185
Kever Yang327c24d2017-03-10 12:05:14 +08001186 return dwc2_init_common(NULL, priv);
Simon Glasse3c23a02015-07-07 20:53:36 -06001187}
1188
1189int usb_lowlevel_stop(int index)
1190{
1191 dwc2_uninit_common(local.regs);
1192
Oleksandr Tymoshenko7a881752014-02-01 21:51:25 -07001193 return 0;
1194}
Simon Glassa7ea72c2015-07-07 20:53:37 -06001195#endif
1196
1197#ifdef CONFIG_DM_USB
1198static int dwc2_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1199 unsigned long pipe, void *buffer, int length,
1200 struct devrequest *setup)
1201{
1202 struct dwc2_priv *priv = dev_get_priv(dev);
1203
1204 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1205 dev->name, udev, udev->dev->name, udev->portnr);
1206
1207 return _submit_control_msg(priv, udev, pipe, buffer, length, setup);
1208}
1209
1210static int dwc2_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1211 unsigned long pipe, void *buffer, int length)
1212{
1213 struct dwc2_priv *priv = dev_get_priv(dev);
1214
1215 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1216
1217 return _submit_bulk_msg(priv, udev, pipe, buffer, length);
1218}
1219
1220static int dwc2_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1221 unsigned long pipe, void *buffer, int length,
1222 int interval)
1223{
1224 struct dwc2_priv *priv = dev_get_priv(dev);
1225
1226 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1227
1228 return _submit_int_msg(priv, udev, pipe, buffer, length, interval);
1229}
1230
1231static int dwc2_usb_ofdata_to_platdata(struct udevice *dev)
1232{
1233 struct dwc2_priv *priv = dev_get_priv(dev);
Marek Vasut43db5a62016-04-27 14:58:49 +02001234 const void *prop;
Simon Glassa7ea72c2015-07-07 20:53:37 -06001235 fdt_addr_t addr;
1236
1237 addr = dev_get_addr(dev);
1238 if (addr == FDT_ADDR_T_NONE)
1239 return -EINVAL;
1240 priv->regs = (struct dwc2_core_regs *)addr;
1241
Simon Glassdd79d6e2017-01-17 16:52:55 -07001242 prop = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
1243 "disable-over-current", NULL);
Marek Vasut43db5a62016-04-27 14:58:49 +02001244 if (prop)
1245 priv->oc_disable = true;
1246
Simon Glassa7ea72c2015-07-07 20:53:37 -06001247 return 0;
1248}
1249
1250static int dwc2_usb_probe(struct udevice *dev)
1251{
1252 struct dwc2_priv *priv = dev_get_priv(dev);
Marek Vasut1ea9ac62016-04-26 03:02:35 +02001253 struct usb_bus_priv *bus_priv = dev_get_uclass_priv(dev);
1254
1255 bus_priv->desc_before_addr = true;
Simon Glassa7ea72c2015-07-07 20:53:37 -06001256
Kever Yang327c24d2017-03-10 12:05:14 +08001257 return dwc2_init_common(dev, priv);
Simon Glassa7ea72c2015-07-07 20:53:37 -06001258}
1259
1260static int dwc2_usb_remove(struct udevice *dev)
1261{
1262 struct dwc2_priv *priv = dev_get_priv(dev);
1263
1264 dwc2_uninit_common(priv->regs);
1265
1266 return 0;
1267}
1268
1269struct dm_usb_ops dwc2_usb_ops = {
1270 .control = dwc2_submit_control_msg,
1271 .bulk = dwc2_submit_bulk_msg,
1272 .interrupt = dwc2_submit_int_msg,
1273};
1274
1275static const struct udevice_id dwc2_usb_ids[] = {
1276 { .compatible = "brcm,bcm2835-usb" },
Marek Vasutac4a35f2015-08-12 22:19:14 +02001277 { .compatible = "snps,dwc2" },
Simon Glassa7ea72c2015-07-07 20:53:37 -06001278 { }
1279};
1280
1281U_BOOT_DRIVER(usb_dwc2) = {
Marek Vasutaf83c782015-08-12 22:19:15 +02001282 .name = "dwc2_usb",
Simon Glassa7ea72c2015-07-07 20:53:37 -06001283 .id = UCLASS_USB,
1284 .of_match = dwc2_usb_ids,
1285 .ofdata_to_platdata = dwc2_usb_ofdata_to_platdata,
1286 .probe = dwc2_usb_probe,
1287 .remove = dwc2_usb_remove,
1288 .ops = &dwc2_usb_ops,
1289 .priv_auto_alloc_size = sizeof(struct dwc2_priv),
1290 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1291};
1292#endif