Browse Source

drivers: usb: Prevent from perpetual locked state

The USB CDC driver is unable to process any bulk IN transfers
after receiving spurious 'Clear Feature - Endpoint Halt' request
from host due to perpetual locked state caused by previously
scheduled transfer, that will never be finished, as the endpoint's state
is set to NAK. Fix by ignoring spurious request.

Signed-off-by: Piotr Ciura <piotr.ciura@hidglobal.com>
(cherry picked from commit 29a191ad38)
backport-89982-to-v4.1-branch
Piotr Ciura 2 months ago committed by github-actions[bot]
parent
commit
007880a76c
  1. 4
      drivers/usb/device/usb_dc_stm32.c

4
drivers/usb/device/usb_dc_stm32.c

@ -865,6 +865,10 @@ int usb_dc_ep_clear_stall(const uint8_t ep) @@ -865,6 +865,10 @@ int usb_dc_ep_clear_stall(const uint8_t ep)
return -EINVAL;
}
if (!ep_state->ep_stalled) {
return 0;
}
status = HAL_PCD_EP_ClrStall(&usb_dc_stm32_state.pcd, ep);
if (status != HAL_OK) {
LOG_ERR("HAL_PCD_EP_ClrStall failed(0x%02x), %d", ep,

Loading…
Cancel
Save