blob: 91042935b07b90c149d9b0493d52798f3b87e860 [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>
Simon Glass401d1c42020-10-30 21:38:53 -060014#include <asm/global_data.h>
Mugunthan V N28b8d5f2016-11-17 14:38:08 +053015#include <linux/usb/otg.h>
16#include <dm/device-internal.h>
17#include <dm/lists.h>
18
Mugunthan V Nae6acf92016-11-17 14:38:11 +053019#include <asm/io.h>
20#include <asm/omap_musb.h>
21#include "musb_uboot.h"
22
Mugunthan V N28b8d5f2016-11-17 14:38:08 +053023DECLARE_GLOBAL_DATA_PTR;
24
Sven Schwermerfd09c202018-11-21 08:43:56 +010025#if CONFIG_IS_ENABLED(DM_USB)
Mugunthan V Nae6acf92016-11-17 14:38:11 +053026/* 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 Hiblot7d98dbc2018-12-04 11:30:57 +010032#define AM335X_USB0_CTRL 0x0
Mugunthan V Nae6acf92016-11-17 14:38:11 +053033#define AM335X_USB1_CTRL 0x8
34
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010035static void ti_musb_set_phy_power(struct udevice *dev, u8 on)
36{
Simon Glass8a8d24b2020-12-03 16:55:23 -070037 struct ti_musb_plat *plat = dev_get_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010038
Simon Glasscaa4daa2020-12-03 16:55:18 -070039 if (!plat->ctrl_mod_base)
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010040 return;
41
42 if (on) {
Simon Glasscaa4daa2020-12-03 16:55:18 -070043 clrsetbits_le32(plat->ctrl_mod_base,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010044 CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
45 OTGVDET_EN | OTGSESSENDEN);
46 } else {
Simon Glasscaa4daa2020-12-03 16:55:18 -070047 clrsetbits_le32(plat->ctrl_mod_base, 0,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010048 CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
49 }
50}
51
52#if CONFIG_IS_ENABLED(OF_CONTROL)
Mugunthan V Nae6acf92016-11-17 14:38:11 +053053
54static 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 Glassd1998a92020-12-03 16:55:21 -070081static int ti_musb_of_to_plat(struct udevice *dev)
Mugunthan V Nae6acf92016-11-17 14:38:11 +053082{
Simon Glass8a8d24b2020-12-03 16:55:23 -070083 struct ti_musb_plat *plat = dev_get_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +053084 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -070085 int node = dev_of_offset(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +053086 int phys;
87 int ctrl_mod;
88 int usb_index;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +010089 struct musb_hdrc_config *musb_config;
Mugunthan V Nae6acf92016-11-17 14:38:11 +053090
Simon Glasscaa4daa2020-12-03 16:55:18 -070091 plat->base = (void *)devfdt_get_addr_index(dev, 1);
Mugunthan V Nae6acf92016-11-17 14:38:11 +053092
93 phys = fdtdec_lookup_phandle(fdt, node, "phys");
94 ctrl_mod = fdtdec_lookup_phandle(fdt, phys, "ti,ctrl_mod");
Simon Glasscaa4daa2020-12-03 16:55:18 -070095 plat->ctrl_mod_base = (void *)fdtdec_get_addr(fdt, ctrl_mod, "reg");
Mugunthan V Nae6acf92016-11-17 14:38:11 +053096 usb_index = ti_musb_get_usb_index(node);
97 switch (usb_index) {
98 case 1:
Simon Glasscaa4daa2020-12-03 16:55:18 -070099 plat->ctrl_mod_base += AM335X_USB1_CTRL;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100100 break;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530101 case 0:
Simon Glasscaa4daa2020-12-03 16:55:18 -0700102 plat->ctrl_mod_base += AM335X_USB0_CTRL;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100103 break;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530104 default:
105 break;
106 }
107
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100108 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 Yamada9b643e32017-09-16 14:10:41 +0900114 pr_err("MUSB multipoint DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530115 return -ENOENT;
116 }
117
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100118 musb_config->dyn_fifo = 1;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530119
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100120 musb_config->num_eps = fdtdec_get_int(fdt, node, "mentor,num-eps",
121 -1);
122 if (musb_config->num_eps < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900123 pr_err("MUSB num-eps DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530124 return -ENOENT;
125 }
126
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100127 musb_config->ram_bits = fdtdec_get_int(fdt, node, "mentor,ram-bits",
128 -1);
129 if (musb_config->ram_bits < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900130 pr_err("MUSB ram-bits DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530131 return -ENOENT;
132 }
133
Simon Glasscaa4daa2020-12-03 16:55:18 -0700134 plat->plat.config = musb_config;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530135
Simon Glasscaa4daa2020-12-03 16:55:18 -0700136 plat->plat.power = fdtdec_get_int(fdt, node, "mentor,power", -1);
137 if (plat->plat.power < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900138 pr_err("MUSB mentor,power DT entry missing\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530139 return -ENOENT;
140 }
141
Simon Glasscaa4daa2020-12-03 16:55:18 -0700142 plat->plat.platform_ops = &musb_dsps_ops;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530143
144 return 0;
145}
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100146#endif
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530147
148static int ti_musb_host_probe(struct udevice *dev)
149{
150 struct musb_host_data *host = dev_get_priv(dev);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700151 struct ti_musb_plat *plat = dev_get_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530152 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530153 int ret;
154
155 priv->desc_before_addr = true;
156
Simon Glasscaa4daa2020-12-03 16:55:18 -0700157 host->host = musb_init_controller(&plat->plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100158 NULL,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700159 plat->base);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530160 if (!host->host)
161 return -EIO;
162
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100163 ti_musb_set_phy_power(dev, 1);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530164 ret = musb_lowlevel_init(host);
165
166 return ret;
167}
168
169static 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 Hiblot7d98dbc2018-12-04 11:30:57 +0100174 ti_musb_set_phy_power(dev, 0);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530175
176 return 0;
177}
178
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100179#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700180static int ti_musb_host_of_to_plat(struct udevice *dev)
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530181{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700182 struct ti_musb_plat *plat = dev_get_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530183 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700184 int node = dev_of_offset(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530185 int ret;
186
Simon Glassd1998a92020-12-03 16:55:21 -0700187 ret = ti_musb_of_to_plat(dev);
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530188 if (ret) {
Simon Glasscaa4daa2020-12-03 16:55:18 -0700189 pr_err("plat dt parse error\n");
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530190 return ret;
191 }
192
Simon Glasscaa4daa2020-12-03 16:55:18 -0700193 plat->plat.mode = MUSB_HOST;
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530194
195 return 0;
196}
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100197#endif
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530198
199U_BOOT_DRIVER(ti_musb_host) = {
200 .name = "ti-musb-host",
201 .id = UCLASS_USB,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100202#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700203 .of_to_plat = ti_musb_host_of_to_plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100204#endif
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530205 .probe = ti_musb_host_probe,
206 .remove = ti_musb_host_remove,
207 .ops = &musb_usb_ops,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700208 .plat_auto = sizeof(struct ti_musb_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700209 .priv_auto = sizeof(struct musb_host_data),
Mugunthan V Nae6acf92016-11-17 14:38:11 +0530210};
211
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100212#if CONFIG_IS_ENABLED(DM_USB_GADGET)
213struct ti_musb_peripheral {
214 struct musb *periph;
215};
216
217#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700218static int ti_musb_peripheral_of_to_plat(struct udevice *dev)
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100219{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700220 struct ti_musb_plat *plat = dev_get_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100221 const void *fdt = gd->fdt_blob;
222 int node = dev_of_offset(dev);
223 int ret;
224
Simon Glassd1998a92020-12-03 16:55:21 -0700225 ret = ti_musb_of_to_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100226 if (ret) {
Simon Glasscaa4daa2020-12-03 16:55:18 -0700227 pr_err("plat dt parse error\n");
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100228 return ret;
229 }
Simon Glasscaa4daa2020-12-03 16:55:18 -0700230 plat->plat.mode = MUSB_PERIPHERAL;
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100231
232 return 0;
233}
234#endif
235
236int 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
245static int ti_musb_peripheral_probe(struct udevice *dev)
246{
247 struct ti_musb_peripheral *priv = dev_get_priv(dev);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700248 struct ti_musb_plat *plat = dev_get_plat(dev);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100249 int ret;
250
Simon Glasscaa4daa2020-12-03 16:55:18 -0700251 priv->periph = musb_init_controller(&plat->plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100252 NULL,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700253 plat->base);
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100254 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
262static 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
272U_BOOT_DRIVER(ti_musb_peripheral) = {
273 .name = "ti-musb-peripheral",
274 .id = UCLASS_USB_GADGET_GENERIC,
275#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassd1998a92020-12-03 16:55:21 -0700276 .of_to_plat = ti_musb_peripheral_of_to_plat,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100277#endif
278 .probe = ti_musb_peripheral_probe,
279 .remove = ti_musb_peripheral_remove,
280 .ops = &musb_usb_ops,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700281 .plat_auto = sizeof(struct ti_musb_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700282 .priv_auto = sizeof(struct ti_musb_peripheral),
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100283 .flags = DM_FLAG_PRE_RELOC,
284};
285#endif
286
287#if CONFIG_IS_ENABLED(OF_CONTROL)
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530288static int ti_musb_wrapper_bind(struct udevice *parent)
289{
Kever Yangac28e592020-03-04 08:59:50 +0800290 ofnode node;
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530291 int ret;
292
Simon Glassf10643c2020-12-19 10:40:14 -0700293 ofnode_for_each_subnode(node, dev_ofnode(parent)) {
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530294 struct udevice *dev;
Kever Yangac28e592020-03-04 08:59:50 +0800295 const char *name = ofnode_get_name(node);
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530296 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 Hiblot7d98dbc2018-12-04 11:30:57 +0100306 ret = device_bind_driver_to_node(parent,
307 "ti-musb-peripheral",
308 name,
Kever Yangac28e592020-03-04 08:59:50 +0800309 node,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100310 &dev);
311 if (ret)
312 pr_err("musb - not able to bind usb peripheral node\n");
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530313 break;
314 case USB_DR_MODE_HOST:
315 /* Bind MUSB host */
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100316 ret = device_bind_driver_to_node(parent,
317 "ti-musb-host",
318 name,
Kever Yangac28e592020-03-04 08:59:50 +0800319 node,
Jean-Jacques Hiblot7d98dbc2018-12-04 11:30:57 +0100320 &dev);
321 if (ret)
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900322 pr_err("musb - not able to bind usb host node\n");
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530323 break;
324 default:
325 break;
326 };
327 }
328 return 0;
329}
330
331static const struct udevice_id ti_musb_ids[] = {
332 { .compatible = "ti,am33xx-usb" },
333 { }
334};
335
336U_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 Hiblot7d98dbc2018-12-04 11:30:57 +0100342#endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
Mugunthan V N28b8d5f2016-11-17 14:38:08 +0530343
Sven Schwermerfd09c202018-11-21 08:43:56 +0100344#endif /* CONFIG_IS_ENABLED(DM_USB) */