]> git.dujemihanovic.xyz Git - u-boot.git/commit
usb: gadget: atmel: fix transfer of queued requests
authorArtur Rojek <artur@conclusive.pl>
Wed, 13 Sep 2023 15:00:58 +0000 (17:00 +0200)
committerMarek Vasut <marex@denx.de>
Fri, 13 Oct 2023 11:42:10 +0000 (13:42 +0200)
commitbc8e94c902d8b5a24d6b31963fc26058b54986ef
tree63f0941765c5adf5fffc612044bac1cb46180baf
parent86700279645921fb2c28c41711deb7d7ed75bc29
usb: gadget: atmel: fix transfer of queued requests

In the existing implementation, multiple requests queued up on an
endpoint are subject to getting evicted without transmission.

For both control and bulk endpoints, their respective logic found in
usba_control_irq()/usba_ep_irq() guarantees that TX FIFO is empty before
data is sent out, and that request_complete() gets called once the
transaction has been finished. At this point however, if any additional
requests are found on the endpoint queue, they will be processed by
submit_next_request(), which makes no checks against the above
conditions, trashing data on a busy FIFO and neglecting completion
handlers.

Fix the above issues by removing the calls to submit_next_request(),
and thus forcing the pending requests to be processed on the next pass
of the respective endpoint logic. While at it, remove a DBG message, as
that branch becomes part of regular flow.

This restores mass storage mode operation on Microchip ATSAMA5D27 SoC.

Signed-off-by: Artur Rojek <artur@conclusive.pl>
drivers/usb/gadget/atmel_usba_udc.c