Kconfig 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. #
  2. # USB Host Controller Drivers
  3. #
  4. comment "USB Host Controller Drivers"
  5. config USB_HOST
  6. bool
  7. config USB_XHCI_HCD
  8. bool "xHCI HCD (USB 3.0) support"
  9. select USB_HOST
  10. ---help---
  11. The eXtensible Host Controller Interface (xHCI) is standard for USB 3.0
  12. "SuperSpeed" host controller hardware.
  13. if USB_XHCI_HCD
  14. config USB_XHCI_DWC3
  15. bool "DesignWare USB3 DRD Core Support"
  16. help
  17. Say Y or if your system has a Dual Role SuperSpeed
  18. USB controller based on the DesignWare USB3 IP Core.
  19. config USB_XHCI_MVEBU
  20. bool "MVEBU USB 3.0 support"
  21. default y
  22. depends on ARCH_MVEBU
  23. select DM_REGULATOR
  24. help
  25. Choose this option to add support for USB 3.0 driver on mvebu
  26. SoCs, which includes Armada8K, Armada3700 and other Armada
  27. family SoCs.
  28. config USB_XHCI_ROCKCHIP
  29. bool "Support for Rockchip on-chip xHCI USB controller"
  30. depends on ARCH_ROCKCHIP
  31. default y
  32. help
  33. Enables support for the on-chip xHCI controller on Rockchip SoCs.
  34. config USB_XHCI_ZYNQMP
  35. bool "Support for Xilinx ZynqMP on-chip xHCI USB controller"
  36. depends on ARCH_ZYNQMP
  37. help
  38. Enables support for the on-chip xHCI controller on Xilinx ZynqMP SoCs.
  39. config USB_XHCI_DRA7XX_INDEX
  40. int "DRA7XX xHCI USB index"
  41. range 0 1
  42. default 0
  43. depends on DRA7XX
  44. help
  45. Select the DRA7XX xHCI USB index.
  46. Current supported values: 0, 1.
  47. endif # USB_XHCI_HCD
  48. config USB_EHCI_HCD
  49. bool "EHCI HCD (USB 2.0) support"
  50. default y if ARCH_MX5 || ARCH_MX6
  51. select USB_HOST
  52. ---help---
  53. The Enhanced Host Controller Interface (EHCI) is standard for USB 2.0
  54. "high speed" (480 Mbit/sec, 60 Mbyte/sec) host controller hardware.
  55. If your USB host controller supports USB 2.0, you will likely want to
  56. configure this Host Controller Driver.
  57. EHCI controllers are packaged with "companion" host controllers (OHCI
  58. or UHCI) to handle USB 1.1 devices connected to root hub ports. Ports
  59. will connect to EHCI if the device is high speed, otherwise they
  60. connect to a companion controller. If you configure EHCI, you should
  61. probably configure the OHCI (for NEC and some other vendors) USB Host
  62. Controller Driver or UHCI (for Via motherboards) Host Controller
  63. Driver too.
  64. You may want to read <file:Documentation/usb/ehci.txt>.
  65. if USB_EHCI_HCD
  66. config USB_EHCI_ATMEL
  67. bool "Support for Atmel on-chip EHCI USB controller"
  68. depends on ARCH_AT91
  69. default y
  70. ---help---
  71. Enables support for the on-chip EHCI controller on Atmel chips.
  72. config USB_EHCI_MARVELL
  73. bool "Support for Marvell on-chip EHCI USB controller"
  74. depends on ARCH_MVEBU || KIRKWOOD || ORION5X
  75. default y
  76. ---help---
  77. Enables support for the on-chip EHCI controller on MVEBU SoCs.
  78. config USB_EHCI_MX6
  79. bool "Support for i.MX6 on-chip EHCI USB controller"
  80. depends on ARCH_MX6
  81. default y
  82. ---help---
  83. Enables support for the on-chip EHCI controller on i.MX6 SoCs.
  84. config USB_EHCI_MX7
  85. bool "Support for i.MX7 on-chip EHCI USB controller"
  86. depends on ARCH_MX7
  87. default y
  88. ---help---
  89. Enables support for the on-chip EHCI controller on i.MX7 SoCs.
  90. config USB_EHCI_OMAP
  91. bool "Support for OMAP3+ on-chip EHCI USB controller"
  92. depends on ARCH_OMAP2PLUS
  93. default y
  94. ---help---
  95. Enables support for the on-chip EHCI controller on OMAP3 and later
  96. SoCs.
  97. if USB_EHCI_MX7
  98. config MXC_USB_OTG_HACTIVE
  99. bool "USB Power pin high active"
  100. ---help---
  101. Set the USB Power pin polarity to be high active (PWR_POL)
  102. endif
  103. config USB_EHCI_MSM
  104. bool "Support for Qualcomm on-chip EHCI USB controller"
  105. depends on DM_USB
  106. select USB_ULPI_VIEWPORT
  107. default n
  108. ---help---
  109. Enables support for the on-chip EHCI controller on Qualcomm
  110. Snapdragon SoCs.
  111. This driver supports combination of Chipidea USB controller
  112. and Synapsys USB PHY in host mode only.
  113. config USB_EHCI_RCAR_GEN3
  114. bool "Support for Renesas RCar M3/H3 EHCI USB controller"
  115. depends on RCAR_GEN3
  116. default y
  117. ---help---
  118. Enables support for the on-chip EHCI controller on Renesas
  119. R8A7795 and R8A7796 SoCs.
  120. config USB_EHCI_ZYNQ
  121. bool "Support for Xilinx Zynq on-chip EHCI USB controller"
  122. depends on ARCH_ZYNQ
  123. default y
  124. ---help---
  125. Enable support for Zynq on-chip EHCI USB controller
  126. config USB_EHCI_GENERIC
  127. bool "Support for generic EHCI USB controller"
  128. depends on OF_CONTROL
  129. depends on DM_USB
  130. default n
  131. ---help---
  132. Enables support for generic EHCI controller.
  133. endif # USB_EHCI_HCD
  134. config USB_OHCI_HCD
  135. bool "OHCI HCD (USB 1.1) support"
  136. ---help---
  137. The Open Host Controller Interface (OHCI) is a standard for accessing
  138. USB 1.1 host controller hardware. It does more in hardware than Intel's
  139. UHCI specification. If your USB host controller follows the OHCI spec,
  140. say Y. On most non-x86 systems, and on x86 hardware that's not using a
  141. USB controller from Intel or VIA, this is appropriate. If your host
  142. controller doesn't use PCI, this is probably appropriate. For a PCI
  143. based system where you're not sure, the "lspci -v" entry will list the
  144. right "prog-if" for your USB controller(s): EHCI, OHCI, or UHCI.
  145. if USB_OHCI_HCD
  146. config USB_OHCI_GENERIC
  147. bool "Support for generic OHCI USB controller"
  148. depends on OF_CONTROL
  149. depends on DM_USB
  150. select USB_HOST
  151. ---help---
  152. Enables support for generic OHCI controller.
  153. endif # USB_OHCI_HCD
  154. config USB_UHCI_HCD
  155. bool "UHCI HCD (most Intel and VIA) support"
  156. select USB_HOST
  157. ---help---
  158. The Universal Host Controller Interface is a standard by Intel for
  159. accessing the USB hardware in the PC (which is also called the USB
  160. host controller). If your USB host controller conforms to this
  161. standard, you may want to say Y, but see below. All recent boards
  162. with Intel PCI chipsets (like intel 430TX, 440FX, 440LX, 440BX,
  163. i810, i820) conform to this standard. Also all VIA PCI chipsets
  164. (like VIA VP2, VP3, MVP3, Apollo Pro, Apollo Pro II or Apollo Pro
  165. 133) and LEON/GRLIB SoCs with the GRUSBHC controller.
  166. If unsure, say Y.
  167. if USB_UHCI_HCD
  168. endif # USB_UHCI_HCD