Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #
  2. # USB OTG infrastructure may be needed for peripheral-only, host-only,
  3. # or OTG-capable configurations when OTG transceivers or controllers
  4. # are used.
  5. #
  6. comment "OTG and related infrastructure"
  7. config USB_OTG_UTILS
  8. bool
  9. help
  10. Select this to make sure the build includes objects from
  11. the OTG infrastructure directory.
  12. if USB || USB_GADGET
  13. #
  14. # USB Transceiver Drivers
  15. #
  16. config USB_GPIO_VBUS
  17. tristate "GPIO based peripheral-only VBUS sensing 'transceiver'"
  18. depends on GENERIC_GPIO
  19. select USB_OTG_UTILS
  20. help
  21. Provides simple GPIO VBUS sensing for controllers with an
  22. internal transceiver via the otg_transceiver interface, and
  23. optionally control of a D+ pullup GPIO as well as a VBUS
  24. current limit regulator.
  25. config ISP1301_OMAP
  26. tristate "Philips ISP1301 with OMAP OTG"
  27. depends on I2C && ARCH_OMAP_OTG
  28. select USB_OTG_UTILS
  29. help
  30. If you say yes here you get support for the Philips ISP1301
  31. USB-On-The-Go transceiver working with the OMAP OTG controller.
  32. The ISP1301 is a full speed USB transceiver which is used in
  33. products including H2, H3, and H4 development boards for Texas
  34. Instruments OMAP processors.
  35. This driver can also be built as a module. If so, the module
  36. will be called isp1301_omap.
  37. config USB_ULPI
  38. bool "Generic ULPI Transceiver Driver"
  39. depends on ARM
  40. select USB_OTG_UTILS
  41. help
  42. Enable this to support ULPI connected USB OTG transceivers which
  43. are likely found on embedded boards.
  44. config USB_ULPI_VIEWPORT
  45. bool
  46. depends on USB_ULPI
  47. help
  48. Provides read/write operations to the ULPI phy register set for
  49. controllers with a viewport register (e.g. Chipidea/ARC controllers).
  50. config TWL4030_USB
  51. tristate "TWL4030 USB Transceiver Driver"
  52. depends on TWL4030_CORE && REGULATOR_TWL4030
  53. select USB_OTG_UTILS
  54. help
  55. Enable this to support the USB OTG transceiver on TWL4030
  56. family chips (including the TWL5030 and TPS659x0 devices).
  57. This transceiver supports high and full speed devices plus,
  58. in host mode, low speed.
  59. config TWL6030_USB
  60. tristate "TWL6030 USB Transceiver Driver"
  61. depends on TWL4030_CORE
  62. select USB_OTG_UTILS
  63. help
  64. Enable this to support the USB OTG transceiver on TWL6030
  65. family chips. This TWL6030 transceiver has the VBUS and ID GND
  66. and OTG SRP events capabilities. For all other transceiver functionality
  67. UTMI PHY is embedded in OMAP4430. The internal PHY configurations APIs
  68. are hooked to this driver through platform_data structure.
  69. The definition of internal PHY APIs are in the mach-omap2 layer.
  70. config NOP_USB_XCEIV
  71. tristate "NOP USB Transceiver Driver"
  72. select USB_OTG_UTILS
  73. help
  74. this driver is to be used by all the usb transceiver which are either
  75. built-in with usb ip or which are autonomous and doesn't require any
  76. phy programming such as ISP1x04 etc.
  77. config USB_LANGWELL_OTG
  78. tristate "Intel Langwell USB OTG dual-role support"
  79. depends on USB && PCI && INTEL_SCU_IPC
  80. select USB_OTG
  81. select USB_OTG_UTILS
  82. help
  83. Say Y here if you want to build Intel Langwell USB OTG
  84. transciever driver in kernel. This driver implements role
  85. switch between EHCI host driver and Langwell USB OTG
  86. client driver.
  87. To compile this driver as a module, choose M here: the
  88. module will be called langwell_otg.
  89. config USB_MSM_OTG
  90. tristate "OTG support for Qualcomm on-chip USB controller"
  91. depends on (USB || USB_GADGET) && ARCH_MSM
  92. select USB_OTG_UTILS
  93. help
  94. Enable this to support the USB OTG transceiver on MSM chips. It
  95. handles PHY initialization, clock management, and workarounds
  96. required after resetting the hardware and power management.
  97. This driver is required even for peripheral only or host only
  98. mode configurations.
  99. This driver is not supported on boards like trout which
  100. has an external PHY.
  101. config AB8500_USB
  102. tristate "AB8500 USB Transceiver Driver"
  103. depends on AB8500_CORE
  104. select USB_OTG_UTILS
  105. help
  106. Enable this to support the USB OTG transceiver in AB8500 chip.
  107. This transceiver supports high and full speed devices plus,
  108. in host mode, low speed.
  109. endif # USB || OTG