summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/usb/core/Makefile1
-rw-r--r--drivers/usb/core/of.c91
-rw-r--r--drivers/usb/imx/chipidea-imx.c136
-rw-r--r--drivers/usb/imx/imx-usb-misc.c59
-rw-r--r--drivers/usb/imx/imx-usb-phy.c11
-rw-r--r--include/usb/chipidea-imx.h2
-rw-r--r--include/usb/usb.h21
7 files changed, 293 insertions, 28 deletions
diff --git a/drivers/usb/core/Makefile b/drivers/usb/core/Makefile
index d49c68dbab..368fb56808 100644
--- a/drivers/usb/core/Makefile
+++ b/drivers/usb/core/Makefile
@@ -1,2 +1,3 @@
obj-y += usb.o
+obj-$(CONFIG_OFDEVICE) += of.o
diff --git a/drivers/usb/core/of.c b/drivers/usb/core/of.c
new file mode 100644
index 0000000000..222b7600c7
--- /dev/null
+++ b/drivers/usb/core/of.c
@@ -0,0 +1,91 @@
+/*
+ * usb devicetree helper functions
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include <common.h>
+#include <usb/usb.h>
+#include <of.h>
+
+static const char *usb_dr_modes[] = {
+ [USB_DR_MODE_UNKNOWN] = "",
+ [USB_DR_MODE_HOST] = "host",
+ [USB_DR_MODE_PERIPHERAL] = "peripheral",
+ [USB_DR_MODE_OTG] = "otg",
+};
+
+/**
+ * of_usb_get_dr_mode - Get dual role mode for given device_node
+ * @np: Pointer to the given device_node
+ *
+ * The function gets phy interface string from property 'dr_mode',
+ * and returns the correspondig enum usb_dr_mode
+ */
+enum usb_dr_mode of_usb_get_dr_mode(struct device_node *np,
+ const char *propname)
+{
+ const char *dr_mode;
+ int err, i;
+
+ if (!propname)
+ propname = "barebox,dr_mode";
+
+ err = of_property_read_string(np, propname, &dr_mode);
+ if (err < 0)
+ return USB_DR_MODE_UNKNOWN;
+
+ for (i = 0; i < ARRAY_SIZE(usb_dr_modes); i++)
+ if (!strcmp(dr_mode, usb_dr_modes[i]))
+ return i;
+
+ return USB_DR_MODE_UNKNOWN;
+}
+EXPORT_SYMBOL_GPL(of_usb_get_dr_mode);
+
+static const char *usbphy_modes[] = {
+ [USBPHY_INTERFACE_MODE_UNKNOWN] = "",
+ [USBPHY_INTERFACE_MODE_UTMI] = "utmi",
+ [USBPHY_INTERFACE_MODE_UTMIW] = "utmi_wide",
+ [USBPHY_INTERFACE_MODE_ULPI] = "ulpi",
+ [USBPHY_INTERFACE_MODE_SERIAL] = "serial",
+ [USBPHY_INTERFACE_MODE_HSIC] = "hsic",
+};
+
+/**
+ * of_usb_get_phy_mode - Get phy mode for given device_node
+ * @np: Pointer to the given device_node
+ *
+ * The function gets phy interface string from property 'phy_type',
+ * and returns the correspondig enum usb_phy_interface
+ */
+enum usb_phy_interface of_usb_get_phy_mode(struct device_node *np,
+ const char *propname)
+{
+ const char *phy_type;
+ int err, i;
+
+ if (!propname)
+ propname = "barebox,phy_type";
+
+ err = of_property_read_string(np, propname, &phy_type);
+ if (err < 0)
+ return USBPHY_INTERFACE_MODE_UNKNOWN;
+
+ for (i = 0; i < ARRAY_SIZE(usbphy_modes); i++)
+ if (!strcmp(phy_type, usbphy_modes[i]))
+ return i;
+
+ return USBPHY_INTERFACE_MODE_UNKNOWN;
+}
+EXPORT_SYMBOL_GPL(of_usb_get_phy_mode);
diff --git a/drivers/usb/imx/chipidea-imx.c b/drivers/usb/imx/chipidea-imx.c
index 1570f90d9c..928ebf31d9 100644
--- a/drivers/usb/imx/chipidea-imx.c
+++ b/drivers/usb/imx/chipidea-imx.c
@@ -16,6 +16,7 @@
#include <init.h>
#include <io.h>
#include <driver.h>
+#include <usb/usb.h>
#include <usb/ehci.h>
#include <usb/chipidea-imx.h>
#include <usb/ulpi.h>
@@ -23,64 +24,138 @@
#define MXC_EHCI_PORTSC_MASK ((0xf << 28) | (1 << 25))
+struct imx_chipidea {
+ struct device_d *dev;
+ struct ehci_data data;
+ unsigned long flags;
+ enum imx_usb_mode mode;
+ int (*init)(int port);
+ int portno;
+};
+
static int imx_chipidea_port_init(void *drvdata)
{
- struct device_d *dev = drvdata;
- struct imxusb_platformdata *pdata = dev->platform_data;
+ struct imx_chipidea *ci = drvdata;
int ret;
- ret = imx_usbmisc_port_init(dev->id, pdata->flags);
+ ret = imx_usbmisc_port_init(ci->portno, ci->flags);
if (ret)
- dev_err(dev, "misc init failed: %s\n", strerror(-ret));
+ dev_err(ci->dev, "misc init failed: %s\n", strerror(-ret));
- if (pdata->init)
- pdata->init(dev->id);
+ if (ci->init)
+ ci->init(ci->portno);
return ret;
}
static int imx_chipidea_port_post_init(void *drvdata)
{
- struct device_d *dev = drvdata;
- struct imxusb_platformdata *pdata = dev->platform_data;
+ struct imx_chipidea *ci = drvdata;
int ret;
- ret = imx_usbmisc_port_post_init(dev->id, pdata->flags);
+ ret = imx_usbmisc_port_post_init(ci->portno, ci->flags);
if (ret)
- dev_err(dev, "post misc init failed: %s\n", strerror(-ret));
+ dev_err(ci->dev, "post misc init failed: %s\n", strerror(-ret));
return ret;
}
+static int imx_chipidea_probe_dt(struct imx_chipidea *ci)
+{
+ const void *out_args;
+ struct device_node *usbmisc_np;
+ enum usb_dr_mode mode;
+ enum usb_phy_interface phymode;
+
+ of_parse_phandles_with_args(ci->dev->device_node, "fsl,usbmisc",
+ "#index-cells", 0, &usbmisc_np, &out_args);
+
+ ci->portno = be32_to_cpup(out_args);
+
+ ci->flags = MXC_EHCI_MODE_UTMI_8BIT;
+
+ mode = of_usb_get_dr_mode(ci->dev->device_node, NULL);
+
+ switch (mode) {
+ case USB_DR_MODE_HOST:
+ default:
+ ci->mode = IMX_USB_MODE_HOST;
+ break;
+ case USB_DR_MODE_PERIPHERAL:
+ ci->mode = IMX_USB_MODE_DEVICE;
+ break;
+ }
+
+ phymode = of_usb_get_phy_mode(ci->dev->device_node, NULL);
+ switch (phymode) {
+ case USBPHY_INTERFACE_MODE_UTMI:
+ ci->flags = MXC_EHCI_MODE_UTMI_8BIT;
+ break;
+ case USBPHY_INTERFACE_MODE_UTMIW:
+ ci->flags = MXC_EHCI_MODE_UTMI_16_BIT;
+ break;
+ case USBPHY_INTERFACE_MODE_ULPI:
+ ci->flags = MXC_EHCI_MODE_ULPI;
+ break;
+ case USBPHY_INTERFACE_MODE_SERIAL:
+ ci->flags = MXC_EHCI_MODE_SERIAL;
+ break;
+ case USBPHY_INTERFACE_MODE_HSIC:
+ ci->flags = MXC_EHCI_MODE_HSIC;
+ break;
+ default:
+ dev_err(ci->dev, "no or invalid phy mode setting\n");
+ return -EINVAL;
+ }
+
+ if (of_find_property(ci->dev->device_node, "disable-over-current"))
+ ci->flags |= MXC_EHCI_DISABLE_OVERCURRENT;
+
+ return 0;
+}
+
static int imx_chipidea_probe(struct device_d *dev)
{
struct imxusb_platformdata *pdata = dev->platform_data;
int ret;
void __iomem *base;
- struct ehci_data data = {};
+ struct imx_chipidea *ci;
uint32_t portsc;
- if (!pdata) {
- dev_err(dev, "no pdata!\n");
- return -EINVAL;
+ ci = xzalloc(sizeof(*ci));
+ ci->dev = dev;
+
+ if (IS_ENABLED(CONFIG_OFDEVICE) && dev->device_node) {
+ ret = imx_chipidea_probe_dt(ci);
+ if (ret)
+ return ret;
+ } else {
+ if (!pdata) {
+ dev_err(dev, "no pdata!\n");
+ return -EINVAL;
+ }
+ ci->portno = dev->id;
+ ci->flags = pdata->flags;
+ ci->init = pdata->init;
+ ci->mode = pdata->mode;
}
base = dev_request_mem_region(dev, 0);
if (!base)
return -ENODEV;
- data.init = imx_chipidea_port_init;
- data.post_init = imx_chipidea_port_post_init;
- data.drvdata = dev;
+ ci->data.init = imx_chipidea_port_init;
+ ci->data.post_init = imx_chipidea_port_post_init;
+ ci->data.drvdata = ci;
portsc = readl(base + 0x184);
portsc &= ~MXC_EHCI_PORTSC_MASK;
- portsc |= pdata->flags & MXC_EHCI_PORTSC_MASK;
+ portsc |= ci->flags & MXC_EHCI_PORTSC_MASK;
writel(portsc, base + 0x184);
- imx_chipidea_port_init(dev);
+ imx_chipidea_port_init(ci);
- if ((pdata->flags & MXC_EHCI_PORTSC_MASK) == MXC_EHCI_MODE_ULPI) {
+ if ((ci->flags & MXC_EHCI_PORTSC_MASK) == MXC_EHCI_MODE_ULPI) {
dev_dbg(dev, "using ULPI phy\n");
if (IS_ENABLED(CONFIG_USB_ULPI)) {
ret = ulpi_setup(base + 0x170, 1);
@@ -93,13 +168,13 @@ static int imx_chipidea_probe(struct device_d *dev)
return ret;
}
- data.hccr = base + 0x100;
- data.hcor = base + 0x140;
- data.flags = EHCI_HAS_TT;
+ ci->data.hccr = base + 0x100;
+ ci->data.hcor = base + 0x140;
+ ci->data.flags = EHCI_HAS_TT;
- if (pdata->mode == IMX_USB_MODE_HOST && IS_ENABLED(CONFIG_USB_EHCI)) {
- ret = ehci_register(dev, &data);
- } else if (pdata->mode == IMX_USB_MODE_DEVICE && IS_ENABLED(CONFIG_USB_GADGET_DRIVER_ARC)) {
+ if (ci->mode == IMX_USB_MODE_HOST && IS_ENABLED(CONFIG_USB_EHCI)) {
+ ret = ehci_register(dev, &ci->data);
+ } else if (ci->mode == IMX_USB_MODE_DEVICE && IS_ENABLED(CONFIG_USB_GADGET_DRIVER_ARC)) {
ret = ci_udc_register(dev, base);
} else {
dev_err(dev, "No supported role\n");
@@ -109,8 +184,17 @@ static int imx_chipidea_probe(struct device_d *dev)
return ret;
};
+static __maybe_unused struct of_device_id imx_chipidea_dt_ids[] = {
+ {
+ .compatible = "fsl,imx27-usb",
+ }, {
+ /* sentinel */
+ },
+};
+
static struct driver_d imx_chipidea_driver = {
.name = "imx-usb",
.probe = imx_chipidea_probe,
+ .of_compatible = DRV_OF_COMPAT(imx_chipidea_dt_ids),
};
device_platform_driver(imx_chipidea_driver);
diff --git a/drivers/usb/imx/imx-usb-misc.c b/drivers/usb/imx/imx-usb-misc.c
index 901ced485d..51d549c2c5 100644
--- a/drivers/usb/imx/imx-usb-misc.c
+++ b/drivers/usb/imx/imx-usb-misc.c
@@ -347,6 +347,9 @@ static __maybe_unused struct imx_usb_misc_data mx5_data = {
.init = mx5_initialize_usb_hw,
};
+#define MX6_USB_CTRL(n) ((n) * 4)
+#define MX6_USB_CTRL_OVER_CUR_DIS (1 << 7)
+
static void mx6_hsic_pullup(unsigned long reg, int on)
{
u32 val;
@@ -364,10 +367,15 @@ static void mx6_hsic_pullup(unsigned long reg, int on)
static __maybe_unused int mx6_initialize_usb_hw(void __iomem *base, int port,
unsigned int flags)
{
+ u32 val;
+
switch (port) {
case 0:
- break;
case 1:
+ val = readl(base + MX6_USB_CTRL(port));
+ if (flags & MXC_EHCI_DISABLE_OVERCURRENT)
+ val |= MX6_USB_CTRL_OVER_CUR_DIS;
+ writel(val, base + MX6_USB_CTRL(port));
break;
case 2: /* HSIC port */
mx6_hsic_pullup(0x388, 0);
@@ -463,6 +471,54 @@ static struct platform_device_id imx_usbmisc_ids[] = {
},
};
+static __maybe_unused struct of_device_id imx_usbmisc_dt_ids[] = {
+#ifdef CONFIG_ARCH_IMX25
+ {
+ .compatible = "fsl,imx25-usbmisc",
+ .data = (unsigned long)&mx25_data,
+ },
+#endif
+#ifdef CONFIG_ARCH_IMX27
+ {
+ .compatible = "fsl,imx27-usbmisc",
+ .data = (unsigned long)&mx27_mx31_data,
+ },
+#endif
+#ifdef CONFIG_ARCH_IMX31
+ {
+ .compatible = "fsl,imx31-usbmisc",
+ .data = (unsigned long)&mx27_mx31_data,
+ },
+#endif
+#ifdef CONFIG_ARCH_IMX35
+ {
+ .compatible = "fsl,imx35-usbmisc",
+ .data = (unsigned long)&mx35_data,
+ },
+#endif
+#ifdef CONFIG_ARCH_IMX51
+ {
+ .compatible = "fsl,imx51-usbmisc",
+ .data = (unsigned long)&mx5_data,
+ },
+#endif
+#ifdef CONFIG_ARCH_IMX53
+ {
+ .compatible = "fsl,imx53-usbmisc",
+ .data = (unsigned long)&mx5_data,
+ },
+#endif
+#ifdef CONFIG_ARCH_IMX6
+ {
+ .compatible = "fsl,imx6q-usbmisc",
+ .data = (unsigned long)&mx6_data,
+ },
+#endif
+ {
+ /* sentinel */
+ },
+};
+
static struct imx_usb_misc_data *imxusbmisc_data;
static void __iomem *usbmisc_base;
@@ -510,6 +566,7 @@ static struct driver_d imx_usbmisc_driver = {
.name = "imx-usbmisc",
.probe = imx_usbmisc_probe,
.id_table = imx_usbmisc_ids,
+ .of_compatible = DRV_OF_COMPAT(imx_usbmisc_dt_ids),
};
static int imx_usbmisc_init(void)
diff --git a/drivers/usb/imx/imx-usb-phy.c b/drivers/usb/imx/imx-usb-phy.c
index ce9c93f42d..776bfe5167 100644
--- a/drivers/usb/imx/imx-usb-phy.c
+++ b/drivers/usb/imx/imx-usb-phy.c
@@ -93,13 +93,22 @@ err_free:
return ret;
};
+static __maybe_unused struct of_device_id imx_usbphy_dt_ids[] = {
+ {
+ .compatible = "fsl,imx23-usbphy",
+ }, {
+ /* sentinel */
+ },
+};
+
static struct driver_d imx_usbphy_driver = {
.name = "imx-usb-phy",
.probe = imx_usbphy_probe,
+ .of_compatible = DRV_OF_COMPAT(imx_usbphy_dt_ids),
};
static int imx_usbphy_init(void)
{
return platform_driver_register(&imx_usbphy_driver);
}
-coredevice_initcall(imx_usbphy_init);
+fs_initcall(imx_usbphy_init);
diff --git a/include/usb/chipidea-imx.h b/include/usb/chipidea-imx.h
index 3f9f61ee17..5801cf15e7 100644
--- a/include/usb/chipidea-imx.h
+++ b/include/usb/chipidea-imx.h
@@ -32,6 +32,8 @@
#define MXC_EHCI_WAKEUP_ENABLED (1 << 12)
#define MXC_EHCI_ITC_NO_THRESHOLD (1 << 13)
+#define MXC_EHCI_DISABLE_OVERCURRENT (1 << 14)
+
enum imx_usb_mode {
IMX_USB_MODE_HOST,
IMX_USB_MODE_DEVICE,
diff --git a/include/usb/usb.h b/include/usb/usb.h
index b2700127f3..da0090e039 100644
--- a/include/usb/usb.h
+++ b/include/usb/usb.h
@@ -519,4 +519,25 @@ struct usb_device_id {
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
+enum usb_dr_mode of_usb_get_dr_mode(struct device_node *np,
+ const char *propname);
+
+enum usb_dr_mode {
+ USB_DR_MODE_UNKNOWN,
+ USB_DR_MODE_HOST,
+ USB_DR_MODE_PERIPHERAL,
+ USB_DR_MODE_OTG,
+};
+
+enum usb_phy_interface of_usb_get_phy_mode(struct device_node *np,
+ const char *propname);
+
+enum usb_phy_interface {
+ USBPHY_INTERFACE_MODE_UNKNOWN,
+ USBPHY_INTERFACE_MODE_UTMI,
+ USBPHY_INTERFACE_MODE_UTMIW,
+ USBPHY_INTERFACE_MODE_ULPI,
+ USBPHY_INTERFACE_MODE_SERIAL,
+ USBPHY_INTERFACE_MODE_HSIC,
+};
#endif /*_USB_H_ */