Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364503
b: refs/heads/master
c: a068533
h: refs/heads/master
i:
  364501: c2ca9f3
  364499: efa6fcb
  364495: 5b9b5dc
v: v3
  • Loading branch information
Michael Grzeschik authored and Greg Kroah-Hartman committed Mar 30, 2013
1 parent 73a5929 commit f371f97
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f0c910b63cc273c239964776fae1aaa58ed4ad2b
refs/heads/master: a068533079a0a1be53c78c89e65adfbd3c687591
2 changes: 2 additions & 0 deletions trunk/Documentation/devicetree/bindings/usb/ci13xxx-imx.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Optional properties:
that indicate usb controller index
- vbus-supply: regulator for vbus
- disable-over-current: disable over current detect
- external-vbus-divider: enables off-chip resistor divider for Vbus

Examples:
usb@02184000 { /* USB OTG */
Expand All @@ -20,4 +21,5 @@ usb@02184000 { /* USB OTG */
fsl,usbphy = <&usbphy1>;
fsl,usbmisc = <&usbmisc 0>;
disable-over-current;
external-vbus-divider;
};
12 changes: 12 additions & 0 deletions trunk/drivers/usb/chipidea/ci13xxx_imx.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ int usbmisc_get_init_data(struct device *dev, struct usbmisc_usb_device *usbdev)
if (of_find_property(np, "disable-over-current", NULL))
usbdev->disable_oc = 1;

if (of_find_property(np, "external-vbus-divider", NULL))
usbdev->evdo = 1;

return 0;
}
EXPORT_SYMBOL_GPL(usbmisc_get_init_data);
Expand Down Expand Up @@ -202,6 +205,15 @@ static int ci13xxx_imx_probe(struct platform_device *pdev)
goto err;
}

if (usbmisc_ops && usbmisc_ops->post) {
ret = usbmisc_ops->post(&pdev->dev);
if (ret) {
dev_err(&pdev->dev,
"usbmisc post failed, ret=%d\n", ret);
goto put_np;
}
}

data->ci_pdev = plat_ci;
platform_set_drvdata(pdev, data);

Expand Down
3 changes: 3 additions & 0 deletions trunk/drivers/usb/chipidea/ci13xxx_imx.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@
struct usbmisc_ops {
/* It's called once when probe a usb device */
int (*init)(struct device *dev);
/* It's called once after adding a usb device */
int (*post)(struct device *dev);
};

struct usbmisc_usb_device {
struct device *dev; /* usb controller device */
int index;

unsigned int disable_oc:1; /* over current detect disabled */
unsigned int evdo:1; /* set external vbus divider option */
};

int usbmisc_set_ops(const struct usbmisc_ops *ops);
Expand Down
36 changes: 36 additions & 0 deletions trunk/drivers/usb/chipidea/usbmisc_imx.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/delay.h>

#include "ci13xxx_imx.h"

#define USB_DEV_MAX 4

#define MX25_USB_PHY_CTRL_OFFSET 0x08
#define MX25_BM_EXTERNAL_VBUS_DIVIDER BIT(23)

#define MX53_USB_OTG_PHY_CTRL_0_OFFSET 0x08
#define MX53_USB_UH2_CTRL_OFFSET 0x14
#define MX53_USB_UH3_CTRL_OFFSET 0x18
Expand Down Expand Up @@ -59,6 +63,30 @@ static struct usbmisc_usb_device *get_usbdev(struct device *dev)
return &usbmisc->usbdev[i];
}

static int usbmisc_imx25_post(struct device *dev)
{
struct usbmisc_usb_device *usbdev;
void __iomem *reg;
unsigned long flags;
u32 val;

usbdev = get_usbdev(dev);
if (IS_ERR(usbdev))
return PTR_ERR(usbdev);

reg = usbmisc->base + MX25_USB_PHY_CTRL_OFFSET;

if (usbdev->evdo) {
spin_lock_irqsave(&usbmisc->lock, flags);
val = readl(reg);
writel(val | MX25_BM_EXTERNAL_VBUS_DIVIDER, reg);
spin_unlock_irqrestore(&usbmisc->lock, flags);
usleep_range(5000, 10000); /* needed to stabilize voltage */
}

return 0;
}

static int usbmisc_imx53_init(struct device *dev)
{
struct usbmisc_usb_device *usbdev;
Expand Down Expand Up @@ -120,6 +148,10 @@ static int usbmisc_imx6q_init(struct device *dev)
return 0;
}

static const struct usbmisc_ops imx25_usbmisc_ops = {
.post = usbmisc_imx25_post,
};

static const struct usbmisc_ops imx53_usbmisc_ops = {
.init = usbmisc_imx53_init,
};
Expand All @@ -129,6 +161,10 @@ static const struct usbmisc_ops imx6q_usbmisc_ops = {
};

static const struct of_device_id usbmisc_imx_dt_ids[] = {
{
.compatible = "fsl,imx25-usbmisc",
.data = &imx25_usbmisc_ops,
},
{
.compatible = "fsl,imx53-usbmisc",
.data = &imx53_usbmisc_ops,
Expand Down

0 comments on commit f371f97

Please sign in to comment.