Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. help
  41. Enable this to support ULPI connected USB OTG transceivers which
  42. are likely found on embedded boards.
  43. The only chip currently supported is NXP's ISP1504
  44. config TWL4030_USB
  45. tristate "TWL4030 USB Transceiver Driver"
  46. depends on TWL4030_CORE && REGULATOR_TWL4030
  47. select USB_OTG_UTILS
  48. help
  49. Enable this to support the USB OTG transceiver on TWL4030
  50. family chips (including the TWL5030 and TPS659x0 devices).
  51. This transceiver supports high and full speed devices plus,
  52. in host mode, low speed.
  53. config NOP_USB_XCEIV
  54. tristate "NOP USB Transceiver Driver"
  55. select USB_OTG_UTILS
  56. help
  57. this driver is to be used by all the usb transceiver which are either
  58. built-in with usb ip or which are autonomous and doesn't require any
  59. phy programming such as ISP1x04 etc.
  60. endif # USB || OTG