blob: da21bc7ae84a0fcd964ec4ede445c39f8f11ebb7 [file] [log] [blame]
MengDongyangb44566c2016-08-24 12:02:17 +08001/*
2 * Copyright (c) 2016 Rockchip, Inc.
3 * Authors: Daniel Meng <daniel.meng@rock-chips.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7#include <common.h>
8#include <dm.h>
9#include <fdtdec.h>
10#include <libfdt.h>
11#include <malloc.h>
12#include <usb.h>
13#include <watchdog.h>
Masahiro Yamada5d97dff2016-09-21 11:28:57 +090014#include <linux/errno.h>
MengDongyangb44566c2016-08-24 12:02:17 +080015#include <linux/compat.h>
16#include <linux/usb/dwc3.h>
Meng Dongyangd3cb14b2017-06-01 19:22:45 +080017#include <power/regulator.h>
MengDongyangb44566c2016-08-24 12:02:17 +080018
19#include "xhci.h"
20
21DECLARE_GLOBAL_DATA_PTR;
22
23struct rockchip_xhci_platdata {
24 fdt_addr_t hcd_base;
25 fdt_addr_t phy_base;
Meng Dongyangd3cb14b2017-06-01 19:22:45 +080026 struct udevice *vbus_supply;
MengDongyangb44566c2016-08-24 12:02:17 +080027};
28
29/*
30 * Contains pointers to register base addresses
31 * for the usb controller.
32 */
33struct rockchip_xhci {
34 struct usb_platdata usb_plat;
35 struct xhci_ctrl ctrl;
36 struct xhci_hccr *hcd;
37 struct dwc3 *dwc3_reg;
38};
39
40static int xhci_usb_ofdata_to_platdata(struct udevice *dev)
41{
42 struct rockchip_xhci_platdata *plat = dev_get_platdata(dev);
43 struct udevice *child;
44 int ret = 0;
45
46 /*
47 * Get the base address for XHCI controller from the device node
48 */
Simon Glassa821c4a2017-05-17 17:18:05 -060049 plat->hcd_base = devfdt_get_addr(dev);
MengDongyangb44566c2016-08-24 12:02:17 +080050 if (plat->hcd_base == FDT_ADDR_T_NONE) {
51 debug("Can't get the XHCI register base address\n");
52 return -ENXIO;
53 }
54
55 /* Get the base address for usbphy from the device node */
56 for (device_find_first_child(dev, &child); child;
57 device_find_next_child(&child)) {
Simon Glass911f3ae2017-05-18 20:08:57 -060058 if (!device_is_compatible(child, "rockchip,rk3399-usb3-phy"))
MengDongyangb44566c2016-08-24 12:02:17 +080059 continue;
Simon Glassa821c4a2017-05-17 17:18:05 -060060 plat->phy_base = devfdt_get_addr(child);
MengDongyangb44566c2016-08-24 12:02:17 +080061 break;
62 }
63
64 if (plat->phy_base == FDT_ADDR_T_NONE) {
65 debug("Can't get the usbphy register address\n");
66 return -ENXIO;
67 }
68
Meng Dongyangd3cb14b2017-06-01 19:22:45 +080069#if defined(CONFIG_DM_USB) && defined(CONFIG_DM_REGULATOR)
70 /* Vbus regulator */
71 ret = device_get_supply_regulator(dev, "vbus-supply",
72 &plat->vbus_supply);
MengDongyangb44566c2016-08-24 12:02:17 +080073 if (ret)
Meng Dongyangd3cb14b2017-06-01 19:22:45 +080074 debug("Can't get vbus supply\n");
75#endif
MengDongyangb44566c2016-08-24 12:02:17 +080076
77 return 0;
78}
79
80/*
81 * rockchip_dwc3_phy_setup() - Configure USB PHY Interface of DWC3 Core
82 * @dwc: Pointer to our controller context structure
83 * @dev: Pointer to ulcass device
84 */
85static void rockchip_dwc3_phy_setup(struct dwc3 *dwc3_reg,
86 struct udevice *dev)
87{
88 u32 reg;
MengDongyangb44566c2016-08-24 12:02:17 +080089 u32 utmi_bits;
90
91 /* Set dwc3 usb2 phy config */
92 reg = readl(&dwc3_reg->g_usb2phycfg[0]);
93
Philipp Tomsichf2708c92017-06-07 18:45:59 +020094 if (dev_read_bool(dev, "snps,dis-enblslpm-quirk"))
MengDongyangb44566c2016-08-24 12:02:17 +080095 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
96
Philipp Tomsichf2708c92017-06-07 18:45:59 +020097 utmi_bits = dev_read_u32_default(dev, "snps,phyif-utmi-bits", -1);
MengDongyangb44566c2016-08-24 12:02:17 +080098 if (utmi_bits == 16) {
99 reg |= DWC3_GUSB2PHYCFG_PHYIF;
100 reg &= ~DWC3_GUSB2PHYCFG_USBTRDTIM_MASK;
101 reg |= DWC3_GUSB2PHYCFG_USBTRDTIM_16BIT;
102 } else if (utmi_bits == 8) {
103 reg &= ~DWC3_GUSB2PHYCFG_PHYIF;
104 reg &= ~DWC3_GUSB2PHYCFG_USBTRDTIM_MASK;
105 reg |= DWC3_GUSB2PHYCFG_USBTRDTIM_8BIT;
106 }
107
Philipp Tomsichf2708c92017-06-07 18:45:59 +0200108 if (dev_read_bool(dev, "snps,dis-u2-freeclk-exists-quirk"))
MengDongyangb44566c2016-08-24 12:02:17 +0800109 reg &= ~DWC3_GUSB2PHYCFG_U2_FREECLK_EXISTS;
110
Philipp Tomsichf2708c92017-06-07 18:45:59 +0200111 if (dev_read_bool(dev, "snps,dis-u2-susphy-quirk"))
MengDongyangb44566c2016-08-24 12:02:17 +0800112 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
113
114 writel(reg, &dwc3_reg->g_usb2phycfg[0]);
115}
116
117static int rockchip_xhci_core_init(struct rockchip_xhci *rkxhci,
118 struct udevice *dev)
119{
120 int ret;
121
122 ret = dwc3_core_init(rkxhci->dwc3_reg);
123 if (ret) {
124 debug("failed to initialize core\n");
125 return ret;
126 }
127
128 rockchip_dwc3_phy_setup(rkxhci->dwc3_reg, dev);
129
130 /* We are hard-coding DWC3 core to Host Mode */
131 dwc3_set_mode(rkxhci->dwc3_reg, DWC3_GCTL_PRTCAP_HOST);
132
133 return 0;
134}
135
136static int rockchip_xhci_core_exit(struct rockchip_xhci *rkxhci)
137{
138 return 0;
139}
140
141static int xhci_usb_probe(struct udevice *dev)
142{
143 struct rockchip_xhci_platdata *plat = dev_get_platdata(dev);
144 struct rockchip_xhci *ctx = dev_get_priv(dev);
145 struct xhci_hcor *hcor;
146 int ret;
147
148 ctx->hcd = (struct xhci_hccr *)plat->hcd_base;
149 ctx->dwc3_reg = (struct dwc3 *)((char *)(ctx->hcd) + DWC3_REG_OFFSET);
150 hcor = (struct xhci_hcor *)((uint64_t)ctx->hcd +
151 HC_LENGTH(xhci_readl(&ctx->hcd->cr_capbase)));
152
Meng Dongyangd3cb14b2017-06-01 19:22:45 +0800153#if defined(CONFIG_DM_USB) && defined(CONFIG_DM_REGULATOR)
154 ret = regulator_set_enable(plat->vbus_supply, true);
155 if (ret)
156 debug("XHCI: Failed to enable vbus supply\n");
157#endif
MengDongyangb44566c2016-08-24 12:02:17 +0800158
159 ret = rockchip_xhci_core_init(ctx, dev);
160 if (ret) {
161 debug("XHCI: failed to initialize controller\n");
162 return ret;
163 }
164
165 return xhci_register(dev, ctx->hcd, hcor);
166}
167
168static int xhci_usb_remove(struct udevice *dev)
169{
Meng Dongyangd3cb14b2017-06-01 19:22:45 +0800170 struct rockchip_xhci_platdata *plat = dev_get_platdata(dev);
MengDongyangb44566c2016-08-24 12:02:17 +0800171 struct rockchip_xhci *ctx = dev_get_priv(dev);
172 int ret;
173
174 ret = xhci_deregister(dev);
175 if (ret)
176 return ret;
177 ret = rockchip_xhci_core_exit(ctx);
178 if (ret)
179 return ret;
180
Meng Dongyangd3cb14b2017-06-01 19:22:45 +0800181#if defined(CONFIG_DM_USB) && defined(CONFIG_DM_REGULATOR)
182 ret = regulator_set_enable(plat->vbus_supply, false);
183 if (ret)
184 debug("XHCI: Failed to disable vbus supply\n");
185#endif
186
MengDongyangb44566c2016-08-24 12:02:17 +0800187 return 0;
188}
189
190static const struct udevice_id xhci_usb_ids[] = {
191 { .compatible = "rockchip,rk3399-xhci" },
Meng Dongyangd3cb14b2017-06-01 19:22:45 +0800192 { .compatible = "rockchip,rk3328-xhci" },
MengDongyangb44566c2016-08-24 12:02:17 +0800193 { }
194};
195
196U_BOOT_DRIVER(usb_xhci) = {
197 .name = "xhci_rockchip",
198 .id = UCLASS_USB,
199 .of_match = xhci_usb_ids,
200 .ofdata_to_platdata = xhci_usb_ofdata_to_platdata,
201 .probe = xhci_usb_probe,
202 .remove = xhci_usb_remove,
203 .ops = &xhci_usb_ops,
204 .bind = dm_scan_fdt_dev,
205 .platdata_auto_alloc_size = sizeof(struct rockchip_xhci_platdata),
206 .priv_auto_alloc_size = sizeof(struct rockchip_xhci),
207 .flags = DM_FLAG_ALLOC_PRIV_DMA,
208};
209
210static const struct udevice_id usb_phy_ids[] = {
211 { .compatible = "rockchip,rk3399-usb3-phy" },
Meng Dongyangd3cb14b2017-06-01 19:22:45 +0800212 { .compatible = "rockchip,rk3328-usb3-phy" },
MengDongyangb44566c2016-08-24 12:02:17 +0800213 { }
214};
215
216U_BOOT_DRIVER(usb_phy) = {
217 .name = "usb_phy_rockchip",
218 .of_match = usb_phy_ids,
219};