mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 13:06:59 +02:00
Move DRM's HMDI helpers into the display/ subdirectoy and add it
to DRM's display helpers. Update all affected drivers. No functional
changes.
The HDMI helpers were implemented in the EDID and connector code, but
are actually unrelated. With the move to the display-helper library, we
can remove the dependency on drm_edid.{c,h} in some driver's HDMI source
files.
Several of the HDMI helpers remain in EDID code because both share parts
of their implementation internally. With better refractoring of the EDID
code, those HDMI helpers could be moved into the display-helper library
as well.
v3:
* fix Kconfig dependencies (Javier)
v2:
* reduce HDMI helpers to avoid exporting functions (Jani)
* fix include statements (Jani, Javier)
* update Kconfig symbols
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220421073108.19226-8-tzimmermann@suse.de
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
# SPDX-License-Identifier: MIT
|
|
|
|
config DRM_DP_AUX_BUS
|
|
tristate
|
|
depends on DRM
|
|
depends on OF
|
|
|
|
config DRM_DISPLAY_HELPER
|
|
tristate
|
|
depends on DRM
|
|
help
|
|
DRM helpers for display adapters.
|
|
|
|
config DRM_DISPLAY_DP_HELPER
|
|
bool
|
|
depends on DRM_DISPLAY_HELPER
|
|
help
|
|
DRM display helpers for DisplayPort.
|
|
|
|
config DRM_DISPLAY_HDCP_HELPER
|
|
bool
|
|
depends on DRM_DISPLAY_HELPER
|
|
help
|
|
DRM display helpers for HDCP.
|
|
|
|
config DRM_DISPLAY_HDMI_HELPER
|
|
bool
|
|
depends on DRM_DISPLAY_HELPER
|
|
help
|
|
DRM display helpers for HDMI.
|
|
|
|
config DRM_DP_AUX_CHARDEV
|
|
bool "DRM DP AUX Interface"
|
|
depends on DRM
|
|
help
|
|
Choose this option to enable a /dev/drm_dp_auxN node that allows to
|
|
read and write values to arbitrary DPCD registers on the DP aux
|
|
channel.
|
|
|
|
config DRM_DP_CEC
|
|
bool "Enable DisplayPort CEC-Tunneling-over-AUX HDMI support"
|
|
depends on DRM
|
|
select CEC_CORE
|
|
help
|
|
Choose this option if you want to enable HDMI CEC support for
|
|
DisplayPort/USB-C to HDMI adapters.
|
|
|
|
Note: not all adapters support this feature, and even for those
|
|
that do support this they often do not hook up the CEC pin.
|