1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * SAMSUNG EXYNOS USB HOST EHCI Controller
4  *
5  * Copyright (C) 2012 Samsung Electronics Co.Ltd
6  *	Vivek Gautam <gautam.vivek@samsung.com>
7  */
8 
9 #include <common.h>
10 #include <dm.h>
11 #include <fdtdec.h>
12 #include <log.h>
13 #include <linux/delay.h>
14 #include <linux/libfdt.h>
15 #include <malloc.h>
16 #include <usb.h>
17 #include <asm/arch/cpu.h>
18 #include <asm/arch/ehci.h>
19 #include <asm/arch/system.h>
20 #include <asm/arch/power.h>
21 #include <asm/gpio.h>
22 #include <linux/errno.h>
23 #include <linux/compat.h>
24 #include "ehci.h"
25 
26 /* Declare global data pointer */
27 DECLARE_GLOBAL_DATA_PTR;
28 
29 struct exynos_ehci_platdata {
30 	struct usb_platdata usb_plat;
31 	fdt_addr_t hcd_base;
32 	fdt_addr_t phy_base;
33 	struct gpio_desc vbus_gpio;
34 };
35 
36 /**
37  * Contains pointers to register base addresses
38  * for the usb controller.
39  */
40 struct exynos_ehci {
41 	struct ehci_ctrl ctrl;
42 	struct exynos_usb_phy *usb;
43 	struct ehci_hccr *hcd;
44 };
45 
ehci_usb_ofdata_to_platdata(struct udevice * dev)46 static int ehci_usb_ofdata_to_platdata(struct udevice *dev)
47 {
48 	struct exynos_ehci_platdata *plat = dev_get_platdata(dev);
49 	const void *blob = gd->fdt_blob;
50 	unsigned int node;
51 	int depth;
52 
53 	/*
54 	 * Get the base address for XHCI controller from the device node
55 	 */
56 	plat->hcd_base = devfdt_get_addr(dev);
57 	if (plat->hcd_base == FDT_ADDR_T_NONE) {
58 		debug("Can't get the XHCI register base address\n");
59 		return -ENXIO;
60 	}
61 
62 	depth = 0;
63 	node = fdtdec_next_compatible_subnode(blob, dev_of_offset(dev),
64 				COMPAT_SAMSUNG_EXYNOS_USB_PHY, &depth);
65 	if (node <= 0) {
66 		debug("XHCI: Can't get device node for usb3-phy controller\n");
67 		return -ENODEV;
68 	}
69 
70 	/*
71 	 * Get the base address for usbphy from the device node
72 	 */
73 	plat->phy_base = fdtdec_get_addr(blob, node, "reg");
74 	if (plat->phy_base == FDT_ADDR_T_NONE) {
75 		debug("Can't get the usbphy register address\n");
76 		return -ENXIO;
77 	}
78 
79 	/* Vbus gpio */
80 	gpio_request_by_name(dev, "samsung,vbus-gpio", 0,
81 			     &plat->vbus_gpio, GPIOD_IS_OUT);
82 
83 	return 0;
84 }
85 
exynos5_setup_usb_phy(struct exynos_usb_phy * usb)86 static void exynos5_setup_usb_phy(struct exynos_usb_phy *usb)
87 {
88 	u32 hsic_ctrl;
89 
90 	clrbits_le32(&usb->usbphyctrl0,
91 			HOST_CTRL0_FSEL_MASK |
92 			HOST_CTRL0_COMMONON_N |
93 			/* HOST Phy setting */
94 			HOST_CTRL0_PHYSWRST |
95 			HOST_CTRL0_PHYSWRSTALL |
96 			HOST_CTRL0_SIDDQ |
97 			HOST_CTRL0_FORCESUSPEND |
98 			HOST_CTRL0_FORCESLEEP);
99 
100 	setbits_le32(&usb->usbphyctrl0,
101 			/* Setting up the ref freq */
102 			(CLK_24MHZ << 16) |
103 			/* HOST Phy setting */
104 			HOST_CTRL0_LINKSWRST |
105 			HOST_CTRL0_UTMISWRST);
106 	udelay(10);
107 	clrbits_le32(&usb->usbphyctrl0,
108 			HOST_CTRL0_LINKSWRST |
109 			HOST_CTRL0_UTMISWRST);
110 
111 	/* HSIC Phy Setting */
112 	hsic_ctrl = (HSIC_CTRL_FORCESUSPEND |
113 			HSIC_CTRL_FORCESLEEP |
114 			HSIC_CTRL_SIDDQ);
115 
116 	clrbits_le32(&usb->hsicphyctrl1, hsic_ctrl);
117 	clrbits_le32(&usb->hsicphyctrl2, hsic_ctrl);
118 
119 	hsic_ctrl = (((HSIC_CTRL_REFCLKDIV_12 & HSIC_CTRL_REFCLKDIV_MASK)
120 				<< HSIC_CTRL_REFCLKDIV_SHIFT)
121 			| ((HSIC_CTRL_REFCLKSEL & HSIC_CTRL_REFCLKSEL_MASK)
122 				<< HSIC_CTRL_REFCLKSEL_SHIFT)
123 			| HSIC_CTRL_UTMISWRST);
124 
125 	setbits_le32(&usb->hsicphyctrl1, hsic_ctrl);
126 	setbits_le32(&usb->hsicphyctrl2, hsic_ctrl);
127 
128 	udelay(10);
129 
130 	clrbits_le32(&usb->hsicphyctrl1, HSIC_CTRL_PHYSWRST |
131 					HSIC_CTRL_UTMISWRST);
132 
133 	clrbits_le32(&usb->hsicphyctrl2, HSIC_CTRL_PHYSWRST |
134 					HSIC_CTRL_UTMISWRST);
135 
136 	udelay(20);
137 
138 	/* EHCI Ctrl setting */
139 	setbits_le32(&usb->ehcictrl,
140 			EHCICTRL_ENAINCRXALIGN |
141 			EHCICTRL_ENAINCR4 |
142 			EHCICTRL_ENAINCR8 |
143 			EHCICTRL_ENAINCR16);
144 }
145 
exynos4412_setup_usb_phy(struct exynos4412_usb_phy * usb)146 static void exynos4412_setup_usb_phy(struct exynos4412_usb_phy *usb)
147 {
148 	writel(CLK_24MHZ, &usb->usbphyclk);
149 
150 	clrbits_le32(&usb->usbphyctrl, (PHYPWR_NORMAL_MASK_HSIC0 |
151 		PHYPWR_NORMAL_MASK_HSIC1 | PHYPWR_NORMAL_MASK_PHY1 |
152 		PHYPWR_NORMAL_MASK_PHY0));
153 
154 	setbits_le32(&usb->usbphyrstcon, (RSTCON_HOSTPHY_SWRST | RSTCON_SWRST));
155 	udelay(10);
156 	clrbits_le32(&usb->usbphyrstcon, (RSTCON_HOSTPHY_SWRST | RSTCON_SWRST));
157 }
158 
setup_usb_phy(struct exynos_usb_phy * usb)159 static void setup_usb_phy(struct exynos_usb_phy *usb)
160 {
161 	set_usbhost_mode(USB20_PHY_CFG_HOST_LINK_EN);
162 
163 	set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_EN);
164 
165 	if (cpu_is_exynos5())
166 		exynos5_setup_usb_phy(usb);
167 	else if (cpu_is_exynos4())
168 		if (proid_is_exynos4412())
169 			exynos4412_setup_usb_phy((struct exynos4412_usb_phy *)
170 						 usb);
171 }
172 
exynos5_reset_usb_phy(struct exynos_usb_phy * usb)173 static void exynos5_reset_usb_phy(struct exynos_usb_phy *usb)
174 {
175 	u32 hsic_ctrl;
176 
177 	/* HOST_PHY reset */
178 	setbits_le32(&usb->usbphyctrl0,
179 			HOST_CTRL0_PHYSWRST |
180 			HOST_CTRL0_PHYSWRSTALL |
181 			HOST_CTRL0_SIDDQ |
182 			HOST_CTRL0_FORCESUSPEND |
183 			HOST_CTRL0_FORCESLEEP);
184 
185 	/* HSIC Phy reset */
186 	hsic_ctrl = (HSIC_CTRL_FORCESUSPEND |
187 			HSIC_CTRL_FORCESLEEP |
188 			HSIC_CTRL_SIDDQ |
189 			HSIC_CTRL_PHYSWRST);
190 
191 	setbits_le32(&usb->hsicphyctrl1, hsic_ctrl);
192 	setbits_le32(&usb->hsicphyctrl2, hsic_ctrl);
193 }
194 
exynos4412_reset_usb_phy(struct exynos4412_usb_phy * usb)195 static void exynos4412_reset_usb_phy(struct exynos4412_usb_phy *usb)
196 {
197 	setbits_le32(&usb->usbphyctrl, (PHYPWR_NORMAL_MASK_HSIC0 |
198 		PHYPWR_NORMAL_MASK_HSIC1 | PHYPWR_NORMAL_MASK_PHY1 |
199 		PHYPWR_NORMAL_MASK_PHY0));
200 }
201 
202 /* Reset the EHCI host controller. */
reset_usb_phy(struct exynos_usb_phy * usb)203 static void reset_usb_phy(struct exynos_usb_phy *usb)
204 {
205 	if (cpu_is_exynos5())
206 		exynos5_reset_usb_phy(usb);
207 	else if (cpu_is_exynos4())
208 		if (proid_is_exynos4412())
209 			exynos4412_reset_usb_phy((struct exynos4412_usb_phy *)
210 						 usb);
211 
212 	set_usbhost_phy_ctrl(POWER_USB_HOST_PHY_CTRL_DISABLE);
213 }
214 
ehci_usb_probe(struct udevice * dev)215 static int ehci_usb_probe(struct udevice *dev)
216 {
217 	struct exynos_ehci_platdata *plat = dev_get_platdata(dev);
218 	struct exynos_ehci *ctx = dev_get_priv(dev);
219 	struct ehci_hcor *hcor;
220 
221 	ctx->hcd = (struct ehci_hccr *)plat->hcd_base;
222 	ctx->usb = (struct exynos_usb_phy *)plat->phy_base;
223 
224 	/* setup the Vbus gpio here */
225 	if (dm_gpio_is_valid(&plat->vbus_gpio))
226 		dm_gpio_set_value(&plat->vbus_gpio, 1);
227 
228 	setup_usb_phy(ctx->usb);
229 	hcor = (struct ehci_hcor *)((uint32_t)ctx->hcd +
230 			HC_LENGTH(ehci_readl(&ctx->hcd->cr_capbase)));
231 
232 	return ehci_register(dev, ctx->hcd, hcor, NULL, 0, USB_INIT_HOST);
233 }
234 
ehci_usb_remove(struct udevice * dev)235 static int ehci_usb_remove(struct udevice *dev)
236 {
237 	struct exynos_ehci *ctx = dev_get_priv(dev);
238 	int ret;
239 
240 	ret = ehci_deregister(dev);
241 	if (ret)
242 		return ret;
243 	reset_usb_phy(ctx->usb);
244 
245 	return 0;
246 }
247 
248 static const struct udevice_id ehci_usb_ids[] = {
249 	{ .compatible = "samsung,exynos-ehci" },
250 	{ }
251 };
252 
253 U_BOOT_DRIVER(usb_ehci) = {
254 	.name	= "ehci_exynos",
255 	.id	= UCLASS_USB,
256 	.of_match = ehci_usb_ids,
257 	.ofdata_to_platdata = ehci_usb_ofdata_to_platdata,
258 	.probe = ehci_usb_probe,
259 	.remove = ehci_usb_remove,
260 	.ops	= &ehci_usb_ops,
261 	.priv_auto_alloc_size = sizeof(struct exynos_ehci),
262 	.platdata_auto_alloc_size = sizeof(struct exynos_ehci_platdata),
263 	.flags	= DM_FLAG_ALLOC_PRIV_DMA,
264 };
265