1 /* SPDX-License-Identifier: GPL-2.0-only */ 1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 2 /* 3 * hdmi-codec.h - HDMI Codec driver API 3 * hdmi-codec.h - HDMI Codec driver API 4 * 4 * 5 * Copyright (C) 2014 Texas Instruments Incorp !! 5 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com 6 * 6 * 7 * Author: Jyri Sarha <jsarha@ti.com> 7 * Author: Jyri Sarha <jsarha@ti.com> 8 */ 8 */ 9 9 10 #ifndef __HDMI_CODEC_H__ 10 #ifndef __HDMI_CODEC_H__ 11 #define __HDMI_CODEC_H__ 11 #define __HDMI_CODEC_H__ 12 12 13 #include <linux/of_graph.h> 13 #include <linux/of_graph.h> 14 #include <linux/hdmi.h> 14 #include <linux/hdmi.h> >> 15 #include <drm/drm_edid.h> 15 #include <sound/asoundef.h> 16 #include <sound/asoundef.h> 16 #include <sound/soc.h> 17 #include <sound/soc.h> 17 #include <uapi/sound/asound.h> 18 #include <uapi/sound/asound.h> 18 19 19 /* 20 /* 20 * Protocol between ASoC cpu-dai and HDMI-enco 21 * Protocol between ASoC cpu-dai and HDMI-encoder 21 */ 22 */ 22 struct hdmi_codec_daifmt { 23 struct hdmi_codec_daifmt { 23 enum { 24 enum { 24 HDMI_I2S, 25 HDMI_I2S, 25 HDMI_RIGHT_J, 26 HDMI_RIGHT_J, 26 HDMI_LEFT_J, 27 HDMI_LEFT_J, 27 HDMI_DSP_A, 28 HDMI_DSP_A, 28 HDMI_DSP_B, 29 HDMI_DSP_B, 29 HDMI_AC97, 30 HDMI_AC97, 30 HDMI_SPDIF, 31 HDMI_SPDIF, 31 } fmt; 32 } fmt; 32 unsigned int bit_clk_inv:1; 33 unsigned int bit_clk_inv:1; 33 unsigned int frame_clk_inv:1; 34 unsigned int frame_clk_inv:1; 34 unsigned int bit_clk_provider:1; !! 35 unsigned int bit_clk_master:1; 35 unsigned int frame_clk_provider:1; !! 36 unsigned int frame_clk_master:1; 36 /* bit_fmt could be standard PCM forma << 37 * IEC958 encoded format. ALSA IEC958 << 38 * IEC958_SUBFRAME format to the under << 39 */ << 40 snd_pcm_format_t bit_fmt; << 41 }; 37 }; 42 38 43 /* 39 /* 44 * HDMI audio parameters 40 * HDMI audio parameters 45 */ 41 */ 46 struct hdmi_codec_params { 42 struct hdmi_codec_params { 47 struct hdmi_audio_infoframe cea; 43 struct hdmi_audio_infoframe cea; 48 struct snd_aes_iec958 iec; 44 struct snd_aes_iec958 iec; 49 int sample_rate; 45 int sample_rate; 50 int sample_width; 46 int sample_width; 51 int channels; 47 int channels; 52 }; 48 }; 53 49 54 typedef void (*hdmi_codec_plugged_cb)(struct d 50 typedef void (*hdmi_codec_plugged_cb)(struct device *dev, 55 bool plu 51 bool plugged); 56 52 57 struct hdmi_codec_pdata; 53 struct hdmi_codec_pdata; 58 struct hdmi_codec_ops { 54 struct hdmi_codec_ops { 59 /* 55 /* 60 * Called when ASoC starts an audio st 56 * Called when ASoC starts an audio stream setup. 61 * Optional 57 * Optional 62 */ 58 */ 63 int (*audio_startup)(struct device *de 59 int (*audio_startup)(struct device *dev, void *data); 64 60 65 /* 61 /* 66 * Configures HDMI-encoder for audio s 62 * Configures HDMI-encoder for audio stream. 67 * Having either prepare or hw_params !! 63 * Mandatory 68 */ 64 */ 69 int (*hw_params)(struct device *dev, v 65 int (*hw_params)(struct device *dev, void *data, 70 struct hdmi_codec_dai 66 struct hdmi_codec_daifmt *fmt, 71 struct hdmi_codec_par 67 struct hdmi_codec_params *hparms); 72 68 73 /* 69 /* 74 * Configures HDMI-encoder for audio s << 75 * multiple times for each setup. << 76 * << 77 * Having either prepare or hw_params << 78 */ << 79 int (*prepare)(struct device *dev, voi << 80 struct hdmi_codec_daifm << 81 struct hdmi_codec_param << 82 << 83 /* << 84 * Shuts down the audio stream. 70 * Shuts down the audio stream. 85 * Mandatory 71 * Mandatory 86 */ 72 */ 87 void (*audio_shutdown)(struct device * 73 void (*audio_shutdown)(struct device *dev, void *data); 88 74 89 /* 75 /* 90 * Mute/unmute HDMI audio stream. 76 * Mute/unmute HDMI audio stream. 91 * Optional 77 * Optional 92 */ 78 */ 93 int (*mute_stream)(struct device *dev, !! 79 int (*digital_mute)(struct device *dev, void *data, bool enable); 94 bool enable, int di << 95 80 96 /* 81 /* 97 * Provides EDID-Like-Data from connec 82 * Provides EDID-Like-Data from connected HDMI device. 98 * Optional 83 * Optional 99 */ 84 */ 100 int (*get_eld)(struct device *dev, voi 85 int (*get_eld)(struct device *dev, void *data, 101 uint8_t *buf, size_t le 86 uint8_t *buf, size_t len); 102 87 103 /* 88 /* 104 * Getting DAI ID 89 * Getting DAI ID 105 * Optional 90 * Optional 106 */ 91 */ 107 int (*get_dai_id)(struct snd_soc_compo 92 int (*get_dai_id)(struct snd_soc_component *comment, 108 struct device_node * 93 struct device_node *endpoint); 109 94 110 /* 95 /* 111 * Hook callback function to handle co 96 * Hook callback function to handle connector plug event. 112 * Optional 97 * Optional 113 */ 98 */ 114 int (*hook_plugged_cb)(struct device * 99 int (*hook_plugged_cb)(struct device *dev, void *data, 115 hdmi_codec_plug 100 hdmi_codec_plugged_cb fn, 116 struct device * 101 struct device *codec_dev); 117 << 118 /* bit field */ << 119 unsigned int no_capture_mute:1; << 120 }; 102 }; 121 103 122 /* HDMI codec initalization data */ 104 /* HDMI codec initalization data */ 123 struct hdmi_codec_pdata { 105 struct hdmi_codec_pdata { 124 const struct hdmi_codec_ops *ops; 106 const struct hdmi_codec_ops *ops; 125 uint i2s:1; 107 uint i2s:1; 126 uint no_i2s_playback:1; << 127 uint no_i2s_capture:1; << 128 uint spdif:1; 108 uint spdif:1; 129 uint no_spdif_playback:1; << 130 uint no_spdif_capture:1; << 131 int max_i2s_channels; 109 int max_i2s_channels; 132 void *data; 110 void *data; 133 }; 111 }; 134 112 135 struct snd_soc_component; 113 struct snd_soc_component; 136 struct snd_soc_jack; 114 struct snd_soc_jack; >> 115 >> 116 int hdmi_codec_set_jack_detect(struct snd_soc_component *component, >> 117 struct snd_soc_jack *jack); 137 118 138 #define HDMI_CODEC_DRV_NAME "hdmi-audio-codec" 119 #define HDMI_CODEC_DRV_NAME "hdmi-audio-codec" 139 120 140 #endif /* __HDMI_CODEC_H__ */ 121 #endif /* __HDMI_CODEC_H__ */ 141 122
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.