aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorLi Jun <jun.li@freescale.com>2015-03-23 04:03:35 -0400
committerPeter Chen <peter.chen@freescale.com>2015-04-08 02:13:02 -0400
commit9b6567e19bc55187bc1bb094b00a9f63acb30071 (patch)
tree6f441432bcea329aecf3bcfd89b8e8564d7fa440 /drivers/usb
parentb7a4abb67416aa07cd65446dd39e64525ccfe8e5 (diff)
usb: chipidea: udc: bypass pullup DP when gadget connect in OTG fsm mode
By pass pullup DP in OTG fsm mode when do gadget connect, to let it handled by OTG state machine. This patch can fix the problem you found with my HNP polling patchset after below 3 patches introduced: 467a78c usb: chipidea: udc: apply new usb_udc_vbus_handler interface 628ef0d usb: udc: add usb_udc_vbus_handler dfea9c9 usb: udc: store usb_udc pointer in struct usb_gadget Problem: - Connect USB cable and MicroAB cable between two boards - Boot up two boards - load g_mass_storage at B-device side, the enumeration will success, and A will see a usb mass-storage device - load g_mass_storage at A-device side, the problem has occurred, the connection will be lost at the beginning, then connect again. This patch is based on commit eff933c1d3a2e046492b3dfc86db813856553a29 (chipidea: pci: make it depends on NOP_USB_XCEIV) on branch peter-usb-dev of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git Signed-off-by: Li Jun <jun.li@freescale.com> Signed-off-by: Peter Chen <peter.chen@freescale.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/chipidea/udc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c
index 41914a55055d..764f668d45a9 100644
--- a/drivers/usb/chipidea/udc.c
+++ b/drivers/usb/chipidea/udc.c
@@ -1574,6 +1574,10 @@ static int ci_udc_pullup(struct usb_gadget *_gadget, int is_on)
1574{ 1574{
1575 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget); 1575 struct ci_hdrc *ci = container_of(_gadget, struct ci_hdrc, gadget);
1576 1576
1577 /* Data+ pullup controlled by OTG state machine in OTG fsm mode */
1578 if (ci_otg_is_fsm_mode(ci))
1579 return 0;
1580
1577 pm_runtime_get_sync(&ci->gadget.dev); 1581 pm_runtime_get_sync(&ci->gadget.dev);
1578 if (is_on) 1582 if (is_on)
1579 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS); 1583 hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS);