2024-05-27 15:57:52 +02:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
|
|
|
#ifndef DRM_HDMI_STATE_HELPER_H_
|
|
|
|
#define DRM_HDMI_STATE_HELPER_H_
|
|
|
|
|
|
|
|
struct drm_atomic_state;
|
|
|
|
struct drm_connector;
|
|
|
|
struct drm_connector_state;
|
2024-05-27 15:58:11 +02:00
|
|
|
struct hdmi_audio_infoframe;
|
2024-05-27 15:57:52 +02:00
|
|
|
|
|
|
|
void __drm_atomic_helper_connector_hdmi_reset(struct drm_connector *connector,
|
|
|
|
struct drm_connector_state *new_conn_state);
|
|
|
|
|
|
|
|
int drm_atomic_helper_connector_hdmi_check(struct drm_connector *connector,
|
|
|
|
struct drm_atomic_state *state);
|
|
|
|
|
2024-05-27 15:58:11 +02:00
|
|
|
int drm_atomic_helper_connector_hdmi_update_audio_infoframe(struct drm_connector *connector,
|
|
|
|
struct hdmi_audio_infoframe *frame);
|
2024-06-24 20:39:58 +03:00
|
|
|
int drm_atomic_helper_connector_hdmi_clear_audio_infoframe(struct drm_connector *connector);
|
2024-05-27 15:58:11 +02:00
|
|
|
int drm_atomic_helper_connector_hdmi_update_infoframes(struct drm_connector *connector,
|
|
|
|
struct drm_atomic_state *state);
|
|
|
|
|
2024-05-27 15:57:52 +02:00
|
|
|
#endif // DRM_HDMI_STATE_HELPER_H_
|