blob: 82b99eeef1e9d3d2dcf25d10b5af767cd87aa04a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Yanok29321c02012-02-06 03:55:33 +00002/*
3 * (C) Copyright 2011 Ilya Yanok, Emcraft Systems
4 * (C) Copyright 2004-2008
5 * Texas Instruments, <www.ti.com>
6 *
7 * Derived from Beagle Board code by
8 * Sunil Kumar <sunilsaini05@gmail.com>
9 * Shashi Ranjan <shashiranjanmca05@gmail.com>
10 *
Ilya Yanok29321c02012-02-06 03:55:33 +000011 */
Wolfgang Denk1a459662013-07-08 09:37:19 +020012
Ilya Yanok29321c02012-02-06 03:55:33 +000013#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Ilya Yanok29321c02012-02-06 03:55:33 +000015#include <usb.h>
Simon Glassc05ed002020-05-10 11:40:11 -060016#include <linux/delay.h>
Govindraj.R43b62392012-02-06 03:55:34 +000017#include <usb/ulpi.h>
18#include <errno.h>
Ilya Yanok29321c02012-02-06 03:55:33 +000019#include <asm/io.h>
20#include <asm/gpio.h>
Govindraj.R43b62392012-02-06 03:55:34 +000021#include <asm/arch/ehci.h>
22#include <asm/ehci-omap.h>
Adam Ford94ed6612020-05-16 01:19:53 -050023#include <dm.h>
24#include <dm/device-internal.h>
25#include <dm/lists.h>
26#include <power/regulator.h>
Lucas Stach676ae062012-09-26 00:14:35 +020027
28#include "ehci.h"
Ilya Yanok29321c02012-02-06 03:55:33 +000029
Govindraj.R43b62392012-02-06 03:55:34 +000030static struct omap_uhh *const uhh = (struct omap_uhh *)OMAP_UHH_BASE;
31static struct omap_usbtll *const usbtll = (struct omap_usbtll *)OMAP_USBTLL_BASE;
32static struct omap_ehci *const ehci = (struct omap_ehci *)OMAP_EHCI_BASE;
33
34static int omap_uhh_reset(void)
35{
Roger Quadros835a5552013-12-02 15:47:43 +020036 int timeout = 0;
37 u32 rev;
38
39 rev = readl(&uhh->rev);
40
41 /* Soft RESET */
42 writel(OMAP_UHH_SYSCONFIG_SOFTRESET, &uhh->sysc);
43
44 switch (rev) {
45 case OMAP_USBHS_REV1:
46 /* Wait for soft RESET to complete */
47 while (!(readl(&uhh->syss) & 0x1)) {
48 if (timeout > 100) {
49 printf("%s: RESET timeout\n", __func__);
50 return -1;
51 }
52 udelay(10);
53 timeout++;
54 }
55
56 /* Set No-Idle, No-Standby */
57 writel(OMAP_UHH_SYSCONFIG_VAL, &uhh->sysc);
58 break;
59
60 default: /* Rev. 2 onwards */
61
62 udelay(2); /* Need to wait before accessing SYSCONFIG back */
63
64 /* Wait for soft RESET to complete */
65 while ((readl(&uhh->sysc) & 0x1)) {
66 if (timeout > 100) {
67 printf("%s: RESET timeout\n", __func__);
68 return -1;
69 }
70 udelay(10);
71 timeout++;
72 }
73
74 writel(OMAP_UHH_SYSCONFIG_VAL, &uhh->sysc);
75 break;
76 }
77
Govindraj.R43b62392012-02-06 03:55:34 +000078 return 0;
79}
80
81static int omap_ehci_tll_reset(void)
82{
83 unsigned long init = get_timer(0);
84
85 /* perform TLL soft reset, and wait until reset is complete */
86 writel(OMAP_USBTLL_SYSCONFIG_SOFTRESET, &usbtll->sysc);
87
88 /* Wait for TLL reset to complete */
89 while (!(readl(&usbtll->syss) & OMAP_USBTLL_SYSSTATUS_RESETDONE))
90 if (get_timer(init) > CONFIG_SYS_HZ) {
91 debug("OMAP EHCI error: timeout resetting TLL\n");
92 return -EL3RST;
93 }
94
95 return 0;
96}
97
98static void omap_usbhs_hsic_init(int port)
99{
100 unsigned int reg;
101
102 /* Enable channels now */
103 reg = readl(&usbtll->channel_conf + port);
104
105 setbits_le32(&reg, (OMAP_TLL_CHANNEL_CONF_CHANMODE_TRANSPARENT_UTMI
106 | OMAP_TLL_CHANNEL_CONF_ULPINOBITSTUFF
107 | OMAP_TLL_CHANNEL_CONF_DRVVBUS
108 | OMAP_TLL_CHANNEL_CONF_CHRGVBUS
109 | OMAP_TLL_CHANNEL_CONF_CHANEN));
110
111 writel(reg, &usbtll->channel_conf + port);
112}
113
Dan Murphy120503f2013-08-01 14:05:58 -0500114#ifdef CONFIG_USB_ULPI
Govindraj.R43b62392012-02-06 03:55:34 +0000115static void omap_ehci_soft_phy_reset(int port)
116{
117 struct ulpi_viewport ulpi_vp;
118
119 ulpi_vp.viewport_addr = (u32)&ehci->insreg05_utmi_ulpi;
120 ulpi_vp.port_num = port;
121
122 ulpi_reset(&ulpi_vp);
123}
Dan Murphy120503f2013-08-01 14:05:58 -0500124#else
125static void omap_ehci_soft_phy_reset(int port)
126{
127 return;
128}
129#endif
Govindraj.R43b62392012-02-06 03:55:34 +0000130
Ilya Yanok29321c02012-02-06 03:55:33 +0000131#if defined(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO) || \
Dan Murphyd3d037a2013-08-01 14:05:57 -0500132 defined(CONFIG_OMAP_EHCI_PHY2_RESET_GPIO) || \
133 defined(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO)
Ilya Yanok29321c02012-02-06 03:55:33 +0000134/* controls PHY(s) reset signal(s) */
135static inline void omap_ehci_phy_reset(int on, int delay)
136{
137 /*
138 * Refer ISSUE1:
139 * Hold the PHY in RESET for enough time till
140 * PHY is settled and ready
141 */
142 if (delay && !on)
143 udelay(delay);
144#ifdef CONFIG_OMAP_EHCI_PHY1_RESET_GPIO
145 gpio_request(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, "USB PHY1 reset");
146 gpio_direction_output(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, !on);
147#endif
148#ifdef CONFIG_OMAP_EHCI_PHY2_RESET_GPIO
149 gpio_request(CONFIG_OMAP_EHCI_PHY2_RESET_GPIO, "USB PHY2 reset");
150 gpio_direction_output(CONFIG_OMAP_EHCI_PHY2_RESET_GPIO, !on);
151#endif
Dan Murphyd3d037a2013-08-01 14:05:57 -0500152#ifdef CONFIG_OMAP_EHCI_PHY3_RESET_GPIO
153 gpio_request(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, "USB PHY3 reset");
154 gpio_direction_output(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, !on);
155#endif
Ilya Yanok29321c02012-02-06 03:55:33 +0000156
157 /* Hold the PHY in RESET for enough time till DIR is high */
158 /* Refer: ISSUE1 */
159 if (delay && on)
160 udelay(delay);
161}
162#else
163#define omap_ehci_phy_reset(on, delay) do {} while (0)
164#endif
165
166/* Reset is needed otherwise the kernel-driver will throw an error. */
Govindraj.R43b62392012-02-06 03:55:34 +0000167int omap_ehci_hcd_stop(void)
Ilya Yanok29321c02012-02-06 03:55:33 +0000168{
Govindraj.R43b62392012-02-06 03:55:34 +0000169 debug("Resetting OMAP EHCI\n");
Ilya Yanok29321c02012-02-06 03:55:33 +0000170 omap_ehci_phy_reset(1, 0);
Govindraj.R43b62392012-02-06 03:55:34 +0000171
172 if (omap_uhh_reset() < 0)
173 return -1;
174
175 if (omap_ehci_tll_reset() < 0)
176 return -1;
177
Ilya Yanok29321c02012-02-06 03:55:33 +0000178 return 0;
179}
180
181/*
Govindraj.R43b62392012-02-06 03:55:34 +0000182 * Initialize the OMAP EHCI controller and PHY.
183 * Based on "drivers/usb/host/ehci-omap.c" from Linux 3.1
Ilya Yanok29321c02012-02-06 03:55:33 +0000184 * See there for additional Copyrights.
185 */
Adam Ford94ed6612020-05-16 01:19:53 -0500186#if !CONFIG_IS_ENABLED(DM_USB) || !CONFIG_IS_ENABLED(OF_CONTROL)
187
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200188int omap_ehci_hcd_init(int index, struct omap_usbhs_board_data *usbhs_pdata,
189 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Ilya Yanok29321c02012-02-06 03:55:33 +0000190{
Adam Ford94ed6612020-05-16 01:19:53 -0500191 *hccr = (struct ehci_hccr *)(OMAP_EHCI_BASE);
192 *hcor = (struct ehci_hcor *)(OMAP_EHCI_BASE + 0x10);
193#else
194int omap_ehci_hcd_init(int index, struct omap_usbhs_board_data *usbhs_pdata)
195{
196#endif
Ilya Yanok29321c02012-02-06 03:55:33 +0000197 int ret;
Govindraj.R43b62392012-02-06 03:55:34 +0000198 unsigned int i, reg = 0, rev = 0;
Ilya Yanok29321c02012-02-06 03:55:33 +0000199
Govindraj.R43b62392012-02-06 03:55:34 +0000200 debug("Initializing OMAP EHCI\n");
Ilya Yanok29321c02012-02-06 03:55:33 +0000201
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200202 ret = board_usb_init(index, USB_INIT_HOST);
Ilya Yanok29321c02012-02-06 03:55:33 +0000203 if (ret < 0)
204 return ret;
205
206 /* Put the PHY in RESET */
207 omap_ehci_phy_reset(1, 10);
208
Govindraj.R43b62392012-02-06 03:55:34 +0000209 ret = omap_uhh_reset();
210 if (ret < 0)
211 return ret;
Ilya Yanok29321c02012-02-06 03:55:33 +0000212
Govindraj.R43b62392012-02-06 03:55:34 +0000213 ret = omap_ehci_tll_reset();
214 if (ret)
215 return ret;
Ilya Yanok29321c02012-02-06 03:55:33 +0000216
217 writel(OMAP_USBTLL_SYSCONFIG_ENAWAKEUP |
218 OMAP_USBTLL_SYSCONFIG_SIDLEMODE |
Govindraj.R43b62392012-02-06 03:55:34 +0000219 OMAP_USBTLL_SYSCONFIG_CACTIVITY, &usbtll->sysc);
Ilya Yanok29321c02012-02-06 03:55:33 +0000220
221 /* Put UHH in NoIdle/NoStandby mode */
Govindraj.R43b62392012-02-06 03:55:34 +0000222 writel(OMAP_UHH_SYSCONFIG_VAL, &uhh->sysc);
Ilya Yanok29321c02012-02-06 03:55:33 +0000223
Govindraj.R43b62392012-02-06 03:55:34 +0000224 /* setup ULPI bypass and burst configurations */
225 clrsetbits_le32(&reg, OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN,
226 (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN |
227 OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN |
228 OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN));
229
230 rev = readl(&uhh->rev);
231 if (rev == OMAP_USBHS_REV1) {
232 if (is_ehci_phy_mode(usbhs_pdata->port_mode[0]))
233 clrbits_le32(&reg, OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS);
234 else
235 setbits_le32(&reg, OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS);
236
237 if (is_ehci_phy_mode(usbhs_pdata->port_mode[1]))
238 clrbits_le32(&reg, OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS);
239 else
Jeroen Hofstee90579fd2012-04-19 11:25:18 +0000240 setbits_le32(&reg, OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS);
Govindraj.R43b62392012-02-06 03:55:34 +0000241
242 if (is_ehci_phy_mode(usbhs_pdata->port_mode[2]))
243 clrbits_le32(&reg, OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS);
244 else
Jeroen Hofstee90579fd2012-04-19 11:25:18 +0000245 setbits_le32(&reg, OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS);
Govindraj.R43b62392012-02-06 03:55:34 +0000246 } else if (rev == OMAP_USBHS_REV2) {
Dan Murphyd3d037a2013-08-01 14:05:57 -0500247
Govindraj.R43b62392012-02-06 03:55:34 +0000248 clrsetbits_le32(&reg, (OMAP_P1_MODE_CLEAR | OMAP_P2_MODE_CLEAR),
249 OMAP4_UHH_HOSTCONFIG_APP_START_CLK);
250
Dan Murphyd3d037a2013-08-01 14:05:57 -0500251 /* Clear port mode fields for PHY mode */
252
253 if (is_ehci_hsic_mode(usbhs_pdata->port_mode[0]))
254 setbits_le32(&reg, OMAP_P1_MODE_HSIC);
255
256 if (is_ehci_hsic_mode(usbhs_pdata->port_mode[1]))
257 setbits_le32(&reg, OMAP_P2_MODE_HSIC);
258
259 } else if (rev == OMAP_USBHS_REV2_1) {
260
261 clrsetbits_le32(&reg,
262 (OMAP_P1_MODE_CLEAR |
263 OMAP_P2_MODE_CLEAR |
264 OMAP_P3_MODE_CLEAR),
265 OMAP4_UHH_HOSTCONFIG_APP_START_CLK);
266
267 /* Clear port mode fields for PHY mode */
Govindraj.R43b62392012-02-06 03:55:34 +0000268
269 if (is_ehci_hsic_mode(usbhs_pdata->port_mode[0]))
270 setbits_le32(&reg, OMAP_P1_MODE_HSIC);
271
272 if (is_ehci_hsic_mode(usbhs_pdata->port_mode[1]))
273 setbits_le32(&reg, OMAP_P2_MODE_HSIC);
274
275 if (is_ehci_hsic_mode(usbhs_pdata->port_mode[2]))
276 setbits_le32(&reg, OMAP_P3_MODE_HSIC);
277 }
278
279 debug("OMAP UHH_REVISION 0x%x\n", rev);
280 writel(reg, &uhh->hostconfig);
281
282 for (i = 0; i < OMAP_HS_USB_PORTS; i++)
283 if (is_ehci_hsic_mode(usbhs_pdata->port_mode[i]))
284 omap_usbhs_hsic_init(i);
Ilya Yanok29321c02012-02-06 03:55:33 +0000285
286 omap_ehci_phy_reset(0, 10);
287
Govindraj.R43b62392012-02-06 03:55:34 +0000288 /*
289 * An undocumented "feature" in the OMAP3 EHCI controller,
290 * causes suspended ports to be taken out of suspend when
291 * the USBCMD.Run/Stop bit is cleared (for example when
292 * we do ehci_bus_suspend).
293 * This breaks suspend-resume if the root-hub is allowed
294 * to suspend. Writing 1 to this undocumented register bit
295 * disables this feature and restores normal behavior.
296 */
297 writel(EHCI_INSNREG04_DISABLE_UNSUSPEND, &ehci->insreg04);
Ilya Yanok29321c02012-02-06 03:55:33 +0000298
Govindraj.R43b62392012-02-06 03:55:34 +0000299 for (i = 0; i < OMAP_HS_USB_PORTS; i++)
300 if (is_ehci_phy_mode(usbhs_pdata->port_mode[i]))
301 omap_ehci_soft_phy_reset(i);
302
Govindraj.R43b62392012-02-06 03:55:34 +0000303 debug("OMAP EHCI init done\n");
Ilya Yanok29321c02012-02-06 03:55:33 +0000304 return 0;
305}
Adam Ford94ed6612020-05-16 01:19:53 -0500306
307#if CONFIG_IS_ENABLED(DM_USB)
308
309static struct omap_usbhs_board_data usbhs_bdata = {
310 .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
311 .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
312 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
313};
314
315static void omap_usbhs_set_mode(u8 index, const char *mode)
316{
317 if (!strcmp(mode, "ehci-phy"))
318 usbhs_bdata.port_mode[index] = OMAP_EHCI_PORT_MODE_PHY;
319 else if (!strcmp(mode, "ehci-tll"))
320 usbhs_bdata.port_mode[index] = OMAP_EHCI_PORT_MODE_TLL;
321 else if (!strcmp(mode, "ehci-hsic"))
322 usbhs_bdata.port_mode[index] = OMAP_EHCI_PORT_MODE_HSIC;
323}
324
325static int omap_usbhs_probe(struct udevice *dev)
326{
327 u8 i;
328 const char *mode;
329 char prop[11];
330
331 /* Go through each port portX-mode to determing phy mode */
332 for (i = 0; i < OMAP_HS_USB_PORTS; i++) {
333 snprintf(prop, sizeof(prop), "port%d-mode", i + 1);
334 mode = dev_read_string(dev, prop);
335
336 /* If the portX-mode exists, set the mode */
337 if (mode)
338 omap_usbhs_set_mode(i, mode);
339 }
340
341 return omap_ehci_hcd_init(0, &usbhs_bdata);
342}
343
344static const struct udevice_id omap_usbhs_dt_ids[] = {
345 { .compatible = "ti,usbhs-host" },
346 { }
347};
348
349U_BOOT_DRIVER(usb_omaphs_host) = {
350 .name = "usbhs-host",
351 .id = UCLASS_SIMPLE_BUS,
352 .of_match = omap_usbhs_dt_ids,
353 .probe = omap_usbhs_probe,
354 .flags = DM_FLAG_ALLOC_PRIV_DMA,
355};
356
357struct ehci_omap_priv_data {
358 struct ehci_ctrl ctrl;
359 struct omap_ehci *ehci;
360#ifdef CONFIG_DM_REGULATOR
361 struct udevice *vbus_supply;
362#endif
363 enum usb_init_type init_type;
364 int portnr;
365 struct phy phy[OMAP_HS_USB_PORTS];
366 int nports;
367};
368
369static int ehci_usb_ofdata_to_platdata(struct udevice *dev)
370{
371 struct usb_platdata *plat = dev_get_platdata(dev);
372
373 plat->init_type = USB_INIT_HOST;
374
375 return 0;
376}
377
378static int omap_ehci_probe(struct udevice *dev)
379{
380 struct usb_platdata *plat = dev_get_platdata(dev);
381 struct ehci_omap_priv_data *priv = dev_get_priv(dev);
382 struct ehci_hccr *hccr;
383 struct ehci_hcor *hcor;
384
Masahiro Yamada8613c8d2020-07-17 14:36:46 +0900385 priv->ehci = dev_read_addr_ptr(dev);
Adam Ford94ed6612020-05-16 01:19:53 -0500386 priv->portnr = dev->seq;
387 priv->init_type = plat->init_type;
388
389 hccr = (struct ehci_hccr *)&priv->ehci->hccapbase;
390 hcor = (struct ehci_hcor *)&priv->ehci->usbcmd;
391
392 return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
393}
394
395static const struct udevice_id omap_ehci_dt_ids[] = {
396 { .compatible = "ti,ehci-omap" },
397 { }
398};
399
400U_BOOT_DRIVER(usb_omap_ehci) = {
401 .name = "omap-ehci",
402 .id = UCLASS_USB,
403 .of_match = omap_ehci_dt_ids,
404 .probe = omap_ehci_probe,
405 .ofdata_to_platdata = ehci_usb_ofdata_to_platdata,
406 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
407 .priv_auto_alloc_size = sizeof(struct ehci_omap_priv_data),
408 .remove = ehci_deregister,
409 .ops = &ehci_usb_ops,
410 .flags = DM_FLAG_ALLOC_PRIV_DMA,
411};
412
413#endif