Kconfig 5.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#
# USB device configuration
#

5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
config USB_OHCI_BIG_ENDIAN_DESC
	bool

config USB_OHCI_BIG_ENDIAN_MMIO
	bool

config USB_OHCI_LITTLE_ENDIAN
	bool
	default n if STB03xxx || PPC_MPC52xx
	default y

config USB_EHCI_BIG_ENDIAN_MMIO
	bool

config USB_EHCI_BIG_ENDIAN_DESC
	bool

22 23 24 25 26 27
config USB_UHCI_BIG_ENDIAN_MMIO
	bool

config USB_UHCI_BIG_ENDIAN_DESC
	bool

28 29 30 31 32 33 34 35
menuconfig USB_SUPPORT
	bool "USB support"
	depends on HAS_IOMEM
	default y
	---help---
	  This option adds core support for Universal Serial Bus (USB).
	  You will also need drivers from the following menu to make use of it.

36 37 38 39 40 41
if USB_SUPPORT

config USB_COMMON
	tristate

config USB_ARCH_HAS_HCD
42
	def_bool y
43

L
Linus Torvalds 已提交
44 45 46
config USB
	tristate "Support for Host-side USB"
	depends on USB_ARCH_HAS_HCD
47
	select USB_COMMON
48
	select NLS  # for UTF-8 strings
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
	---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.

	  Say Y here if your computer has a host-side USB port and you want
	  to use USB devices.  You then need to say Y to at least one of the
	  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>.

	  To compile this driver as a module, choose M here: the
	  module will be called usbcore.

81 82 83 84 85
config USB_PCI
	bool "PCI based USB host interface"
	depends on PCI
	default y
	---help---
C
Chris Mayo 已提交
86 87 88
	  Many embedded system SOCs (e.g. freescale T2080) have both
	  PCI and USB modules with the USB module directly controlled by
	  registers and having no relationship to the PCI module.
89

C
Chris Mayo 已提交
90 91
	  If you have such a device you may say N here and PCI related code
	  will not be built in the USB driver.
92

93
if USB
L
Linus Torvalds 已提交
94

95
source "drivers/usb/core/Kconfig"
96

97 98
source "drivers/usb/mon/Kconfig"

99 100
source "drivers/usb/wusbcore/Kconfig"

L
Linus Torvalds 已提交
101 102
source "drivers/usb/host/Kconfig"

103 104
source "drivers/usb/renesas_usbhs/Kconfig"

L
Linus Torvalds 已提交
105 106 107 108 109 110
source "drivers/usb/class/Kconfig"

source "drivers/usb/storage/Kconfig"

source "drivers/usb/image/Kconfig"

111 112
source "drivers/usb/usbip/Kconfig"

113 114
endif

C
Chunfeng Yun 已提交
115 116
source "drivers/usb/mtu3/Kconfig"

117 118
source "drivers/usb/musb/Kconfig"

119 120
source "drivers/usb/dwc3/Kconfig"

P
Paul Zimmerman 已提交
121 122
source "drivers/usb/dwc2/Kconfig"

123 124
source "drivers/usb/chipidea/Kconfig"

125 126
source "drivers/usb/isp1760/Kconfig"

L
Linus Torvalds 已提交
127
comment "USB port drivers"
128 129

if USB
L
Linus Torvalds 已提交
130 131 132

config USB_USS720
	tristate "USS720 parport driver"
133
	depends on PARPORT
L
Linus Torvalds 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
	select PARPORT_NOT_PC
	---help---
	  This driver is for USB parallel port adapters that use the Lucent
	  Technologies USS-720 chip. These cables are plugged into your USB
	  port and provide USB compatibility to peripherals designed with
	  parallel port interfaces.

	  The chip has two modes: automatic mode and manual mode. In automatic
	  mode, it looks to the computer like a standard USB printer. Only
	  printers may be connected to the USS-720 in this mode. The generic
	  USB printer driver ("USB Printer support", above) may be used in
	  that mode, and you can say N here if you want to use the chip only
	  in this mode.

	  Manual mode is not limited to printers, any parallel port
	  device should work. This driver utilizes manual mode.
	  Note however that some operations are three orders of magnitude
	  slower than on a PCI/ISA Parallel Port, so timing critical
	  applications might not work.

	  Say Y here if you own an USS-720 USB->Parport cable and intend to
	  connect anything other than a printer to it.

	  To compile this driver as a module, choose M here: the
	  module will be called uss720.

source "drivers/usb/serial/Kconfig"

source "drivers/usb/misc/Kconfig"

source "drivers/usb/atm/Kconfig"

166 167 168 169
endif # USB

source "drivers/usb/phy/Kconfig"

L
Linus Torvalds 已提交
170 171
source "drivers/usb/gadget/Kconfig"

172 173
source "drivers/usb/typec/Kconfig"

174 175
source "drivers/usb/roles/Kconfig"

176 177
config USB_LED_TRIG
	bool "USB LED Triggers"
178 179
	depends on LEDS_CLASS && LEDS_TRIGGERS
	select USB_COMMON
180 181 182 183 184 185 186
	help
	  This option adds LED triggers for USB host and/or gadget activity.

	  Say Y here if you are working on a system with led-class supported
	  LEDs and you want to use them as activity indicators for USB host or
	  gadget.

187 188
config USB_ULPI_BUS
	tristate "USB ULPI PHY interface support"
189
	select USB_COMMON
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
	help
	  UTMI+ Low Pin Interface (ULPI) is specification for a commonly used
	  USB 2.0 PHY interface. The ULPI specification defines a standard set
	  of registers that can be used to detect the vendor and product which
	  allows ULPI to be handled as a bus. This module is the driver for that
	  bus.

	  The ULPI interfaces (the buses) are registered by the drivers for USB
	  controllers which support ULPI register access and have ULPI PHY
	  attached to them. The ULPI PHY drivers themselves are normal PHY
	  drivers.

	  ULPI PHYs provide often functions such as ADP sensing/probing (OTG
	  protocol) and USB charger detection.

	  To compile this driver as a module, choose M here: the module will
	  be called ulpi.

208 209
config USB_ROLE_SWITCH
	tristate
210
	select USB_COMMON
211

J
Jan Engelhardt 已提交
212
endif # USB_SUPPORT