~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/sound/hdmi-codec.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/sound/hdmi-codec.h (Architecture ppc) and /include/sound/hdmi-codec.h (Architecture sparc64)


  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 - https://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 <sound/asoundef.h>                        15 #include <sound/asoundef.h>
 16 #include <sound/soc.h>                             16 #include <sound/soc.h>
 17 #include <uapi/sound/asound.h>                     17 #include <uapi/sound/asound.h>
 18                                                    18 
 19 /*                                                 19 /*
 20  * Protocol between ASoC cpu-dai and HDMI-enco     20  * Protocol between ASoC cpu-dai and HDMI-encoder
 21  */                                                21  */
 22 struct hdmi_codec_daifmt {                         22 struct hdmi_codec_daifmt {
 23         enum {                                     23         enum {
 24                 HDMI_I2S,                          24                 HDMI_I2S,
 25                 HDMI_RIGHT_J,                      25                 HDMI_RIGHT_J,
 26                 HDMI_LEFT_J,                       26                 HDMI_LEFT_J,
 27                 HDMI_DSP_A,                        27                 HDMI_DSP_A,
 28                 HDMI_DSP_B,                        28                 HDMI_DSP_B,
 29                 HDMI_AC97,                         29                 HDMI_AC97,
 30                 HDMI_SPDIF,                        30                 HDMI_SPDIF,
 31         } fmt;                                     31         } fmt;
 32         unsigned int bit_clk_inv:1;                32         unsigned int bit_clk_inv:1;
 33         unsigned int frame_clk_inv:1;              33         unsigned int frame_clk_inv:1;
 34         unsigned int bit_clk_provider:1;           34         unsigned int bit_clk_provider:1;
 35         unsigned int frame_clk_provider:1;         35         unsigned int frame_clk_provider:1;
 36         /* bit_fmt could be standard PCM forma     36         /* bit_fmt could be standard PCM format or
 37          * IEC958 encoded format. ALSA IEC958      37          * IEC958 encoded format. ALSA IEC958 plugin will pass
 38          * IEC958_SUBFRAME format to the under     38          * IEC958_SUBFRAME format to the underneath driver.
 39          */                                        39          */
 40         snd_pcm_format_t bit_fmt;                  40         snd_pcm_format_t bit_fmt;
 41 };                                                 41 };
 42                                                    42 
 43 /*                                                 43 /*
 44  * HDMI audio parameters                           44  * HDMI audio parameters
 45  */                                                45  */
 46 struct hdmi_codec_params {                         46 struct hdmi_codec_params {
 47         struct hdmi_audio_infoframe cea;           47         struct hdmi_audio_infoframe cea;
 48         struct snd_aes_iec958 iec;                 48         struct snd_aes_iec958 iec;
 49         int sample_rate;                           49         int sample_rate;
 50         int sample_width;                          50         int sample_width;
 51         int channels;                              51         int channels;
 52 };                                                 52 };
 53                                                    53 
 54 typedef void (*hdmi_codec_plugged_cb)(struct d     54 typedef void (*hdmi_codec_plugged_cb)(struct device *dev,
 55                                       bool plu     55                                       bool plugged);
 56                                                    56 
 57 struct hdmi_codec_pdata;                           57 struct hdmi_codec_pdata;
 58 struct hdmi_codec_ops {                            58 struct hdmi_codec_ops {
 59         /*                                         59         /*
 60          * Called when ASoC starts an audio st     60          * Called when ASoC starts an audio stream setup.
 61          * Optional                                61          * Optional
 62          */                                        62          */
 63         int (*audio_startup)(struct device *de     63         int (*audio_startup)(struct device *dev, void *data);
 64                                                    64 
 65         /*                                         65         /*
 66          * Configures HDMI-encoder for audio s     66          * Configures HDMI-encoder for audio stream.
 67          * Having either prepare or hw_params      67          * Having either prepare or hw_params is mandatory.
 68          */                                        68          */
 69         int (*hw_params)(struct device *dev, v     69         int (*hw_params)(struct device *dev, void *data,
 70                          struct hdmi_codec_dai     70                          struct hdmi_codec_daifmt *fmt,
 71                          struct hdmi_codec_par     71                          struct hdmi_codec_params *hparms);
 72                                                    72 
 73         /*                                         73         /*
 74          * Configures HDMI-encoder for audio s     74          * Configures HDMI-encoder for audio stream. Can be called
 75          * multiple times for each setup.          75          * multiple times for each setup.
 76          *                                         76          *
 77          * Having either prepare or hw_params      77          * Having either prepare or hw_params is mandatory.
 78          */                                        78          */
 79         int (*prepare)(struct device *dev, voi     79         int (*prepare)(struct device *dev, void *data,
 80                        struct hdmi_codec_daifm     80                        struct hdmi_codec_daifmt *fmt,
 81                        struct hdmi_codec_param     81                        struct hdmi_codec_params *hparms);
 82                                                    82 
 83         /*                                         83         /*
 84          * Shuts down the audio stream.            84          * Shuts down the audio stream.
 85          * Mandatory                               85          * Mandatory
 86          */                                        86          */
 87         void (*audio_shutdown)(struct device *     87         void (*audio_shutdown)(struct device *dev, void *data);
 88                                                    88 
 89         /*                                         89         /*
 90          * Mute/unmute HDMI audio stream.          90          * Mute/unmute HDMI audio stream.
 91          * Optional                                91          * Optional
 92          */                                        92          */
 93         int (*mute_stream)(struct device *dev,     93         int (*mute_stream)(struct device *dev, void *data,
 94                            bool enable, int di     94                            bool enable, int direction);
 95                                                    95 
 96         /*                                         96         /*
 97          * Provides EDID-Like-Data from connec     97          * Provides EDID-Like-Data from connected HDMI device.
 98          * Optional                                98          * Optional
 99          */                                        99          */
100         int (*get_eld)(struct device *dev, voi    100         int (*get_eld)(struct device *dev, void *data,
101                        uint8_t *buf, size_t le    101                        uint8_t *buf, size_t len);
102                                                   102 
103         /*                                        103         /*
104          * Getting DAI ID                         104          * Getting DAI ID
105          * Optional                               105          * Optional
106          */                                       106          */
107         int (*get_dai_id)(struct snd_soc_compo    107         int (*get_dai_id)(struct snd_soc_component *comment,
108                           struct device_node *    108                           struct device_node *endpoint);
109                                                   109 
110         /*                                        110         /*
111          * Hook callback function to handle co    111          * Hook callback function to handle connector plug event.
112          * Optional                               112          * Optional
113          */                                       113          */
114         int (*hook_plugged_cb)(struct device *    114         int (*hook_plugged_cb)(struct device *dev, void *data,
115                                hdmi_codec_plug    115                                hdmi_codec_plugged_cb fn,
116                                struct device *    116                                struct device *codec_dev);
117                                                   117 
118         /* bit field */                           118         /* bit field */
119         unsigned int no_capture_mute:1;           119         unsigned int no_capture_mute:1;
120 };                                                120 };
121                                                   121 
122 /* HDMI codec initalization data */               122 /* HDMI codec initalization data */
123 struct hdmi_codec_pdata {                         123 struct hdmi_codec_pdata {
124         const struct hdmi_codec_ops *ops;         124         const struct hdmi_codec_ops *ops;
125         uint i2s:1;                               125         uint i2s:1;
126         uint no_i2s_playback:1;                   126         uint no_i2s_playback:1;
127         uint no_i2s_capture:1;                    127         uint no_i2s_capture:1;
128         uint spdif:1;                             128         uint spdif:1;
129         uint no_spdif_playback:1;                 129         uint no_spdif_playback:1;
130         uint no_spdif_capture:1;                  130         uint no_spdif_capture:1;
131         int max_i2s_channels;                     131         int max_i2s_channels;
132         void *data;                               132         void *data;
133 };                                                133 };
134                                                   134 
135 struct snd_soc_component;                         135 struct snd_soc_component;
136 struct snd_soc_jack;                              136 struct snd_soc_jack;
137                                                   137 
138 #define HDMI_CODEC_DRV_NAME "hdmi-audio-codec"    138 #define HDMI_CODEC_DRV_NAME "hdmi-audio-codec"
139                                                   139 
140 #endif /* __HDMI_CODEC_H__ */                     140 #endif /* __HDMI_CODEC_H__ */
141                                                   141 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php