Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 2 | /* |
| 3 | * MISC driver for TI MUSB Glue. |
| 4 | * |
| 5 | * (C) Copyright 2016 |
| 6 | * Texas Instruments Incorporated, <www.ti.com> |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 7 | */ |
| 8 | #include <common.h> |
| 9 | #include <command.h> |
| 10 | #include <console.h> |
| 11 | #include <dm.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 15 | #include <linux/usb/otg.h> |
| 16 | #include <dm/device-internal.h> |
| 17 | #include <dm/lists.h> |
| 18 | |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 19 | #include <asm/io.h> |
| 20 | #include <asm/omap_musb.h> |
| 21 | #include "musb_uboot.h" |
| 22 | |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Sven Schwermer | fd09c20 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 25 | #if CONFIG_IS_ENABLED(DM_USB) |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 26 | /* USB 2.0 PHY Control */ |
| 27 | #define CM_PHY_PWRDN (1 << 0) |
| 28 | #define CM_PHY_OTG_PWRDN (1 << 1) |
| 29 | #define OTGVDET_EN (1 << 19) |
| 30 | #define OTGSESSENDEN (1 << 20) |
| 31 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 32 | #define AM335X_USB0_CTRL 0x0 |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 33 | #define AM335X_USB1_CTRL 0x8 |
| 34 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 35 | static void ti_musb_set_phy_power(struct udevice *dev, u8 on) |
| 36 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 37 | struct ti_musb_plat *plat = dev_get_plat(dev); |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 38 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 39 | if (!plat->ctrl_mod_base) |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 40 | return; |
| 41 | |
| 42 | if (on) { |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 43 | clrsetbits_le32(plat->ctrl_mod_base, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 44 | CM_PHY_PWRDN | CM_PHY_OTG_PWRDN, |
| 45 | OTGVDET_EN | OTGSESSENDEN); |
| 46 | } else { |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 47 | clrsetbits_le32(plat->ctrl_mod_base, 0, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 48 | CM_PHY_PWRDN | CM_PHY_OTG_PWRDN); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 53 | |
| 54 | static int ti_musb_get_usb_index(int node) |
| 55 | { |
| 56 | const void *fdt = gd->fdt_blob; |
| 57 | int i = 0; |
| 58 | char path[64]; |
| 59 | const char *alias_path; |
| 60 | char alias[16]; |
| 61 | |
| 62 | fdt_get_path(fdt, node, path, sizeof(path)); |
| 63 | |
| 64 | do { |
| 65 | snprintf(alias, sizeof(alias), "usb%d", i); |
| 66 | alias_path = fdt_get_alias(fdt, alias); |
| 67 | if (alias_path == NULL) { |
| 68 | debug("USB index not found\n"); |
| 69 | return -ENOENT; |
| 70 | } |
| 71 | |
| 72 | if (!strcmp(path, alias_path)) |
| 73 | return i; |
| 74 | |
| 75 | i++; |
| 76 | } while (alias_path); |
| 77 | |
| 78 | return -ENOENT; |
| 79 | } |
| 80 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 81 | static int ti_musb_of_to_plat(struct udevice *dev) |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 82 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 83 | struct ti_musb_plat *plat = dev_get_plat(dev); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 84 | const void *fdt = gd->fdt_blob; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 85 | int node = dev_of_offset(dev); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 86 | int phys; |
| 87 | int ctrl_mod; |
| 88 | int usb_index; |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 89 | struct musb_hdrc_config *musb_config; |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 90 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 91 | plat->base = (void *)devfdt_get_addr_index(dev, 1); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 92 | |
| 93 | phys = fdtdec_lookup_phandle(fdt, node, "phys"); |
| 94 | ctrl_mod = fdtdec_lookup_phandle(fdt, phys, "ti,ctrl_mod"); |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 95 | plat->ctrl_mod_base = (void *)fdtdec_get_addr(fdt, ctrl_mod, "reg"); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 96 | usb_index = ti_musb_get_usb_index(node); |
| 97 | switch (usb_index) { |
| 98 | case 1: |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 99 | plat->ctrl_mod_base += AM335X_USB1_CTRL; |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 100 | break; |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 101 | case 0: |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 102 | plat->ctrl_mod_base += AM335X_USB0_CTRL; |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 103 | break; |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 104 | default: |
| 105 | break; |
| 106 | } |
| 107 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 108 | musb_config = malloc(sizeof(struct musb_hdrc_config)); |
| 109 | memset(musb_config, 0, sizeof(struct musb_hdrc_config)); |
| 110 | |
| 111 | musb_config->multipoint = fdtdec_get_int(fdt, node, |
| 112 | "mentor,multipoint", -1); |
| 113 | if (musb_config->multipoint < 0) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 114 | pr_err("MUSB multipoint DT entry missing\n"); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 115 | return -ENOENT; |
| 116 | } |
| 117 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 118 | musb_config->dyn_fifo = 1; |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 119 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 120 | musb_config->num_eps = fdtdec_get_int(fdt, node, "mentor,num-eps", |
| 121 | -1); |
| 122 | if (musb_config->num_eps < 0) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 123 | pr_err("MUSB num-eps DT entry missing\n"); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 124 | return -ENOENT; |
| 125 | } |
| 126 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 127 | musb_config->ram_bits = fdtdec_get_int(fdt, node, "mentor,ram-bits", |
| 128 | -1); |
| 129 | if (musb_config->ram_bits < 0) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 130 | pr_err("MUSB ram-bits DT entry missing\n"); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 131 | return -ENOENT; |
| 132 | } |
| 133 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 134 | plat->plat.config = musb_config; |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 135 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 136 | plat->plat.power = fdtdec_get_int(fdt, node, "mentor,power", -1); |
| 137 | if (plat->plat.power < 0) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 138 | pr_err("MUSB mentor,power DT entry missing\n"); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 139 | return -ENOENT; |
| 140 | } |
| 141 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 142 | plat->plat.platform_ops = &musb_dsps_ops; |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 143 | |
| 144 | return 0; |
| 145 | } |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 146 | #endif |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 147 | |
| 148 | static int ti_musb_host_probe(struct udevice *dev) |
| 149 | { |
| 150 | struct musb_host_data *host = dev_get_priv(dev); |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 151 | struct ti_musb_plat *plat = dev_get_plat(dev); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 152 | struct usb_bus_priv *priv = dev_get_uclass_priv(dev); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 153 | int ret; |
| 154 | |
| 155 | priv->desc_before_addr = true; |
| 156 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 157 | host->host = musb_init_controller(&plat->plat, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 158 | NULL, |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 159 | plat->base); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 160 | if (!host->host) |
| 161 | return -EIO; |
| 162 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 163 | ti_musb_set_phy_power(dev, 1); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 164 | ret = musb_lowlevel_init(host); |
| 165 | |
| 166 | return ret; |
| 167 | } |
| 168 | |
| 169 | static int ti_musb_host_remove(struct udevice *dev) |
| 170 | { |
| 171 | struct musb_host_data *host = dev_get_priv(dev); |
| 172 | |
| 173 | musb_stop(host->host); |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 174 | ti_musb_set_phy_power(dev, 0); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 179 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 180 | static int ti_musb_host_of_to_plat(struct udevice *dev) |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 181 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 182 | struct ti_musb_plat *plat = dev_get_plat(dev); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 183 | const void *fdt = gd->fdt_blob; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 184 | int node = dev_of_offset(dev); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 185 | int ret; |
| 186 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 187 | ret = ti_musb_of_to_plat(dev); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 188 | if (ret) { |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 189 | pr_err("plat dt parse error\n"); |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 190 | return ret; |
| 191 | } |
| 192 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 193 | plat->plat.mode = MUSB_HOST; |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 194 | |
| 195 | return 0; |
| 196 | } |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 197 | #endif |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 198 | |
| 199 | U_BOOT_DRIVER(ti_musb_host) = { |
| 200 | .name = "ti-musb-host", |
| 201 | .id = UCLASS_USB, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 202 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 203 | .of_to_plat = ti_musb_host_of_to_plat, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 204 | #endif |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 205 | .probe = ti_musb_host_probe, |
| 206 | .remove = ti_musb_host_remove, |
| 207 | .ops = &musb_usb_ops, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 208 | .plat_auto = sizeof(struct ti_musb_plat), |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 209 | .priv_auto = sizeof(struct musb_host_data), |
Mugunthan V N | ae6acf9 | 2016-11-17 14:38:11 +0530 | [diff] [blame] | 210 | }; |
| 211 | |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 212 | #if CONFIG_IS_ENABLED(DM_USB_GADGET) |
| 213 | struct ti_musb_peripheral { |
| 214 | struct musb *periph; |
| 215 | }; |
| 216 | |
| 217 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 218 | static int ti_musb_peripheral_of_to_plat(struct udevice *dev) |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 219 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 220 | struct ti_musb_plat *plat = dev_get_plat(dev); |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 221 | const void *fdt = gd->fdt_blob; |
| 222 | int node = dev_of_offset(dev); |
| 223 | int ret; |
| 224 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 225 | ret = ti_musb_of_to_plat(dev); |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 226 | if (ret) { |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 227 | pr_err("plat dt parse error\n"); |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 228 | return ret; |
| 229 | } |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 230 | plat->plat.mode = MUSB_PERIPHERAL; |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 231 | |
| 232 | return 0; |
| 233 | } |
| 234 | #endif |
| 235 | |
| 236 | int dm_usb_gadget_handle_interrupts(struct udevice *dev) |
| 237 | { |
| 238 | struct ti_musb_peripheral *priv = dev_get_priv(dev); |
| 239 | |
| 240 | priv->periph->isr(0, priv->periph); |
| 241 | |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | static int ti_musb_peripheral_probe(struct udevice *dev) |
| 246 | { |
| 247 | struct ti_musb_peripheral *priv = dev_get_priv(dev); |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 248 | struct ti_musb_plat *plat = dev_get_plat(dev); |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 249 | int ret; |
| 250 | |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 251 | priv->periph = musb_init_controller(&plat->plat, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 252 | NULL, |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 253 | plat->base); |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 254 | if (!priv->periph) |
| 255 | return -EIO; |
| 256 | |
| 257 | ti_musb_set_phy_power(dev, 1); |
| 258 | musb_gadget_setup(priv->periph); |
| 259 | return usb_add_gadget_udc((struct device *)dev, &priv->periph->g); |
| 260 | } |
| 261 | |
| 262 | static int ti_musb_peripheral_remove(struct udevice *dev) |
| 263 | { |
| 264 | struct ti_musb_peripheral *priv = dev_get_priv(dev); |
| 265 | |
| 266 | usb_del_gadget_udc(&priv->periph->g); |
| 267 | ti_musb_set_phy_power(dev, 0); |
| 268 | |
| 269 | return 0; |
| 270 | } |
| 271 | |
| 272 | U_BOOT_DRIVER(ti_musb_peripheral) = { |
| 273 | .name = "ti-musb-peripheral", |
| 274 | .id = UCLASS_USB_GADGET_GENERIC, |
| 275 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 276 | .of_to_plat = ti_musb_peripheral_of_to_plat, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 277 | #endif |
| 278 | .probe = ti_musb_peripheral_probe, |
| 279 | .remove = ti_musb_peripheral_remove, |
| 280 | .ops = &musb_usb_ops, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 281 | .plat_auto = sizeof(struct ti_musb_plat), |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 282 | .priv_auto = sizeof(struct ti_musb_peripheral), |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 283 | .flags = DM_FLAG_PRE_RELOC, |
| 284 | }; |
| 285 | #endif |
| 286 | |
| 287 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 288 | static int ti_musb_wrapper_bind(struct udevice *parent) |
| 289 | { |
Kever Yang | ac28e59 | 2020-03-04 08:59:50 +0800 | [diff] [blame] | 290 | ofnode node; |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 291 | int ret; |
| 292 | |
Simon Glass | f10643c | 2020-12-19 10:40:14 -0700 | [diff] [blame] | 293 | ofnode_for_each_subnode(node, dev_ofnode(parent)) { |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 294 | struct udevice *dev; |
Kever Yang | ac28e59 | 2020-03-04 08:59:50 +0800 | [diff] [blame] | 295 | const char *name = ofnode_get_name(node); |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 296 | enum usb_dr_mode dr_mode; |
| 297 | struct driver *drv; |
| 298 | |
| 299 | if (strncmp(name, "usb@", 4)) |
| 300 | continue; |
| 301 | |
| 302 | dr_mode = usb_get_dr_mode(node); |
| 303 | switch (dr_mode) { |
| 304 | case USB_DR_MODE_PERIPHERAL: |
| 305 | /* Bind MUSB device */ |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 306 | ret = device_bind_driver_to_node(parent, |
| 307 | "ti-musb-peripheral", |
| 308 | name, |
Kever Yang | ac28e59 | 2020-03-04 08:59:50 +0800 | [diff] [blame] | 309 | node, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 310 | &dev); |
| 311 | if (ret) |
| 312 | pr_err("musb - not able to bind usb peripheral node\n"); |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 313 | break; |
| 314 | case USB_DR_MODE_HOST: |
| 315 | /* Bind MUSB host */ |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 316 | ret = device_bind_driver_to_node(parent, |
| 317 | "ti-musb-host", |
| 318 | name, |
Kever Yang | ac28e59 | 2020-03-04 08:59:50 +0800 | [diff] [blame] | 319 | node, |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 320 | &dev); |
| 321 | if (ret) |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 322 | pr_err("musb - not able to bind usb host node\n"); |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 323 | break; |
| 324 | default: |
| 325 | break; |
| 326 | }; |
| 327 | } |
| 328 | return 0; |
| 329 | } |
| 330 | |
| 331 | static const struct udevice_id ti_musb_ids[] = { |
| 332 | { .compatible = "ti,am33xx-usb" }, |
| 333 | { } |
| 334 | }; |
| 335 | |
| 336 | U_BOOT_DRIVER(ti_musb_wrapper) = { |
| 337 | .name = "ti-musb-wrapper", |
| 338 | .id = UCLASS_MISC, |
| 339 | .of_match = ti_musb_ids, |
| 340 | .bind = ti_musb_wrapper_bind, |
| 341 | }; |
Jean-Jacques Hiblot | 7d98dbc | 2018-12-04 11:30:57 +0100 | [diff] [blame] | 342 | #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */ |
Mugunthan V N | 28b8d5f | 2016-11-17 14:38:08 +0530 | [diff] [blame] | 343 | |
Sven Schwermer | fd09c20 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 344 | #endif /* CONFIG_IS_ENABLED(DM_USB) */ |