2015-08-04 15:04:05 +00:00
|
|
|
menuconfig USB
|
|
|
|
bool "USB support"
|
2014-11-07 09:48:31 +00:00
|
|
|
---help---
|
|
|
|
Universal Serial Bus (USB) is a specification for a serial bus
|
|
|
|
subsystem which offers higher speeds and more features than the
|
|
|
|
traditional PC serial port. The bus supplies power to peripherals
|
|
|
|
and allows for hot swapping. Up to 127 USB peripherals can be
|
|
|
|
connected to a single USB host in a tree structure.
|
|
|
|
|
|
|
|
The USB host is the root of the tree, the peripherals are the
|
|
|
|
leaves and the inner nodes are special USB devices called hubs.
|
|
|
|
Most PCs now have USB host ports, used to connect peripherals
|
|
|
|
such as scanners, keyboards, mice, modems, cameras, disks,
|
|
|
|
flash memory, network links, and printers to the PC.
|
|
|
|
|
2015-08-04 15:04:05 +00:00
|
|
|
Say Y here if your device has an USB port, either host, peripheral or
|
|
|
|
dual-role.
|
|
|
|
|
|
|
|
For an USB host port, you then need to say Y to at least one of the
|
2014-11-07 09:48:31 +00:00
|
|
|
Host Controller Driver (HCD) options below. Choose a USB 1.1
|
|
|
|
controller, such as "UHCI HCD support" or "OHCI HCD support",
|
|
|
|
and "EHCI HCD (USB 2.0) support" except for older systems that
|
|
|
|
do not have USB 2.0 support. It doesn't normally hurt to select
|
|
|
|
them all if you are not certain.
|
|
|
|
|
|
|
|
If your system has a device-side USB port, used in the peripheral
|
|
|
|
side of the USB protocol, see the "USB Gadget" framework instead.
|
|
|
|
|
|
|
|
After choosing your HCD, then select drivers for the USB peripherals
|
|
|
|
you'll be using. You may want to check out the information provided
|
|
|
|
in <file:Documentation/usb/> and especially the links given in
|
|
|
|
<file:Documentation/usb/usb-help.txt>.
|
|
|
|
|
|
|
|
if USB
|
|
|
|
|
2015-03-25 18:21:59 +00:00
|
|
|
config DM_USB
|
2021-07-09 14:11:56 +00:00
|
|
|
bool
|
|
|
|
depends on DM && OF_CONTROL
|
2015-03-25 18:21:59 +00:00
|
|
|
help
|
|
|
|
Enable driver model for USB. The USB interface is then implemented
|
|
|
|
by the USB uclass. Multiple USB controllers of different types
|
2020-05-26 17:07:16 +00:00
|
|
|
(XHCI, EHCI, OHCI) can be attached and used. The 'usb' command works
|
|
|
|
as normal.
|
2015-03-25 18:21:59 +00:00
|
|
|
|
|
|
|
Much of the code is shared but with this option enabled the USB
|
|
|
|
uclass takes care of device enumeration. USB devices can be
|
2015-07-06 22:47:51 +00:00
|
|
|
declared with the U_BOOT_USB_DEVICE() macro and will be
|
|
|
|
automatically probed when found on the bus.
|
2015-03-25 18:21:59 +00:00
|
|
|
|
2018-11-21 07:43:53 +00:00
|
|
|
config SPL_DM_USB
|
2022-09-17 23:28:29 +00:00
|
|
|
bool "Enable driver model for USB host mode in SPL"
|
2018-12-10 11:05:16 +00:00
|
|
|
depends on SPL_DM && DM_USB
|
2022-05-24 08:58:42 +00:00
|
|
|
default n if ARCH_MVEBU
|
2018-11-21 07:43:53 +00:00
|
|
|
default y
|
|
|
|
|
2018-11-29 09:52:42 +00:00
|
|
|
config DM_USB_GADGET
|
|
|
|
bool "Enable driver model for USB Gadget"
|
|
|
|
depends on DM_USB
|
|
|
|
help
|
|
|
|
Enable driver model for USB Gadget (Peripheral
|
|
|
|
mode)
|
|
|
|
|
|
|
|
config SPL_DM_USB_GADGET
|
2020-12-23 15:13:22 +00:00
|
|
|
bool "Enable driver model for USB Gadget in SPL"
|
2018-11-29 09:52:42 +00:00
|
|
|
depends on SPL_DM_USB
|
|
|
|
help
|
|
|
|
Enable driver model for USB Gadget in SPL
|
|
|
|
(Peripheral mode)
|
|
|
|
|
2014-11-07 09:48:31 +00:00
|
|
|
source "drivers/usb/host/Kconfig"
|
|
|
|
|
2022-06-29 10:06:15 +00:00
|
|
|
source "drivers/usb/isp1760/Kconfig"
|
|
|
|
|
2019-10-01 11:56:33 +00:00
|
|
|
source "drivers/usb/cdns3/Kconfig"
|
|
|
|
|
2016-04-13 11:20:25 +00:00
|
|
|
source "drivers/usb/dwc3/Kconfig"
|
|
|
|
|
2020-10-16 03:38:39 +00:00
|
|
|
source "drivers/usb/mtu3/Kconfig"
|
|
|
|
|
2017-12-29 15:15:41 +00:00
|
|
|
source "drivers/usb/musb/Kconfig"
|
|
|
|
|
2015-08-04 15:04:07 +00:00
|
|
|
source "drivers/usb/musb-new/Kconfig"
|
|
|
|
|
2015-03-25 18:22:37 +00:00
|
|
|
source "drivers/usb/emul/Kconfig"
|
|
|
|
|
2018-01-02 16:38:36 +00:00
|
|
|
source "drivers/usb/phy/Kconfig"
|
|
|
|
|
2016-03-31 21:12:18 +00:00
|
|
|
source "drivers/usb/ulpi/Kconfig"
|
|
|
|
|
2021-07-09 14:11:56 +00:00
|
|
|
if USB_HOST
|
|
|
|
|
2015-08-04 15:04:05 +00:00
|
|
|
comment "USB peripherals"
|
|
|
|
|
2014-11-07 09:48:31 +00:00
|
|
|
config USB_STORAGE
|
|
|
|
bool "USB Mass Storage support"
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to connect USB mass storage devices to your
|
|
|
|
board's USB port.
|
|
|
|
|
2015-07-23 14:19:36 +00:00
|
|
|
config USB_KEYBOARD
|
|
|
|
bool "USB Keyboard support"
|
2021-02-28 11:50:49 +00:00
|
|
|
select DM_KEYBOARD if DM_USB
|
2018-02-21 03:57:09 +00:00
|
|
|
select SYS_STDIO_DEREGISTER
|
2015-07-23 14:19:36 +00:00
|
|
|
---help---
|
|
|
|
Say Y here if you want to use a USB keyboard for U-Boot command line
|
|
|
|
input.
|
|
|
|
|
2022-12-12 10:44:35 +00:00
|
|
|
config USB_ONBOARD_HUB
|
|
|
|
bool "Onboard USB hub support"
|
|
|
|
depends on DM_USB
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to support discrete onboard USB hubs that
|
|
|
|
don't require an additional control bus for initialization, but
|
|
|
|
need some non-trivial form of initialization, such as enabling a
|
|
|
|
power regulator. An example for such a hub is the Microchip
|
|
|
|
USB2514B.
|
|
|
|
|
2023-01-25 18:40:16 +00:00
|
|
|
config USB_HUB_DEBOUNCE_TIMEOUT
|
|
|
|
int "Timeout in milliseconds for USB HUB connection"
|
|
|
|
default 1000
|
|
|
|
help
|
|
|
|
Value in milliseconds of the USB connection timeout, the max delay to
|
|
|
|
wait the hub port status to be connected steadily after being powered
|
|
|
|
off and powered on in the usb hub driver.
|
|
|
|
This define allows to increase the HUB_DEBOUNCE_TIMEOUT default
|
|
|
|
value = 1s because some usb device needs around 1.5s to be initialized
|
|
|
|
and a 2s value should solve detection issue on problematic USB keys.
|
|
|
|
|
2023-05-06 14:42:38 +00:00
|
|
|
if SPL_USB_HOST
|
|
|
|
|
|
|
|
comment "USB peripherals in SPL"
|
|
|
|
|
|
|
|
config SPL_USB_STORAGE
|
|
|
|
bool "Support loading from USB"
|
|
|
|
help
|
|
|
|
Enable support for USB devices in SPL. This allows use of USB
|
|
|
|
devices such as hard drives and flash drivers for loading U-Boot.
|
|
|
|
The actual drivers are enabled separately using the normal U-Boot
|
|
|
|
config options. This enables loading from USB using a configured
|
|
|
|
device.
|
|
|
|
|
|
|
|
config SYS_USB_FAT_BOOT_PARTITION
|
|
|
|
int "Partition on USB to use to load U-Boot from"
|
|
|
|
depends on SPL_USB_STORAGE
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
Partition on the USB storage device to load U-Boot from.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2015-07-23 14:19:36 +00:00
|
|
|
if USB_KEYBOARD
|
|
|
|
|
2019-11-23 17:15:21 +00:00
|
|
|
config USB_KEYBOARD_FN_KEYS
|
|
|
|
bool "USB keyboard function key support"
|
|
|
|
help
|
|
|
|
Say Y here if you want support for keys F1 - F12, INS, HOME, DELETE,
|
|
|
|
END, PAGE UP, and PAGE DOWN.
|
|
|
|
|
2015-07-23 14:19:36 +00:00
|
|
|
choice
|
|
|
|
prompt "USB keyboard polling"
|
sunxi: Move common defconfig options to Kconfig
Some config symbols are found in *almost* every _defconfig file for
Allwinner boards, because those options are actually a platform choice,
and not a per-board decision.
Some of these options are older, some have recently been added.
Move those options to be set for all Allwinner boards in their
respective Kconfig files.
The rationales are as follows:
- NR_DRAM_BANKS: All Allwinner SoC map DRAM at one contiguous region of
address space only, starting at 1 GB. So it's always one bank.
- SPL_{DOS,EFI}_PARTITION: The Allwinner SPL does only support raw MMC
accesses, we don't care about filesystems or partitions in there, so
there is no need to define those symbols at all.
- USE_PREBOOT: We start USB early when a keyboard is configured, using the
preboot env variable, so we need to set this variable.
- SYS_RELOC_GD_ENV_ADDR: We don't specify any ENV_ADDR, so need this
symbol to be set (according to 8d8ee47e03e).
- SYS_USB_EVENT_POLL_VIA_INT_QUEUE: According to commit eab9433aa55428,
specifying this reduces the latency of the USB keyboard handling, so
this was formerly enabled in config headers for all Allwinner boards.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Acked-by: Maxime Ripard <mripard@kernel.org>
Tested-by: Jagan Teki <jagan@amarulasolutions.com> # Amarula A64-Relic
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
2020-02-20 17:51:14 +00:00
|
|
|
default SYS_USB_EVENT_POLL_VIA_INT_QUEUE if ARCH_SUNXI
|
2017-09-13 08:19:43 +00:00
|
|
|
default SYS_USB_EVENT_POLL
|
2015-07-23 14:19:36 +00:00
|
|
|
---help---
|
|
|
|
Enable a polling mechanism for USB keyboard.
|
|
|
|
|
2020-08-06 10:12:30 +00:00
|
|
|
config SYS_USB_EVENT_POLL
|
|
|
|
bool "Interrupt polling"
|
2015-07-23 14:19:36 +00:00
|
|
|
|
2020-08-06 10:12:30 +00:00
|
|
|
config SYS_USB_EVENT_POLL_VIA_INT_QUEUE
|
|
|
|
bool "Poll via interrupt queue"
|
2015-07-23 14:19:36 +00:00
|
|
|
|
2020-08-06 10:12:30 +00:00
|
|
|
config SYS_USB_EVENT_POLL_VIA_CONTROL_EP
|
|
|
|
bool "Poll via control EP"
|
2015-07-23 14:19:36 +00:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2017-08-11 16:44:58 +00:00
|
|
|
source "drivers/usb/eth/Kconfig"
|
|
|
|
|
2014-11-07 09:48:31 +00:00
|
|
|
endif
|
2021-07-09 14:11:56 +00:00
|
|
|
|
|
|
|
source "drivers/usb/gadget/Kconfig"
|
|
|
|
|
|
|
|
endif
|