blob: b0ee57ad8a03aa08c0cc8c179a95ec16ff712de5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Mugunthan V N28b8d5f2016-11-17 14:38:08 +05302/*
3 * MISC driver for TI MUSB Glue.
4 *
5 * (C) Copyright 2016
6 * Texas Instruments Incorporated, <www.ti.com>
Mugunthan V N28b8d5f2016-11-17 14:38:08 +05307 */
8#include <common.h>
9#include <command.h>
10#include <console.h>
11#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <malloc.h>
Mugunthan V N28b8d5f2016-11-17 14:38:08 +053014#include <linux/usb/otg.h>
15#include <dm/device-internal.h>
16#include <dm/lists.h>
17
Mugunthan V Nae6acf92016-11-17 14:38:11 +053018#include <asm/io.h>
19#include <asm/omap_musb.h>
20#include "musb_uboot.h"
21
Mugunthan V N28b8d5f2016-11-17 14:38:08 +053022DECLARE_GLOBAL_DATA_PTR;
23
Sven Schwermerfd09c202018-11-21 08:43:56 +010024#if CONFIG_IS_ENABLED(DM_USB)
Mugunthan V Nae6acf92016-11-17 14:38:11 +053025/* USB 2.0 PHY Control */
26#define CM_PHY_PWRDN (1 << 0)
27#define CM_PHY_OTG_PWRDN (1 << 1)
28#define OTGVDET_EN (1 << 19)
29#define OTGSESSENDEN (1 << 20)
30
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010031#define AM335X_USB0_CTRL 0x0
Mugunthan V Nae6acf92016-11-17 14:38:11 +053032#define AM335X_USB1_CTRL 0x8
33
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010034static void ti_musb_set_phy_power(struct udevice *dev, u8 on)
35{
Simon Glassc69cda22020-12-03 16:55:20 -070036 struct ti_musb_platdata *plat = dev_get_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010037
Simon Glasscaa4daa2020-12-03 16:55:18 -070038 if (!plat->ctrl_mod_base)
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010039 return;
40
41 if (on) {
Simon Glasscaa4daa2020-12-03 16:55:18 -070042 clrsetbits_le32(plat->ctrl_mod_base,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010043 CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
44 OTGVDET_EN | OTGSESSENDEN);
45 } else {
Simon Glasscaa4daa2020-12-03 16:55:18 -070046 clrsetbits_le32(plat->ctrl_mod_base, 0,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010047 CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
48 }
49}
50
51#if CONFIG_IS_ENABLED(OF_CONTROL)
Mugunthan V Nae6acf92016-11-17 14:38:11 +053052
53static int ti_musb_get_usb_index(int node)
54{
55 const void *fdt = gd->fdt_blob;
56 int i = 0;
57 char path[64];
58 const char *alias_path;
59 char alias[16];
60
61 fdt_get_path(fdt, node, path, sizeof(path));
62
63 do {
64 snprintf(alias, sizeof(alias), "usb%d", i);
65 alias_path = fdt_get_alias(fdt, alias);
66 if (alias_path == NULL) {
67 debug("USB index not found\n");
68 return -ENOENT;
69 }
70
71 if (!strcmp(path, alias_path))
72 return i;
73
74 i++;
75 } while (alias_path);
76
77 return -ENOENT;
78}
79
Simon Glassd1998a92020-12-03 16:55:21 -070080static int ti_musb_of_to_plat(struct udevice *dev)
Mugunthan V Nae6acf92016-11-17 14:38:11 +053081{
Simon Glassc69cda22020-12-03 16:55:20 -070082 struct ti_musb_platdata *plat = dev_get_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +053083 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -070084 int node = dev_of_offset(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +053085 int phys;
86 int ctrl_mod;
87 int usb_index;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010088 struct musb_hdrc_config *musb_config;
Mugunthan V Nae6acf92016-11-17 14:38:11 +053089
Simon Glasscaa4daa2020-12-03 16:55:18 -070090 plat->base = (void *)devfdt_get_addr_index(dev, 1);
Mugunthan V Nae6acf92016-11-17 14:38:11 +053091
92 phys = fdtdec_lookup_phandle(fdt, node, "phys");
93 ctrl_mod = fdtdec_lookup_phandle(fdt, phys, "ti,ctrl_mod");
Simon Glasscaa4daa2020-12-03 16:55:18 -070094 plat->ctrl_mod_base = (void *)fdtdec_get_addr(fdt, ctrl_mod, "reg");
Mugunthan V Nae6acf92016-11-17 14:38:11 +053095 usb_index = ti_musb_get_usb_index(node);
96 switch (usb_index) {
97 case 1:
Simon Glasscaa4daa2020-12-03 16:55:18 -070098 plat->ctrl_mod_base += AM335X_USB1_CTRL;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010099 break;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530100 case 0:
Simon Glasscaa4daa2020-12-03 16:55:18 -0700101 plat->ctrl_mod_base += AM335X_USB0_CTRL;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100102 break;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530103 default:
104 break;
105 }
106
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100107 musb_config = malloc(sizeof(struct musb_hdrc_config));
108 memset(musb_config, 0, sizeof(struct musb_hdrc_config));
109
110 musb_config->multipoint = fdtdec_get_int(fdt, node,
111 "mentor,multipoint", -1);
112 if (musb_config->multipoint < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900113 pr_err("MUSB multipoint DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530114 return -ENOENT;
115 }
116
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100117 musb_config->dyn_fifo = 1;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530118
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100119 musb_config->num_eps = fdtdec_get_int(fdt, node, "mentor,num-eps",
120 -1);
121 if (musb_config->num_eps < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900122 pr_err("MUSB num-eps DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530123 return -ENOENT;
124 }
125
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100126 musb_config->ram_bits = fdtdec_get_int(fdt, node, "mentor,ram-bits",
127 -1);
128 if (musb_config->ram_bits < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900129 pr_err("MUSB ram-bits DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530130 return -ENOENT;
131 }
132
Simon Glasscaa4daa2020-12-03 16:55:18 -0700133 plat->plat.config = musb_config;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530134
Simon Glasscaa4daa2020-12-03 16:55:18 -0700135 plat->plat.power = fdtdec_get_int(fdt, node, "mentor,power", -1);
136 if (plat->plat.power < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900137 pr_err("MUSB mentor,power DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530138 return -ENOENT;
139 }
140
Simon Glasscaa4daa2020-12-03 16:55:18 -0700141 plat->plat.platform_ops = &musb_dsps_ops;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530142
143 return 0;
144}
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100145#endif
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530146
147static int ti_musb_host_probe(struct udevice *dev)
148{
149 struct musb_host_data *host = dev_get_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -0700150 struct ti_musb_platdata *plat = dev_get_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530151 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530152 int ret;
153
154 priv->desc_before_addr = true;
155
Simon Glasscaa4daa2020-12-03 16:55:18 -0700156 host->host = musb_init_controller(&plat->plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100157 NULL,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700158 plat->base);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530159 if (!host->host)
160 return -EIO;
161
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100162 ti_musb_set_phy_power(dev, 1);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530163 ret = musb_lowlevel_init(host);
164
165 return ret;
166}
167
168static int ti_musb_host_remove(struct udevice *dev)
169{
170 struct musb_host_data *host = dev_get_priv(dev);
171
172 musb_stop(host->host);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100173 ti_musb_set_phy_power(dev, 0);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530174
175 return 0;
176}
177
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100178#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700179static int ti_musb_host_of_to_plat(struct udevice *dev)
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530180{
Simon Glassc69cda22020-12-03 16:55:20 -0700181 struct ti_musb_platdata *plat = dev_get_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530182 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700183 int node = dev_of_offset(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530184 int ret;
185
Simon Glassd1998a92020-12-03 16:55:21 -0700186 ret = ti_musb_of_to_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530187 if (ret) {
Simon Glasscaa4daa2020-12-03 16:55:18 -0700188 pr_err("plat dt parse error\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530189 return ret;
190 }
191
Simon Glasscaa4daa2020-12-03 16:55:18 -0700192 plat->plat.mode = MUSB_HOST;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530193
194 return 0;
195}
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100196#endif
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530197
198U_BOOT_DRIVER(ti_musb_host) = {
199 .name = "ti-musb-host",
200 .id = UCLASS_USB,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100201#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700202 .of_to_plat = ti_musb_host_of_to_plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100203#endif
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530204 .probe = ti_musb_host_probe,
205 .remove = ti_musb_host_remove,
206 .ops = &musb_usb_ops,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700207 .plat_auto = sizeof(struct ti_musb_platdata),
Simon Glass41575d82020-12-03 16:55:17 -0700208 .priv_auto = sizeof(struct musb_host_data),
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530209};
210
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100211#if CONFIG_IS_ENABLED(DM_USB_GADGET)
212struct ti_musb_peripheral {
213 struct musb *periph;
214};
215
216#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700217static int ti_musb_peripheral_of_to_plat(struct udevice *dev)
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100218{
Simon Glassc69cda22020-12-03 16:55:20 -0700219 struct ti_musb_platdata *plat = dev_get_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100220 const void *fdt = gd->fdt_blob;
221 int node = dev_of_offset(dev);
222 int ret;
223
Simon Glassd1998a92020-12-03 16:55:21 -0700224 ret = ti_musb_of_to_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100225 if (ret) {
Simon Glasscaa4daa2020-12-03 16:55:18 -0700226 pr_err("plat dt parse error\n");
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100227 return ret;
228 }
Simon Glasscaa4daa2020-12-03 16:55:18 -0700229 plat->plat.mode = MUSB_PERIPHERAL;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100230
231 return 0;
232}
233#endif
234
235int dm_usb_gadget_handle_interrupts(struct udevice *dev)
236{
237 struct ti_musb_peripheral *priv = dev_get_priv(dev);
238
239 priv->periph->isr(0, priv->periph);
240
241 return 0;
242}
243
244static int ti_musb_peripheral_probe(struct udevice *dev)
245{
246 struct ti_musb_peripheral *priv = dev_get_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -0700247 struct ti_musb_platdata *plat = dev_get_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100248 int ret;
249
Simon Glasscaa4daa2020-12-03 16:55:18 -0700250 priv->periph = musb_init_controller(&plat->plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100251 NULL,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700252 plat->base);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100253 if (!priv->periph)
254 return -EIO;
255
256 ti_musb_set_phy_power(dev, 1);
257 musb_gadget_setup(priv->periph);
258 return usb_add_gadget_udc((struct device *)dev, &priv->periph->g);
259}
260
261static int ti_musb_peripheral_remove(struct udevice *dev)
262{
263 struct ti_musb_peripheral *priv = dev_get_priv(dev);
264
265 usb_del_gadget_udc(&priv->periph->g);
266 ti_musb_set_phy_power(dev, 0);
267
268 return 0;
269}
270
271U_BOOT_DRIVER(ti_musb_peripheral) = {
272 .name = "ti-musb-peripheral",
273 .id = UCLASS_USB_GADGET_GENERIC,
274#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700275 .of_to_plat = ti_musb_peripheral_of_to_plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100276#endif
277 .probe = ti_musb_peripheral_probe,
278 .remove = ti_musb_peripheral_remove,
279 .ops = &musb_usb_ops,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700280 .plat_auto = sizeof(struct ti_musb_platdata),
Simon Glass41575d82020-12-03 16:55:17 -0700281 .priv_auto = sizeof(struct ti_musb_peripheral),
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100282 .flags = DM_FLAG_PRE_RELOC,
283};
284#endif
285
286#if CONFIG_IS_ENABLED(OF_CONTROL)
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530287static int ti_musb_wrapper_bind(struct udevice *parent)
288{
Kever Yangac28e592020-03-04 08:59:50 +0800289 ofnode node;
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530290 int ret;
291
Kever Yangac28e592020-03-04 08:59:50 +0800292 ofnode_for_each_subnode(node, parent->node) {
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530293 struct udevice *dev;
Kever Yangac28e592020-03-04 08:59:50 +0800294 const char *name = ofnode_get_name(node);
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530295 enum usb_dr_mode dr_mode;
296 struct driver *drv;
297
298 if (strncmp(name, "usb@", 4))
299 continue;
300
301 dr_mode = usb_get_dr_mode(node);
302 switch (dr_mode) {
303 case USB_DR_MODE_PERIPHERAL:
304 /* Bind MUSB device */
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100305 ret = device_bind_driver_to_node(parent,
306 "ti-musb-peripheral",
307 name,
Kever Yangac28e592020-03-04 08:59:50 +0800308 node,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100309 &dev);
310 if (ret)
311 pr_err("musb - not able to bind usb peripheral node\n");
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530312 break;
313 case USB_DR_MODE_HOST:
314 /* Bind MUSB host */
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100315 ret = device_bind_driver_to_node(parent,
316 "ti-musb-host",
317 name,
Kever Yangac28e592020-03-04 08:59:50 +0800318 node,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100319 &dev);
320 if (ret)
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900321 pr_err("musb - not able to bind usb host node\n");
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530322 break;
323 default:
324 break;
325 };
326 }
327 return 0;
328}
329
330static const struct udevice_id ti_musb_ids[] = {
331 { .compatible = "ti,am33xx-usb" },
332 { }
333};
334
335U_BOOT_DRIVER(ti_musb_wrapper) = {
336 .name = "ti-musb-wrapper",
337 .id = UCLASS_MISC,
338 .of_match = ti_musb_ids,
339 .bind = ti_musb_wrapper_bind,
340};
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100341#endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530342
Sven Schwermerfd09c202018-11-21 08:43:56 +0100343#endif /* CONFIG_IS_ENABLED(DM_USB) */