2022-12-03 12:07:44 +08:00
|
|
|
menuconfig DRIVERS_USB
|
2023-01-09 10:14:23 +08:00
|
|
|
bool "USB Drivers"
|
|
|
|
default y
|
2022-12-03 12:07:44 +08:00
|
|
|
|
|
|
|
if DRIVERS_USB
|
|
|
|
menu "USB HOST"
|
|
|
|
|
|
|
|
config USB_HOST
|
|
|
|
bool "enable usb host driver"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config HAL_TEST_HCI
|
2023-01-09 10:14:23 +08:00
|
|
|
bool "enable HCI hal APIs test command"
|
|
|
|
depends on USB_HOST
|
|
|
|
default n
|
2022-12-03 12:07:44 +08:00
|
|
|
|
|
|
|
config USB_STORAGE
|
2023-01-09 10:14:23 +08:00
|
|
|
bool "USB Mass Storage support"
|
|
|
|
depends on USB_HOST
|
|
|
|
default n
|
2022-12-03 12:07:44 +08:00
|
|
|
|
|
|
|
config USB_CAMERA
|
2023-01-09 10:14:23 +08:00
|
|
|
bool "UVC support"
|
|
|
|
depends on USB_HOST
|
|
|
|
default n
|
2022-12-03 12:07:44 +08:00
|
|
|
|
|
|
|
config USB_HID
|
2023-01-09 10:14:23 +08:00
|
|
|
bool "USB HID support"
|
|
|
|
depends on USB_HOST
|
|
|
|
default n
|
2022-12-03 12:07:44 +08:00
|
|
|
endmenu
|
|
|
|
|
|
|
|
menu "USB DEVICE"
|
|
|
|
|
|
|
|
config USB_DEVICE
|
|
|
|
bool "enable usb device driver"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config HAL_TEST_UDC
|
2023-01-09 10:14:23 +08:00
|
|
|
bool "enable udc hal APIs test command"
|
|
|
|
depends on USB_DEVICE
|
|
|
|
default y
|
2022-12-03 12:07:44 +08:00
|
|
|
endmenu
|
|
|
|
|
|
|
|
config USB_MANAGER
|
2023-01-09 10:14:23 +08:00
|
|
|
bool "USB Manager support"
|
|
|
|
default n
|
2022-12-03 12:07:44 +08:00
|
|
|
endif
|
|
|
|
|