Re: [PATCH v2] xhci: reduce xhci_handshake timeout in xhci_reset

From: Pavan Kondeti
Date: Mon Feb 14 2022 - 08:53:22 EST


Hi Mathias,

On Mon, Feb 14, 2022 at 02:51:54PM +0200, Mathias Nyman wrote:
> On 14.2.2022 14.20, Pavankumar Kondeti wrote:
> > From: Daehwan Jung <dh10.jung@xxxxxxxxxxx>
> >
> > xhci_reset() is called with interrupts disabled. Waiting 10 seconds for
> > controller reset and controller ready operations can be fatal to the
> > system when controller is timed out. Reduce the timeout to 1 second
> > and print a error message when the time out happens.
> >
> > Fixes: 22ceac191211 ("xhci: Increase reset timeout for Renesas 720201 host.")
>
>
> The commit 22ceac191211 ("xhci: Increase reset timeout for Renesas 720201 host.")
> intentionally increased the timeout to 10 seconds as that host might take 9
> seconds to complete reset. This was done almost 10 years ago so I don't know
> if it really is an issue anymore.
>
> Anyways, your patch might break Renesas 72021 instead of fixing it.

Unfortunately, yes :-( . We have this reduced timeout patch in our previous
commercialized products so thought this would be a good time to fix this
once for all. Since this patch has been 10 years long, not sure if any other
controllers also need 10 sec timeout. It would probably better

>
> I agree that busylooping up to 10 seconds with interrupts disabled doesn't make sense.
>
> Lets see if there is another solution for your case.
>
> - Does a "guard interval" after writing the reset help?
> For example Intel xHCI needs 1ms before touching xHC after writing the reset bit

I will ask this question to our hardware team. Setting that one quirk from
DWC3 host might require other changes like this [1].
>
> - Is it the CNR bit or the RESET bit that fails? could be just stuck CNR bit?

The RESET bit never gets cleared from USBCMD register.

>
> - we only disable local interrupts when xhci_reset() is called from xhci_stop(),
> and sometimes from xhci_shutdown() and xhci_resume() if some conditions are met.
> Have you identified which one is the problematic case?

The crash reports I have seen are pointing to

usb_remove_hcd()->xhci_stop()->xhci_reset()
>
> I think we halt the host in the above case first, meaning there should be no
> xHC interrupts when xhci_reset() is called. So if we could guarantee xhci interrupt
> isn't handled on this cpu, maybe we could somehow enable local interrupt after
> halting the host?
>
> haven't really thought this true yet, but something like this could e investigated:
>
> spin_lock_irqsave()
> xhci_halt()
> < enable interrupts, magically turn spin_lock_irqsave() to just keeping spin lock>
> xhci_reset()
> spin_unlock()

This is a very good suggestion. However, disabling preemption for 10 seconds
is also bad even on non-RT kernels like mobiles are using. Most of the SoCs
will have a watchdog which makes sure that all CPUs are schedulable and flag
this condition. The most important thread in the system could have just woken
on this CPU and it can't run until we drop the spin lock.

[1] https://lore.kernel.org/linux-usb/20220209055352.GA22550@xxxxxxxxxxxxxxxxxxxxxxxxxxxx/

Thanks,
Pavan