ASoC: codec: hdmi-codec: add support for audio mode config
[firefly-linux-kernel-4.4.55.git] / include / sound / hdmi-codec.h
1 /*
2  * hdmi-codec.h - HDMI Codec driver API
3  *
4  * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
5  *
6  * Author: Jyri Sarha <jsarha@ti.com>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * version 2 as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  */
17
18 #ifndef __HDMI_CODEC_H__
19 #define __HDMI_CODEC_H__
20
21 #include <linux/hdmi.h>
22 #include <drm/drm_edid.h>
23 #include <sound/asoundef.h>
24 #include <uapi/sound/asound.h>
25
26 /*
27  * Protocol between ASoC cpu-dai and HDMI-encoder
28  */
29 struct hdmi_codec_daifmt {
30         enum {
31                 HDMI_I2S,
32                 HDMI_RIGHT_J,
33                 HDMI_LEFT_J,
34                 HDMI_DSP_A,
35                 HDMI_DSP_B,
36                 HDMI_AC97,
37                 HDMI_SPDIF,
38         } fmt;
39         int bit_clk_inv:1;
40         int frame_clk_inv:1;
41         int bit_clk_master:1;
42         int frame_clk_master:1;
43 };
44
45 /*
46  * HDMI audio parameters
47  */
48 struct hdmi_codec_params {
49         struct hdmi_audio_infoframe cea;
50         struct snd_aes_iec958 iec;
51         int sample_rate;
52         int sample_width;
53         int channels;
54         int mode;
55 };
56
57 enum {
58         LPCM = 0,
59         NLPCM,
60         HBR,
61 };
62
63 struct hdmi_codec_pdata;
64 struct hdmi_codec_ops {
65         /*
66          * Called when ASoC starts an audio stream setup.
67          * Optional
68          */
69         int (*audio_startup)(struct device *dev, void *data);
70
71         /*
72          * Configures HDMI-encoder for audio stream.
73          * Mandatory
74          */
75         int (*hw_params)(struct device *dev, void *data,
76                          struct hdmi_codec_daifmt *fmt,
77                          struct hdmi_codec_params *hparms);
78
79         /*
80          * Shuts down the audio stream.
81          * Mandatory
82          */
83         void (*audio_shutdown)(struct device *dev, void *data);
84
85         /*
86          * Mute/unmute HDMI audio stream.
87          * Optional
88          */
89         int (*digital_mute)(struct device *dev, void *data, bool enable);
90
91         /*
92          * Provides EDID-Like-Data from connected HDMI device.
93          * Optional
94          */
95         int (*get_eld)(struct device *dev, void *data,
96                        uint8_t *buf, size_t len);
97 };
98
99 /* HDMI codec initalization data */
100 struct hdmi_codec_pdata {
101         const struct hdmi_codec_ops *ops;
102         uint i2s:1;
103         uint spdif:1;
104         int max_i2s_channels;
105         void *data;
106 };
107
108 struct snd_soc_codec;
109 struct snd_soc_jack;
110
111 int hdmi_codec_set_jack_detect(struct snd_soc_codec *codec,
112                                struct snd_soc_jack *jack);
113
114 #define HDMI_CODEC_DRV_NAME "hdmi-audio-codec"
115
116 #endif /* __HDMI_CODEC_H__ */