blob: 93ae986b4d789453d4d0c48e95821286d73af77b [file] [log] [blame]
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +05301/*
2 * Copyright 2015 Freescale Semiconductor, Inc.
3 *
4 * DWC3 controller driver
5 *
6 * Author: Ramneek Mehresh<ramneek.mehresh@freescale.com>
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#include <common.h>
Patrice Chotardc7eadfc2017-07-18 11:38:40 +020012#include <dm.h>
13#include <usb.h>
14
15#include "xhci.h"
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053016#include <asm/io.h>
17#include <linux/usb/dwc3.h>
Patrice Chotard17b08872017-07-18 11:38:41 +020018#include <linux/usb/otg.h>
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053019
Patrice Chotardc7eadfc2017-07-18 11:38:40 +020020DECLARE_GLOBAL_DATA_PTR;
21
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053022void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode)
23{
24 clrsetbits_le32(&dwc3_reg->g_ctl,
25 DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG),
26 DWC3_GCTL_PRTCAPDIR(mode));
27}
28
Masahiro Yamada6d8e4332017-06-22 16:35:14 +090029static void dwc3_phy_reset(struct dwc3 *dwc3_reg)
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053030{
31 /* Assert USB3 PHY reset */
32 setbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST);
33
34 /* Assert USB2 PHY reset */
35 setbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST);
36
37 mdelay(100);
38
39 /* Clear USB3 PHY reset */
40 clrbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST);
41
42 /* Clear USB2 PHY reset */
43 clrbits_le32(&dwc3_reg->g_usb2phycfg, DWC3_GUSB2PHYCFG_PHYSOFTRST);
44}
45
46void dwc3_core_soft_reset(struct dwc3 *dwc3_reg)
47{
48 /* Before Resetting PHY, put Core in Reset */
49 setbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
50
51 /* reset USB3 phy - if required */
52 dwc3_phy_reset(dwc3_reg);
53
Rajesh Bhagat295d0272015-12-02 11:44:27 +053054 mdelay(100);
55
Ramneek Mehresh3dad08d2015-05-29 14:47:15 +053056 /* After PHYs are stable we can take Core out of reset state */
57 clrbits_le32(&dwc3_reg->g_ctl, DWC3_GCTL_CORESOFTRESET);
58}
59
60int dwc3_core_init(struct dwc3 *dwc3_reg)
61{
62 u32 reg;
63 u32 revision;
64 unsigned int dwc3_hwparams1;
65
66 revision = readl(&dwc3_reg->g_snpsid);
67 /* This should read as U3 followed by revision number */
68 if ((revision & DWC3_GSNPSID_MASK) != 0x55330000) {
69 puts("this is not a DesignWare USB3 DRD Core\n");
70 return -1;
71 }
72
73 dwc3_core_soft_reset(dwc3_reg);
74
75 dwc3_hwparams1 = readl(&dwc3_reg->g_hwparams1);
76
77 reg = readl(&dwc3_reg->g_ctl);
78 reg &= ~DWC3_GCTL_SCALEDOWN_MASK;
79 reg &= ~DWC3_GCTL_DISSCRAMBLE;
80 switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc3_hwparams1)) {
81 case DWC3_GHWPARAMS1_EN_PWROPT_CLK:
82 reg &= ~DWC3_GCTL_DSBLCLKGTNG;
83 break;
84 default:
85 debug("No power optimization available\n");
86 }
87
88 /*
89 * WORKAROUND: DWC3 revisions <1.90a have a bug
90 * where the device can fail to connect at SuperSpeed
91 * and falls back to high-speed mode which causes
92 * the device to enter a Connect/Disconnect loop
93 */
94 if ((revision & DWC3_REVISION_MASK) < 0x190a)
95 reg |= DWC3_GCTL_U2RSTECN;
96
97 writel(reg, &dwc3_reg->g_ctl);
98
99 return 0;
100}
Nikhil Badola807babb2015-06-23 09:17:49 +0530101
102void dwc3_set_fladj(struct dwc3 *dwc3_reg, u32 val)
103{
104 setbits_le32(&dwc3_reg->g_fladj, GFLADJ_30MHZ_REG_SEL |
105 GFLADJ_30MHZ(val));
106}
Patrice Chotardc7eadfc2017-07-18 11:38:40 +0200107
108static int xhci_dwc3_probe(struct udevice *dev)
109{
110 struct xhci_dwc3_platdata *plat = dev_get_platdata(dev);
111 struct xhci_hcor *hcor;
112 struct xhci_hccr *hccr;
113 struct dwc3 *dwc3_reg;
Patrice Chotard17b08872017-07-18 11:38:41 +0200114 enum usb_dr_mode dr_mode;
Patrice Chotardc7eadfc2017-07-18 11:38:40 +0200115
116 hccr = (struct xhci_hccr *)devfdt_get_addr(dev);
117 hcor = (struct xhci_hcor *)((phys_addr_t)hccr +
118 HC_LENGTH(xhci_readl(&(hccr)->cr_capbase)));
119
120 dwc3_reg = (struct dwc3 *)((char *)(hccr) + DWC3_REG_OFFSET);
121
122 dwc3_core_init(dwc3_reg);
123
Patrice Chotard17b08872017-07-18 11:38:41 +0200124 dr_mode = usb_get_dr_mode(dev_of_offset(dev));
125 if (dr_mode == USB_DR_MODE_UNKNOWN)
126 /* by default set dual role mode to HOST */
127 dr_mode = USB_DR_MODE_HOST;
128
129 dwc3_set_mode(dwc3_reg, dr_mode);
130
Patrice Chotardc7eadfc2017-07-18 11:38:40 +0200131 return xhci_register(dev, hccr, hcor);
132}
133
134static int xhci_dwc3_remove(struct udevice *dev)
135{
136 return xhci_deregister(dev);
137}
138
139static const struct udevice_id xhci_dwc3_ids[] = {
140 { .compatible = "snps,dwc3" },
141 { }
142};
143
144U_BOOT_DRIVER(xhci_dwc3) = {
145 .name = "xhci-dwc3",
146 .id = UCLASS_USB,
147 .of_match = xhci_dwc3_ids,
148 .probe = xhci_dwc3_probe,
149 .remove = xhci_dwc3_remove,
150 .ops = &xhci_usb_ops,
151 .priv_auto_alloc_size = sizeof(struct xhci_ctrl),
152 .platdata_auto_alloc_size = sizeof(struct xhci_dwc3_platdata),
153 .flags = DM_FLAG_ALLOC_PRIV_DMA,
154};