123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- /*
- * MISC driver for TI MUSB Glue.
- *
- * (C) Copyright 2016
- * Texas Instruments Incorporated, <www.ti.com>
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
- #include <common.h>
- #include <command.h>
- #include <console.h>
- #include <dm.h>
- #include <linux/usb/otg.h>
- #include <dm/device-internal.h>
- #include <dm/lists.h>
- #include <watchdog.h>
- #include <asm/io.h>
- #include <asm/omap_musb.h>
- #include "musb_uboot.h"
- DECLARE_GLOBAL_DATA_PTR;
- #ifdef CONFIG_DM_USB
- /* USB 2.0 PHY Control */
- #define CM_PHY_PWRDN (1 << 0)
- #define CM_PHY_OTG_PWRDN (1 << 1)
- #define OTGVDET_EN (1 << 19)
- #define OTGSESSENDEN (1 << 20)
- #define AM335X_USB1_CTRL 0x8
- struct ti_musb_platdata {
- void *base;
- void *ctrl_mod_base;
- struct musb_hdrc_platform_data plat;
- struct musb_hdrc_config musb_config;
- struct omap_musb_board_data otg_board_data;
- };
- static int ti_musb_get_usb_index(int node)
- {
- const void *fdt = gd->fdt_blob;
- int i = 0;
- char path[64];
- const char *alias_path;
- char alias[16];
- fdt_get_path(fdt, node, path, sizeof(path));
- do {
- snprintf(alias, sizeof(alias), "usb%d", i);
- alias_path = fdt_get_alias(fdt, alias);
- if (alias_path == NULL) {
- debug("USB index not found\n");
- return -ENOENT;
- }
- if (!strcmp(path, alias_path))
- return i;
- i++;
- } while (alias_path);
- return -ENOENT;
- }
- static void ti_musb_set_phy_power(struct udevice *dev, u8 on)
- {
- struct ti_musb_platdata *platdata = dev_get_platdata(dev);
- if (on) {
- clrsetbits_le32(platdata->ctrl_mod_base,
- CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
- OTGVDET_EN | OTGSESSENDEN);
- } else {
- clrsetbits_le32(platdata->ctrl_mod_base, 0,
- CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
- }
- }
- static int ti_musb_ofdata_to_platdata(struct udevice *dev)
- {
- struct ti_musb_platdata *platdata = dev_get_platdata(dev);
- const void *fdt = gd->fdt_blob;
- int node = dev->of_offset;
- int phys;
- int ctrl_mod;
- int usb_index;
- platdata->base = (void *)dev_get_addr_index(dev, 1);
- phys = fdtdec_lookup_phandle(fdt, node, "phys");
- ctrl_mod = fdtdec_lookup_phandle(fdt, phys, "ti,ctrl_mod");
- platdata->ctrl_mod_base = (void *)fdtdec_get_addr(fdt, ctrl_mod, "reg");
- usb_index = ti_musb_get_usb_index(node);
- switch (usb_index) {
- case 1:
- platdata->ctrl_mod_base += AM335X_USB1_CTRL;
- case 0:
- default:
- break;
- }
- platdata->musb_config.multipoint = fdtdec_get_int(fdt, node,
- "mentor,multipoint",
- -1);
- if (platdata->musb_config.multipoint < 0) {
- error("MUSB multipoint DT entry missing\n");
- return -ENOENT;
- }
- platdata->musb_config.dyn_fifo = 1;
- platdata->musb_config.num_eps = fdtdec_get_int(fdt, node,
- "mentor,num-eps", -1);
- if (platdata->musb_config.num_eps < 0) {
- error("MUSB num-eps DT entry missing\n");
- return -ENOENT;
- }
- platdata->musb_config.ram_bits = fdtdec_get_int(fdt, node,
- "mentor,ram-bits", -1);
- if (platdata->musb_config.ram_bits < 0) {
- error("MUSB ram-bits DT entry missing\n");
- return -ENOENT;
- }
- platdata->otg_board_data.set_phy_power = ti_musb_set_phy_power;
- platdata->otg_board_data.dev = dev;
- platdata->plat.config = &platdata->musb_config;
- platdata->plat.power = fdtdec_get_int(fdt, node, "mentor,power", -1);
- if (platdata->plat.power < 0) {
- error("MUSB mentor,power DT entry missing\n");
- return -ENOENT;
- }
- platdata->plat.platform_ops = &musb_dsps_ops;
- platdata->plat.board_data = &platdata->otg_board_data;
- return 0;
- }
- static struct musb *gadget;
- int usb_gadget_handle_interrupts(int index)
- {
- WATCHDOG_RESET();
- if (!gadget || !gadget->isr)
- return -EINVAL;
- return gadget->isr(0, gadget);
- }
- int usb_gadget_register_driver(struct usb_gadget_driver *driver)
- {
- int ret;
- if (!driver || driver->speed < USB_SPEED_FULL || !driver->bind ||
- !driver->setup) {
- printf("Bad parameter.\n");
- return -EINVAL;
- }
- if (!gadget) {
- printf("Controller uninitialized\n");
- return -ENXIO;
- }
- ret = musb_gadget_start(&gadget->g, driver);
- if (ret < 0)
- return ret;
- ret = driver->bind(&gadget->g);
- if (ret < 0)
- return ret;
- return 0;
- }
- int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
- {
- if (driver->disconnect)
- driver->disconnect(&gadget->g);
- if (driver->unbind)
- driver->unbind(&gadget->g);
- return 0;
- }
- static int ti_musb_peripheral_usb_probe(struct udevice *dev)
- {
- struct ti_musb_platdata *platdata = dev_get_platdata(dev);
- struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
- struct omap_musb_board_data *otg_board_data;
- otg_board_data = &platdata->otg_board_data;
- gadget = musb_init_controller(&platdata->plat,
- (struct device *)otg_board_data,
- platdata->base);
- if (!gadget) {
- error("gadget init failed\n");
- return -EIO;
- }
- return 0;
- }
- static int ti_musb_peripheral_remove(struct udevice *dev)
- {
- musb_stop(gadget);
- return 0;
- }
- static int ti_musb_peripheral_ofdata_to_platdata(struct udevice *dev)
- {
- struct ti_musb_platdata *platdata = dev_get_platdata(dev);
- const void *fdt = gd->fdt_blob;
- int node = dev->of_offset;
- int ret;
- ret = ti_musb_ofdata_to_platdata(dev);
- if (ret) {
- error("platdata dt parse error\n");
- return ret;
- }
- platdata->plat.mode = MUSB_PERIPHERAL;
- return 0;
- }
- U_BOOT_DRIVER(ti_musb_peripheral) = {
- .name = "ti-musb-peripheral",
- .id = UCLASS_USB_DEV_GENERIC,
- .ofdata_to_platdata = ti_musb_peripheral_ofdata_to_platdata,
- .probe = ti_musb_peripheral_usb_probe,
- .remove = ti_musb_peripheral_remove,
- .platdata_auto_alloc_size = sizeof(struct ti_musb_platdata),
- .priv_auto_alloc_size = sizeof(struct musb),
- };
- static int ti_musb_host_probe(struct udevice *dev)
- {
- struct musb_host_data *host = dev_get_priv(dev);
- struct ti_musb_platdata *platdata = dev_get_platdata(dev);
- struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
- struct omap_musb_board_data *otg_board_data;
- int ret;
- priv->desc_before_addr = true;
- otg_board_data = &platdata->otg_board_data;
- host->host = musb_init_controller(&platdata->plat,
- (struct device *)otg_board_data,
- platdata->base);
- if (!host->host)
- return -EIO;
- ret = musb_lowlevel_init(host);
- return ret;
- }
- static int ti_musb_host_remove(struct udevice *dev)
- {
- struct musb_host_data *host = dev_get_priv(dev);
- musb_stop(host->host);
- return 0;
- }
- static int ti_musb_host_ofdata_to_platdata(struct udevice *dev)
- {
- struct ti_musb_platdata *platdata = dev_get_platdata(dev);
- const void *fdt = gd->fdt_blob;
- int node = dev->of_offset;
- int ret;
- ret = ti_musb_ofdata_to_platdata(dev);
- if (ret) {
- error("platdata dt parse error\n");
- return ret;
- }
- platdata->plat.mode = MUSB_HOST;
- return 0;
- }
- U_BOOT_DRIVER(ti_musb_host) = {
- .name = "ti-musb-host",
- .id = UCLASS_USB,
- .ofdata_to_platdata = ti_musb_host_ofdata_to_platdata,
- .probe = ti_musb_host_probe,
- .remove = ti_musb_host_remove,
- .ops = &musb_usb_ops,
- .platdata_auto_alloc_size = sizeof(struct ti_musb_platdata),
- .priv_auto_alloc_size = sizeof(struct musb_host_data),
- };
- static int ti_musb_wrapper_bind(struct udevice *parent)
- {
- const void *fdt = gd->fdt_blob;
- int node;
- int ret;
- for (node = fdt_first_subnode(fdt, parent->of_offset); node > 0;
- node = fdt_next_subnode(fdt, node)) {
- struct udevice *dev;
- const char *name = fdt_get_name(fdt, node, NULL);
- enum usb_dr_mode dr_mode;
- struct driver *drv;
- if (strncmp(name, "usb@", 4))
- continue;
- dr_mode = usb_get_dr_mode(node);
- switch (dr_mode) {
- case USB_DR_MODE_PERIPHERAL:
- case USB_DR_MODE_OTG:
- /* Bind MUSB device */
- ret = device_bind_driver_to_node(parent,
- "ti-musb-peripheral",
- name, node, &dev);
- if (ret) {
- error("musb - not able to bind usb device node\n");
- return ret;
- }
- break;
- case USB_DR_MODE_HOST:
- /* Bind MUSB host */
- ret = device_bind_driver_to_node(parent, "ti-musb-host",
- name, node, &dev);
- if (ret) {
- error("musb - not able to bind usb host node\n");
- return ret;
- }
- break;
- default:
- break;
- };
- }
- return 0;
- }
- static const struct udevice_id ti_musb_ids[] = {
- { .compatible = "ti,am33xx-usb" },
- { }
- };
- U_BOOT_DRIVER(ti_musb_wrapper) = {
- .name = "ti-musb-wrapper",
- .id = UCLASS_MISC,
- .of_match = ti_musb_ids,
- .bind = ti_musb_wrapper_bind,
- };
- #endif /* CONFIG_DM_USB */
|