Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2005-2007 by Texas Instruments |
| 4 | * Some code has been taken from tusb6010.c |
| 5 | * Copyrights for that are attributable to: |
| 6 | * Copyright (C) 2006 Nokia Corporation |
| 7 | * Tony Lindgren <tony@atomide.com> |
| 8 | * |
| 9 | * This file is part of the Inventra Controller Driver for Linux. |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 10 | */ |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | bd7a59a | 2019-11-14 12:57:23 -0700 | [diff] [blame] | 13 | #include <serial.h> |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 14 | #include <dm/device-internal.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 15 | #include <dm/device_compat.h> |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 16 | #include <dm/lists.h> |
Simon Glass | d66c5f7 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 17 | #include <linux/err.h> |
Simon Glass | bdd5f81 | 2023-09-14 18:21:46 -0600 | [diff] [blame] | 18 | #include <linux/printk.h> |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 19 | #include <linux/usb/otg.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 20 | #include <asm/global_data.h> |
Paul Kocialkowski | d5a43ba | 2016-02-27 19:19:05 +0100 | [diff] [blame] | 21 | #include <asm/omap_common.h> |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 22 | #include <asm/omap_musb.h> |
| 23 | #include <twl4030.h> |
| 24 | #include "linux-compat.h" |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 25 | #include "musb_core.h" |
| 26 | #include "omap2430.h" |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 27 | #include "musb_uboot.h" |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 28 | |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 29 | static inline void omap2430_low_level_exit(struct musb *musb) |
| 30 | { |
| 31 | u32 l; |
| 32 | |
| 33 | /* in any role */ |
| 34 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
| 35 | l |= ENABLEFORCE; /* enable MSTANDBY */ |
| 36 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
| 37 | } |
| 38 | |
| 39 | static inline void omap2430_low_level_init(struct musb *musb) |
| 40 | { |
| 41 | u32 l; |
| 42 | |
| 43 | l = musb_readl(musb->mregs, OTG_FORCESTDBY); |
| 44 | l &= ~ENABLEFORCE; /* disable MSTANDBY */ |
| 45 | musb_writel(musb->mregs, OTG_FORCESTDBY, l); |
| 46 | } |
| 47 | |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 48 | static int omap2430_musb_init(struct musb *musb) |
| 49 | { |
| 50 | u32 l; |
| 51 | int status = 0; |
Paul Kocialkowski | 68dbdef | 2015-01-19 18:33:43 +0100 | [diff] [blame] | 52 | unsigned long int start; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 53 | |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 54 | struct omap_musb_board_data *data = |
| 55 | (struct omap_musb_board_data *)musb->controller; |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 56 | |
Paul Kocialkowski | 68dbdef | 2015-01-19 18:33:43 +0100 | [diff] [blame] | 57 | /* Reset the controller */ |
| 58 | musb_writel(musb->mregs, OTG_SYSCONFIG, SOFTRST); |
| 59 | |
| 60 | start = get_timer(0); |
| 61 | |
| 62 | while (1) { |
| 63 | l = musb_readl(musb->mregs, OTG_SYSCONFIG); |
| 64 | if ((l & SOFTRST) == 0) |
| 65 | break; |
| 66 | |
| 67 | if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) { |
| 68 | dev_err(musb->controller, "MUSB reset is taking too long\n"); |
| 69 | return -ENODEV; |
| 70 | } |
| 71 | } |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 72 | |
| 73 | l = musb_readl(musb->mregs, OTG_INTERFSEL); |
| 74 | |
| 75 | if (data->interface_type == MUSB_INTERFACE_UTMI) { |
| 76 | /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */ |
| 77 | l &= ~ULPI_12PIN; /* Disable ULPI */ |
| 78 | l |= UTMI_8BIT; /* Enable UTMI */ |
| 79 | } else { |
| 80 | l |= ULPI_12PIN; |
| 81 | } |
| 82 | |
| 83 | musb_writel(musb->mregs, OTG_INTERFSEL, l); |
| 84 | |
| 85 | pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, " |
| 86 | "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n", |
| 87 | musb_readl(musb->mregs, OTG_REVISION), |
| 88 | musb_readl(musb->mregs, OTG_SYSCONFIG), |
| 89 | musb_readl(musb->mregs, OTG_SYSSTATUS), |
| 90 | musb_readl(musb->mregs, OTG_INTERFSEL), |
| 91 | musb_readl(musb->mregs, OTG_SIMENABLE)); |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 92 | return 0; |
| 93 | |
| 94 | err1: |
| 95 | return status; |
| 96 | } |
| 97 | |
Hans de Goede | 81c4998 | 2015-06-17 21:33:54 +0200 | [diff] [blame] | 98 | static int omap2430_musb_enable(struct musb *musb) |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 99 | { |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 100 | #ifdef CONFIG_TWL4030_USB |
| 101 | if (twl4030_usb_ulpi_init()) { |
| 102 | serial_printf("ERROR: %s Could not initialize PHY\n", |
| 103 | __PRETTY_FUNCTION__); |
| 104 | } |
| 105 | #endif |
Hans de Goede | 81c4998 | 2015-06-17 21:33:54 +0200 | [diff] [blame] | 106 | return 0; |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | static void omap2430_musb_disable(struct musb *musb) |
| 110 | { |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 111 | |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static int omap2430_musb_exit(struct musb *musb) |
| 115 | { |
| 116 | del_timer_sync(&musb_idle_timer); |
| 117 | |
| 118 | omap2430_low_level_exit(musb); |
| 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 123 | const struct musb_platform_ops omap2430_ops = { |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 124 | .init = omap2430_musb_init, |
| 125 | .exit = omap2430_musb_exit, |
Ilya Yanok | a3292f2 | 2012-11-06 13:48:29 +0000 | [diff] [blame] | 126 | .enable = omap2430_musb_enable, |
| 127 | .disable = omap2430_musb_disable, |
| 128 | }; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 129 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 130 | #if CONFIG_IS_ENABLED(DM_USB) |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 131 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 132 | struct omap2430_musb_plat { |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 133 | void *base; |
| 134 | void *ctrl_mod_base; |
| 135 | struct musb_hdrc_platform_data plat; |
| 136 | struct musb_hdrc_config musb_config; |
| 137 | struct omap_musb_board_data otg_board_data; |
| 138 | }; |
| 139 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 140 | static int omap2430_musb_of_to_plat(struct udevice *dev) |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 141 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 142 | struct omap2430_musb_plat *plat = dev_get_plat(dev); |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 143 | const void *fdt = gd->fdt_blob; |
| 144 | int node = dev_of_offset(dev); |
| 145 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 146 | plat->base = (void *)dev_read_addr_ptr(dev); |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 147 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 148 | plat->musb_config.multipoint = fdtdec_get_int(fdt, node, "multipoint", |
| 149 | -1); |
| 150 | if (plat->musb_config.multipoint < 0) { |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 151 | pr_err("MUSB multipoint DT entry missing\n"); |
| 152 | return -ENOENT; |
| 153 | } |
| 154 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 155 | plat->musb_config.dyn_fifo = 1; |
| 156 | plat->musb_config.num_eps = fdtdec_get_int(fdt, node, "num-eps", -1); |
| 157 | if (plat->musb_config.num_eps < 0) { |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 158 | pr_err("MUSB num-eps DT entry missing\n"); |
| 159 | return -ENOENT; |
| 160 | } |
| 161 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 162 | plat->musb_config.ram_bits = fdtdec_get_int(fdt, node, "ram-bits", -1); |
| 163 | if (plat->musb_config.ram_bits < 0) { |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 164 | pr_err("MUSB ram-bits DT entry missing\n"); |
| 165 | return -ENOENT; |
| 166 | } |
| 167 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 168 | plat->plat.power = fdtdec_get_int(fdt, node, "power", -1); |
| 169 | if (plat->plat.power < 0) { |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 170 | pr_err("MUSB power DT entry missing\n"); |
| 171 | return -ENOENT; |
| 172 | } |
| 173 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 174 | plat->otg_board_data.interface_type = fdtdec_get_int(fdt, node, |
| 175 | "interface-type", |
| 176 | -1); |
| 177 | if (plat->otg_board_data.interface_type < 0) { |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 178 | pr_err("MUSB interface-type DT entry missing\n"); |
| 179 | return -ENOENT; |
| 180 | } |
| 181 | |
| 182 | #if 0 /* In a perfect world, mode would be set to OTG, mode 3 from DT */ |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 183 | plat->plat.mode = fdtdec_get_int(fdt, node, "mode", -1); |
| 184 | if (plat->plat.mode < 0) { |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 185 | pr_err("MUSB mode DT entry missing\n"); |
| 186 | return -ENOENT; |
| 187 | } |
| 188 | #else /* MUSB_OTG, it doesn't work */ |
| 189 | #ifdef CONFIG_USB_MUSB_HOST /* Host seems to be the only option that works */ |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 190 | plat->plat.mode = MUSB_HOST; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 191 | #else /* For that matter, MUSB_PERIPHERAL doesn't either */ |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 192 | plat->plat.mode = MUSB_PERIPHERAL; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 193 | #endif |
| 194 | #endif |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 195 | plat->otg_board_data.dev = dev; |
| 196 | plat->plat.config = &plat->musb_config; |
| 197 | plat->plat.platform_ops = &omap2430_ops; |
| 198 | plat->plat.board_data = &plat->otg_board_data; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 199 | return 0; |
| 200 | } |
| 201 | |
| 202 | static int omap2430_musb_probe(struct udevice *dev) |
| 203 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 204 | struct omap2430_musb_plat *plat = dev_get_plat(dev); |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 205 | struct omap_musb_board_data *otg_board_data; |
Derald D. Woods | 3f12cf1 | 2019-05-27 21:22:00 -0500 | [diff] [blame] | 206 | int ret = 0; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 207 | void *base = dev_read_addr_ptr(dev); |
Andreas Kemnade | 24ca809 | 2023-01-09 08:13:30 +0100 | [diff] [blame] | 208 | struct musb *musbp; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 209 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 210 | otg_board_data = &plat->otg_board_data; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 211 | |
Simon Glass | 84858a6 | 2023-02-05 15:44:26 -0700 | [diff] [blame] | 212 | if (IS_ENABLED(CONFIG_USB_MUSB_HOST)) { |
Andreas Kemnade | 24ca809 | 2023-01-09 08:13:30 +0100 | [diff] [blame] | 213 | struct musb_host_data *host = dev_get_priv(dev); |
| 214 | struct usb_bus_priv *priv = dev_get_uclass_priv(dev); |
| 215 | |
| 216 | priv->desc_before_addr = true; |
| 217 | |
| 218 | host->host = musb_init_controller(&plat->plat, |
| 219 | (struct device *)otg_board_data, |
| 220 | plat->base); |
| 221 | if (!host->host) |
| 222 | return -EIO; |
| 223 | |
| 224 | return musb_lowlevel_init(host); |
Andreas Kemnade | 308d265 | 2023-01-09 08:13:31 +0100 | [diff] [blame] | 225 | } else if (CONFIG_IS_ENABLED(DM_USB_GADGET)) { |
| 226 | struct musb_host_data *host = dev_get_priv(dev); |
| 227 | |
| 228 | host->host = musb_init_controller(&plat->plat, |
| 229 | (struct device *)otg_board_data, |
| 230 | plat->base); |
| 231 | if (!host->host) |
| 232 | return -EIO; |
| 233 | |
| 234 | return usb_add_gadget_udc((struct device *)otg_board_data, &host->host->g); |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 235 | } |
| 236 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 237 | musbp = musb_register(&plat->plat, (struct device *)otg_board_data, |
| 238 | plat->base); |
Derald D. Woods | 3f12cf1 | 2019-05-27 21:22:00 -0500 | [diff] [blame] | 239 | if (IS_ERR_OR_NULL(musbp)) |
| 240 | return -EINVAL; |
Andreas Kemnade | 24ca809 | 2023-01-09 08:13:30 +0100 | [diff] [blame] | 241 | |
| 242 | return 0; |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | static int omap2430_musb_remove(struct udevice *dev) |
| 246 | { |
| 247 | struct musb_host_data *host = dev_get_priv(dev); |
| 248 | |
| 249 | musb_stop(host->host); |
| 250 | |
| 251 | return 0; |
| 252 | } |
| 253 | |
Marek Vasut | c720537 | 2024-06-14 02:51:22 +0200 | [diff] [blame] | 254 | #ifndef CONFIG_USB_MUSB_HOST |
| 255 | static int omap2340_gadget_handle_interrupts(struct udevice *dev) |
| 256 | { |
| 257 | struct musb_host_data *host = dev_get_priv(dev); |
| 258 | |
| 259 | host->host->isr(0, host->host); |
| 260 | |
| 261 | return 0; |
| 262 | } |
| 263 | |
| 264 | static const struct usb_gadget_generic_ops omap2340_gadget_ops = { |
| 265 | .handle_interrupts = omap2340_gadget_handle_interrupts, |
| 266 | }; |
| 267 | #endif |
| 268 | |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 269 | static const struct udevice_id omap2430_musb_ids[] = { |
| 270 | { .compatible = "ti,omap3-musb" }, |
| 271 | { .compatible = "ti,omap4-musb" }, |
| 272 | { } |
| 273 | }; |
| 274 | |
| 275 | U_BOOT_DRIVER(omap2430_musb) = { |
| 276 | .name = "omap2430-musb", |
| 277 | #ifdef CONFIG_USB_MUSB_HOST |
| 278 | .id = UCLASS_USB, |
| 279 | #else |
Jean-Jacques Hiblot | 9dc0d5c | 2018-11-29 10:52:46 +0100 | [diff] [blame] | 280 | .id = UCLASS_USB_GADGET_GENERIC, |
Marek Vasut | c720537 | 2024-06-14 02:51:22 +0200 | [diff] [blame] | 281 | .ops = &omap2340_gadget_ops, |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 282 | #endif |
| 283 | .of_match = omap2430_musb_ids, |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 284 | .of_to_plat = omap2430_musb_of_to_plat, |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 285 | .probe = omap2430_musb_probe, |
| 286 | .remove = omap2430_musb_remove, |
| 287 | #ifdef CONFIG_USB_MUSB_HOST |
| 288 | .ops = &musb_usb_ops, |
| 289 | #endif |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 290 | .plat_auto = sizeof(struct omap2430_musb_plat), |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 291 | .priv_auto = sizeof(struct musb_host_data), |
Adam Ford | 0b957cd | 2018-07-31 05:58:01 -0500 | [diff] [blame] | 292 | }; |
| 293 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 294 | #endif /* CONFIG_IS_ENABLED(DM_USB) */ |