Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drivers: udc_nrf: refactor towards native driver #87954

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Conversation

tmon-nordic
Copy link
Collaborator

Rework udc nrf driver to resolve virtually-impossible-to-fix issues resulting due to the arbitrary hal/shim separation. This is not complete refactor, but a solid step towards easy-to-understand and bug-free driver.

@github-actions github-actions bot added the area: USB Universal Serial Bus label Apr 1, 2025
@github-actions github-actions bot requested a review from jfischer-no April 1, 2025 08:57
@tmon-nordic tmon-nordic force-pushed the udc-nrf-rework branch 3 times, most recently from 42bb38a to 31fdc26 Compare April 3, 2025 10:24
The transfer is queued when buffer is available. There is no point in
delaying the wait until SOF. The check is completely unnecessary.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
This is preparatory commit for former nrfx USBD refactor. The refactor
towards native driver will only be performed on the udc driver (old USB
stack driver will continue to use nrf usbd common until it is removed).

Code is copied from nrf_usbd_common.c with minimal changes:
  * nrf_usbd_common_irq_handler renamed to nrf_usbd_irq_handler
  * all non-static nrf_usbd_common functions have prefix changed to
    nrf_usbd_legacy
  * functions not used by udc nrf driver are removed
  * braces are moved inside #if to pass compliance checks

No functional changes.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
Post directly to driver queue because there is no longer shim
separation.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
@tmon-nordic tmon-nordic force-pushed the udc-nrf-rework branch 4 times, most recently from 1066727 to 45397eb Compare April 4, 2025 10:51
Use UDC endpoint state instead of the legacy hal state. Only functional
change relates to overload condition (buffer is too small to hold data
received on OUT endpoint). Previously the data would be completely
discarded and udc driver error would occur (overload event was
unhandled). Now buffer too small error is logged and as much data as
possible is copied to buffer.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
Endpoint abort is guarded with DMA semaphore. The buffers can be freed
by the caller immediately after endpoint is aborted because the driver
won't access them anymore.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
There is no need in notifying the driver that OUT data has been
received. This was only used for control transfers with OUT data stage
because dma waiting bit was not set when enqueueing buffer to receive
data stage.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
There is finite number of distinct events that are handled in thread
context and the order of handling is flexible. Therefore use events
instead of message queue because it is guaranteed to never get full.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
Use USB stack state instead of former HAL state to determine what to do
with control transfer buffers.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>

busy
Arm OUT endpoints only when enqueueing first buffer. Disarm IN and OUT
endpoints on endpoint disable. Prevent ISO endpoints from being armed
twice before SOF.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
Zephyr USB maintainer Johann Fischer does not allow doxygen comments in
udc drivers. Update the comments so the refactored driver can be merged.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
Copy link
Collaborator

@Thalley Thalley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From a quick test it seems to fix the issue mentioned in #84359 (comment)

@larsgk please try this PR with #84359 and verify as well

I have not done any review of the code changes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: USB Universal Serial Bus
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants