Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ramneek Mehresh | dc9cdf8 | 2015-05-29 14:47:15 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2015 Freescale Semiconductor, Inc. |
| 4 | * |
| 5 | * DWC3 controller driver |
| 6 | * |
| 7 | * Author: Ramneek Mehresh<ramneek.mehresh@freescale.com> |
Ramneek Mehresh | dc9cdf8 | 2015-05-29 14:47:15 +0530 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 11 | #include <dm.h> |
Patrice Chotard | f56db16 | 2017-07-18 11:38:44 +0200 | [diff] [blame] | 12 | #include <fdtdec.h> |
| 13 | #include <generic-phy.h> |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 14 | #include <usb.h> |
Jean-Jacques Hiblot | d648a50 | 2018-11-29 10:52:45 +0100 | [diff] [blame] | 15 | #include <dwc3-uboot.h> |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 16 | |
Jean-Jacques Hiblot | 1708a12 | 2019-09-11 11:33:46 +0200 | [diff] [blame] | 17 | #include <usb/xhci.h> |
Ramneek Mehresh | dc9cdf8 | 2015-05-29 14:47:15 +0530 | [diff] [blame] | 18 | #include <asm/io.h> |
| 19 | #include <linux/usb/dwc3.h> |
Patrice Chotard | 576e3cc | 2017-07-18 11:38:41 +0200 | [diff] [blame] | 20 | #include <linux/usb/otg.h> |
Ramneek Mehresh | dc9cdf8 | 2015-05-29 14:47:15 +0530 | [diff] [blame] | 21 | |
Patrice Chotard | f56db16 | 2017-07-18 11:38:44 +0200 | [diff] [blame] | 22 | struct xhci_dwc3_platdata { |
Neil Armstrong | 7c839ea | 2018-04-11 17:08:01 +0200 | [diff] [blame] | 23 | struct phy *usb_phys; |
| 24 | int num_phys; |
Patrice Chotard | f56db16 | 2017-07-18 11:38:44 +0200 | [diff] [blame] | 25 | }; |
| 26 | |
Ramneek Mehresh | dc9cdf8 | 2015-05-29 14:47:15 +0530 | [diff] [blame] | 27 | void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode) |
| 28 | { |
| 29 | clrsetbits_le32(&dwc3_reg->g_ctl, |
| 30 | DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG), |
| 31 | DWC3_GCTL_PRTCAPDIR(mode)); |
| 32 | } |
| 33 | |
Masahiro Yamada | 121a4d1 | 2017-06-22 16:35:14 +0900 | [diff] [blame] | 34 | static void dwc3_phy_reset(struct dwc3 *dwc3_reg) |
Ramneek Mehresh | dc9cdf8 | 2015-05-29 14:47:15 +0530 | [diff] [blame] | 35 | { |
| 36 | /* Assert USB3 PHY reset */ |
| 37 | setbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST); |
| 38 | |
| 39 | /* Assert USB2 PHY reset */ |
| 40 | setbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST); |
| 41 | |
| 42 | mdelay(100); |
| 43 | |
| 44 | /* Clear USB3 PHY reset */ |
| 45 | clrbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST); |
| 46 | |
| 47 | /* Clear USB2 PHY reset */ |
| 48 | clrbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST); |
| 49 | } |
| 50 | |
| 51 | void dwc3_core_soft_reset(struct dwc3 *dwc3_reg) |
| 52 | { |
| 53 | /* Before Resetting PHY, put Core in Reset */ |
| 54 | setbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET); |
| 55 | |
| 56 | /* reset USB3 phy - if required */ |
| 57 | dwc3_phy_reset(dwc3_reg); |
| 58 | |
Rajesh Bhagat | 5955bb9 | 2015-12-02 11:44:27 +0530 | [diff] [blame] | 59 | mdelay(100); |
| 60 | |
Ramneek Mehresh | dc9cdf8 | 2015-05-29 14:47:15 +0530 | [diff] [blame] | 61 | /* After PHYs are stable we can take Core out of reset state */ |
| 62 | clrbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET); |
| 63 | } |
| 64 | |
| 65 | int dwc3_core_init(struct dwc3 *dwc3_reg) |
| 66 | { |
| 67 | u32 reg; |
| 68 | u32 revision; |
| 69 | unsigned int dwc3_hwparams1; |
| 70 | |
| 71 | revision = readl(&dwc3_reg->g_snpsid); |
| 72 | /* This should read as U3 followed by revision number */ |
| 73 | if ((revision & DWC3_GSNPSID_MASK) != 0x55330000) { |
| 74 | puts("this is not a DesignWare USB3 DRD Core\n"); |
| 75 | return -1; |
| 76 | } |
| 77 | |
| 78 | dwc3_core_soft_reset(dwc3_reg); |
| 79 | |
| 80 | dwc3_hwparams1 = readl(&dwc3_reg->g_hwparams1); |
| 81 | |
| 82 | reg = readl(&dwc3_reg->g_ctl); |
| 83 | reg &= ~DWC3_GCTL_SCALEDOWN_MASK; |
| 84 | reg &= ~DWC3_GCTL_DISSCRAMBLE; |
| 85 | switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc3_hwparams1)) { |
| 86 | case DWC3_GHWPARAMS1_EN_PWROPT_CLK: |
| 87 | reg &= ~DWC3_GCTL_DSBLCLKGTNG; |
| 88 | break; |
| 89 | default: |
| 90 | debug("No power optimization available\n"); |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | * WORKAROUND: DWC3 revisions <1.90a have a bug |
| 95 | * where the device can fail to connect at SuperSpeed |
| 96 | * and falls back to high-speed mode which causes |
| 97 | * the device to enter a Connect/Disconnect loop |
| 98 | */ |
| 99 | if ((revision & DWC3_REVISION_MASK) < 0x190a) |
| 100 | reg |= DWC3_GCTL_U2RSTECN; |
| 101 | |
| 102 | writel(reg, &dwc3_reg->g_ctl); |
| 103 | |
| 104 | return 0; |
| 105 | } |
Nikhil Badola | 667f4dd | 2015-06-23 09:17:49 +0530 | [diff] [blame] | 106 | |
| 107 | void dwc3_set_fladj(struct dwc3 *dwc3_reg, u32 val) |
| 108 | { |
| 109 | setbits_le32(&dwc3_reg->g_fladj, GFLADJ_30MHZ_REG_SEL | |
| 110 | GFLADJ_30MHZ(val)); |
| 111 | } |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 112 | |
Sven Schwermer | fd09c20 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 113 | #if CONFIG_IS_ENABLED(DM_USB) |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 114 | static int xhci_dwc3_probe(struct udevice *dev) |
| 115 | { |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 116 | struct xhci_hcor *hcor; |
| 117 | struct xhci_hccr *hccr; |
| 118 | struct dwc3 *dwc3_reg; |
Patrice Chotard | 576e3cc | 2017-07-18 11:38:41 +0200 | [diff] [blame] | 119 | enum usb_dr_mode dr_mode; |
Jean-Jacques Hiblot | d648a50 | 2018-11-29 10:52:45 +0100 | [diff] [blame] | 120 | struct xhci_dwc3_platdata *plat = dev_get_platdata(dev); |
Mark Kettenis | 062790f | 2019-06-30 18:01:55 +0200 | [diff] [blame] | 121 | const char *phy; |
| 122 | u32 reg; |
Patrice Chotard | f56db16 | 2017-07-18 11:38:44 +0200 | [diff] [blame] | 123 | int ret; |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 124 | |
Patrice Chotard | d38a8ea | 2017-07-25 13:24:44 +0200 | [diff] [blame] | 125 | hccr = (struct xhci_hccr *)((uintptr_t)dev_read_addr(dev)); |
| 126 | hcor = (struct xhci_hcor *)((uintptr_t)hccr + |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 127 | HC_LENGTH(xhci_readl(&(hccr)->cr_capbase))); |
| 128 | |
Jean-Jacques Hiblot | d648a50 | 2018-11-29 10:52:45 +0100 | [diff] [blame] | 129 | ret = dwc3_setup_phy(dev, &plat->usb_phys, &plat->num_phys); |
| 130 | if (ret && (ret != -ENOTSUPP)) |
Vignesh R | 3fc2635 | 2018-03-07 14:50:09 +0530 | [diff] [blame] | 131 | return ret; |
Vignesh R | 2fd4242 | 2018-03-07 14:50:10 +0530 | [diff] [blame] | 132 | |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 133 | dwc3_reg = (struct dwc3 *)((char *)(hccr) + DWC3_REG_OFFSET); |
| 134 | |
| 135 | dwc3_core_init(dwc3_reg); |
| 136 | |
Mark Kettenis | 062790f | 2019-06-30 18:01:55 +0200 | [diff] [blame] | 137 | /* Set dwc3 usb2 phy config */ |
| 138 | reg = readl(&dwc3_reg->g_usb2phycfg[0]); |
| 139 | |
| 140 | phy = dev_read_string(dev, "phy_type"); |
| 141 | if (phy && strcmp(phy, "utmi_wide") == 0) { |
| 142 | reg |= DWC3_GUSB2PHYCFG_PHYIF; |
| 143 | reg &= ~DWC3_GUSB2PHYCFG_USBTRDTIM_MASK; |
| 144 | reg |= DWC3_GUSB2PHYCFG_USBTRDTIM_16BIT; |
| 145 | } |
| 146 | |
| 147 | if (dev_read_bool(dev, "snps,dis_enblslpm-quirk")) |
| 148 | reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM; |
| 149 | |
| 150 | if (dev_read_bool(dev, "snps,dis-u2-freeclk-exists-quirk")) |
| 151 | reg &= ~DWC3_GUSB2PHYCFG_U2_FREECLK_EXISTS; |
| 152 | |
Neil Armstrong | b35b807 | 2019-09-09 18:52:39 +0000 | [diff] [blame] | 153 | if (dev_read_bool(dev, "snps,dis_u2_susphy_quirk")) |
| 154 | reg &= ~DWC3_GUSB2PHYCFG_SUSPHY; |
| 155 | |
Mark Kettenis | 062790f | 2019-06-30 18:01:55 +0200 | [diff] [blame] | 156 | writel(reg, &dwc3_reg->g_usb2phycfg[0]); |
| 157 | |
Patrice Chotard | 576e3cc | 2017-07-18 11:38:41 +0200 | [diff] [blame] | 158 | dr_mode = usb_get_dr_mode(dev_of_offset(dev)); |
| 159 | if (dr_mode == USB_DR_MODE_UNKNOWN) |
| 160 | /* by default set dual role mode to HOST */ |
| 161 | dr_mode = USB_DR_MODE_HOST; |
| 162 | |
| 163 | dwc3_set_mode(dwc3_reg, dr_mode); |
| 164 | |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 165 | return xhci_register(dev, hccr, hcor); |
| 166 | } |
| 167 | |
| 168 | static int xhci_dwc3_remove(struct udevice *dev) |
| 169 | { |
Jean-Jacques Hiblot | d648a50 | 2018-11-29 10:52:45 +0100 | [diff] [blame] | 170 | struct xhci_dwc3_platdata *plat = dev_get_platdata(dev); |
| 171 | |
| 172 | dwc3_shutdown_phy(dev, plat->usb_phys, plat->num_phys); |
Patrice Chotard | f56db16 | 2017-07-18 11:38:44 +0200 | [diff] [blame] | 173 | |
Patrice Chotard | b7c1c7d | 2017-07-18 11:38:40 +0200 | [diff] [blame] | 174 | return xhci_deregister(dev); |
| 175 | } |
| 176 | |
| 177 | static const struct udevice_id xhci_dwc3_ids[] = { |
| 178 | { .compatible = "snps,dwc3" }, |
| 179 | { } |
| 180 | }; |
| 181 | |
| 182 | U_BOOT_DRIVER(xhci_dwc3) = { |
| 183 | .name = "xhci-dwc3", |
| 184 | .id = UCLASS_USB, |
| 185 | .of_match = xhci_dwc3_ids, |
| 186 | .probe = xhci_dwc3_probe, |
| 187 | .remove = xhci_dwc3_remove, |
| 188 | .ops = &xhci_usb_ops, |
| 189 | .priv_auto_alloc_size = sizeof(struct xhci_ctrl), |
| 190 | .platdata_auto_alloc_size = sizeof(struct xhci_dwc3_platdata), |
| 191 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 192 | }; |
Patrice Chotard | 623b7ac | 2017-07-24 17:07:03 +0200 | [diff] [blame] | 193 | #endif |