Kconfig 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. menuconfig EXTCON
  2. tristate "External Connector Class (extcon) support"
  3. help
  4. Say Y here to enable external connector class (extcon) support.
  5. This allows monitoring external connectors by userspace
  6. via sysfs and uevent and supports external connectors with
  7. multiple states; i.e., an extcon that may have multiple
  8. cables attached. For example, an external connector of a device
  9. may be used to connect an HDMI cable and a AC adaptor, and to
  10. host USB ports. Many of 30-pin connectors including PDMI are
  11. also good examples.
  12. if EXTCON
  13. comment "Extcon Device Drivers"
  14. config EXTCON_ADC_JACK
  15. tristate "ADC Jack extcon support"
  16. depends on IIO
  17. help
  18. Say Y here to enable extcon device driver based on ADC values.
  19. config EXTCON_ARIZONA
  20. tristate "Wolfson Arizona EXTCON support"
  21. depends on MFD_ARIZONA && INPUT && SND_SOC
  22. help
  23. Say Y here to enable support for external accessory detection
  24. with Wolfson Arizona devices. These are audio CODECs with
  25. advanced audio accessory detection support.
  26. config EXTCON_AXP288
  27. tristate "X-Power AXP288 EXTCON support"
  28. depends on MFD_AXP20X && USB_PHY
  29. help
  30. Say Y here to enable support for USB peripheral detection
  31. and USB MUX switching by X-Power AXP288 PMIC.
  32. config EXTCON_GPIO
  33. tristate "GPIO extcon support"
  34. depends on GPIOLIB || COMPILE_TEST
  35. help
  36. Say Y here to enable GPIO based extcon support. Note that GPIO
  37. extcon supports single state per extcon instance.
  38. config EXTCON_INTEL_INT3496
  39. tristate "Intel INT3496 ACPI device extcon driver"
  40. depends on GPIOLIB && ACPI && (X86 || COMPILE_TEST)
  41. help
  42. Say Y here to enable extcon support for USB OTG ports controlled by
  43. an Intel INT3496 ACPI device.
  44. This ACPI device is typically found on Intel Baytrail or Cherrytrail
  45. based tablets, or other Baytrail / Cherrytrail devices.
  46. config EXTCON_MAX14577
  47. tristate "Maxim MAX14577/77836 EXTCON Support"
  48. depends on MFD_MAX14577
  49. select IRQ_DOMAIN
  50. select REGMAP_I2C
  51. help
  52. If you say yes here you get support for the MUIC device of
  53. Maxim MAX14577/77836. The MAX14577/77836 MUIC is a USB port accessory
  54. detector and switch.
  55. config EXTCON_MAX3355
  56. tristate "Maxim MAX3355 USB OTG EXTCON Support"
  57. depends on GPIOLIB || COMPILE_TEST
  58. help
  59. If you say yes here you get support for the USB OTG role detection by
  60. MAX3355. The MAX3355 chip integrates a charge pump and comparators to
  61. enable a system with an integrated USB OTG dual-role transceiver to
  62. function as an USB OTG dual-role device.
  63. config EXTCON_MAX77693
  64. tristate "Maxim MAX77693 EXTCON Support"
  65. depends on MFD_MAX77693 && INPUT
  66. select IRQ_DOMAIN
  67. select REGMAP_I2C
  68. help
  69. If you say yes here you get support for the MUIC device of
  70. Maxim MAX77693 PMIC. The MAX77693 MUIC is a USB port accessory
  71. detector and switch.
  72. config EXTCON_MAX77843
  73. tristate "Maxim MAX77843 EXTCON Support"
  74. depends on MFD_MAX77843
  75. select IRQ_DOMAIN
  76. select REGMAP_I2C
  77. help
  78. If you say yes here you get support for the MUIC device of
  79. Maxim MAX77843. The MAX77843 MUIC is a USB port accessory
  80. detector add switch.
  81. config EXTCON_MAX8997
  82. tristate "Maxim MAX8997 EXTCON Support"
  83. depends on MFD_MAX8997 && IRQ_DOMAIN
  84. help
  85. If you say yes here you get support for the MUIC device of
  86. Maxim MAX8997 PMIC. The MAX8997 MUIC is a USB port accessory
  87. detector and switch.
  88. config EXTCON_PALMAS
  89. tristate "Palmas USB EXTCON support"
  90. depends on MFD_PALMAS
  91. help
  92. Say Y here to enable support for USB peripheral and USB host
  93. detection by palmas usb.
  94. config EXTCON_QCOM_SPMI_MISC
  95. tristate "Qualcomm USB extcon support"
  96. help
  97. Say Y here to enable SPMI PMIC based USB cable detection
  98. support on Qualcomm PMICs such as PM8941.
  99. config EXTCON_RT8973A
  100. tristate "Richtek RT8973A EXTCON support"
  101. depends on I2C
  102. select IRQ_DOMAIN
  103. select REGMAP_I2C
  104. select REGMAP_IRQ
  105. help
  106. If you say yes here you get support for the MUIC device of
  107. Richtek RT8973A. The RT8973A is a USB port accessory detector
  108. and switch that is optimized to protect low voltage system
  109. from abnormal high input voltage (up to 28V).
  110. config EXTCON_SM5502
  111. tristate "Silicon Mitus SM5502 EXTCON support"
  112. depends on I2C
  113. select IRQ_DOMAIN
  114. select REGMAP_I2C
  115. select REGMAP_IRQ
  116. help
  117. If you say yes here you get support for the MUIC device of
  118. Silicon Mitus SM5502. The SM5502 is a USB port accessory
  119. detector and switch.
  120. config EXTCON_USB_GPIO
  121. tristate "USB GPIO extcon support"
  122. depends on GPIOLIB || COMPILE_TEST
  123. help
  124. Say Y here to enable GPIO based USB cable detection extcon support.
  125. Used typically if GPIO is used for USB ID pin detection.
  126. endif