On 28.10.2024 9.33, Michal Pecio wrote:
Hi Mathias, I would be grateful if you could take a look at patch 2/2 and tell if there is anything obviously wrong with this approach. As far as I see, it should be OK to just call those invalidation and giveback functions directly from xhci_urb_dequeue(), and it works for me in practice.
Adding EP_HALTED case to xhci_urb_deqeue() should work fine, we will both invalidate and give back the invalidated TDs in the completion handler.
Regarding the probem with xhci_invalidate_cancelled_tds() being called while Set TR Dequeue is already pending, I found that it is much easier to handle it by looking at SET_DEQ_PENDING and simply setting all TDs to TD_CLEARING_CACHE_DEFERRED if that's the case. So this is solved.
The SET_DEQ_PENDING case is trickier. We would read the dequeue pointer from hardware while we know hardware is processing a command to move the dequeue pointer. Result may be old dequeue, or new dequeue, possible unknown. We are turning an already difficult issue even more complex
However, these patches still don't solve the issue of infinite retries completely. There is one more annoying case caused by halts. It is very poorly defined what happens when a halted EP is hard-reset. Usually Set TR Dequeue executes afterwards and it restarts the EP when done. But if it doesn't, the EP stays stopped until a new URB is submitted, if ever. There is the EP_HARD_CLEAR_TOGGLE flag which is set until the class driver calls usb_clear_halt(), but it's neither the case that the EP is guaranteed to be stopped until usb_clear_halt() is called nor that it is guaranteed to restart afterwards. Actually, I think it might be a bug? What if Set TR Dequeue restarts an EP before the class driver clears the device side of the halt?
Ok, I need to take some time to dig into this.
I'm starting to think that it may not be realistic to quickly solve all those (and possibly other not known yet) problems now. Maybe just slap a 100ms timeout on those retries, add quirks for ASMedia/Intel and call it a day for now?
There are some mitigations that could be done. As many of these issues are related to slow enpoint slow start causing next stop endpoint command to complete with context error as endpoint is still stopped. We could ring the doorbell before giving back the invalidated tds in xhci_handle_cmd_stop_ep(), and possibly xhci_handle_cmd_set_deq(). This gives hardware a bit more time to start the endpoint. We could also track pending ring starts. Set a "EP_START_PENDING flag when doorbell is rung on a stopped endpoint. clear the flag when firt transfer event is received on that endpoint. If a stop endpoint command fails with context error due to still being stopped queue a new stop endpoint command, but only if flag was set: xhci_handle_cmd_stop_ep() if (comp_code == COMP_CONTEXT_STATE_ERROR) { switch (GET_EP_CTX_STATE(ep_ctx)) case EP_STATE_STOPPED: if (!(ep->ep_state & EP_START_PENDING) break; ep->ep_state &= ~EP_START_PENDING; xhci_queue_stop_endpoint(); Thanks Mathias