]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
usb: phy: msm: Handle disconnect events
authorIvan T. Ivanov <iivanov@mm-sol.com>
Mon, 28 Apr 2014 13:34:21 +0000 (16:34 +0300)
committerFelipe Balbi <balbi@ti.com>
Wed, 30 Apr 2014 16:29:58 +0000 (11:29 -0500)
Put the transceiver in non-driving mode. Otherwise host
may not detect soft-disconnection.

Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
Cc: Pavankumar Kondeti <pkondeti@codeaurora.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/phy/phy-msm-usb.c

index 9437bcf8c3678bddbac61301ae1dcee0c578fc2c..366527ecbdd1fc58c3f5814be17041b1fbfe2d34 100644 (file)
@@ -235,6 +235,23 @@ static void ulpi_init(struct msm_otg *motg)
        }
 }
 
+static int msm_phy_notify_disconnect(struct usb_phy *phy,
+                                  enum usb_device_speed speed)
+{
+       int val;
+
+       /*
+        * Put the transceiver in non-driving mode. Otherwise host
+        * may not detect soft-disconnection.
+        */
+       val = ulpi_read(phy, ULPI_FUNC_CTRL);
+       val &= ~ULPI_FUNC_CTRL_OPMODE_MASK;
+       val |= ULPI_FUNC_CTRL_OPMODE_NONDRIVING;
+       ulpi_write(phy, val, ULPI_FUNC_CTRL);
+
+       return 0;
+}
+
 static int msm_otg_link_clk_reset(struct msm_otg *motg, bool assert)
 {
        int ret;
@@ -1626,6 +1643,7 @@ static int msm_otg_probe(struct platform_device *pdev)
 
        phy->init = msm_phy_init;
        phy->set_power = msm_otg_set_power;
+       phy->notify_disconnect = msm_phy_notify_disconnect;
 
        phy->io_ops = &msm_otg_io_ops;