blob: c5310e465cbf463f99ca9d23425146d7e5617493 [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>
Michal Simek49d67452018-05-18 13:15:06 +020029
Frank Wang5d422ab2020-05-26 11:34:31 +080030struct dwc3_glue_data {
31 struct clk_bulk clks;
32 struct reset_ctl_bulk resets;
33 fdt_addr_t regs;
34};
35
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020036struct dwc3_generic_plat {
37 fdt_addr_t base;
38 u32 maximum_speed;
39 enum usb_dr_mode dr_mode;
40};
41
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020042struct dwc3_generic_priv {
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +020043 void *base;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010044 struct dwc3 dwc3;
Chunfeng Yun6dfb8a82020-05-02 11:35:13 +020045 struct phy_bulk phys;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010046};
47
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +020048struct dwc3_generic_host_priv {
49 struct xhci_ctrl xhci_ctrl;
50 struct dwc3_generic_priv gen_priv;
51};
52
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +020053static int dwc3_generic_probe(struct udevice *dev,
54 struct dwc3_generic_priv *priv)
Michal Simek49d67452018-05-18 13:15:06 +020055{
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010056 int rc;
Simon Glassc69cda22020-12-03 16:55:20 -070057 struct dwc3_generic_plat *plat = dev_get_plat(dev);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010058 struct dwc3 *dwc3 = &priv->dwc3;
Simon Glassc69cda22020-12-03 16:55:20 -070059 struct dwc3_glue_data *glue = dev_get_plat(dev->parent);
Michal Simek49d67452018-05-18 13:15:06 +020060
Jean-Jacques Hiblotba6c5f72019-09-11 11:33:52 +020061 dwc3->dev = dev;
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020062 dwc3->maximum_speed = plat->maximum_speed;
63 dwc3->dr_mode = plat->dr_mode;
Jean-Jacques Hiblotba6c5f72019-09-11 11:33:52 +020064#if CONFIG_IS_ENABLED(OF_CONTROL)
65 dwc3_of_parse(dwc3);
66#endif
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +020067
Frank Wang5d422ab2020-05-26 11:34:31 +080068 /*
69 * It must hold whole USB3.0 OTG controller in resetting to hold pipe
70 * power state in P2 before initializing TypeC PHY on RK3399 platform.
71 */
72 if (device_is_compatible(dev->parent, "rockchip,rk3399-dwc3")) {
73 reset_assert_bulk(&glue->resets);
74 udelay(1);
75 }
76
Chunfeng Yun6dfb8a82020-05-02 11:35:13 +020077 rc = dwc3_setup_phy(dev, &priv->phys);
Siva Durga Prasad Paladugue7f9e1f2020-10-21 14:17:31 +020078 if (rc && rc != -ENOTSUPP)
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010079 return rc;
80
Frank Wang5d422ab2020-05-26 11:34:31 +080081 if (device_is_compatible(dev->parent, "rockchip,rk3399-dwc3"))
82 reset_deassert_bulk(&glue->resets);
83
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +020084 priv->base = map_physmem(plat->base, DWC3_OTG_REGS_END, MAP_NOCACHE);
85 dwc3->regs = priv->base + DWC3_GLOBALS_REGS_START;
Jean-Jacques Hiblotba6c5f72019-09-11 11:33:52 +020086
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010087
88 rc = dwc3_init(dwc3);
89 if (rc) {
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +020090 unmap_physmem(priv->base, MAP_NOCACHE);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +010091 return rc;
92 }
93
94 return 0;
Michal Simek49d67452018-05-18 13:15:06 +020095}
96
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +020097static int dwc3_generic_remove(struct udevice *dev,
98 struct dwc3_generic_priv *priv)
Michal Simek49d67452018-05-18 13:15:06 +020099{
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100100 struct dwc3 *dwc3 = &priv->dwc3;
Michal Simek49d67452018-05-18 13:15:06 +0200101
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100102 dwc3_remove(dwc3);
Chunfeng Yun6dfb8a82020-05-02 11:35:13 +0200103 dwc3_shutdown_phy(dev, &priv->phys);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100104 unmap_physmem(dwc3->regs, MAP_NOCACHE);
Michal Simek49d67452018-05-18 13:15:06 +0200105
106 return 0;
107}
108
Simon Glassd1998a92020-12-03 16:55:21 -0700109static int dwc3_generic_of_to_plat(struct udevice *dev)
Michal Simek49d67452018-05-18 13:15:06 +0200110{
Simon Glassc69cda22020-12-03 16:55:20 -0700111 struct dwc3_generic_plat *plat = dev_get_plat(dev);
Simon Glassf10643c2020-12-19 10:40:14 -0700112 ofnode node = dev_ofnode(dev);
Michal Simek49d67452018-05-18 13:15:06 +0200113
Angus Ainsliec08db052022-02-02 15:08:54 -0800114 if (!strncmp(dev->name, "port", 4) || !strncmp(dev->name, "hub", 3)) {
115 /* This is a leaf so check the parent */
116 plat->base = dev_read_addr(dev->parent);
117 } else {
118 plat->base = dev_read_addr(dev);
119 }
Michal Simek49d67452018-05-18 13:15:06 +0200120
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +0200121 plat->maximum_speed = usb_get_maximum_speed(node);
122 if (plat->maximum_speed == USB_SPEED_UNKNOWN) {
Jean-Jacques Hiblot1a63e5e2019-09-11 11:33:51 +0200123 pr_info("No USB maximum speed specified. Using super speed\n");
124 plat->maximum_speed = USB_SPEED_SUPER;
Michal Simek49d67452018-05-18 13:15:06 +0200125 }
126
Jean-Jacques Hiblot3a38a0a2019-09-11 11:33:48 +0200127 plat->dr_mode = usb_get_dr_mode(node);
128 if (plat->dr_mode == USB_DR_MODE_UNKNOWN) {
Angus Ainsliec08db052022-02-02 15:08:54 -0800129 /* might be a leaf so check the parent for mode */
130 node = dev_ofnode(dev->parent);
131 plat->dr_mode = usb_get_dr_mode(node);
132 if (plat->dr_mode == USB_DR_MODE_UNKNOWN) {
133 pr_err("Invalid usb mode setup\n");
134 return -ENODEV;
135 }
Michal Simek49d67452018-05-18 13:15:06 +0200136 }
137
138 return 0;
139}
140
Jean-Jacques Hiblot1af590d2019-09-11 11:33:49 +0200141#if CONFIG_IS_ENABLED(DM_USB_GADGET)
142int dm_usb_gadget_handle_interrupts(struct udevice *dev)
143{
144 struct dwc3_generic_priv *priv = dev_get_priv(dev);
145 struct dwc3 *dwc3 = &priv->dwc3;
146
147 dwc3_gadget_uboot_handle_interrupt(dwc3);
148
149 return 0;
150}
151
152static int dwc3_generic_peripheral_probe(struct udevice *dev)
153{
154 struct dwc3_generic_priv *priv = dev_get_priv(dev);
155
156 return dwc3_generic_probe(dev, priv);
157}
158
159static int dwc3_generic_peripheral_remove(struct udevice *dev)
160{
161 struct dwc3_generic_priv *priv = dev_get_priv(dev);
162
163 return dwc3_generic_remove(dev, priv);
164}
165
Michal Simek49d67452018-05-18 13:15:06 +0200166U_BOOT_DRIVER(dwc3_generic_peripheral) = {
167 .name = "dwc3-generic-peripheral",
Jean-Jacques Hiblot01311622018-11-29 10:52:46 +0100168 .id = UCLASS_USB_GADGET_GENERIC,
Simon Glassd1998a92020-12-03 16:55:21 -0700169 .of_to_plat = dwc3_generic_of_to_plat,
Michal Simek49d67452018-05-18 13:15:06 +0200170 .probe = dwc3_generic_peripheral_probe,
171 .remove = dwc3_generic_peripheral_remove,
Simon Glass41575d82020-12-03 16:55:17 -0700172 .priv_auto = sizeof(struct dwc3_generic_priv),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700173 .plat_auto = sizeof(struct dwc3_generic_plat),
Michal Simek49d67452018-05-18 13:15:06 +0200174};
Jean-Jacques Hiblot687ab542018-11-29 10:52:42 +0100175#endif
Michal Simek49d67452018-05-18 13:15:06 +0200176
Simon Glass333e4a62021-07-10 21:14:29 -0600177#if defined(CONFIG_SPL_USB_HOST) || \
Kunihiko Hayashia5f9be12021-05-12 23:11:14 +0900178 !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_HOST)
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200179static int dwc3_generic_host_probe(struct udevice *dev)
180{
181 struct xhci_hcor *hcor;
182 struct xhci_hccr *hccr;
183 struct dwc3_generic_host_priv *priv = dev_get_priv(dev);
184 int rc;
185
186 rc = dwc3_generic_probe(dev, &priv->gen_priv);
187 if (rc)
188 return rc;
189
190 hccr = (struct xhci_hccr *)priv->gen_priv.base;
191 hcor = (struct xhci_hcor *)(priv->gen_priv.base +
192 HC_LENGTH(xhci_readl(&(hccr)->cr_capbase)));
193
194 return xhci_register(dev, hccr, hcor);
195}
196
197static int dwc3_generic_host_remove(struct udevice *dev)
198{
199 struct dwc3_generic_host_priv *priv = dev_get_priv(dev);
200 int rc;
201
202 rc = xhci_deregister(dev);
203 if (rc)
204 return rc;
205
206 return dwc3_generic_remove(dev, &priv->gen_priv);
207}
208
209U_BOOT_DRIVER(dwc3_generic_host) = {
210 .name = "dwc3-generic-host",
211 .id = UCLASS_USB,
Simon Glassd1998a92020-12-03 16:55:21 -0700212 .of_to_plat = dwc3_generic_of_to_plat,
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200213 .probe = dwc3_generic_host_probe,
214 .remove = dwc3_generic_host_remove,
Simon Glass41575d82020-12-03 16:55:17 -0700215 .priv_auto = sizeof(struct dwc3_generic_host_priv),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700216 .plat_auto = sizeof(struct dwc3_generic_plat),
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200217 .ops = &xhci_usb_ops,
218 .flags = DM_FLAG_ALLOC_PRIV_DMA,
219};
220#endif
221
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100222struct dwc3_glue_ops {
Marek Vasutf1ef9552022-04-13 00:42:55 +0200223 void (*glue_configure)(struct udevice *dev, int index,
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100224 enum usb_dr_mode mode);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100225};
226
Marek Vasutd0f7a052022-04-13 00:42:56 +0200227void dwc3_imx8mp_glue_configure(struct udevice *dev, int index,
228 enum usb_dr_mode mode)
229{
230/* USB glue registers */
231#define USB_CTRL0 0x00
232#define USB_CTRL1 0x04
233
234#define USB_CTRL0_PORTPWR_EN BIT(12) /* 1 - PPC enabled (default) */
235#define USB_CTRL0_USB3_FIXED BIT(22) /* 1 - USB3 permanent attached */
236#define USB_CTRL0_USB2_FIXED BIT(23) /* 1 - USB2 permanent attached */
237
238#define USB_CTRL1_OC_POLARITY BIT(16) /* 0 - HIGH / 1 - LOW */
239#define USB_CTRL1_PWR_POLARITY BIT(17) /* 0 - HIGH / 1 - LOW */
240 fdt_addr_t regs = dev_read_addr_index(dev, 1);
241 void *base = map_physmem(regs, 0x8, MAP_NOCACHE);
242 u32 value;
243
244 value = readl(base + USB_CTRL0);
245
246 if (dev_read_bool(dev, "fsl,permanently-attached"))
247 value |= (USB_CTRL0_USB2_FIXED | USB_CTRL0_USB3_FIXED);
248 else
249 value &= ~(USB_CTRL0_USB2_FIXED | USB_CTRL0_USB3_FIXED);
250
251 if (dev_read_bool(dev, "fsl,disable-port-power-control"))
252 value &= ~(USB_CTRL0_PORTPWR_EN);
253 else
254 value |= USB_CTRL0_PORTPWR_EN;
255
256 writel(value, base + USB_CTRL0);
257
258 value = readl(base + USB_CTRL1);
259 if (dev_read_bool(dev, "fsl,over-current-active-low"))
260 value |= USB_CTRL1_OC_POLARITY;
261 else
262 value &= ~USB_CTRL1_OC_POLARITY;
263
264 if (dev_read_bool(dev, "fsl,power-active-low"))
265 value |= USB_CTRL1_PWR_POLARITY;
266 else
267 value &= ~USB_CTRL1_PWR_POLARITY;
268
269 writel(value, base + USB_CTRL1);
270
271 unmap_physmem(base, MAP_NOCACHE);
272}
273
274struct dwc3_glue_ops imx8mp_ops = {
275 .glue_configure = dwc3_imx8mp_glue_configure,
276};
277
Marek Vasutf1ef9552022-04-13 00:42:55 +0200278void dwc3_ti_glue_configure(struct udevice *dev, int index,
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100279 enum usb_dr_mode mode)
280{
281#define USBOTGSS_UTMI_OTG_STATUS 0x0084
282#define USBOTGSS_UTMI_OTG_OFFSET 0x0480
283
284/* UTMI_OTG_STATUS REGISTER */
285#define USBOTGSS_UTMI_OTG_STATUS_SW_MODE BIT(31)
286#define USBOTGSS_UTMI_OTG_STATUS_POWERPRESENT BIT(9)
287#define USBOTGSS_UTMI_OTG_STATUS_TXBITSTUFFENABLE BIT(8)
288#define USBOTGSS_UTMI_OTG_STATUS_IDDIG BIT(4)
289#define USBOTGSS_UTMI_OTG_STATUS_SESSEND BIT(3)
290#define USBOTGSS_UTMI_OTG_STATUS_SESSVALID BIT(2)
291#define USBOTGSS_UTMI_OTG_STATUS_VBUSVALID BIT(1)
292enum dwc3_omap_utmi_mode {
293 DWC3_OMAP_UTMI_MODE_UNKNOWN = 0,
294 DWC3_OMAP_UTMI_MODE_HW,
295 DWC3_OMAP_UTMI_MODE_SW,
296};
297
298 u32 use_id_pin;
299 u32 host_mode;
300 u32 reg;
301 u32 utmi_mode;
302 u32 utmi_status_offset = USBOTGSS_UTMI_OTG_STATUS;
303
Simon Glassc69cda22020-12-03 16:55:20 -0700304 struct dwc3_glue_data *glue = dev_get_plat(dev);
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100305 void *base = map_physmem(glue->regs, 0x10000, MAP_NOCACHE);
306
307 if (device_is_compatible(dev, "ti,am437x-dwc3"))
308 utmi_status_offset += USBOTGSS_UTMI_OTG_OFFSET;
309
310 utmi_mode = dev_read_u32_default(dev, "utmi-mode",
311 DWC3_OMAP_UTMI_MODE_UNKNOWN);
312 if (utmi_mode != DWC3_OMAP_UTMI_MODE_HW) {
313 debug("%s: OTG is not supported. defaulting to PERIPHERAL\n",
314 dev->name);
315 mode = USB_DR_MODE_PERIPHERAL;
316 }
317
318 switch (mode) {
319 case USB_DR_MODE_PERIPHERAL:
320 use_id_pin = 0;
321 host_mode = 0;
322 break;
323 case USB_DR_MODE_HOST:
324 use_id_pin = 0;
325 host_mode = 1;
326 break;
327 case USB_DR_MODE_OTG:
328 default:
329 use_id_pin = 1;
330 host_mode = 0;
331 break;
332 }
333
334 reg = readl(base + utmi_status_offset);
335
336 reg &= ~(USBOTGSS_UTMI_OTG_STATUS_SW_MODE);
337 if (!use_id_pin)
338 reg |= USBOTGSS_UTMI_OTG_STATUS_SW_MODE;
339
340 writel(reg, base + utmi_status_offset);
341
342 reg &= ~(USBOTGSS_UTMI_OTG_STATUS_SESSEND |
343 USBOTGSS_UTMI_OTG_STATUS_VBUSVALID |
344 USBOTGSS_UTMI_OTG_STATUS_IDDIG);
345
346 reg |= USBOTGSS_UTMI_OTG_STATUS_SESSVALID |
347 USBOTGSS_UTMI_OTG_STATUS_POWERPRESENT;
348
349 if (!host_mode)
350 reg |= USBOTGSS_UTMI_OTG_STATUS_IDDIG |
351 USBOTGSS_UTMI_OTG_STATUS_VBUSVALID;
352
353 writel(reg, base + utmi_status_offset);
354
355 unmap_physmem(base, MAP_NOCACHE);
356}
357
358struct dwc3_glue_ops ti_ops = {
Marek Vasutf1ef9552022-04-13 00:42:55 +0200359 .glue_configure = dwc3_ti_glue_configure,
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100360};
361
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100362static int dwc3_glue_bind(struct udevice *parent)
Michal Simek49d67452018-05-18 13:15:06 +0200363{
Kever Yangac28e592020-03-04 08:59:50 +0800364 ofnode node;
Michal Simek49d67452018-05-18 13:15:06 +0200365 int ret;
Angus Ainsliec08db052022-02-02 15:08:54 -0800366 enum usb_dr_mode dr_mode;
367
368 dr_mode = usb_get_dr_mode(dev_ofnode(parent));
Michal Simek49d67452018-05-18 13:15:06 +0200369
Simon Glassf10643c2020-12-19 10:40:14 -0700370 ofnode_for_each_subnode(node, dev_ofnode(parent)) {
Kever Yangac28e592020-03-04 08:59:50 +0800371 const char *name = ofnode_get_name(node);
Michal Simek49d67452018-05-18 13:15:06 +0200372 struct udevice *dev;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100373 const char *driver = NULL;
Michal Simek49d67452018-05-18 13:15:06 +0200374
375 debug("%s: subnode name: %s\n", __func__, name);
Michal Simek49d67452018-05-18 13:15:06 +0200376
Angus Ainsliec08db052022-02-02 15:08:54 -0800377 /* if the parent node doesn't have a mode check the leaf */
378 if (!dr_mode)
379 dr_mode = usb_get_dr_mode(node);
Michal Simek49d67452018-05-18 13:15:06 +0200380
381 switch (dr_mode) {
382 case USB_DR_MODE_PERIPHERAL:
383 case USB_DR_MODE_OTG:
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100384#if CONFIG_IS_ENABLED(DM_USB_GADGET)
Michal Simek49d67452018-05-18 13:15:06 +0200385 debug("%s: dr_mode: OTG or Peripheral\n", __func__);
386 driver = "dwc3-generic-peripheral";
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100387#endif
Michal Simek49d67452018-05-18 13:15:06 +0200388 break;
Simon Glass333e4a62021-07-10 21:14:29 -0600389#if defined(CONFIG_SPL_USB_HOST) || !defined(CONFIG_SPL_BUILD)
Michal Simek49d67452018-05-18 13:15:06 +0200390 case USB_DR_MODE_HOST:
391 debug("%s: dr_mode: HOST\n", __func__);
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200392 driver = "dwc3-generic-host";
Michal Simek49d67452018-05-18 13:15:06 +0200393 break;
Jean-Jacques Hiblotb575e902019-09-11 11:33:50 +0200394#endif
Michal Simek49d67452018-05-18 13:15:06 +0200395 default:
396 debug("%s: unsupported dr_mode\n", __func__);
397 return -ENODEV;
398 };
399
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100400 if (!driver)
401 continue;
402
Michal Simek49d67452018-05-18 13:15:06 +0200403 ret = device_bind_driver_to_node(parent, driver, name,
Kever Yangac28e592020-03-04 08:59:50 +0800404 node, &dev);
Michal Simek49d67452018-05-18 13:15:06 +0200405 if (ret) {
406 debug("%s: not able to bind usb device mode\n",
407 __func__);
408 return ret;
409 }
410 }
411
412 return 0;
413}
414
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100415static int dwc3_glue_reset_init(struct udevice *dev,
416 struct dwc3_glue_data *glue)
417{
418 int ret;
419
420 ret = reset_get_bulk(dev, &glue->resets);
Vignesh Raghavendrad6244342019-10-25 13:48:05 +0530421 if (ret == -ENOTSUPP || ret == -ENOENT)
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100422 return 0;
423 else if (ret)
424 return ret;
425
426 ret = reset_deassert_bulk(&glue->resets);
427 if (ret) {
428 reset_release_bulk(&glue->resets);
429 return ret;
430 }
431
432 return 0;
433}
434
435static int dwc3_glue_clk_init(struct udevice *dev,
436 struct dwc3_glue_data *glue)
437{
438 int ret;
439
440 ret = clk_get_bulk(dev, &glue->clks);
Vignesh Raghavendrad6244342019-10-25 13:48:05 +0530441 if (ret == -ENOSYS || ret == -ENOENT)
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100442 return 0;
443 if (ret)
444 return ret;
445
446#if CONFIG_IS_ENABLED(CLK)
447 ret = clk_enable_bulk(&glue->clks);
448 if (ret) {
449 clk_release_bulk(&glue->clks);
450 return ret;
451 }
452#endif
453
454 return 0;
455}
456
457static int dwc3_glue_probe(struct udevice *dev)
458{
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100459 struct dwc3_glue_ops *ops = (struct dwc3_glue_ops *)dev_get_driver_data(dev);
Simon Glassc69cda22020-12-03 16:55:20 -0700460 struct dwc3_glue_data *glue = dev_get_plat(dev);
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100461 struct udevice *child = NULL;
462 int index = 0;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100463 int ret;
Michal Simek142d50f2022-03-09 10:05:45 +0100464 struct phy phy;
465
466 ret = generic_phy_get_by_name(dev, "usb3-phy", &phy);
467 if (!ret) {
468 ret = generic_phy_init(&phy);
469 if (ret)
470 return ret;
Jan Kiszka868d58f2022-04-25 13:26:45 +0200471 } else if (ret != -ENOENT && ret != -ENODATA) {
Michal Simek142d50f2022-03-09 10:05:45 +0100472 debug("could not get phy (err %d)\n", ret);
473 return ret;
Jan Kiszka868d58f2022-04-25 13:26:45 +0200474 } else {
475 phy.dev = NULL;
Michal Simek142d50f2022-03-09 10:05:45 +0100476 }
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100477
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100478 glue->regs = dev_read_addr(dev);
479
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100480 ret = dwc3_glue_clk_init(dev, glue);
481 if (ret)
482 return ret;
483
484 ret = dwc3_glue_reset_init(dev, glue);
485 if (ret)
486 return ret;
487
Michal Simek142d50f2022-03-09 10:05:45 +0100488 if (phy.dev) {
489 ret = generic_phy_power_on(&phy);
490 if (ret)
491 return ret;
492 }
493
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100494 ret = device_find_first_child(dev, &child);
495 if (ret)
496 return ret;
497
Frank Wang5d422ab2020-05-26 11:34:31 +0800498 if (glue->resets.count == 0) {
499 ret = dwc3_glue_reset_init(child, glue);
500 if (ret)
501 return ret;
502 }
503
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100504 while (child) {
505 enum usb_dr_mode dr_mode;
506
Simon Glassf10643c2020-12-19 10:40:14 -0700507 dr_mode = usb_get_dr_mode(dev_ofnode(child));
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100508 device_find_next_child(&child);
Marek Vasutf1ef9552022-04-13 00:42:55 +0200509 if (ops && ops->glue_configure)
510 ops->glue_configure(dev, index, dr_mode);
Jean-Jacques Hiblot93991cf2018-11-29 10:52:49 +0100511 index++;
512 }
513
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100514 return 0;
515}
516
517static int dwc3_glue_remove(struct udevice *dev)
518{
Simon Glassc69cda22020-12-03 16:55:20 -0700519 struct dwc3_glue_data *glue = dev_get_plat(dev);
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100520
521 reset_release_bulk(&glue->resets);
522
523 clk_release_bulk(&glue->clks);
524
Jean-Jacques Hiblote445d462019-07-05 09:33:56 +0200525 return 0;
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100526}
527
528static const struct udevice_id dwc3_glue_ids[] = {
Michal Simek49d67452018-05-18 13:15:06 +0200529 { .compatible = "xlnx,zynqmp-dwc3" },
Siva Durga Prasad Paladugu648856a2020-05-12 08:36:01 +0200530 { .compatible = "xlnx,versal-dwc3" },
Jean-Jacques Hiblot1c03ade2018-12-04 11:12:56 +0100531 { .compatible = "ti,keystone-dwc3"},
Jean-Jacques Hiblotd66e54a2018-11-29 10:57:40 +0100532 { .compatible = "ti,dwc3", .data = (ulong)&ti_ops },
Jean-Jacques Hiblot1ce5f1f2018-12-04 11:30:50 +0100533 { .compatible = "ti,am437x-dwc3", .data = (ulong)&ti_ops },
Vignesh Raghavendracab4e272019-12-09 10:37:29 +0530534 { .compatible = "ti,am654-dwc3" },
Frank Wang5d422ab2020-05-26 11:34:31 +0800535 { .compatible = "rockchip,rk3328-dwc3" },
536 { .compatible = "rockchip,rk3399-dwc3" },
Robert Marko74a703a2020-09-10 16:00:05 +0200537 { .compatible = "qcom,dwc3" },
Marek Vasutd0f7a052022-04-13 00:42:56 +0200538 { .compatible = "fsl,imx8mp-dwc3", .data = (ulong)&imx8mp_ops },
Angus Ainsliec08db052022-02-02 15:08:54 -0800539 { .compatible = "fsl,imx8mq-dwc3" },
Andy Shevchenko23cdbba2020-12-03 19:45:01 +0200540 { .compatible = "intel,tangier-dwc3" },
Michal Simek49d67452018-05-18 13:15:06 +0200541 { }
542};
543
544U_BOOT_DRIVER(dwc3_generic_wrapper) = {
545 .name = "dwc3-generic-wrapper",
Jean-Jacques Hiblot3b838292019-07-05 09:33:58 +0200546 .id = UCLASS_NOP,
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100547 .of_match = dwc3_glue_ids,
548 .bind = dwc3_glue_bind,
549 .probe = dwc3_glue_probe,
550 .remove = dwc3_glue_remove,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700551 .plat_auto = sizeof(struct dwc3_glue_data),
Jean-Jacques Hiblot446e3a22018-11-29 10:52:48 +0100552
Michal Simek49d67452018-05-18 13:15:06 +0200553};