summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/omap-usb-tll.c
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2017-04-15 13:05:09 -0400
committerLee Jones <lee.jones@linaro.org>2017-04-27 06:54:45 -0400
commit76d3341b63a2ba173e7163c48918ec45934df98b (patch)
tree1e0bcdeec7528b7e1e938d8393fbd942fdf9040c /drivers/mfd/omap-usb-tll.c
parent8b8a84c54aff4256d592dc18346c65ecf6811b45 (diff)
mfd: omap-usb-tll: Configure ULPIAUTOIDLE
The idle mode needs to be only disabled for UTMIAUTOIDLE while ULPIAUTOIDLE can be enabled. This matches the TLL_CHANNEL_CONF_i register configuration for ehci-tll in the Motorola Linux kernel tree for Wrigley 3G LTE modem on droid 4 and the modem still stays responsive. Signed-off-by: Tony Lindgren <tony@atomide.com> Acked-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/omap-usb-tll.c')
-rw-r--r--drivers/mfd/omap-usb-tll.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mfd/omap-usb-tll.c b/drivers/mfd/omap-usb-tll.c
index 9d167c9af2c6..6f5300b0eb31 100644
--- a/drivers/mfd/omap-usb-tll.c
+++ b/drivers/mfd/omap-usb-tll.c
@@ -373,12 +373,13 @@ int omap_tll_init(struct usbhs_omap_platform_data *pdata)
373 } else if (pdata->port_mode[i] == 373 } else if (pdata->port_mode[i] ==
374 OMAP_EHCI_PORT_MODE_TLL) { 374 OMAP_EHCI_PORT_MODE_TLL) {
375 /* 375 /*
376 * Disable AutoIdle, BitStuffing 376 * Disable UTMI AutoIdle, BitStuffing
377 * and use SDR Mode 377 * and use SDR Mode. Enable ULPI AutoIdle.
378 */ 378 */
379 reg &= ~(OMAP_TLL_CHANNEL_CONF_UTMIAUTOIDLE 379 reg &= ~(OMAP_TLL_CHANNEL_CONF_UTMIAUTOIDLE
380 | OMAP_TLL_CHANNEL_CONF_ULPIDDRMODE); 380 | OMAP_TLL_CHANNEL_CONF_ULPIDDRMODE);
381 reg |= OMAP_TLL_CHANNEL_CONF_ULPINOBITSTUFF; 381 reg |= OMAP_TLL_CHANNEL_CONF_ULPINOBITSTUFF;
382 reg |= OMAP_TLL_CHANNEL_CONF_ULPI_ULPIAUTOIDLE;
382 } else if (pdata->port_mode[i] == 383 } else if (pdata->port_mode[i] ==
383 OMAP_EHCI_PORT_MODE_HSIC) { 384 OMAP_EHCI_PORT_MODE_HSIC) {
384 /* 385 /*