blob: 6cd4a755b0ac8fa73ef46a60ce32c4e09f8dd895 [file] [log] [blame]
Mythri P K94c52982011-09-08 19:06:21 +05301/*
Archit Tanejaef269582013-09-12 17:45:57 +05302 * HDMI driver definition for TI OMAP4 Processor.
Mythri P K94c52982011-09-08 19:06:21 +05303 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
Archit Tanejaef269582013-09-12 17:45:57 +053019#ifndef _HDMI_H
20#define _HDMI_H
Mythri P K94c52982011-09-08 19:06:21 +053021
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053022#include <linux/delay.h>
23#include <linux/io.h>
Archit Tanejaf382d9e2013-08-06 14:56:55 +053024#include <linux/platform_device.h>
Tomi Valkeinendb85ca72014-06-09 13:09:00 +030025#include <linux/hdmi.h>
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053026#include <video/omapdss.h>
27
28#include "dss.h"
29
30/* HDMI Wrapper */
31
32#define HDMI_WP_REVISION 0x0
33#define HDMI_WP_SYSCONFIG 0x10
34#define HDMI_WP_IRQSTATUS_RAW 0x24
35#define HDMI_WP_IRQSTATUS 0x28
36#define HDMI_WP_IRQENABLE_SET 0x2C
37#define HDMI_WP_IRQENABLE_CLR 0x30
38#define HDMI_WP_IRQWAKEEN 0x34
39#define HDMI_WP_PWR_CTRL 0x40
40#define HDMI_WP_DEBOUNCE 0x44
41#define HDMI_WP_VIDEO_CFG 0x50
42#define HDMI_WP_VIDEO_SIZE 0x60
43#define HDMI_WP_VIDEO_TIMING_H 0x68
44#define HDMI_WP_VIDEO_TIMING_V 0x6C
Tomi Valkeinen42116512013-10-28 11:47:29 +020045#define HDMI_WP_CLK 0x70
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053046#define HDMI_WP_AUDIO_CFG 0x80
47#define HDMI_WP_AUDIO_CFG2 0x84
48#define HDMI_WP_AUDIO_CTRL 0x88
49#define HDMI_WP_AUDIO_DATA 0x8C
50
Archit Taneja86961312013-09-10 16:34:02 +053051/* HDMI WP IRQ flags */
Tomi Valkeinen6873efe2013-10-28 11:47:28 +020052#define HDMI_IRQ_CORE (1 << 0)
Archit Taneja86961312013-09-10 16:34:02 +053053#define HDMI_IRQ_OCP_TIMEOUT (1 << 4)
54#define HDMI_IRQ_AUDIO_FIFO_UNDERFLOW (1 << 8)
55#define HDMI_IRQ_AUDIO_FIFO_OVERFLOW (1 << 9)
56#define HDMI_IRQ_AUDIO_FIFO_SAMPLE_REQ (1 << 10)
57#define HDMI_IRQ_VIDEO_VSYNC (1 << 16)
58#define HDMI_IRQ_VIDEO_FRAME_DONE (1 << 17)
59#define HDMI_IRQ_PHY_LINE5V_ASSERT (1 << 24)
60#define HDMI_IRQ_LINK_CONNECT (1 << 25)
61#define HDMI_IRQ_LINK_DISCONNECT (1 << 26)
62#define HDMI_IRQ_PLL_LOCK (1 << 29)
63#define HDMI_IRQ_PLL_UNLOCK (1 << 30)
64#define HDMI_IRQ_PLL_RECAL (1 << 31)
65
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053066/* HDMI PLL */
67
68#define PLLCTRL_PLL_CONTROL 0x0
69#define PLLCTRL_PLL_STATUS 0x4
70#define PLLCTRL_PLL_GO 0x8
71#define PLLCTRL_CFG1 0xC
72#define PLLCTRL_CFG2 0x10
73#define PLLCTRL_CFG3 0x14
74#define PLLCTRL_SSC_CFG1 0x18
75#define PLLCTRL_SSC_CFG2 0x1C
76#define PLLCTRL_CFG4 0x20
77
78/* HDMI PHY */
79
80#define HDMI_TXPHY_TX_CTRL 0x0
81#define HDMI_TXPHY_DIGITAL_CTRL 0x4
82#define HDMI_TXPHY_POWER_CTRL 0x8
83#define HDMI_TXPHY_PAD_CFG_CTRL 0xC
Archit Taneja19289fd2013-09-23 12:58:52 +053084#define HDMI_TXPHY_BIST_CONTROL 0x1C
Archit Tanejaf382d9e2013-08-06 14:56:55 +053085
Mythri P K94c52982011-09-08 19:06:21 +053086enum hdmi_pll_pwr {
87 HDMI_PLLPWRCMD_ALLOFF = 0,
88 HDMI_PLLPWRCMD_PLLONLY = 1,
89 HDMI_PLLPWRCMD_BOTHON_ALLCLKS = 2,
90 HDMI_PLLPWRCMD_BOTHON_NOPHYCLK = 3
91};
92
Archit Tanejaf382d9e2013-08-06 14:56:55 +053093enum hdmi_phy_pwr {
94 HDMI_PHYPWRCMD_OFF = 0,
95 HDMI_PHYPWRCMD_LDOON = 1,
96 HDMI_PHYPWRCMD_TXON = 2
97};
98
Mythri P K94c52982011-09-08 19:06:21 +053099enum hdmi_core_hdmi_dvi {
100 HDMI_DVI = 0,
101 HDMI_HDMI = 1
102};
103
104enum hdmi_clk_refsel {
105 HDMI_REFSEL_PCLK = 0,
106 HDMI_REFSEL_REF1 = 1,
107 HDMI_REFSEL_REF2 = 2,
108 HDMI_REFSEL_SYSCLK = 3
109};
110
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530111enum hdmi_packing_mode {
112 HDMI_PACK_10b_RGB_YUV444 = 0,
113 HDMI_PACK_24b_RGB_YUV444_YUV422 = 1,
114 HDMI_PACK_20b_YUV422 = 2,
115 HDMI_PACK_ALREADYPACKED = 7
116};
117
118enum hdmi_stereo_channels {
119 HDMI_AUDIO_STEREO_NOCHANNELS = 0,
120 HDMI_AUDIO_STEREO_ONECHANNEL = 1,
121 HDMI_AUDIO_STEREO_TWOCHANNELS = 2,
122 HDMI_AUDIO_STEREO_THREECHANNELS = 3,
123 HDMI_AUDIO_STEREO_FOURCHANNELS = 4
124};
125
126enum hdmi_audio_type {
127 HDMI_AUDIO_TYPE_LPCM = 0,
128 HDMI_AUDIO_TYPE_IEC = 1
129};
130
131enum hdmi_audio_justify {
132 HDMI_AUDIO_JUSTIFY_LEFT = 0,
133 HDMI_AUDIO_JUSTIFY_RIGHT = 1
134};
135
136enum hdmi_audio_sample_order {
137 HDMI_AUDIO_SAMPLE_RIGHT_FIRST = 0,
138 HDMI_AUDIO_SAMPLE_LEFT_FIRST = 1
139};
140
141enum hdmi_audio_samples_perword {
142 HDMI_AUDIO_ONEWORD_ONESAMPLE = 0,
143 HDMI_AUDIO_ONEWORD_TWOSAMPLES = 1
144};
145
Tomi Valkeinend27d20c2014-06-09 13:08:02 +0300146enum hdmi_audio_sample_size_omap {
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530147 HDMI_AUDIO_SAMPLE_16BITS = 0,
148 HDMI_AUDIO_SAMPLE_24BITS = 1
149};
150
151enum hdmi_audio_transf_mode {
152 HDMI_AUDIO_TRANSF_DMA = 0,
153 HDMI_AUDIO_TRANSF_IRQ = 1
154};
155
156enum hdmi_audio_blk_strt_end_sig {
157 HDMI_AUDIO_BLOCK_SIG_STARTEND_ON = 0,
158 HDMI_AUDIO_BLOCK_SIG_STARTEND_OFF = 1
159};
160
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530161enum hdmi_core_audio_layout {
162 HDMI_AUDIO_LAYOUT_2CH = 0,
163 HDMI_AUDIO_LAYOUT_8CH = 1
164};
165
166enum hdmi_core_cts_mode {
167 HDMI_AUDIO_CTS_MODE_HW = 0,
168 HDMI_AUDIO_CTS_MODE_SW = 1
169};
170
171enum hdmi_audio_mclk_mode {
172 HDMI_AUDIO_MCLK_128FS = 0,
173 HDMI_AUDIO_MCLK_256FS = 1,
174 HDMI_AUDIO_MCLK_384FS = 2,
175 HDMI_AUDIO_MCLK_512FS = 3,
176 HDMI_AUDIO_MCLK_768FS = 4,
177 HDMI_AUDIO_MCLK_1024FS = 5,
178 HDMI_AUDIO_MCLK_1152FS = 6,
179 HDMI_AUDIO_MCLK_192FS = 7
180};
181
182/* INFOFRAME_AVI_ and INFOFRAME_AUDIO_ definitions */
183enum hdmi_core_infoframe {
184 HDMI_INFOFRAME_AVI_DB1Y_RGB = 0,
185 HDMI_INFOFRAME_AVI_DB1Y_YUV422 = 1,
186 HDMI_INFOFRAME_AVI_DB1Y_YUV444 = 2,
187 HDMI_INFOFRAME_AVI_DB1A_ACTIVE_FORMAT_OFF = 0,
188 HDMI_INFOFRAME_AVI_DB1A_ACTIVE_FORMAT_ON = 1,
189 HDMI_INFOFRAME_AVI_DB1B_NO = 0,
190 HDMI_INFOFRAME_AVI_DB1B_VERT = 1,
191 HDMI_INFOFRAME_AVI_DB1B_HORI = 2,
192 HDMI_INFOFRAME_AVI_DB1B_VERTHORI = 3,
193 HDMI_INFOFRAME_AVI_DB1S_0 = 0,
194 HDMI_INFOFRAME_AVI_DB1S_1 = 1,
195 HDMI_INFOFRAME_AVI_DB1S_2 = 2,
196 HDMI_INFOFRAME_AVI_DB2C_NO = 0,
197 HDMI_INFOFRAME_AVI_DB2C_ITU601 = 1,
198 HDMI_INFOFRAME_AVI_DB2C_ITU709 = 2,
199 HDMI_INFOFRAME_AVI_DB2C_EC_EXTENDED = 3,
200 HDMI_INFOFRAME_AVI_DB2M_NO = 0,
201 HDMI_INFOFRAME_AVI_DB2M_43 = 1,
202 HDMI_INFOFRAME_AVI_DB2M_169 = 2,
203 HDMI_INFOFRAME_AVI_DB2R_SAME = 8,
204 HDMI_INFOFRAME_AVI_DB2R_43 = 9,
205 HDMI_INFOFRAME_AVI_DB2R_169 = 10,
206 HDMI_INFOFRAME_AVI_DB2R_149 = 11,
207 HDMI_INFOFRAME_AVI_DB3ITC_NO = 0,
208 HDMI_INFOFRAME_AVI_DB3ITC_YES = 1,
209 HDMI_INFOFRAME_AVI_DB3EC_XVYUV601 = 0,
210 HDMI_INFOFRAME_AVI_DB3EC_XVYUV709 = 1,
211 HDMI_INFOFRAME_AVI_DB3Q_DEFAULT = 0,
212 HDMI_INFOFRAME_AVI_DB3Q_LR = 1,
213 HDMI_INFOFRAME_AVI_DB3Q_FR = 2,
214 HDMI_INFOFRAME_AVI_DB3SC_NO = 0,
215 HDMI_INFOFRAME_AVI_DB3SC_HORI = 1,
216 HDMI_INFOFRAME_AVI_DB3SC_VERT = 2,
217 HDMI_INFOFRAME_AVI_DB3SC_HORIVERT = 3,
218 HDMI_INFOFRAME_AVI_DB5PR_NO = 0,
219 HDMI_INFOFRAME_AVI_DB5PR_2 = 1,
220 HDMI_INFOFRAME_AVI_DB5PR_3 = 2,
221 HDMI_INFOFRAME_AVI_DB5PR_4 = 3,
222 HDMI_INFOFRAME_AVI_DB5PR_5 = 4,
223 HDMI_INFOFRAME_AVI_DB5PR_6 = 5,
224 HDMI_INFOFRAME_AVI_DB5PR_7 = 6,
225 HDMI_INFOFRAME_AVI_DB5PR_8 = 7,
226 HDMI_INFOFRAME_AVI_DB5PR_9 = 8,
227 HDMI_INFOFRAME_AVI_DB5PR_10 = 9,
228};
229
Mythri P K94c52982011-09-08 19:06:21 +0530230struct hdmi_cm {
231 int code;
232 int mode;
233};
234
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530235struct hdmi_video_format {
236 enum hdmi_packing_mode packing_mode;
237 u32 y_res; /* Line per panel */
238 u32 x_res; /* pixel per line */
239};
240
Mythri P K94c52982011-09-08 19:06:21 +0530241struct hdmi_config {
Archit Tanejacc937e52012-06-24 13:08:10 +0530242 struct omap_video_timings timings;
Mythri P K94c52982011-09-08 19:06:21 +0530243 struct hdmi_cm cm;
244};
245
246/* HDMI PLL structure */
247struct hdmi_pll_info {
248 u16 regn;
249 u16 regm;
250 u32 regmf;
251 u16 regm2;
252 u16 regsd;
253 u16 dcofreq;
254 enum hdmi_clk_refsel refsel;
255};
256
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530257struct hdmi_audio_format {
258 enum hdmi_stereo_channels stereo_channels;
259 u8 active_chnnls_msk;
260 enum hdmi_audio_type type;
261 enum hdmi_audio_justify justification;
262 enum hdmi_audio_sample_order sample_order;
263 enum hdmi_audio_samples_perword samples_per_word;
Tomi Valkeinend27d20c2014-06-09 13:08:02 +0300264 enum hdmi_audio_sample_size_omap sample_size;
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530265 enum hdmi_audio_blk_strt_end_sig en_sig_blk_strt_end;
266};
267
268struct hdmi_audio_dma {
269 u8 transfer_size;
270 u8 block_size;
271 enum hdmi_audio_transf_mode mode;
272 u16 fifo_threshold;
273};
274
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530275struct hdmi_core_audio_i2s_config {
276 u8 in_length_bits;
277 u8 justification;
278 u8 sck_edge_mode;
279 u8 vbit;
280 u8 direction;
281 u8 shift;
282 u8 active_sds;
283};
284
285struct hdmi_core_audio_config {
286 struct hdmi_core_audio_i2s_config i2s_cfg;
287 struct snd_aes_iec958 *iec60958_cfg;
288 bool fs_override;
289 u32 n;
290 u32 cts;
291 u32 aud_par_busclk;
292 enum hdmi_core_audio_layout layout;
293 enum hdmi_core_cts_mode cts_mode;
294 bool use_mclk;
295 enum hdmi_audio_mclk_mode mclk_mode;
296 bool en_acr_pkt;
297 bool en_dsd_audio;
298 bool en_parallel_aud_input;
299 bool en_spdif;
300};
301
Mythri P Kda8f14f2012-02-08 11:54:19 +0530302/*
303 * Refer to section 8.2 in HDMI 1.3 specification for
304 * details about infoframe databytes
305 */
306struct hdmi_core_infoframe_avi {
307 /* Y0, Y1 rgb,yCbCr */
308 u8 db1_format;
309 /* A0 Active information Present */
310 u8 db1_active_info;
311 /* B0, B1 Bar info data valid */
312 u8 db1_bar_info_dv;
313 /* S0, S1 scan information */
314 u8 db1_scan_info;
315 /* C0, C1 colorimetry */
316 u8 db2_colorimetry;
317 /* M0, M1 Aspect ratio (4:3, 16:9) */
318 u8 db2_aspect_ratio;
319 /* R0...R3 Active format aspect ratio */
320 u8 db2_active_fmt_ar;
321 /* ITC IT content. */
322 u8 db3_itc;
323 /* EC0, EC1, EC2 Extended colorimetry */
324 u8 db3_ec;
325 /* Q1, Q0 Quantization range */
326 u8 db3_q_range;
327 /* SC1, SC0 Non-uniform picture scaling */
328 u8 db3_nup_scaling;
329 /* VIC0..6 Video format identification */
330 u8 db4_videocode;
331 /* PR0..PR3 Pixel repetition factor */
332 u8 db5_pixel_repeat;
333 /* Line number end of top bar */
334 u16 db6_7_line_eoftop;
335 /* Line number start of bottom bar */
336 u16 db8_9_line_sofbottom;
337 /* Pixel number end of left bar */
338 u16 db10_11_pixel_eofleft;
339 /* Pixel number start of right bar */
340 u16 db12_13_pixel_sofright;
341};
342
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530343struct hdmi_wp_data {
344 void __iomem *base;
345};
346
Archit Tanejac1577c12013-10-08 12:55:26 +0530347struct hdmi_pll_data {
348 void __iomem *base;
349
350 struct hdmi_pll_info info;
351};
352
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530353struct hdmi_phy_data {
354 void __iomem *base;
355
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300356 u8 lane_function[4];
357 u8 lane_polarity[4];
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530358};
359
Archit Taneja425f02f2013-10-08 14:16:05 +0530360struct hdmi_core_data {
361 void __iomem *base;
362
363 struct hdmi_core_infoframe_avi avi_cfg;
Tomi Valkeinendb85ca72014-06-09 13:09:00 +0300364 struct hdmi_avi_infoframe avi_infoframe;
Archit Taneja425f02f2013-10-08 14:16:05 +0530365};
366
Archit Taneja8955b722013-09-10 16:21:10 +0530367static inline void hdmi_write_reg(void __iomem *base_addr, const u32 idx,
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530368 u32 val)
369{
370 __raw_writel(val, base_addr + idx);
371}
372
Archit Taneja8955b722013-09-10 16:21:10 +0530373static inline u32 hdmi_read_reg(void __iomem *base_addr, const u32 idx)
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530374{
375 return __raw_readl(base_addr + idx);
376}
377
378#define REG_FLD_MOD(base, idx, val, start, end) \
379 hdmi_write_reg(base, idx, FLD_MOD(hdmi_read_reg(base, idx),\
380 val, start, end))
381#define REG_GET(base, idx, start, end) \
382 FLD_GET(hdmi_read_reg(base, idx), start, end)
383
384static inline int hdmi_wait_for_bit_change(void __iomem *base_addr,
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200385 const u32 idx, int b2, int b1, u32 val)
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530386{
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200387 u32 t = 0, v;
388 while (val != (v = REG_GET(base_addr, idx, b2, b1))) {
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530389 if (t++ > 10000)
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200390 return v;
391 udelay(1);
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530392 }
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200393 return v;
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530394}
395
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530396/* HDMI wrapper funcs */
397int hdmi_wp_video_start(struct hdmi_wp_data *wp);
398void hdmi_wp_video_stop(struct hdmi_wp_data *wp);
399void hdmi_wp_dump(struct hdmi_wp_data *wp, struct seq_file *s);
400u32 hdmi_wp_get_irqstatus(struct hdmi_wp_data *wp);
401void hdmi_wp_set_irqstatus(struct hdmi_wp_data *wp, u32 irqstatus);
402void hdmi_wp_set_irqenable(struct hdmi_wp_data *wp, u32 mask);
403void hdmi_wp_clear_irqenable(struct hdmi_wp_data *wp, u32 mask);
404int hdmi_wp_set_phy_pwr(struct hdmi_wp_data *wp, enum hdmi_phy_pwr val);
405int hdmi_wp_set_pll_pwr(struct hdmi_wp_data *wp, enum hdmi_pll_pwr val);
406void hdmi_wp_video_config_format(struct hdmi_wp_data *wp,
407 struct hdmi_video_format *video_fmt);
408void hdmi_wp_video_config_interface(struct hdmi_wp_data *wp,
409 struct omap_video_timings *timings);
410void hdmi_wp_video_config_timing(struct hdmi_wp_data *wp,
411 struct omap_video_timings *timings);
412void hdmi_wp_init_vid_fmt_timings(struct hdmi_video_format *video_fmt,
413 struct omap_video_timings *timings, struct hdmi_config *param);
414int hdmi_wp_init(struct platform_device *pdev, struct hdmi_wp_data *wp);
415
Archit Tanejac1577c12013-10-08 12:55:26 +0530416/* HDMI PLL funcs */
417int hdmi_pll_enable(struct hdmi_pll_data *pll, struct hdmi_wp_data *wp);
418void hdmi_pll_disable(struct hdmi_pll_data *pll, struct hdmi_wp_data *wp);
419void hdmi_pll_dump(struct hdmi_pll_data *pll, struct seq_file *s);
420void hdmi_pll_compute(struct hdmi_pll_data *pll, unsigned long clkin, int phy);
421int hdmi_pll_init(struct platform_device *pdev, struct hdmi_pll_data *pll);
422
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530423/* HDMI PHY funcs */
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200424int hdmi_phy_configure(struct hdmi_phy_data *phy, struct hdmi_config *cfg);
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530425void hdmi_phy_dump(struct hdmi_phy_data *phy, struct seq_file *s);
426int hdmi_phy_init(struct platform_device *pdev, struct hdmi_phy_data *phy);
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300427int hdmi_phy_parse_lanes(struct hdmi_phy_data *phy, const u32 *lanes);
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530428
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530429/* HDMI common funcs */
430const struct hdmi_config *hdmi_default_timing(void);
431const struct hdmi_config *hdmi_get_timings(int mode, int code);
432struct hdmi_cm hdmi_get_code(struct omap_video_timings *timing);
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300433int hdmi_parse_lanes_of(struct platform_device *pdev, struct device_node *ep,
434 struct hdmi_phy_data *phy);
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530435
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200436#if defined(CONFIG_OMAP4_DSS_HDMI_AUDIO) || defined(CONFIG_OMAP5_DSS_HDMI_AUDIO)
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530437int hdmi_compute_acr(u32 pclk, u32 sample_freq, u32 *n, u32 *cts);
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530438int hdmi_wp_audio_enable(struct hdmi_wp_data *wp, bool enable);
439int hdmi_wp_audio_core_req_enable(struct hdmi_wp_data *wp, bool enable);
440void hdmi_wp_audio_config_format(struct hdmi_wp_data *wp,
441 struct hdmi_audio_format *aud_fmt);
442void hdmi_wp_audio_config_dma(struct hdmi_wp_data *wp,
443 struct hdmi_audio_dma *aud_dma);
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530444static inline bool hdmi_mode_has_audio(int mode)
445{
446 return mode == HDMI_HDMI ? true : false;
447}
Ricardo Neri80a48592011-11-27 16:09:58 -0600448#endif
Mythri P K94c52982011-09-08 19:06:21 +0530449#endif