blob: aac507bff135c06dfd6bce81752b7f717aa601ba [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
MyungJoo Hamde55d872012-04-20 14:16:22 +09002menuconfig EXTCON
3 tristate "External Connector Class (extcon) support"
4 help
5 Say Y here to enable external connector class (extcon) support.
6 This allows monitoring external connectors by userspace
7 via sysfs and uevent and supports external connectors with
8 multiple states; i.e., an extcon that may have multiple
9 cables attached. For example, an external connector of a device
10 may be used to connect an HDMI cable and a AC adaptor, and to
11 host USB ports. Many of 30-pin connectors including PDMI are
12 also good examples.
13
14if EXTCON
15
16comment "Extcon Device Drivers"
17
Chanwoo Choie48f9da2014-05-22 14:01:51 +090018config EXTCON_ADC_JACK
19 tristate "ADC Jack extcon support"
20 depends on IIO
21 help
22 Say Y here to enable extcon device driver based on ADC values.
23
24config EXTCON_ARIZONA
25 tristate "Wolfson Arizona EXTCON support"
26 depends on MFD_ARIZONA && INPUT && SND_SOC
27 help
28 Say Y here to enable support for external accessory detection
29 with Wolfson Arizona devices. These are audio CODECs with
30 advanced audio accessory detection support.
31
Ramakrishna Pallalaf0312372015-04-30 20:44:45 +053032config EXTCON_AXP288
33 tristate "X-Power AXP288 EXTCON support"
YueHaibingfa3c0982019-04-04 22:17:48 +080034 depends on MFD_AXP20X && USB_SUPPORT && X86 && ACPI
Hans de Goeded54f0632018-03-20 15:57:13 +030035 select USB_ROLE_SWITCH
Ramakrishna Pallalaf0312372015-04-30 20:44:45 +053036 help
37 Say Y here to enable support for USB peripheral detection
38 and USB MUX switching by X-Power AXP288 PMIC.
39
Tomasz Figabad5b5e2019-06-21 13:13:52 +020040config EXTCON_FSA9480
41 tristate "FSA9480 EXTCON Support"
Randy Dunlap0937fbb2019-06-25 18:10:40 -070042 depends on INPUT && I2C
Tomasz Figabad5b5e2019-06-21 13:13:52 +020043 select IRQ_DOMAIN
44 select REGMAP_I2C
45 help
46 If you say yes here you get support for the Fairchild Semiconductor
47 FSA9480 microUSB switch and accessory detector chip. The FSA9480 is a USB
48 port accessory detector and switch. The FSA9480 is fully controlled using
49 I2C and enables USB data, stereo and mono audio, video, microphone
50 and UART data to use a common connector port.
51
MyungJoo Hambe483082012-04-20 14:16:23 +090052config EXTCON_GPIO
53 tristate "GPIO extcon support"
Geert Uytterhoeven638f9582015-05-05 18:32:20 +020054 depends on GPIOLIB || COMPILE_TEST
MyungJoo Hambe483082012-04-20 14:16:23 +090055 help
56 Say Y here to enable GPIO based extcon support. Note that GPIO
57 extcon supports single state per extcon instance.
58
David Cohen2f556bd2016-12-21 12:20:25 +010059config EXTCON_INTEL_INT3496
60 tristate "Intel INT3496 ACPI device extcon driver"
Peter Robinson059c7874b2017-03-02 18:10:10 +000061 depends on GPIOLIB && ACPI && (X86 || COMPILE_TEST)
David Cohen2f556bd2016-12-21 12:20:25 +010062 help
63 Say Y here to enable extcon support for USB OTG ports controlled by
64 an Intel INT3496 ACPI device.
65
66 This ACPI device is typically found on Intel Baytrail or Cherrytrail
67 based tablets, or other Baytrail / Cherrytrail devices.
68
Hans de Goededb0f3ba2017-03-23 17:01:42 +010069config EXTCON_INTEL_CHT_WC
70 tristate "Intel Cherrytrail Whiskey Cove PMIC extcon driver"
71 depends on INTEL_SOC_PMIC_CHTWC
72 help
73 Say Y here to enable extcon support for charger detection / control
74 on the Intel Cherrytrail Whiskey Cove PMIC.
75
Andy Shevchenko492929c2019-03-19 16:30:42 +020076config EXTCON_INTEL_MRFLD
77 tristate "Intel Merrifield Basin Cove PMIC extcon driver"
78 depends on INTEL_SOC_PMIC_MRFLD
79 help
80 Say Y here to enable extcon support for charger detection / control
81 on the Intel Merrifield Basin Cove PMIC.
82
Chanwoo Choi962e56b2013-11-22 16:51:06 +010083config EXTCON_MAX14577
Chanwoo Choied2c0602015-04-03 09:51:26 +090084 tristate "Maxim MAX14577/77836 EXTCON Support"
Chanwoo Choi962e56b2013-11-22 16:51:06 +010085 depends on MFD_MAX14577
86 select IRQ_DOMAIN
87 select REGMAP_I2C
88 help
89 If you say yes here you get support for the MUIC device of
Krzysztof Kozlowski4706a522014-04-14 11:17:19 +020090 Maxim MAX14577/77836. The MAX14577/77836 MUIC is a USB port accessory
Chanwoo Choi962e56b2013-11-22 16:51:06 +010091 detector and switch.
92
Sergei Shtylyov08a0a4f2015-12-19 08:17:41 +090093config EXTCON_MAX3355
94 tristate "Maxim MAX3355 USB OTG EXTCON Support"
95 depends on GPIOLIB || COMPILE_TEST
96 help
97 If you say yes here you get support for the USB OTG role detection by
98 MAX3355. The MAX3355 chip integrates a charge pump and comparators to
99 enable a system with an integrated USB OTG dual-role transceiver to
100 function as an USB OTG dual-role device.
101
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900102config EXTCON_MAX77693
Chanwoo Choied2c0602015-04-03 09:51:26 +0900103 tristate "Maxim MAX77693 EXTCON Support"
Chanwoo Choi1aa05902013-01-25 10:56:10 +0900104 depends on MFD_MAX77693 && INPUT
Chanwoo Choidb1b9032012-07-17 13:28:28 +0900105 select IRQ_DOMAIN
106 select REGMAP_I2C
107 help
108 If you say yes here you get support for the MUIC device of
109 Maxim MAX77693 PMIC. The MAX77693 MUIC is a USB port accessory
110 detector and switch.
111
Jaewon Kim27a28d32015-02-04 13:56:07 +0900112config EXTCON_MAX77843
Chanwoo Choied2c0602015-04-03 09:51:26 +0900113 tristate "Maxim MAX77843 EXTCON Support"
Jaewon Kim27a28d32015-02-04 13:56:07 +0900114 depends on MFD_MAX77843
115 select IRQ_DOMAIN
116 select REGMAP_I2C
117 help
118 If you say yes here you get support for the MUIC device of
119 Maxim MAX77843. The MAX77843 MUIC is a USB port accessory
120 detector add switch.
121
Chanwoo Choib76668b2012-05-09 12:31:58 +0900122config EXTCON_MAX8997
Chanwoo Choied2c0602015-04-03 09:51:26 +0900123 tristate "Maxim MAX8997 EXTCON Support"
Chanwoo Choidca1a712012-07-02 09:03:00 +0900124 depends on MFD_MAX8997 && IRQ_DOMAIN
Chanwoo Choib76668b2012-05-09 12:31:58 +0900125 help
126 If you say yes here you get support for the MUIC device of
127 Maxim MAX8997 PMIC. The MAX8997 MUIC is a USB port accessory
128 detector and switch.
129
Graeme Gregoryb1f254e2013-05-28 10:50:11 +0900130config EXTCON_PALMAS
131 tristate "Palmas USB EXTCON support"
132 depends on MFD_PALMAS
133 help
134 Say Y here to enable support for USB peripheral and USB host
135 detection by palmas usb.
136
Vijai Kumar K4ed754d2019-01-23 18:16:56 +0530137config EXTCON_PTN5150
138 tristate "NXP PTN5150 CC LOGIC USB EXTCON support"
Arnd Bergmann86baf802019-03-06 12:08:57 +0100139 depends on I2C && (GPIOLIB || COMPILE_TEST)
Vijai Kumar K4ed754d2019-01-23 18:16:56 +0530140 select REGMAP_I2C
141 help
142 Say Y here to enable support for USB peripheral and USB host
143 detection by NXP PTN5150 CC (Configuration Channel) logic chip.
144
Stephen Boyd38085c92016-09-09 14:48:47 -0700145config EXTCON_QCOM_SPMI_MISC
146 tristate "Qualcomm USB extcon support"
Peter Robinsona781a7d2017-05-20 17:45:07 +0100147 depends on ARCH_QCOM || COMPILE_TEST
Stephen Boyd38085c92016-09-09 14:48:47 -0700148 help
149 Say Y here to enable SPMI PMIC based USB cable detection
150 support on Qualcomm PMICs such as PM8941.
151
Chanwoo Choic03e0172014-08-18 09:05:21 +0900152config EXTCON_RT8973A
Chanwoo Choied2c0602015-04-03 09:51:26 +0900153 tristate "Richtek RT8973A EXTCON support"
Chanwoo Choic03e0172014-08-18 09:05:21 +0900154 depends on I2C
155 select IRQ_DOMAIN
156 select REGMAP_I2C
157 select REGMAP_IRQ
158 help
159 If you say yes here you get support for the MUIC device of
160 Richtek RT8973A. The RT8973A is a USB port accessory detector
161 and switch that is optimized to protect low voltage system
162 from abnormal high input voltage (up to 28V).
163
Chanwoo Choi914b8812014-05-22 14:06:33 +0900164config EXTCON_SM5502
Chanwoo Choied2c0602015-04-03 09:51:26 +0900165 tristate "Silicon Mitus SM5502 EXTCON support"
Chanwoo Choi0746d5d2014-08-12 13:28:11 +0900166 depends on I2C
Chanwoo Choi914b8812014-05-22 14:06:33 +0900167 select IRQ_DOMAIN
168 select REGMAP_I2C
169 select REGMAP_IRQ
170 help
171 If you say yes here you get support for the MUIC device of
172 Silicon Mitus SM5502. The SM5502 is a USB port accessory
173 detector and switch.
174
Roger Quadrose52817f2015-02-02 12:21:59 +0200175config EXTCON_USB_GPIO
176 tristate "USB GPIO extcon support"
Geert Uytterhoeven638f9582015-05-05 18:32:20 +0200177 depends on GPIOLIB || COMPILE_TEST
Roger Quadrose52817f2015-02-02 12:21:59 +0200178 help
179 Say Y here to enable GPIO based USB cable detection extcon support.
180 Used typically if GPIO is used for USB ID pin detection.
181
Benson Leungc6983162017-07-17 11:41:39 +0200182config EXTCON_USBC_CROS_EC
183 tristate "ChromeOS Embedded Controller EXTCON support"
Enric Balletbo i Serra47f11e02019-09-02 11:53:01 +0200184 depends on CROS_EC
Benson Leungc6983162017-07-17 11:41:39 +0200185 help
186 Say Y here to enable USB Type C cable detection extcon support when
187 using Chrome OS EC based USB Type-C ports.
188
Chanwoo Choied2c0602015-04-03 09:51:26 +0900189endif