blob: eef717120b331a38fc92b1c24418d3e912f30e96 [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>
Peter Ujfalusi5fd74472016-05-30 13:26:28 +030026#include <sound/omap-hdmi-audio.h>
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053027
Peter Ujfalusi32043da2016-05-27 14:40:49 +030028#include "omapdss.h"
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053029#include "dss.h"
30
31/* HDMI Wrapper */
32
33#define HDMI_WP_REVISION 0x0
34#define HDMI_WP_SYSCONFIG 0x10
35#define HDMI_WP_IRQSTATUS_RAW 0x24
36#define HDMI_WP_IRQSTATUS 0x28
37#define HDMI_WP_IRQENABLE_SET 0x2C
38#define HDMI_WP_IRQENABLE_CLR 0x30
39#define HDMI_WP_IRQWAKEEN 0x34
40#define HDMI_WP_PWR_CTRL 0x40
41#define HDMI_WP_DEBOUNCE 0x44
42#define HDMI_WP_VIDEO_CFG 0x50
43#define HDMI_WP_VIDEO_SIZE 0x60
44#define HDMI_WP_VIDEO_TIMING_H 0x68
45#define HDMI_WP_VIDEO_TIMING_V 0x6C
Tomi Valkeinen42116512013-10-28 11:47:29 +020046#define HDMI_WP_CLK 0x70
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053047#define HDMI_WP_AUDIO_CFG 0x80
48#define HDMI_WP_AUDIO_CFG2 0x84
49#define HDMI_WP_AUDIO_CTRL 0x88
50#define HDMI_WP_AUDIO_DATA 0x8C
51
Archit Taneja86961312013-09-10 16:34:02 +053052/* HDMI WP IRQ flags */
Tomi Valkeinen6873efe2013-10-28 11:47:28 +020053#define HDMI_IRQ_CORE (1 << 0)
Archit Taneja86961312013-09-10 16:34:02 +053054#define HDMI_IRQ_OCP_TIMEOUT (1 << 4)
55#define HDMI_IRQ_AUDIO_FIFO_UNDERFLOW (1 << 8)
56#define HDMI_IRQ_AUDIO_FIFO_OVERFLOW (1 << 9)
57#define HDMI_IRQ_AUDIO_FIFO_SAMPLE_REQ (1 << 10)
58#define HDMI_IRQ_VIDEO_VSYNC (1 << 16)
59#define HDMI_IRQ_VIDEO_FRAME_DONE (1 << 17)
60#define HDMI_IRQ_PHY_LINE5V_ASSERT (1 << 24)
61#define HDMI_IRQ_LINK_CONNECT (1 << 25)
62#define HDMI_IRQ_LINK_DISCONNECT (1 << 26)
63#define HDMI_IRQ_PLL_LOCK (1 << 29)
64#define HDMI_IRQ_PLL_UNLOCK (1 << 30)
65#define HDMI_IRQ_PLL_RECAL (1 << 31)
66
Archit Tanejabdb8bfc2013-09-12 18:07:49 +053067/* HDMI PLL */
68
69#define PLLCTRL_PLL_CONTROL 0x0
70#define PLLCTRL_PLL_STATUS 0x4
71#define PLLCTRL_PLL_GO 0x8
72#define PLLCTRL_CFG1 0xC
73#define PLLCTRL_CFG2 0x10
74#define PLLCTRL_CFG3 0x14
75#define PLLCTRL_SSC_CFG1 0x18
76#define PLLCTRL_SSC_CFG2 0x1C
77#define PLLCTRL_CFG4 0x20
78
79/* HDMI PHY */
80
81#define HDMI_TXPHY_TX_CTRL 0x0
82#define HDMI_TXPHY_DIGITAL_CTRL 0x4
83#define HDMI_TXPHY_POWER_CTRL 0x8
84#define HDMI_TXPHY_PAD_CFG_CTRL 0xC
Archit Taneja19289fd2013-09-23 12:58:52 +053085#define HDMI_TXPHY_BIST_CONTROL 0x1C
Archit Tanejaf382d9e2013-08-06 14:56:55 +053086
Mythri P K94c52982011-09-08 19:06:21 +053087enum hdmi_pll_pwr {
88 HDMI_PLLPWRCMD_ALLOFF = 0,
89 HDMI_PLLPWRCMD_PLLONLY = 1,
90 HDMI_PLLPWRCMD_BOTHON_ALLCLKS = 2,
91 HDMI_PLLPWRCMD_BOTHON_NOPHYCLK = 3
92};
93
Archit Tanejaf382d9e2013-08-06 14:56:55 +053094enum hdmi_phy_pwr {
95 HDMI_PHYPWRCMD_OFF = 0,
96 HDMI_PHYPWRCMD_LDOON = 1,
97 HDMI_PHYPWRCMD_TXON = 2
98};
99
Mythri P K94c52982011-09-08 19:06:21 +0530100enum hdmi_core_hdmi_dvi {
101 HDMI_DVI = 0,
102 HDMI_HDMI = 1
103};
104
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530105enum hdmi_packing_mode {
106 HDMI_PACK_10b_RGB_YUV444 = 0,
107 HDMI_PACK_24b_RGB_YUV444_YUV422 = 1,
108 HDMI_PACK_20b_YUV422 = 2,
109 HDMI_PACK_ALREADYPACKED = 7
110};
111
112enum hdmi_stereo_channels {
113 HDMI_AUDIO_STEREO_NOCHANNELS = 0,
114 HDMI_AUDIO_STEREO_ONECHANNEL = 1,
115 HDMI_AUDIO_STEREO_TWOCHANNELS = 2,
116 HDMI_AUDIO_STEREO_THREECHANNELS = 3,
117 HDMI_AUDIO_STEREO_FOURCHANNELS = 4
118};
119
120enum hdmi_audio_type {
121 HDMI_AUDIO_TYPE_LPCM = 0,
122 HDMI_AUDIO_TYPE_IEC = 1
123};
124
125enum hdmi_audio_justify {
126 HDMI_AUDIO_JUSTIFY_LEFT = 0,
127 HDMI_AUDIO_JUSTIFY_RIGHT = 1
128};
129
130enum hdmi_audio_sample_order {
131 HDMI_AUDIO_SAMPLE_RIGHT_FIRST = 0,
132 HDMI_AUDIO_SAMPLE_LEFT_FIRST = 1
133};
134
135enum hdmi_audio_samples_perword {
136 HDMI_AUDIO_ONEWORD_ONESAMPLE = 0,
137 HDMI_AUDIO_ONEWORD_TWOSAMPLES = 1
138};
139
Tomi Valkeinend27d20c2014-06-09 13:08:02 +0300140enum hdmi_audio_sample_size_omap {
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530141 HDMI_AUDIO_SAMPLE_16BITS = 0,
142 HDMI_AUDIO_SAMPLE_24BITS = 1
143};
144
145enum hdmi_audio_transf_mode {
146 HDMI_AUDIO_TRANSF_DMA = 0,
147 HDMI_AUDIO_TRANSF_IRQ = 1
148};
149
150enum hdmi_audio_blk_strt_end_sig {
151 HDMI_AUDIO_BLOCK_SIG_STARTEND_ON = 0,
152 HDMI_AUDIO_BLOCK_SIG_STARTEND_OFF = 1
153};
154
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530155enum hdmi_core_audio_layout {
156 HDMI_AUDIO_LAYOUT_2CH = 0,
Jyri Sarha652ce042014-04-10 10:36:26 +0300157 HDMI_AUDIO_LAYOUT_8CH = 1,
158 HDMI_AUDIO_LAYOUT_6CH = 2
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530159};
160
161enum hdmi_core_cts_mode {
162 HDMI_AUDIO_CTS_MODE_HW = 0,
163 HDMI_AUDIO_CTS_MODE_SW = 1
164};
165
166enum hdmi_audio_mclk_mode {
167 HDMI_AUDIO_MCLK_128FS = 0,
168 HDMI_AUDIO_MCLK_256FS = 1,
169 HDMI_AUDIO_MCLK_384FS = 2,
170 HDMI_AUDIO_MCLK_512FS = 3,
171 HDMI_AUDIO_MCLK_768FS = 4,
172 HDMI_AUDIO_MCLK_1024FS = 5,
173 HDMI_AUDIO_MCLK_1152FS = 6,
174 HDMI_AUDIO_MCLK_192FS = 7
175};
176
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530177struct hdmi_video_format {
178 enum hdmi_packing_mode packing_mode;
179 u32 y_res; /* Line per panel */
180 u32 x_res; /* pixel per line */
181};
182
Mythri P K94c52982011-09-08 19:06:21 +0530183struct hdmi_config {
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300184 struct videomode vm;
Tomi Valkeinenc9d2c792014-06-18 14:21:08 +0300185 struct hdmi_avi_infoframe infoframe;
186 enum hdmi_core_hdmi_dvi hdmi_dvi_mode;
Mythri P K94c52982011-09-08 19:06:21 +0530187};
188
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530189struct hdmi_audio_format {
190 enum hdmi_stereo_channels stereo_channels;
191 u8 active_chnnls_msk;
192 enum hdmi_audio_type type;
193 enum hdmi_audio_justify justification;
194 enum hdmi_audio_sample_order sample_order;
195 enum hdmi_audio_samples_perword samples_per_word;
Tomi Valkeinend27d20c2014-06-09 13:08:02 +0300196 enum hdmi_audio_sample_size_omap sample_size;
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530197 enum hdmi_audio_blk_strt_end_sig en_sig_blk_strt_end;
198};
199
200struct hdmi_audio_dma {
201 u8 transfer_size;
202 u8 block_size;
203 enum hdmi_audio_transf_mode mode;
204 u16 fifo_threshold;
205};
206
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530207struct hdmi_core_audio_i2s_config {
208 u8 in_length_bits;
209 u8 justification;
210 u8 sck_edge_mode;
211 u8 vbit;
212 u8 direction;
213 u8 shift;
214 u8 active_sds;
215};
216
217struct hdmi_core_audio_config {
218 struct hdmi_core_audio_i2s_config i2s_cfg;
219 struct snd_aes_iec958 *iec60958_cfg;
220 bool fs_override;
221 u32 n;
222 u32 cts;
223 u32 aud_par_busclk;
224 enum hdmi_core_audio_layout layout;
225 enum hdmi_core_cts_mode cts_mode;
226 bool use_mclk;
227 enum hdmi_audio_mclk_mode mclk_mode;
228 bool en_acr_pkt;
229 bool en_dsd_audio;
230 bool en_parallel_aud_input;
231 bool en_spdif;
232};
233
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530234struct hdmi_wp_data {
235 void __iomem *base;
Jyri Sarha58652162014-05-23 16:13:57 +0300236 phys_addr_t phys_base;
Laurent Pinchartfe16bc52017-08-11 16:49:03 +0300237 unsigned int version;
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530238};
239
Archit Tanejac1577c12013-10-08 12:55:26 +0530240struct hdmi_pll_data {
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300241 struct dss_pll pll;
242
Archit Tanejac1577c12013-10-08 12:55:26 +0530243 void __iomem *base;
244
Tomi Valkeinen86c93052016-05-17 17:07:46 +0300245 struct platform_device *pdev;
Tomi Valkeinen03aafa22014-10-16 15:31:38 +0300246 struct hdmi_wp_data *wp;
Archit Tanejac1577c12013-10-08 12:55:26 +0530247};
248
Laurent Pinchartcc219af2017-08-05 01:43:51 +0300249struct hdmi_phy_features {
250 bool bist_ctrl;
251 bool ldo_voltage;
252 unsigned long max_phy;
253};
254
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530255struct hdmi_phy_data {
256 void __iomem *base;
257
Laurent Pinchartcc219af2017-08-05 01:43:51 +0300258 const struct hdmi_phy_features *features;
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300259 u8 lane_function[4];
260 u8 lane_polarity[4];
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530261};
262
Archit Taneja425f02f2013-10-08 14:16:05 +0530263struct hdmi_core_data {
264 void __iomem *base;
Laurent Pinchart2c9fc9b2017-08-05 01:44:11 +0300265 bool cts_swmode;
266 bool audio_use_mclk;
Archit Taneja425f02f2013-10-08 14:16:05 +0530267};
268
Archit Taneja8955b722013-09-10 16:21:10 +0530269static inline void hdmi_write_reg(void __iomem *base_addr, const u32 idx,
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530270 u32 val)
271{
272 __raw_writel(val, base_addr + idx);
273}
274
Archit Taneja8955b722013-09-10 16:21:10 +0530275static inline u32 hdmi_read_reg(void __iomem *base_addr, const u32 idx)
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530276{
277 return __raw_readl(base_addr + idx);
278}
279
280#define REG_FLD_MOD(base, idx, val, start, end) \
281 hdmi_write_reg(base, idx, FLD_MOD(hdmi_read_reg(base, idx),\
282 val, start, end))
283#define REG_GET(base, idx, start, end) \
284 FLD_GET(hdmi_read_reg(base, idx), start, end)
285
286static inline int hdmi_wait_for_bit_change(void __iomem *base_addr,
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200287 const u32 idx, int b2, int b1, u32 val)
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530288{
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200289 u32 t = 0, v;
290 while (val != (v = REG_GET(base_addr, idx, b2, b1))) {
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530291 if (t++ > 10000)
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200292 return v;
293 udelay(1);
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530294 }
Tomi Valkeinen91b53e62013-10-28 11:47:30 +0200295 return v;
Archit Tanejabdb8bfc2013-09-12 18:07:49 +0530296}
297
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530298/* HDMI wrapper funcs */
299int hdmi_wp_video_start(struct hdmi_wp_data *wp);
300void hdmi_wp_video_stop(struct hdmi_wp_data *wp);
301void hdmi_wp_dump(struct hdmi_wp_data *wp, struct seq_file *s);
302u32 hdmi_wp_get_irqstatus(struct hdmi_wp_data *wp);
303void hdmi_wp_set_irqstatus(struct hdmi_wp_data *wp, u32 irqstatus);
304void hdmi_wp_set_irqenable(struct hdmi_wp_data *wp, u32 mask);
305void hdmi_wp_clear_irqenable(struct hdmi_wp_data *wp, u32 mask);
306int hdmi_wp_set_phy_pwr(struct hdmi_wp_data *wp, enum hdmi_phy_pwr val);
307int hdmi_wp_set_pll_pwr(struct hdmi_wp_data *wp, enum hdmi_pll_pwr val);
308void hdmi_wp_video_config_format(struct hdmi_wp_data *wp,
309 struct hdmi_video_format *video_fmt);
310void hdmi_wp_video_config_interface(struct hdmi_wp_data *wp,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300311 struct videomode *vm);
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530312void hdmi_wp_video_config_timing(struct hdmi_wp_data *wp,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300313 struct videomode *vm);
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530314void hdmi_wp_init_vid_fmt_timings(struct hdmi_video_format *video_fmt,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300315 struct videomode *vm, struct hdmi_config *param);
Laurent Pinchartfe16bc52017-08-11 16:49:03 +0300316int hdmi_wp_init(struct platform_device *pdev, struct hdmi_wp_data *wp,
317 unsigned int version);
Jyri Sarha58652162014-05-23 16:13:57 +0300318phys_addr_t hdmi_wp_get_audio_dma_addr(struct hdmi_wp_data *wp);
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530319
Archit Tanejac1577c12013-10-08 12:55:26 +0530320/* HDMI PLL funcs */
Archit Tanejac1577c12013-10-08 12:55:26 +0530321void hdmi_pll_dump(struct hdmi_pll_data *pll, struct seq_file *s);
Tomi Valkeinen03aafa22014-10-16 15:31:38 +0300322int hdmi_pll_init(struct platform_device *pdev, struct hdmi_pll_data *pll,
323 struct hdmi_wp_data *wp);
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300324void hdmi_pll_uninit(struct hdmi_pll_data *hpll);
Archit Tanejac1577c12013-10-08 12:55:26 +0530325
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530326/* HDMI PHY funcs */
Tomi Valkeinen33f13122014-09-15 15:40:47 +0300327int hdmi_phy_configure(struct hdmi_phy_data *phy, unsigned long hfbitclk,
328 unsigned long lfbitclk);
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530329void hdmi_phy_dump(struct hdmi_phy_data *phy, struct seq_file *s);
330int hdmi_phy_init(struct platform_device *pdev, struct hdmi_phy_data *phy);
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300331int hdmi_phy_parse_lanes(struct hdmi_phy_data *phy, const u32 *lanes);
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530332
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530333/* HDMI common funcs */
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300334int hdmi_parse_lanes_of(struct platform_device *pdev, struct device_node *ep,
335 struct hdmi_phy_data *phy);
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530336
Jyri Sarha12d3ea92014-08-22 15:15:47 +0300337/* Audio funcs */
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530338int hdmi_compute_acr(u32 pclk, u32 sample_freq, u32 *n, u32 *cts);
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530339int hdmi_wp_audio_enable(struct hdmi_wp_data *wp, bool enable);
340int hdmi_wp_audio_core_req_enable(struct hdmi_wp_data *wp, bool enable);
341void hdmi_wp_audio_config_format(struct hdmi_wp_data *wp,
342 struct hdmi_audio_format *aud_fmt);
343void hdmi_wp_audio_config_dma(struct hdmi_wp_data *wp,
344 struct hdmi_audio_dma *aud_dma);
Jyri Sarha5a8bf632014-08-22 18:42:18 +0300345static inline bool hdmi_mode_has_audio(struct hdmi_config *cfg)
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530346{
Jyri Sarha5a8bf632014-08-22 18:42:18 +0300347 return cfg->hdmi_dvi_mode == HDMI_HDMI ? true : false;
Archit Taneja08d83e4e2013-09-17 11:43:15 +0530348}
Jyri Sarha945514b2014-06-27 16:47:00 +0300349
350/* HDMI DRV data */
351struct omap_hdmi {
352 struct mutex lock;
353 struct platform_device *pdev;
354
355 struct hdmi_wp_data wp;
356 struct hdmi_pll_data pll;
357 struct hdmi_phy_data phy;
358 struct hdmi_core_data core;
359
360 struct hdmi_config cfg;
361
362 struct regulator *vdda_reg;
363
364 bool core_enabled;
365
366 struct omap_dss_device output;
Jyri Sarha29c047b2014-09-15 22:34:20 +0300367
368 struct platform_device *audio_pdev;
Jyri Sarha5872b352014-10-07 12:24:10 +0300369 void (*audio_abort_cb)(struct device *dev);
Jyri Sarha2d7639b2014-10-23 13:07:05 +0300370 int wp_idlemode;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300371
372 bool audio_configured;
373 struct omap_dss_audio audio_config;
374
375 /* This lock should be taken when booleans bellow are touched. */
376 spinlock_t audio_playing_lock;
377 bool audio_playing;
378 bool display_enabled;
Jyri Sarha945514b2014-06-27 16:47:00 +0300379};
380
Ricardo Neri80a48592011-11-27 16:09:58 -0600381#endif