Page MenuHomeFreeBSD

bhyve: introduce cancel interface for usb device
Needs ReviewPublic

Authored by aokblast on Aug 5 2025, 9:37 AM.
Tags
None
Referenced Files
F135698390: D51735.id159748.diff
Wed, Nov 12, 12:10 AM
Unknown Object (File)
Tue, Nov 11, 5:30 AM
Unknown Object (File)
Fri, Nov 7, 6:14 AM
Unknown Object (File)
Thu, Nov 6, 2:12 AM
Unknown Object (File)
Tue, Nov 4, 6:11 AM
Unknown Object (File)
Mon, Nov 3, 5:30 PM
Unknown Object (File)
Mon, Nov 3, 12:59 PM
Unknown Object (File)
Mon, Nov 3, 12:49 PM
Subscribers

Details

Reviewers
markj
lwhsu
khng
bz
Group Reviewers
bhyve
Summary

When disabling a port, xHCI should allow the backend a chance to cancel
all active transfers before deallocating memory. To support this, we
introduce an interface in UE that lets the backend register a
cancellation callback.

Additionally, this commit allows the backend to populate the tr_softc
field when setting up a transfer in ue_data, enabling context-specific
handling for transfer cancellation and cleanup.

Sponsored By: The FreeBSD Foundation

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 66589
Build 63472: arc lint + arc unit

Event Timeline

This revision is now accepted and ready to land.Aug 27 2025, 1:35 PM

You don't need to call ue_cancel in pci_xhci_cmd_reset_ep()?

This revision now requires review to proceed.Aug 27 2025, 3:31 PM
usr.sbin/bhyve/pci_xhci.c
1217–1218

The rest ep only stop the xfer. However, the parameter of ue_reset pass a whole device instead of a xfer.

1217–1218

Sorry, only clear the stall bit instead of stop whole transfer.

markj added inline comments.
usr.sbin/bhyve/pci_xhci.c
1221

We definitely don't need to be able to return an error from ue_cancel?

This revision is now accepted and ready to land.Aug 27 2025, 3:41 PM
This revision now requires review to proceed.Aug 27 2025, 4:01 PM
usr.sbin/bhyve/pci_xhci.c
758

Or print a warning if it fails.

1219
usr.sbin/bhyve/pci_xhci.c
704

If you move the mutex_destroy to pci_xhci_disable_ep() (which also handles freeing the xfer), you can use this subroutine in pci_xhci_reset_slot() as well.

1222