blob: 37b59c80fd82b7a063f72105cbcfcaf0b1b01d72 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +05302/*
3 * Copyright 2015 Freescale Semiconductor, Inc.
4 *
5 * DWC3 controller driver
6 *
7 * Author: Ramneek Mehresh<ramneek.mehresh@freescale.com>
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +05308 */
9
10#include <common.h>
Patrice Chotardc7eadfc2017-07-18 11:38:40 +020011#include <dm.h>
Patrice Chotardecfafba2017-07-18 11:38:44 +020012#include <generic-phy.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Patrice Chotardc7eadfc2017-07-18 11:38:40 +020014#include <usb.h>
Jean-Jacques Hiblot3de978a2018-11-29 10:52:45 +010015#include <dwc3-uboot.h>
Patrice Chotardc7eadfc2017-07-18 11:38:40 +020016
Jean-Jacques Hiblotad4142b2019-09-11 11:33:46 +020017#include <usb/xhci.h>
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053018#include <asm/io.h>
19#include <linux/usb/dwc3.h>
Patrice Chotard17b08872017-07-18 11:38:41 +020020#include <linux/usb/otg.h>
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053021
Patrice Chotardecfafba2017-07-18 11:38:44 +020022struct xhci_dwc3_platdata {
developerf8bced12020-05-02 11:35:13 +020023 struct phy_bulk *usb_phys;
Patrice Chotardecfafba2017-07-18 11:38:44 +020024};
25
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053026void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode)
27{
28 clrsetbits_le32(&dwc3_reg->g_ctl,
29 DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG),
30 DWC3_GCTL_PRTCAPDIR(mode));
31}
32
Masahiro Yamada6d8e4332017-06-22 16:35:14 +090033static void dwc3_phy_reset(struct dwc3 *dwc3_reg)
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053034{
35 /* Assert USB3 PHY reset */
36 setbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST);
37
38 /* Assert USB2 PHY reset */
39 setbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST);
40
41 mdelay(100);
42
43 /* Clear USB3 PHY reset */
44 clrbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST);
45
46 /* Clear USB2 PHY reset */
47 clrbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST);
48}
49
50void dwc3_core_soft_reset(struct dwc3 *dwc3_reg)
51{
52 /* Before Resetting PHY, put Core in Reset */
53 setbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
54
55 /* reset USB3 phy - if required */
56 dwc3_phy_reset(dwc3_reg);
57
Rajesh Bhagat295d0272015-12-02 11:44:27 +053058 mdelay(100);
59
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053060 /* After PHYs are stable we can take Core out of reset state */
61 clrbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
62}
63
64int dwc3_core_init(struct dwc3 *dwc3_reg)
65{
66 u32 reg;
67 u32 revision;
68 unsigned int dwc3_hwparams1;
69
70 revision = readl(&dwc3_reg->g_snpsid);
71 /* This should read as U3 followed by revision number */
72 if ((revision & DWC3_GSNPSID_MASK) != 0x55330000) {
73 puts("this is not a DesignWare USB3 DRD Core\n");
74 return -1;
75 }
76
77 dwc3_core_soft_reset(dwc3_reg);
78
79 dwc3_hwparams1 = readl(&dwc3_reg->g_hwparams1);
80
81 reg = readl(&dwc3_reg->g_ctl);
82 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
83 reg &= ~DWC3_GCTL_DISSCRAMBLE;
84 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc3_hwparams1)) {
85 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
86 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
87 break;
88 default:
89 debug("No power optimization available\n");
90 }
91
92 /*
93 * WORKAROUND: DWC3 revisions <1.90a have a bug
94 * where the device can fail to connect at SuperSpeed
95 * and falls back to high-speed mode which causes
96 * the device to enter a Connect/Disconnect loop
97 */
98 if ((revision & DWC3_REVISION_MASK) < 0x190a)
99 reg |= DWC3_GCTL_U2RSTECN;
100
101 writel(reg, &dwc3_reg->g_ctl);
102
103 return 0;
104}
Nikhil Badola807babb2015-06-23 09:17:49 +0530105
106void dwc3_set_fladj(struct dwc3 *dwc3_reg, u32 val)
107{
108 setbits_le32(&dwc3_reg->g_fladj, GFLADJ_30MHZ_REG_SEL |
109 GFLADJ_30MHZ(val));
110}
Patrice Chotardc7eadfc2017-07-18 11:38:40 +0200111
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +0100112#if CONFIG_IS_ENABLED(DM_USB)
Vignesh Rd52f8a3e92018-03-07 14:50:09 +0530113static int xhci_dwc3_probe(struct udevice *dev)
114{
Vignesh Rd52f8a3e92018-03-07 14:50:09 +0530115 struct xhci_hcor *hcor;
116 struct xhci_hccr *hccr;
117 struct dwc3 *dwc3_reg;
118 enum usb_dr_mode dr_mode;
Jean-Jacques Hiblot3de978a2018-11-29 10:52:45 +0100119 struct xhci_dwc3_platdata *plat = dev_get_platdata(dev);
Mark Kettenisb2bb6222019-06-30 18:01:55 +0200120 const char *phy;
121 u32 reg;
Vignesh Rd52f8a3e92018-03-07 14:50:09 +0530122 int ret;
123
124 hccr = (struct xhci_hccr *)((uintptr_t)dev_read_addr(dev));
125 hcor = (struct xhci_hcor *)((uintptr_t)hccr +
126 HC_LENGTH(xhci_readl(&(hccr)->cr_capbase)));
127
developerf8bced12020-05-02 11:35:13 +0200128 ret = dwc3_setup_phy(dev, plat->usb_phys);
Jean-Jacques Hiblot3de978a2018-11-29 10:52:45 +0100129 if (ret && (ret != -ENOTSUPP))
Vignesh Rd52f8a3e92018-03-07 14:50:09 +0530130 return ret;
Vignesh Rc85d7a92018-03-07 14:50:10 +0530131
Patrice Chotardc7eadfc2017-07-18 11:38:40 +0200132 dwc3_reg = (struct dwc3 *)((char *)(hccr) + DWC3_REG_OFFSET);
133
134 dwc3_core_init(dwc3_reg);
135
Mark Kettenisb2bb6222019-06-30 18:01:55 +0200136 /* Set dwc3 usb2 phy config */
137 reg = readl(&dwc3_reg->g_usb2phycfg[0]);
138
139 phy = dev_read_string(dev, "phy_type");
140 if (phy && strcmp(phy, "utmi_wide") == 0) {
141 reg |= DWC3_GUSB2PHYCFG_PHYIF;
142 reg &= ~DWC3_GUSB2PHYCFG_USBTRDTIM_MASK;
143 reg |= DWC3_GUSB2PHYCFG_USBTRDTIM_16BIT;
144 }
145
146 if (dev_read_bool(dev, "snps,dis_enblslpm-quirk"))
147 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
148
149 if (dev_read_bool(dev, "snps,dis-u2-freeclk-exists-quirk"))
150 reg &= ~DWC3_GUSB2PHYCFG_U2_FREECLK_EXISTS;
151
Neil Armstrong8ef75302019-09-09 18:52:39 +0000152 if (dev_read_bool(dev, "snps,dis_u2_susphy_quirk"))
153 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
154
Mark Kettenisb2bb6222019-06-30 18:01:55 +0200155 writel(reg, &dwc3_reg->g_usb2phycfg[0]);
156
Kever Yang1b807052020-03-04 08:59:50 +0800157 dr_mode = usb_get_dr_mode(dev->node);
Patrice Chotard17b08872017-07-18 11:38:41 +0200158 if (dr_mode == USB_DR_MODE_UNKNOWN)
159 /* by default set dual role mode to HOST */
160 dr_mode = USB_DR_MODE_HOST;
161
162 dwc3_set_mode(dwc3_reg, dr_mode);
163
Patrice Chotardc7eadfc2017-07-18 11:38:40 +0200164 return xhci_register(dev, hccr, hcor);
165}
166
167static int xhci_dwc3_remove(struct udevice *dev)
168{
Jean-Jacques Hiblot3de978a2018-11-29 10:52:45 +0100169 struct xhci_dwc3_platdata *plat = dev_get_platdata(dev);
170
developerf8bced12020-05-02 11:35:13 +0200171 dwc3_shutdown_phy(dev, plat->usb_phys);
Patrice Chotardecfafba2017-07-18 11:38:44 +0200172
Patrice Chotardc7eadfc2017-07-18 11:38:40 +0200173 return xhci_deregister(dev);
174}
175
176static const struct udevice_id xhci_dwc3_ids[] = {
177 { .compatible = "snps,dwc3" },
178 { }
179};
180
181U_BOOT_DRIVER(xhci_dwc3) = {
182 .name = "xhci-dwc3",
183 .id = UCLASS_USB,
184 .of_match = xhci_dwc3_ids,
185 .probe = xhci_dwc3_probe,
186 .remove = xhci_dwc3_remove,
187 .ops = &xhci_usb_ops,
188 .priv_auto_alloc_size = sizeof(struct xhci_ctrl),
189 .platdata_auto_alloc_size = sizeof(struct xhci_dwc3_platdata),
190 .flags = DM_FLAG_ALLOC_PRIV_DMA,
191};
Patrice Chotarda3d03ea2017-07-24 17:07:03 +0200192#endif