esp-idf/components/usb
Darian Leung 99ec1c98f5
refactor(usb/usbh): Update USBH device creation and enumeration handling
This commit updates how the USBH handles device creation and enumeration so that
upper layers (such as the Hub driver) can use the USBH API for enumeration instead
of calling the HCD.

USBH Updates:

USBH now creates unenumerated devices set to address 0 with no device/config
descriptor. A newly created device can be opened and communicated with immediately
(using control transfers). This allows the Hub driver to call the USBH instead of
the HCD. Summary of USBH changes:

- Added new APIs to add/remove a device. Devices are now created as unenumerated
and can be immediately opened and communicated with.
- Added new APIs to enumerate a device (see 'usbh_dev_set_...()' functions). Device
must be locked (see 'usbh_dev_enum_lock()') before enumeration functions can be called.
- Added UID for each device. This allows the particular USBH without needing to
use the device's handle (which implies opening the device).

Hub Driver Updates:

Hub driver now calls the USBH for enumeration. Summary of USBH changes:

- Replace all 'hcd_pipe_...()' calls with 'usbh_dev_...()' calls
- Refactored port event handling to fit with new USBH API
- Updated to use UID to uniquely identify devices without opening them

USB Host Updates:

- Reroute USBH control transfers to clients and hub driver
2024-04-23 17:18:56 +08:00
..
include feat(usb_host): Added KConfig parameter for External HUB support enable 2024-03-14 21:06:34 +01:00
private_include refactor(usb/usbh): Update USBH device creation and enumeration handling 2024-04-23 17:18:56 +08:00
test_apps feat(dma): refactor dma calloc function 2024-04-02 14:30:14 +08:00
CMakeLists.txt feat(esp32p4): Add USB-OTG support for ESP32-P4 2024-01-30 15:07:11 +01:00
Kconfig feat(usb_host): Added KConfig parameter for External HUB support enable 2024-03-14 21:06:34 +01:00
hcd_dwc.c refactor(usb/usbh): Update USBH device creation and enumeration handling 2024-04-23 17:18:56 +08:00
hub.c refactor(usb/usbh): Update USBH device creation and enumeration handling 2024-04-23 17:18:56 +08:00
maintainers.md usb: Fix how the HCD handles sudden disconnection 2021-11-02 14:30:58 +08:00
usb_helpers.c fix(usb/host): Correctly parse MPS fields in HighSpeed EP descriptors 2023-12-12 21:10:37 +01:00
usb_host.c refactor(usb/usbh): Update USBH device creation and enumeration handling 2024-04-23 17:18:56 +08:00
usb_phy.c refactor(hal/usb): Add new USB PHY related HAL API 2024-04-04 02:47:00 +08:00
usb_phy_p4.c feat(esp32p4): Add USB-OTG support for ESP32-P4 2024-01-30 15:07:11 +01:00
usb_private.c feat(dma): refactor dma calloc function 2024-04-02 14:30:14 +08:00
usbh.c refactor(usb/usbh): Update USBH device creation and enumeration handling 2024-04-23 17:18:56 +08:00