blob: 78966718d01d1e5053179a8c34dea8c88742ceda [file] [log] [blame]
Patrick Delaunay22929e12018-10-26 09:02:52 +02001// SPDX-License-Identifier: GPL-2.0
Michal Simek49d67452018-05-18 13:15:06 +02002/*
3 * Generic DWC3 Glue layer
4 *
5 * Copyright (C) 2016 - 2018 Xilinx, Inc.
6 *
7 * Based on dwc3-omap.c.
8 */
9
10#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070011#include <cpu_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Michal Simek49d67452018-05-18 13:15:06 +020013#include <dm.h>
14#include <dm/device-internal.h>
15#include <dm/lists.h>
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010016#include <dwc3-uboot.h>
Michal Simek142d50f2022-03-09 10:05:45 +010017#include <generic-phy.h>
Simon Glasscd93d622020-05-10 11:40:13 -060018#include <linux/bitops.h>
Frank Wang5d422ab2020-05-26 11:34:31 +080019#include <linux/delay.h>
Michal Simek49d67452018-05-18 13:15:06 +020020#include <linux/usb/ch9.h>
21#include <linux/usb/gadget.h>
22#include <malloc.h>
23#include <usb.h>
24#include "core.h"
25#include "gadget.h"
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010026#include <reset.h>
27#include <clk.h>
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +020028#include <usb/xhci.h>
T Karthik Reddyb252d792022-07-08 11:21:59 +020029#include <asm/gpio.h>
Michal Simek49d67452018-05-18 13:15:06 +020030
Frank Wang5d422ab2020-05-26 11:34:31 +080031struct dwc3_glue_data {
32 struct clk_bulk clks;
33 struct reset_ctl_bulk resets;
34 fdt_addr_t regs;
35};
36
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020037struct dwc3_generic_plat {
38 fdt_addr_t base;
39 u32 maximum_speed;
40 enum usb_dr_mode dr_mode;
41};
42
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020043struct dwc3_generic_priv {
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +020044 void *base;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010045 struct dwc3 dwc3;
Chunfeng Yun6dfb8a82020-05-02 11:35:13 +020046 struct phy_bulk phys;
T Karthik Reddyb252d792022-07-08 11:21:59 +020047 struct gpio_desc ulpi_reset;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010048};
49
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +020050struct dwc3_generic_host_priv {
51 struct xhci_ctrl xhci_ctrl;
52 struct dwc3_generic_priv gen_priv;
53};
54
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +020055static int dwc3_generic_probe(struct udevice *dev,
56 struct dwc3_generic_priv *priv)
Michal Simek49d67452018-05-18 13:15:06 +020057{
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010058 int rc;
Simon Glassc69cda22020-12-03 16:55:20 -070059 struct dwc3_generic_plat *plat = dev_get_plat(dev);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010060 struct dwc3 *dwc3 = &priv->dwc3;
Simon Glassc69cda22020-12-03 16:55:20 -070061 struct dwc3_glue_data *glue = dev_get_plat(dev->parent);
Marek Vasut8ae84e62022-11-27 15:31:52 +010062 int __maybe_unused index;
63 ofnode __maybe_unused node;
Michal Simek49d67452018-05-18 13:15:06 +020064
Jean-Jacques Hiblotba6c5f72019-09-11 11:33:52 +020065 dwc3->dev = dev;
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020066 dwc3->maximum_speed = plat->maximum_speed;
67 dwc3->dr_mode = plat->dr_mode;
Jean-Jacques Hiblotba6c5f72019-09-11 11:33:52 +020068#if CONFIG_IS_ENABLED(OF_CONTROL)
69 dwc3_of_parse(dwc3);
Marek Vasut8ae84e62022-11-27 15:31:52 +010070
71 node = dev_ofnode(dev->parent);
72 index = ofnode_stringlist_search(node, "clock-names", "ref");
73 if (index < 0)
74 index = ofnode_stringlist_search(node, "clock-names", "ref_clk");
75 if (index >= 0)
76 dwc3->ref_clk = &glue->clks.clks[index];
Jean-Jacques Hiblotba6c5f72019-09-11 11:33:52 +020077#endif
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020078
Frank Wang5d422ab2020-05-26 11:34:31 +080079 /*
80 * It must hold whole USB3.0 OTG controller in resetting to hold pipe
81 * power state in P2 before initializing TypeC PHY on RK3399 platform.
82 */
83 if (device_is_compatible(dev->parent, "rockchip,rk3399-dwc3")) {
84 reset_assert_bulk(&glue->resets);
85 udelay(1);
86 }
87
Chunfeng Yun6dfb8a82020-05-02 11:35:13 +020088 rc = dwc3_setup_phy(dev, &priv->phys);
Siva Durga Prasad Paladugue7f9e1f2020-10-21 14:17:31 +020089 if (rc && rc != -ENOTSUPP)
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010090 return rc;
91
T Karthik Reddyb252d792022-07-08 11:21:59 +020092 if (CONFIG_IS_ENABLED(DM_GPIO) &&
93 device_is_compatible(dev->parent, "xlnx,zynqmp-dwc3")) {
94 rc = gpio_request_by_name(dev->parent, "reset-gpios", 0,
95 &priv->ulpi_reset, GPIOD_ACTIVE_LOW);
96 if (rc)
97 return rc;
98
99 /* Toggle ulpi to reset the phy. */
100 rc = dm_gpio_set_value(&priv->ulpi_reset, 1);
101 if (rc)
102 return rc;
103
104 mdelay(5);
105
106 rc = dm_gpio_set_value(&priv->ulpi_reset, 0);
107 if (rc)
108 return rc;
109
110 mdelay(5);
111 }
112
Frank Wang5d422ab2020-05-26 11:34:31 +0800113 if (device_is_compatible(dev->parent, "rockchip,rk3399-dwc3"))
114 reset_deassert_bulk(&glue->resets);
115
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +0200116 priv->base = map_physmem(plat->base, DWC3_OTG_REGS_END, MAP_NOCACHE);
117 dwc3->regs = priv->base + DWC3_GLOBALS_REGS_START;
Jean-Jacques Hiblotba6c5f72019-09-11 11:33:52 +0200118
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100119
120 rc = dwc3_init(dwc3);
121 if (rc) {
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +0200122 unmap_physmem(priv->base, MAP_NOCACHE);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100123 return rc;
124 }
125
126 return 0;
Michal Simek49d67452018-05-18 13:15:06 +0200127}
128
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +0200129static int dwc3_generic_remove(struct udevice *dev,
130 struct dwc3_generic_priv *priv)
Michal Simek49d67452018-05-18 13:15:06 +0200131{
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100132 struct dwc3 *dwc3 = &priv->dwc3;
Michal Simek49d67452018-05-18 13:15:06 +0200133
T Karthik Reddyb252d792022-07-08 11:21:59 +0200134 if (CONFIG_IS_ENABLED(DM_GPIO) &&
135 device_is_compatible(dev->parent, "xlnx,zynqmp-dwc3")) {
136 struct gpio_desc *ulpi_reset = &priv->ulpi_reset;
137
138 dm_gpio_free(ulpi_reset->dev, ulpi_reset);
139 }
140
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100141 dwc3_remove(dwc3);
Chunfeng Yun6dfb8a82020-05-02 11:35:13 +0200142 dwc3_shutdown_phy(dev, &priv->phys);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100143 unmap_physmem(dwc3->regs, MAP_NOCACHE);
Michal Simek49d67452018-05-18 13:15:06 +0200144
145 return 0;
146}
147
Simon Glassd1998a92020-12-03 16:55:21 -0700148static int dwc3_generic_of_to_plat(struct udevice *dev)
Michal Simek49d67452018-05-18 13:15:06 +0200149{
Simon Glassc69cda22020-12-03 16:55:20 -0700150 struct dwc3_generic_plat *plat = dev_get_plat(dev);
Simon Glassf10643c2020-12-19 10:40:14 -0700151 ofnode node = dev_ofnode(dev);
Michal Simek49d67452018-05-18 13:15:06 +0200152
Angus Ainsliec08db052022-02-02 15:08:54 -0800153 if (!strncmp(dev->name, "port", 4) || !strncmp(dev->name, "hub", 3)) {
154 /* This is a leaf so check the parent */
155 plat->base = dev_read_addr(dev->parent);
156 } else {
157 plat->base = dev_read_addr(dev);
158 }
Michal Simek49d67452018-05-18 13:15:06 +0200159
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +0200160 plat->maximum_speed = usb_get_maximum_speed(node);
161 if (plat->maximum_speed == USB_SPEED_UNKNOWN) {
Jean-Jacques Hiblot1a63e5e2019-09-11 11:33:51 +0200162 pr_info("No USB maximum speed specified. Using super speed\n");
163 plat->maximum_speed = USB_SPEED_SUPER;
Michal Simek49d67452018-05-18 13:15:06 +0200164 }
165
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +0200166 plat->dr_mode = usb_get_dr_mode(node);
167 if (plat->dr_mode == USB_DR_MODE_UNKNOWN) {
Angus Ainsliec08db052022-02-02 15:08:54 -0800168 /* might be a leaf so check the parent for mode */
169 node = dev_ofnode(dev->parent);
170 plat->dr_mode = usb_get_dr_mode(node);
171 if (plat->dr_mode == USB_DR_MODE_UNKNOWN) {
172 pr_err("Invalid usb mode setup\n");
173 return -ENODEV;
174 }
Michal Simek49d67452018-05-18 13:15:06 +0200175 }
176
177 return 0;
178}
179
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +0200180#if CONFIG_IS_ENABLED(DM_USB_GADGET)
181int dm_usb_gadget_handle_interrupts(struct udevice *dev)
182{
183 struct dwc3_generic_priv *priv = dev_get_priv(dev);
184 struct dwc3 *dwc3 = &priv->dwc3;
185
186 dwc3_gadget_uboot_handle_interrupt(dwc3);
187
188 return 0;
189}
190
191static int dwc3_generic_peripheral_probe(struct udevice *dev)
192{
193 struct dwc3_generic_priv *priv = dev_get_priv(dev);
194
195 return dwc3_generic_probe(dev, priv);
196}
197
198static int dwc3_generic_peripheral_remove(struct udevice *dev)
199{
200 struct dwc3_generic_priv *priv = dev_get_priv(dev);
201
202 return dwc3_generic_remove(dev, priv);
203}
204
Michal Simek49d67452018-05-18 13:15:06 +0200205U_BOOT_DRIVER(dwc3_generic_peripheral) = {
206 .name = "dwc3-generic-peripheral",
Jean-Jacques Hiblot01311622018-11-29 10:52:46 +0100207 .id = UCLASS_USB_GADGET_GENERIC,
Simon Glassd1998a92020-12-03 16:55:21 -0700208 .of_to_plat = dwc3_generic_of_to_plat,
Michal Simek49d67452018-05-18 13:15:06 +0200209 .probe = dwc3_generic_peripheral_probe,
210 .remove = dwc3_generic_peripheral_remove,
Simon Glass41575d82020-12-03 16:55:17 -0700211 .priv_auto = sizeof(struct dwc3_generic_priv),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700212 .plat_auto = sizeof(struct dwc3_generic_plat),
Michal Simek49d67452018-05-18 13:15:06 +0200213};
Jean-Jacques Hiblot687ab542018-11-29 10:52:42 +0100214#endif
Michal Simek49d67452018-05-18 13:15:06 +0200215
Simon Glass333e4a62021-07-10 21:14:29 -0600216#if defined(CONFIG_SPL_USB_HOST) || \
Kunihiko Hayashia5f9be12021-05-12 23:11:14 +0900217 !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_HOST)
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200218static int dwc3_generic_host_probe(struct udevice *dev)
219{
220 struct xhci_hcor *hcor;
221 struct xhci_hccr *hccr;
222 struct dwc3_generic_host_priv *priv = dev_get_priv(dev);
223 int rc;
224
225 rc = dwc3_generic_probe(dev, &priv->gen_priv);
226 if (rc)
227 return rc;
228
229 hccr = (struct xhci_hccr *)priv->gen_priv.base;
230 hcor = (struct xhci_hcor *)(priv->gen_priv.base +
231 HC_LENGTH(xhci_readl(&(hccr)->cr_capbase)));
232
233 return xhci_register(dev, hccr, hcor);
234}
235
236static int dwc3_generic_host_remove(struct udevice *dev)
237{
238 struct dwc3_generic_host_priv *priv = dev_get_priv(dev);
239 int rc;
240
241 rc = xhci_deregister(dev);
242 if (rc)
243 return rc;
244
245 return dwc3_generic_remove(dev, &priv->gen_priv);
246}
247
248U_BOOT_DRIVER(dwc3_generic_host) = {
249 .name = "dwc3-generic-host",
250 .id = UCLASS_USB,
Simon Glassd1998a92020-12-03 16:55:21 -0700251 .of_to_plat = dwc3_generic_of_to_plat,
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200252 .probe = dwc3_generic_host_probe,
253 .remove = dwc3_generic_host_remove,
Simon Glass41575d82020-12-03 16:55:17 -0700254 .priv_auto = sizeof(struct dwc3_generic_host_priv),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700255 .plat_auto = sizeof(struct dwc3_generic_plat),
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200256 .ops = &xhci_usb_ops,
257 .flags = DM_FLAG_ALLOC_PRIV_DMA,
258};
259#endif
260
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100261struct dwc3_glue_ops {
Marek Vasutf1ef9552022-04-13 00:42:55 +0200262 void (*glue_configure)(struct udevice *dev, int index,
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100263 enum usb_dr_mode mode);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100264};
265
Marek Vasutd0f7a052022-04-13 00:42:56 +0200266void dwc3_imx8mp_glue_configure(struct udevice *dev, int index,
267 enum usb_dr_mode mode)
268{
269/* USB glue registers */
270#define USB_CTRL0 0x00
271#define USB_CTRL1 0x04
272
273#define USB_CTRL0_PORTPWR_EN BIT(12) /* 1 - PPC enabled (default) */
274#define USB_CTRL0_USB3_FIXED BIT(22) /* 1 - USB3 permanent attached */
275#define USB_CTRL0_USB2_FIXED BIT(23) /* 1 - USB2 permanent attached */
276
277#define USB_CTRL1_OC_POLARITY BIT(16) /* 0 - HIGH / 1 - LOW */
278#define USB_CTRL1_PWR_POLARITY BIT(17) /* 0 - HIGH / 1 - LOW */
279 fdt_addr_t regs = dev_read_addr_index(dev, 1);
280 void *base = map_physmem(regs, 0x8, MAP_NOCACHE);
281 u32 value;
282
283 value = readl(base + USB_CTRL0);
284
285 if (dev_read_bool(dev, "fsl,permanently-attached"))
286 value |= (USB_CTRL0_USB2_FIXED | USB_CTRL0_USB3_FIXED);
287 else
288 value &= ~(USB_CTRL0_USB2_FIXED | USB_CTRL0_USB3_FIXED);
289
290 if (dev_read_bool(dev, "fsl,disable-port-power-control"))
291 value &= ~(USB_CTRL0_PORTPWR_EN);
292 else
293 value |= USB_CTRL0_PORTPWR_EN;
294
295 writel(value, base + USB_CTRL0);
296
297 value = readl(base + USB_CTRL1);
298 if (dev_read_bool(dev, "fsl,over-current-active-low"))
299 value |= USB_CTRL1_OC_POLARITY;
300 else
301 value &= ~USB_CTRL1_OC_POLARITY;
302
303 if (dev_read_bool(dev, "fsl,power-active-low"))
304 value |= USB_CTRL1_PWR_POLARITY;
305 else
306 value &= ~USB_CTRL1_PWR_POLARITY;
307
308 writel(value, base + USB_CTRL1);
309
310 unmap_physmem(base, MAP_NOCACHE);
311}
312
313struct dwc3_glue_ops imx8mp_ops = {
314 .glue_configure = dwc3_imx8mp_glue_configure,
315};
316
Marek Vasutf1ef9552022-04-13 00:42:55 +0200317void dwc3_ti_glue_configure(struct udevice *dev, int index,
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100318 enum usb_dr_mode mode)
319{
320#define USBOTGSS_UTMI_OTG_STATUS 0x0084
321#define USBOTGSS_UTMI_OTG_OFFSET 0x0480
322
323/* UTMI_OTG_STATUS REGISTER */
324#define USBOTGSS_UTMI_OTG_STATUS_SW_MODE BIT(31)
325#define USBOTGSS_UTMI_OTG_STATUS_POWERPRESENT BIT(9)
326#define USBOTGSS_UTMI_OTG_STATUS_TXBITSTUFFENABLE BIT(8)
327#define USBOTGSS_UTMI_OTG_STATUS_IDDIG BIT(4)
328#define USBOTGSS_UTMI_OTG_STATUS_SESSEND BIT(3)
329#define USBOTGSS_UTMI_OTG_STATUS_SESSVALID BIT(2)
330#define USBOTGSS_UTMI_OTG_STATUS_VBUSVALID BIT(1)
331enum dwc3_omap_utmi_mode {
332 DWC3_OMAP_UTMI_MODE_UNKNOWN = 0,
333 DWC3_OMAP_UTMI_MODE_HW,
334 DWC3_OMAP_UTMI_MODE_SW,
335};
336
337 u32 use_id_pin;
338 u32 host_mode;
339 u32 reg;
340 u32 utmi_mode;
341 u32 utmi_status_offset = USBOTGSS_UTMI_OTG_STATUS;
342
Simon Glassc69cda22020-12-03 16:55:20 -0700343 struct dwc3_glue_data *glue = dev_get_plat(dev);
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100344 void *base = map_physmem(glue->regs, 0x10000, MAP_NOCACHE);
345
346 if (device_is_compatible(dev, "ti,am437x-dwc3"))
347 utmi_status_offset += USBOTGSS_UTMI_OTG_OFFSET;
348
349 utmi_mode = dev_read_u32_default(dev, "utmi-mode",
350 DWC3_OMAP_UTMI_MODE_UNKNOWN);
351 if (utmi_mode != DWC3_OMAP_UTMI_MODE_HW) {
352 debug("%s: OTG is not supported. defaulting to PERIPHERAL\n",
353 dev->name);
354 mode = USB_DR_MODE_PERIPHERAL;
355 }
356
357 switch (mode) {
358 case USB_DR_MODE_PERIPHERAL:
359 use_id_pin = 0;
360 host_mode = 0;
361 break;
362 case USB_DR_MODE_HOST:
363 use_id_pin = 0;
364 host_mode = 1;
365 break;
366 case USB_DR_MODE_OTG:
367 default:
368 use_id_pin = 1;
369 host_mode = 0;
370 break;
371 }
372
373 reg = readl(base + utmi_status_offset);
374
375 reg &= ~(USBOTGSS_UTMI_OTG_STATUS_SW_MODE);
376 if (!use_id_pin)
377 reg |= USBOTGSS_UTMI_OTG_STATUS_SW_MODE;
378
379 writel(reg, base + utmi_status_offset);
380
381 reg &= ~(USBOTGSS_UTMI_OTG_STATUS_SESSEND |
382 USBOTGSS_UTMI_OTG_STATUS_VBUSVALID |
383 USBOTGSS_UTMI_OTG_STATUS_IDDIG);
384
385 reg |= USBOTGSS_UTMI_OTG_STATUS_SESSVALID |
386 USBOTGSS_UTMI_OTG_STATUS_POWERPRESENT;
387
388 if (!host_mode)
389 reg |= USBOTGSS_UTMI_OTG_STATUS_IDDIG |
390 USBOTGSS_UTMI_OTG_STATUS_VBUSVALID;
391
392 writel(reg, base + utmi_status_offset);
393
394 unmap_physmem(base, MAP_NOCACHE);
395}
396
397struct dwc3_glue_ops ti_ops = {
Marek Vasutf1ef9552022-04-13 00:42:55 +0200398 .glue_configure = dwc3_ti_glue_configure,
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100399};
400
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100401static int dwc3_glue_bind(struct udevice *parent)
Michal Simek49d67452018-05-18 13:15:06 +0200402{
Kever Yangac28e592020-03-04 08:59:50 +0800403 ofnode node;
Michal Simek49d67452018-05-18 13:15:06 +0200404 int ret;
Angus Ainsliec08db052022-02-02 15:08:54 -0800405 enum usb_dr_mode dr_mode;
406
407 dr_mode = usb_get_dr_mode(dev_ofnode(parent));
Michal Simek49d67452018-05-18 13:15:06 +0200408
Simon Glassf10643c2020-12-19 10:40:14 -0700409 ofnode_for_each_subnode(node, dev_ofnode(parent)) {
Kever Yangac28e592020-03-04 08:59:50 +0800410 const char *name = ofnode_get_name(node);
Michal Simek49d67452018-05-18 13:15:06 +0200411 struct udevice *dev;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100412 const char *driver = NULL;
Michal Simek49d67452018-05-18 13:15:06 +0200413
414 debug("%s: subnode name: %s\n", __func__, name);
Michal Simek49d67452018-05-18 13:15:06 +0200415
Angus Ainsliec08db052022-02-02 15:08:54 -0800416 /* if the parent node doesn't have a mode check the leaf */
417 if (!dr_mode)
418 dr_mode = usb_get_dr_mode(node);
Michal Simek49d67452018-05-18 13:15:06 +0200419
420 switch (dr_mode) {
421 case USB_DR_MODE_PERIPHERAL:
422 case USB_DR_MODE_OTG:
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100423#if CONFIG_IS_ENABLED(DM_USB_GADGET)
Michal Simek49d67452018-05-18 13:15:06 +0200424 debug("%s: dr_mode: OTG or Peripheral\n", __func__);
425 driver = "dwc3-generic-peripheral";
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100426#endif
Michal Simek49d67452018-05-18 13:15:06 +0200427 break;
Simon Glass333e4a62021-07-10 21:14:29 -0600428#if defined(CONFIG_SPL_USB_HOST) || !defined(CONFIG_SPL_BUILD)
Michal Simek49d67452018-05-18 13:15:06 +0200429 case USB_DR_MODE_HOST:
430 debug("%s: dr_mode: HOST\n", __func__);
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200431 driver = "dwc3-generic-host";
Michal Simek49d67452018-05-18 13:15:06 +0200432 break;
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200433#endif
Michal Simek49d67452018-05-18 13:15:06 +0200434 default:
435 debug("%s: unsupported dr_mode\n", __func__);
436 return -ENODEV;
437 };
438
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100439 if (!driver)
440 continue;
441
Michal Simek49d67452018-05-18 13:15:06 +0200442 ret = device_bind_driver_to_node(parent, driver, name,
Kever Yangac28e592020-03-04 08:59:50 +0800443 node, &dev);
Michal Simek49d67452018-05-18 13:15:06 +0200444 if (ret) {
445 debug("%s: not able to bind usb device mode\n",
446 __func__);
447 return ret;
448 }
449 }
450
451 return 0;
452}
453
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100454static int dwc3_glue_reset_init(struct udevice *dev,
455 struct dwc3_glue_data *glue)
456{
457 int ret;
458
459 ret = reset_get_bulk(dev, &glue->resets);
Vignesh Raghavendrad6244342019-10-25 13:48:05 +0530460 if (ret == -ENOTSUPP || ret == -ENOENT)
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100461 return 0;
462 else if (ret)
463 return ret;
464
465 ret = reset_deassert_bulk(&glue->resets);
466 if (ret) {
467 reset_release_bulk(&glue->resets);
468 return ret;
469 }
470
471 return 0;
472}
473
474static int dwc3_glue_clk_init(struct udevice *dev,
475 struct dwc3_glue_data *glue)
476{
477 int ret;
478
479 ret = clk_get_bulk(dev, &glue->clks);
Vignesh Raghavendrad6244342019-10-25 13:48:05 +0530480 if (ret == -ENOSYS || ret == -ENOENT)
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100481 return 0;
482 if (ret)
483 return ret;
484
485#if CONFIG_IS_ENABLED(CLK)
486 ret = clk_enable_bulk(&glue->clks);
487 if (ret) {
488 clk_release_bulk(&glue->clks);
489 return ret;
490 }
491#endif
492
493 return 0;
494}
495
496static int dwc3_glue_probe(struct udevice *dev)
497{
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100498 struct dwc3_glue_ops *ops = (struct dwc3_glue_ops *)dev_get_driver_data(dev);
Simon Glassc69cda22020-12-03 16:55:20 -0700499 struct dwc3_glue_data *glue = dev_get_plat(dev);
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100500 struct udevice *child = NULL;
501 int index = 0;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100502 int ret;
Michal Simek142d50f2022-03-09 10:05:45 +0100503 struct phy phy;
504
505 ret = generic_phy_get_by_name(dev, "usb3-phy", &phy);
506 if (!ret) {
507 ret = generic_phy_init(&phy);
508 if (ret)
509 return ret;
Jan Kiszka868d58f2022-04-25 13:26:45 +0200510 } else if (ret != -ENOENT && ret != -ENODATA) {
Michal Simek142d50f2022-03-09 10:05:45 +0100511 debug("could not get phy (err %d)\n", ret);
512 return ret;
Jan Kiszka868d58f2022-04-25 13:26:45 +0200513 } else {
514 phy.dev = NULL;
Michal Simek142d50f2022-03-09 10:05:45 +0100515 }
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100516
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100517 glue->regs = dev_read_addr(dev);
518
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100519 ret = dwc3_glue_clk_init(dev, glue);
520 if (ret)
521 return ret;
522
523 ret = dwc3_glue_reset_init(dev, glue);
524 if (ret)
525 return ret;
526
Michal Simek142d50f2022-03-09 10:05:45 +0100527 if (phy.dev) {
528 ret = generic_phy_power_on(&phy);
529 if (ret)
530 return ret;
531 }
532
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100533 ret = device_find_first_child(dev, &child);
534 if (ret)
535 return ret;
536
Frank Wang5d422ab2020-05-26 11:34:31 +0800537 if (glue->resets.count == 0) {
538 ret = dwc3_glue_reset_init(child, glue);
539 if (ret)
540 return ret;
541 }
542
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100543 while (child) {
544 enum usb_dr_mode dr_mode;
545
Simon Glassf10643c2020-12-19 10:40:14 -0700546 dr_mode = usb_get_dr_mode(dev_ofnode(child));
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100547 device_find_next_child(&child);
Marek Vasutf1ef9552022-04-13 00:42:55 +0200548 if (ops && ops->glue_configure)
549 ops->glue_configure(dev, index, dr_mode);
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100550 index++;
551 }
552
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100553 return 0;
554}
555
556static int dwc3_glue_remove(struct udevice *dev)
557{
Simon Glassc69cda22020-12-03 16:55:20 -0700558 struct dwc3_glue_data *glue = dev_get_plat(dev);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100559
560 reset_release_bulk(&glue->resets);
561
562 clk_release_bulk(&glue->clks);
563
Jean-Jacques Hiblote445d462019-07-05 09:33:56 +0200564 return 0;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100565}
566
567static const struct udevice_id dwc3_glue_ids[] = {
Michal Simek49d67452018-05-18 13:15:06 +0200568 { .compatible = "xlnx,zynqmp-dwc3" },
Siva Durga Prasad Paladugu648856a2020-05-12 08:36:01 +0200569 { .compatible = "xlnx,versal-dwc3" },
Jean-Jacques Hiblot1c03ade2018-12-04 11:12:56 +0100570 { .compatible = "ti,keystone-dwc3"},
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100571 { .compatible = "ti,dwc3", .data = (ulong)&ti_ops },
Jean-Jacques Hiblot1ce5f1f2018-12-04 11:30:50 +0100572 { .compatible = "ti,am437x-dwc3", .data = (ulong)&ti_ops },
Vignesh Raghavendracab4e272019-12-09 10:37:29 +0530573 { .compatible = "ti,am654-dwc3" },
Frank Wang5d422ab2020-05-26 11:34:31 +0800574 { .compatible = "rockchip,rk3328-dwc3" },
575 { .compatible = "rockchip,rk3399-dwc3" },
Robert Marko74a703a2020-09-10 16:00:05 +0200576 { .compatible = "qcom,dwc3" },
Marek Vasutd0f7a052022-04-13 00:42:56 +0200577 { .compatible = "fsl,imx8mp-dwc3", .data = (ulong)&imx8mp_ops },
Angus Ainsliec08db052022-02-02 15:08:54 -0800578 { .compatible = "fsl,imx8mq-dwc3" },
Andy Shevchenko23cdbba2020-12-03 19:45:01 +0200579 { .compatible = "intel,tangier-dwc3" },
Michal Simek49d67452018-05-18 13:15:06 +0200580 { }
581};
582
583U_BOOT_DRIVER(dwc3_generic_wrapper) = {
584 .name = "dwc3-generic-wrapper",
Jean-Jacques Hiblot3b838292019-07-05 09:33:58 +0200585 .id = UCLASS_NOP,
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100586 .of_match = dwc3_glue_ids,
587 .bind = dwc3_glue_bind,
588 .probe = dwc3_glue_probe,
589 .remove = dwc3_glue_remove,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700590 .plat_auto = sizeof(struct dwc3_glue_data),
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100591
Michal Simek49d67452018-05-18 13:15:06 +0200592};