Updated: October 28, 2024 |
USB (Universal Serial Bus) is a protocol and hardware specification for interconnecting various USB devices to a host controller.
The BSP provided by QNX for each reference board contains a USB stack (io-usb-otg) that implements USB protocol and HCI (Host Controller Interface) drivers. The USB stack manages the USB bus and USB protocols through hardware controller drivers. The stack can run in either USB host mode or USB device mode or both simultaneously. If the provided HCI drivers do not support custom hardware then the support will have to be added.
Class drivers connect through libusbdi.so and run on the hosts and handle devices. For example: usbnet, devb-umass
Function drivers connect through libusbdci.so and run on the device. For example: usbdnet, devu-umass_client-block
Host Mode
Host Controller Drivers (HCD) are required to run the USB stack in a host mode.
The following examples show the components and dependencies required to run the stack in host mode on x86_64 platform and access a mass storage device.
# io-usb-otg -d xhci
devb-umass cam pnp &Now any connected mass storage device and it's partitions can be seen under /dev. Example:
# ls /dev/hd* /dev/hd0 /dev/hd0t6
# mount -t dos /dev/hd0t6 /fs
Device Mode
Device Controller Drivers (DCD) are required to run the USB stack in a device mode. There are several device mode drivers such as dcd-usbumass, dcd-usbncm etc.
The following example for iMX8 target shows the dependencies and components required to run a mass storage device mode.
# devb-ram ram capacity=16384,nodinit,cache=512k disk name=hd@0 # waitfor /dev/hd0 # fdisk /dev/hd0 add -t 6 # mount -e /dev/hd0 # waitfor /dev/hd0t6 # mkdosfs /dev/hd0t6
# io-usb-otg -d dcd-usbumass-mx8-ci ioport=0x5B0D0000,irq=299
# devu-umass_client-block -l lun=0,devno=1,iface=0,fname=/dev/hd0
# ulink_ctrl -l 1
On the host system the iMX8 should be detected as a mass storage device Ex: /dev/hd0
USB launcher utility monitors USB bus and provides automation steps.
More details can be found at usblauncher_otg
USB utility can be used to access device details and configurations.
Example:
# usb -vvv