1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * hdmi-codec.h - HDMI Codec driver API
5 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
7 * Author: Jyri Sarha <jsarha@ti.com>
10 #ifndef __HDMI_CODEC_H__
11 #define __HDMI_CODEC_H__
13 #include <linux/of_graph.h>
14 #include <linux/hdmi.h>
15 #include <drm/drm_edid.h>
16 #include <sound/asoundef.h>
17 #include <sound/soc.h>
18 #include <uapi/sound/asound.h>
21 * Protocol between ASoC cpu-dai and HDMI-encoder
23 struct hdmi_codec_daifmt
{
33 unsigned int bit_clk_inv
:1;
34 unsigned int frame_clk_inv
:1;
35 unsigned int bit_clk_master
:1;
36 unsigned int frame_clk_master
:1;
40 * HDMI audio parameters
42 struct hdmi_codec_params
{
43 struct hdmi_audio_infoframe cea
;
44 struct snd_aes_iec958 iec
;
50 typedef void (*hdmi_codec_plugged_cb
)(struct device
*dev
,
53 struct hdmi_codec_pdata
;
54 struct hdmi_codec_ops
{
56 * Called when ASoC starts an audio stream setup.
59 int (*audio_startup
)(struct device
*dev
, void *data
);
62 * Configures HDMI-encoder for audio stream.
65 int (*hw_params
)(struct device
*dev
, void *data
,
66 struct hdmi_codec_daifmt
*fmt
,
67 struct hdmi_codec_params
*hparms
);
70 * Shuts down the audio stream.
73 void (*audio_shutdown
)(struct device
*dev
, void *data
);
76 * Mute/unmute HDMI audio stream.
79 int (*digital_mute
)(struct device
*dev
, void *data
, bool enable
);
82 * Provides EDID-Like-Data from connected HDMI device.
85 int (*get_eld
)(struct device
*dev
, void *data
,
86 uint8_t *buf
, size_t len
);
92 int (*get_dai_id
)(struct snd_soc_component
*comment
,
93 struct device_node
*endpoint
);
96 * Hook callback function to handle connector plug event.
99 int (*hook_plugged_cb
)(struct device
*dev
, void *data
,
100 hdmi_codec_plugged_cb fn
,
101 struct device
*codec_dev
);
104 /* HDMI codec initalization data */
105 struct hdmi_codec_pdata
{
106 const struct hdmi_codec_ops
*ops
;
109 int max_i2s_channels
;
113 struct snd_soc_component
;
116 int hdmi_codec_set_jack_detect(struct snd_soc_component
*component
,
117 struct snd_soc_jack
*jack
);
119 #define HDMI_CODEC_DRV_NAME "hdmi-audio-codec"
121 #endif /* __HDMI_CODEC_H__ */