9
0
Fork 0

usb: chipidea-imx: Fix usb initialization

This patch fix chipidea-imx usb initialization.
"imx_chipidea_port_init" was moved before PORTSC setup in the
commit "USB i.MX chipidea: implement post init support". This
change breaks usb function with ULPI. Patch moves port initialization
back after PORTSC setup, so it works again.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Alexander Shiyan 2013-03-12 21:02:42 +04:00 committed by Sascha Hauer
parent d34aca4c09
commit 2e7d66f526
1 changed files with 2 additions and 2 deletions

View File

@ -73,13 +73,13 @@ static int imx_chipidea_probe(struct device_d *dev)
data.post_init = imx_chipidea_port_post_init;
data.drvdata = dev;
imx_chipidea_port_init(dev);
portsc = readl(base + 0x184);
portsc &= ~MXC_EHCI_PORTSC_MASK;
portsc |= pdata->flags & MXC_EHCI_PORTSC_MASK;
writel(portsc, base + 0x184);
imx_chipidea_port_init(dev);
if ((pdata->flags & MXC_EHCI_PORTSC_MASK) == MXC_EHCI_MODE_ULPI) {
dev_dbg(dev, "using ULPI phy\n");
if (IS_ENABLED(CONFIG_USB_ULPI)) {