CherryUSB is a tiny, beautiful and portable USB host and device stack for embedded system with USB IP.
In order to make it easier for users to learn USB basics, enumeration, driver loading and IP drivers, the code has been written with the following advantages:
- Lean code, simple logic, no complex C syntax
- Tree-based programming with cascading code
- Class-drivers and porting-drivers are templating and simplification
- Clear API classification (slave: initialisation, registration api, command callback api, data sending and receiving api; host: initialisation, lookup api, data sending and receiving api)
In order to facilitate the use of the USB interface and to take into account the fact that users have learned about uart and dma, the following advantages have been designed for the data sending and receiving class of interface:
- Equivalent to using uart tx dma/uart rx dma
- There is no limit to the length of send and receive, the user does not need to care about the USB packetization process (the porting driver does the packetization process)
Taking into account USB performance issues and trying to achieve the theoretical bandwidth of the USB hardware, the design of the data transceiver class interface has the following advantages:
- Porting drivers directly to registers, no abstraction layer encapsulation
- Memory zero copy
- If IP has DMA then uses DMA mode (DMA with hardware packetization)
- Unlimited length make it easier to interface with hardware DMA and take advantage of DMA
- Subcontracting function is handled in interrupt
.
├── class
├── common
├── core
├── demo
├── docs
├── osal
├── packet capture
└── port
└── tools
Directory | Description |
---|---|
class | usb class driver |
common | usb spec macros and utils |
core | usb core implementation |
demo | different chips demo |
osal | os wrapper |
docs | doc for guiding |
port | usb dcd and hcd porting |
tools | tool url |
CherryUSB Device Stack provides a unified framework of functions for standard device requests, CLASS requests, VENDOR requests and custom special requests. The object-oriented and chained approach allows the user to quickly get started with composite devices without having to worry about the underlying logic. At the same time, a standard dcd porting interface has been standardised for adapting different USB IPs to achieve ip-oriented programming.
CherryUSB Device Stack has the following functions:
- Support USB2.0 full and high speed, USB3.0 super speed
- Support endpoint irq callback register by users, let users do whatever they wants in endpoint irq callback.
- Support Composite Device
- Support Communication Device Class (CDC)
- Support Human Interface Device (HID)
- Support Mass Storage Class (MSC)
- Support USB VIDEO CLASS (UVC1.0、UVC1.5)
- Support USB AUDIO CLASS (UAC1.0、UAC2.0)
- Support Device Firmware Upgrade CLASS (DFU)
- Support USB MIDI CLASS (MIDI)
- Support Remote NDIS (RNDIS)
- Support WINUSB1.0、WINUSB2.0(with BOS)
- Support Vendor class
CherryUSB Device Stack resource usage (GCC 10.2 with -O2):
file | FLASH (Byte) | No Cache RAM (Byte) | RAM (Byte) | Heap (Byte) |
---|---|---|---|---|
usbd_core.c | 3516 | 256(default) + 320 | 0 | 0 |
usbd_cdc.c | 392 | 0 | 0 | 0 |
usbd_msc.c | 2839 | 128 + 512(default) | 16 | 0 |
usbd_hid.c | 364 | 0 | 0 | 0 |
usbd_audio.c | 1455 | 0 | 0 | 0 |
usbd_video.c | 2494 | 0 | 84 | 0 |
usbd_rndis.c | 2109 | 3340 | 76 | 0 |
The CherryUSB Host Stack has a standard enumeration implementation for devices mounted on roothubs and external hubs, and a standard interface for different Classes to indicate what the Class driver needs to do after enumeration and after disconnection. A standard hcd porting interface has also been standardised for adapting different USB IPs for IP-oriented programming. Finally, the host stack is managed using os, and provides osal to make a adaptation for different os.
CherryUSB Host Stack has the following functions:
- Automatic loading of supported Class drivers
- Support blocking transfers and asynchronous transfers
- Support Composite Device
- Multi-level HUB support, expandable up to 7 levels
- Support Communication Device Class (CDC)
- Support Human Interface Device (HID)
- Support Mass Storage Class (MSC)
- Support USB Video CLASS
- Support USB Audio CLASS
- Support Remote NDIS (RNDIS)
- Support Vendor class
The CherryUSB Host stack also provides the lsusb function, which allows you to view information about all mounted devices, including those on external hubs, with the help of a shell plugin.
CherryUSB Host Stack resource usage (GCC 10.2 with -O2):
file | FLASH (Byte) | No Cache RAM (Byte) | RAM (Byte) | Heap (Byte) |
---|---|---|---|---|
usbh_core.c | 4237 | 512 + 8 * (1+x) *n | 28 | sizeof(struct usbh_urb) |
usbh_hub.c | 2919 | 32 + 4* (1+x) | 12 + sizeof(struct usbh_hub) * (1+x) | 0 |
usbh_cdc_acm.c | 1099 | 7 | 4 + sizeof(struct usbh_cdc_acm) * x | 0 |
usbh_msc.c | 2502 | 32 | 4 + sizeof(struct usbh_msc) * x | 0 |
usbh_hid.c | 956 | 128 | 4 + sizeof(struct usbh_hid) * x | 0 |
usbh_video.c | 2330 | 128 | 4 + sizeof(struct usbh_video) * x | 0 |
usbh_audio.c | 3168 | 128 | 4 + sizeof(struct usbh_audio) * x | 0 |
usbh_rndis.c | 3030 | 4096 | 4 + sizeof(struct usbh_rndis) * x | 0 |
Among them, sizeof(struct usbh_hub)
and sizeof(struct usbh_hubport)
are affected by the following macros:
#define CONFIG_USBHOST_MAX_EXTHUBS 1
#define CONFIG_USBHOST_MAX_EHPORTS 4
#define CONFIG_USBHOST_MAX_INTERFACES 6
#define CONFIG_USBHOST_MAX_INTF_ALTSETTINGS 1
#define CONFIG_USBHOST_MAX_ENDPOINTS 4
x is affected by the following macros:
#define CONFIG_USBHOST_MAX_CDC_ACM_CLASS 4
#define CONFIG_USBHOST_MAX_HID_CLASS 4
#define CONFIG_USBHOST_MAX_MSC_CLASS 2
#define CONFIG_USBHOST_MAX_AUDIO_CLASS 1
#define CONFIG_USBHOST_MAX_VIDEO_CLASS 1
#define CONFIG_USBHOST_MAX_RNDIS_CLASS 1
Quickly start, USB basic concepts, API manual, Class basic concepts and examples, see CherryUSB Documentation Tutorial
USB basic concepts and how the CherryUSB Device stack is implemented, see CherryUSB Device Stack Tutorial.
chryusb_configurator is written in electron + vite2 + ts framework,currently used to automate the generation of descriptor arrays, with additional functionality to be added later.
Manufacturer | CHIP or Series | USB IP | Repo Url | Current version |
---|---|---|---|---|
Bouffalolab | BL702/BL616/BL808 | bouffalolab/ehci | bouffalo_sdk | v0.10.1 |
ST | STM32F1x | fsdev | stm32_repo | ≤ v0.10.1 |
ST | STM32F4/STM32H7 | dwc2 | stm32_repo | ≤ v0.10.1 |
HPMicro | HPM6750 | hpm/ehci | hpm_sdk | v0.10.1 |
Essemi | ES32F36xx | musb | es32f369_repo | ≤ v0.10.1 |
AllwinnerTech | F1C100S/F1C200S | musb | cherryusb_rtt_f1c100s | ≤ v0.10.1 |
Phytium | e2000 | xhci | phytium_repo | v0.10.1 |
Phytium | PhytiumPI | pusb2 | phytium_repo | v0.10.1 |
Raspberry pi | rp2040 | rp2040 | pico-examples | ≤ v0.10.1 |
WCH | CH32V307/ch58x | ch32_usbfs/ch32_usbhs/ch58x | wch_repo | ≤ v0.10.1 |
Nordicsemi | Nrf52840 | nrf5x | nrf5x_repo | ≤ v0.10.1 |
Espressif | esp32s3 | dwc2 | esp32_repo | ≤ v0.10.1 |
Bekencorp | BK72xx | musb | armino | v0.7.0 |
Sophgo | cv18xx | dwc2 | cvi_alios_open | v0.7.0 |
QQ group: 642693751