2 config USB_ARCH_HAS_HCD
6 bool "Support for Host-side USB"
7 depends on USB_ARCH_HAS_HCD
9 Universal Serial Bus (USB) is a specification for a serial bus
10 subsystem which offers higher speeds and more features than the
11 traditional PC serial port. The bus supplies power to peripherals
12 and allows for hot swapping. Up to 127 USB peripherals can be
13 connected to a single USB host in a tree structure.
15 The USB host is the root of the tree, the peripherals are the
16 leaves and the inner nodes are special USB devices called hubs.
17 Most PCs now have USB host ports, used to connect peripherals
18 such as scanners, keyboards, mice, modems, cameras, disks,
19 flash memory, network links, and printers to the PC.
21 Say Y here if your computer has a host-side USB port and you want
22 to use USB devices. You then need to say Y to at least one of the
23 Host Controller Driver (HCD) options below. Choose a USB 1.1
24 controller, such as "UHCI HCD support" or "OHCI HCD support",
25 and "EHCI HCD (USB 2.0) support" except for older systems that
26 do not have USB 2.0 support. It doesn't normally hurt to select
27 them all if you are not certain.
29 If your system has a device-side USB port, used in the peripheral
30 side of the USB protocol, see the "USB Gadget" framework instead.
32 After choosing your HCD, then select drivers for the USB peripherals
33 you'll be using. You may want to check out the information provided
34 in <file:Documentation/usb/> and especially the links given in
35 <file:Documentation/usb/usb-help.txt>.
40 bool "Enable driver model for USB"
43 Enable driver model for USB. The USB interface is then implemented
44 by the USB uclass. Multiple USB controllers of different types
45 (XHCI, EHCI) can be attached and used. The 'usb' command works as
46 normal. OCHI is not supported at present.
48 Much of the code is shared but with this option enabled the USB
49 uclass takes care of device enumeration. USB devices can be
50 declared with the USB_DEVICE() macro and will be automatically
51 probed when found on the bus.
53 source "drivers/usb/host/Kconfig"
55 source "drivers/usb/emul/Kconfig"
58 bool "USB Mass Storage support"
60 Say Y here if you want to connect USB mass storage devices to your
64 bool "USB Keyboard support"
66 Say Y here if you want to use a USB keyboard for U-Boot command line
72 prompt "USB keyboard polling"
75 Enable a polling mechanism for USB keyboard.
77 config SYS_USB_EVENT_POLL
78 bool "Interrupt polling"
80 config SYS_USB_EVENT_POLL_VIA_INT_QUEUE
81 bool "Poll via interrupt queue"
83 config SYS_USB_EVENT_POLL_VIA_CONTROL_EP
84 bool "Poll via control EP"