mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 22:24:09 +08:00
f2c32a882d
Most Wolfson Arizona class audio hub CODECs include a flexible ultra low power accessory detection subsystem. This driver exposes initial support for this subsystem via the Extcon framework, implementing support for ultra low power detection of headphone and headset with the ability to detect the polarity of a headset. The functionality of the devices is much richer and more flexible than the current driver, future patches will extend the features of the driver to more fully exploit this. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
menuconfig EXTCON
|
|
tristate "External Connector Class (extcon) support"
|
|
help
|
|
Say Y here to enable external connector class (extcon) support.
|
|
This allows monitoring external connectors by userspace
|
|
via sysfs and uevent and supports external connectors with
|
|
multiple states; i.e., an extcon that may have multiple
|
|
cables attached. For example, an external connector of a device
|
|
may be used to connect an HDMI cable and a AC adaptor, and to
|
|
host USB ports. Many of 30-pin connectors including PDMI are
|
|
also good examples.
|
|
|
|
if EXTCON
|
|
|
|
comment "Extcon Device Drivers"
|
|
|
|
config EXTCON_GPIO
|
|
tristate "GPIO extcon support"
|
|
depends on GENERIC_GPIO
|
|
help
|
|
Say Y here to enable GPIO based extcon support. Note that GPIO
|
|
extcon supports single state per extcon instance.
|
|
|
|
config EXTCON_MAX8997
|
|
tristate "MAX8997 EXTCON Support"
|
|
depends on MFD_MAX8997
|
|
help
|
|
If you say yes here you get support for the MUIC device of
|
|
Maxim MAX8997 PMIC. The MAX8997 MUIC is a USB port accessory
|
|
detector and switch.
|
|
|
|
config EXTCON_ARIZONA
|
|
tristate "Wolfson Arizona EXTCON support"
|
|
depends on MFD_ARIZONA
|
|
help
|
|
Say Y here to enable support for external accessory detection
|
|
with Wolfson Arizona devices. These are audio CODECs with
|
|
advanced audio accessory detection support.
|
|
|
|
endif # MULTISTATE_SWITCH
|