Hi, * Pavel Machek <pavel@xxxxxx> [190903 08:08]: > On Mon 2019-09-02 09:06:51, Tony Lindgren wrote: > #2 definitely has _something_, because it does work in original > android. But not even original android provides VBUS (5V on USB) in > that configuration. It also looks like hardware _can_ provide at > least VBAT on VBUS, because I seen that during some of the crashes. I started seeing the musb hang issue you reported today on one droid4 but not on an other one :) Turns out we have racy .set_vbus still around that might get called. The following patch is needed in preparation for this $subject series as otherwise patch "[PATCH 3/4] usb: musb: Add musb_set_host and peripheral and use them for omap2430" can cause a hang with "scheduling while atomic" if .set_vbus gets called from musb_stage0_irq() path. Regards, Tony 8< ----------------- >From tony Mon Sep 17 00:00:00 2001 From: Tony Lindgren <tony@xxxxxxxxxxx> Date: Sun, 15 Sep 2019 17:16:58 -0700 Subject: [PATCH] usb: musb: Get rid of musb_set_vbus() We currently have musb_set_vbus() called from two different paths. Mostly it gets called from the USB PHY via omap_musb_set_mailbox(), but in some cases it can get also called from musb_stage0_irq() rather via .set_vbus: (musb_set_host [musb_hdrc]) (omap2430_musb_set_vbus [omap2430]) (musb_stage0_irq [musb_hdrc]) (musb_interrupt [musb_hdrc]) (omap2430_musb_interrupt [omap2430]) This is racy and will not work with introducing generic helper functions for musb_set_host() and musb_set_peripheral(). We want to get rid of the busy loops in favor of usleep_range(). Let's just get rid of .set_vbus for omap2430 glue layer and let the PHY code handle VBUS with musb_set_vbus(). Note that in the follow-up patch we can completely remove omap2430_musb_set_vbus(), but let's do it in a separate patch as this change may actually turn out to be needed as a fix. Reported-by: Pavel Machek <pavel@xxxxxx> Signed-off-by: Tony Lindgren <tony@xxxxxxxxxxx> --- drivers/usb/musb/omap2430.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c @@ -312,8 +312,6 @@ static const struct musb_platform_ops omap2430_ops = { .init = omap2430_musb_init, .exit = omap2430_musb_exit, - .set_vbus = omap2430_musb_set_vbus, - .enable = omap2430_musb_enable, .disable = omap2430_musb_disable, -- 2.23.0