mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
8b215e10fe
Provide tests to the simple extcon device. Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
22 lines
747 B
Text
22 lines
747 B
Text
menu "Extcon Support"
|
|
|
|
config EXTCON
|
|
bool "External Connector Class (extcon) support"
|
|
depends on DM
|
|
help
|
|
Say Y here to enable external connector class (extcon) support.
|
|
This allows monitoring external connectors 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.
|
|
|
|
config EXTCON_SANDBOX
|
|
bool "Sandbox extcon"
|
|
depends on EXTCON
|
|
help
|
|
Enable extcon support for sandbox. This is an emulation of a real
|
|
extcon. Currectly all configuration is done in the probe.
|
|
|
|
endmenu
|