Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
27 lines
847 B
C
27 lines
847 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2024 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_ENCODER_H__
|
|
#define __INTEL_ENCODER_H__
|
|
|
|
struct intel_digital_port;
|
|
struct intel_display;
|
|
struct intel_encoder;
|
|
|
|
void intel_encoder_link_check_init(struct intel_encoder *encoder,
|
|
void (*callback)(struct intel_encoder *encoder));
|
|
void intel_encoder_link_check_queue_work(struct intel_encoder *encoder, int delay_ms);
|
|
void intel_encoder_link_check_flush_work(struct intel_encoder *encoder);
|
|
|
|
void intel_encoder_suspend_all(struct intel_display *display);
|
|
void intel_encoder_shutdown_all(struct intel_display *display);
|
|
|
|
void intel_encoder_block_all_hpds(struct intel_display *display);
|
|
void intel_encoder_unblock_all_hpds(struct intel_display *display);
|
|
|
|
struct intel_digital_port *intel_dig_port_alloc(void);
|
|
|
|
#endif /* __INTEL_ENCODER_H__ */
|