]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
musb_hdrc: Add timer for returning to host mode from HNP
authorTony Lindgren <tony@atomide.com>
Thu, 27 Sep 2007 21:52:27 +0000 (14:52 -0700)
committerTony Lindgren <tony@atomide.com>
Thu, 11 Oct 2007 21:31:34 +0000 (14:31 -0700)
This seems like the only way to deal with interrupted HNP if waiting
as a_wait_bcon.

Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/usb/musb/musb_core.c

index b43803602f3c0d5fb5d18099647ce6a2bb5e4bbf..efaa4fb277a24970af045bc78dbb95b33757512d 100644 (file)
@@ -309,11 +309,17 @@ void musb_otg_timer_func(unsigned long data)
        unsigned long   flags;
 
        spin_lock_irqsave(&musb->lock, flags);
-       if (musb->xceiv.state == OTG_STATE_B_WAIT_ACON) {
-               DBG(1, "HNP: B_WAIT_ACON timeout; back to B_PERIPHERAL\n");
+       switch (musb->xceiv.state) {
+       case OTG_STATE_B_WAIT_ACON:
+               DBG(1, "HNP: b_wait_acon timeout; back to b_peripheral\n");
                musb_g_disconnect(musb);
                musb->xceiv.state = OTG_STATE_B_PERIPHERAL;
                musb->is_active = 0;
+               break;
+       case OTG_STATE_A_WAIT_BCON:
+               DBG(1, "HNP: a_wait_bcon timeout; back to a_host\n");
+               musb_hnp_stop(musb);
+               break;
        }
        spin_unlock_irqrestore(&musb->lock, flags);
 }
@@ -649,10 +655,17 @@ static irqreturn_t musb_stage0_irq(struct musb * musb, u8 int_usb,
                } else if (is_peripheral_capable()) {
                        DBG(1, "BUS RESET as %s\n", otg_state_string(musb));
                        switch (musb->xceiv.state) {
-                       case OTG_STATE_A_PERIPHERAL:
+#ifdef CONFIG_USB_OTG
                        case OTG_STATE_A_WAIT_BCON:     /* OPT TD.4.7-900ms */
+                               DBG(1, "HNP: Setting timer as a_wait_bcon\n");
+                               musb_otg_timer.data = (unsigned long)musb;
+                               mod_timer(&musb_otg_timer, jiffies
+                                       + msecs_to_jiffies(100));
+                               break;
+                       case OTG_STATE_A_PERIPHERAL:
                                musb_hnp_stop(musb);
                                break;
+#endif
                        case OTG_STATE_B_IDLE:
                                musb->xceiv.state = OTG_STATE_B_PERIPHERAL;
                                /* FALLTHROUGH */