Kconfig 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. #
  2. # USB device configuration
  3. #
  4. # These are unused now, remove them once they are no longer selected
  5. config USB_ARCH_HAS_OHCI
  6. bool
  7. config USB_OHCI_BIG_ENDIAN_DESC
  8. bool
  9. config USB_OHCI_BIG_ENDIAN_MMIO
  10. bool
  11. config USB_OHCI_LITTLE_ENDIAN
  12. bool
  13. default n if STB03xxx || PPC_MPC52xx
  14. default y
  15. config USB_ARCH_HAS_EHCI
  16. bool
  17. config USB_EHCI_BIG_ENDIAN_MMIO
  18. bool
  19. config USB_EHCI_BIG_ENDIAN_DESC
  20. bool
  21. config USB_ARCH_HAS_XHCI
  22. bool
  23. menuconfig USB_SUPPORT
  24. bool "USB support"
  25. depends on HAS_IOMEM
  26. default y
  27. ---help---
  28. This option adds core support for Universal Serial Bus (USB).
  29. You will also need drivers from the following menu to make use of it.
  30. if USB_SUPPORT
  31. config USB_COMMON
  32. tristate
  33. default y
  34. depends on USB || USB_GADGET
  35. config USB_ARCH_HAS_HCD
  36. def_bool y
  37. # ARM SA1111 chips have a non-PCI based "OHCI-compatible" USB host interface.
  38. config USB
  39. tristate "Support for Host-side USB"
  40. depends on USB_ARCH_HAS_HCD
  41. select NLS # for UTF-8 strings
  42. ---help---
  43. Universal Serial Bus (USB) is a specification for a serial bus
  44. subsystem which offers higher speeds and more features than the
  45. traditional PC serial port. The bus supplies power to peripherals
  46. and allows for hot swapping. Up to 127 USB peripherals can be
  47. connected to a single USB host in a tree structure.
  48. The USB host is the root of the tree, the peripherals are the
  49. leaves and the inner nodes are special USB devices called hubs.
  50. Most PCs now have USB host ports, used to connect peripherals
  51. such as scanners, keyboards, mice, modems, cameras, disks,
  52. flash memory, network links, and printers to the PC.
  53. Say Y here if your computer has a host-side USB port and you want
  54. to use USB devices. You then need to say Y to at least one of the
  55. Host Controller Driver (HCD) options below. Choose a USB 1.1
  56. controller, such as "UHCI HCD support" or "OHCI HCD support",
  57. and "EHCI HCD (USB 2.0) support" except for older systems that
  58. do not have USB 2.0 support. It doesn't normally hurt to select
  59. them all if you are not certain.
  60. If your system has a device-side USB port, used in the peripheral
  61. side of the USB protocol, see the "USB Gadget" framework instead.
  62. After choosing your HCD, then select drivers for the USB peripherals
  63. you'll be using. You may want to check out the information provided
  64. in <file:Documentation/usb/> and especially the links given in
  65. <file:Documentation/usb/usb-help.txt>.
  66. To compile this driver as a module, choose M here: the
  67. module will be called usbcore.
  68. if USB
  69. source "drivers/usb/core/Kconfig"
  70. source "drivers/usb/mon/Kconfig"
  71. source "drivers/usb/wusbcore/Kconfig"
  72. source "drivers/usb/host/Kconfig"
  73. source "drivers/usb/musb/Kconfig"
  74. source "drivers/usb/renesas_usbhs/Kconfig"
  75. source "drivers/usb/class/Kconfig"
  76. source "drivers/usb/storage/Kconfig"
  77. source "drivers/usb/image/Kconfig"
  78. endif
  79. source "drivers/usb/dwc3/Kconfig"
  80. source "drivers/usb/chipidea/Kconfig"
  81. comment "USB port drivers"
  82. if USB
  83. config USB_USS720
  84. tristate "USS720 parport driver"
  85. depends on PARPORT
  86. select PARPORT_NOT_PC
  87. ---help---
  88. This driver is for USB parallel port adapters that use the Lucent
  89. Technologies USS-720 chip. These cables are plugged into your USB
  90. port and provide USB compatibility to peripherals designed with
  91. parallel port interfaces.
  92. The chip has two modes: automatic mode and manual mode. In automatic
  93. mode, it looks to the computer like a standard USB printer. Only
  94. printers may be connected to the USS-720 in this mode. The generic
  95. USB printer driver ("USB Printer support", above) may be used in
  96. that mode, and you can say N here if you want to use the chip only
  97. in this mode.
  98. Manual mode is not limited to printers, any parallel port
  99. device should work. This driver utilizes manual mode.
  100. Note however that some operations are three orders of magnitude
  101. slower than on a PCI/ISA Parallel Port, so timing critical
  102. applications might not work.
  103. Say Y here if you own an USS-720 USB->Parport cable and intend to
  104. connect anything other than a printer to it.
  105. To compile this driver as a module, choose M here: the
  106. module will be called uss720.
  107. source "drivers/usb/serial/Kconfig"
  108. source "drivers/usb/misc/Kconfig"
  109. source "drivers/usb/atm/Kconfig"
  110. endif # USB
  111. source "drivers/usb/phy/Kconfig"
  112. source "drivers/usb/gadget/Kconfig"
  113. endif # USB_SUPPORT