1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#ifndef _HDMI_H
20#define _HDMI_H
21
22#include <linux/delay.h>
23#include <linux/io.h>
24#include <linux/platform_device.h>
25#include <linux/hdmi.h>
26#include <video/omapfb_dss.h>
27#include <sound/omap-hdmi-audio.h>
28
29#include "dss.h"
30
31
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
46#define HDMI_WP_CLK 0x70
47#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
52
53#define HDMI_IRQ_CORE (1 << 0)
54#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
67
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
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
85#define HDMI_TXPHY_BIST_CONTROL 0x1C
86
87enum 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
94enum hdmi_phy_pwr {
95 HDMI_PHYPWRCMD_OFF = 0,
96 HDMI_PHYPWRCMD_LDOON = 1,
97 HDMI_PHYPWRCMD_TXON = 2
98};
99
100enum hdmi_core_hdmi_dvi {
101 HDMI_DVI = 0,
102 HDMI_HDMI = 1
103};
104
105enum 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
140enum hdmi_audio_sample_size_omap {
141 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
155enum hdmi_core_audio_layout {
156 HDMI_AUDIO_LAYOUT_2CH = 0,
157 HDMI_AUDIO_LAYOUT_8CH = 1,
158 HDMI_AUDIO_LAYOUT_6CH = 2
159};
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
177struct hdmi_video_format {
178 enum hdmi_packing_mode packing_mode;
179 u32 y_res;
180 u32 x_res;
181};
182
183struct hdmi_config {
184 struct omap_video_timings timings;
185 struct hdmi_avi_infoframe infoframe;
186 enum hdmi_core_hdmi_dvi hdmi_dvi_mode;
187};
188
189struct 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;
196 enum hdmi_audio_sample_size_omap sample_size;
197 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
207struct 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
234struct hdmi_wp_data {
235 void __iomem *base;
236 phys_addr_t phys_base;
237};
238
239struct hdmi_pll_data {
240 struct dss_pll pll;
241
242 void __iomem *base;
243
244 struct hdmi_wp_data *wp;
245};
246
247struct hdmi_phy_data {
248 void __iomem *base;
249
250 u8 lane_function[4];
251 u8 lane_polarity[4];
252};
253
254struct hdmi_core_data {
255 void __iomem *base;
256};
257
258static inline void hdmi_write_reg(void __iomem *base_addr, const u32 idx,
259 u32 val)
260{
261 __raw_writel(val, base_addr + idx);
262}
263
264static inline u32 hdmi_read_reg(void __iomem *base_addr, const u32 idx)
265{
266 return __raw_readl(base_addr + idx);
267}
268
269#define REG_FLD_MOD(base, idx, val, start, end) \
270 hdmi_write_reg(base, idx, FLD_MOD(hdmi_read_reg(base, idx),\
271 val, start, end))
272#define REG_GET(base, idx, start, end) \
273 FLD_GET(hdmi_read_reg(base, idx), start, end)
274
275static inline int hdmi_wait_for_bit_change(void __iomem *base_addr,
276 const u32 idx, int b2, int b1, u32 val)
277{
278 u32 t = 0, v;
279 while (val != (v = REG_GET(base_addr, idx, b2, b1))) {
280 if (t++ > 10000)
281 return v;
282 udelay(1);
283 }
284 return v;
285}
286
287
288int hdmi_wp_video_start(struct hdmi_wp_data *wp);
289void hdmi_wp_video_stop(struct hdmi_wp_data *wp);
290void hdmi_wp_dump(struct hdmi_wp_data *wp, struct seq_file *s);
291u32 hdmi_wp_get_irqstatus(struct hdmi_wp_data *wp);
292void hdmi_wp_set_irqstatus(struct hdmi_wp_data *wp, u32 irqstatus);
293void hdmi_wp_set_irqenable(struct hdmi_wp_data *wp, u32 mask);
294void hdmi_wp_clear_irqenable(struct hdmi_wp_data *wp, u32 mask);
295int hdmi_wp_set_phy_pwr(struct hdmi_wp_data *wp, enum hdmi_phy_pwr val);
296int hdmi_wp_set_pll_pwr(struct hdmi_wp_data *wp, enum hdmi_pll_pwr val);
297void hdmi_wp_video_config_format(struct hdmi_wp_data *wp,
298 struct hdmi_video_format *video_fmt);
299void hdmi_wp_video_config_interface(struct hdmi_wp_data *wp,
300 struct omap_video_timings *timings);
301void hdmi_wp_video_config_timing(struct hdmi_wp_data *wp,
302 struct omap_video_timings *timings);
303void hdmi_wp_init_vid_fmt_timings(struct hdmi_video_format *video_fmt,
304 struct omap_video_timings *timings, struct hdmi_config *param);
305int hdmi_wp_init(struct platform_device *pdev, struct hdmi_wp_data *wp);
306phys_addr_t hdmi_wp_get_audio_dma_addr(struct hdmi_wp_data *wp);
307
308
309void hdmi_pll_dump(struct hdmi_pll_data *pll, struct seq_file *s);
310void hdmi_pll_compute(struct hdmi_pll_data *pll,
311 unsigned long target_tmds, struct dss_pll_clock_info *pi);
312int hdmi_pll_init(struct platform_device *pdev, struct hdmi_pll_data *pll,
313 struct hdmi_wp_data *wp);
314void hdmi_pll_uninit(struct hdmi_pll_data *hpll);
315
316
317int hdmi_phy_configure(struct hdmi_phy_data *phy, unsigned long hfbitclk,
318 unsigned long lfbitclk);
319void hdmi_phy_dump(struct hdmi_phy_data *phy, struct seq_file *s);
320int hdmi_phy_init(struct platform_device *pdev, struct hdmi_phy_data *phy);
321int hdmi_phy_parse_lanes(struct hdmi_phy_data *phy, const u32 *lanes);
322
323
324int hdmi_parse_lanes_of(struct platform_device *pdev, struct device_node *ep,
325 struct hdmi_phy_data *phy);
326
327
328int hdmi_compute_acr(u32 pclk, u32 sample_freq, u32 *n, u32 *cts);
329int hdmi_wp_audio_enable(struct hdmi_wp_data *wp, bool enable);
330int hdmi_wp_audio_core_req_enable(struct hdmi_wp_data *wp, bool enable);
331void hdmi_wp_audio_config_format(struct hdmi_wp_data *wp,
332 struct hdmi_audio_format *aud_fmt);
333void hdmi_wp_audio_config_dma(struct hdmi_wp_data *wp,
334 struct hdmi_audio_dma *aud_dma);
335static inline bool hdmi_mode_has_audio(struct hdmi_config *cfg)
336{
337 return cfg->hdmi_dvi_mode == HDMI_HDMI ? true : false;
338}
339
340
341struct omap_hdmi {
342 struct mutex lock;
343 struct platform_device *pdev;
344
345 struct hdmi_wp_data wp;
346 struct hdmi_pll_data pll;
347 struct hdmi_phy_data phy;
348 struct hdmi_core_data core;
349
350 struct hdmi_config cfg;
351
352 struct regulator *vdda_reg;
353
354 bool core_enabled;
355
356 struct omap_dss_device output;
357
358 struct platform_device *audio_pdev;
359 void (*audio_abort_cb)(struct device *dev);
360 int wp_idlemode;
361
362 bool audio_configured;
363 struct omap_dss_audio audio_config;
364
365
366 spinlock_t audio_playing_lock;
367 bool audio_playing;
368 bool display_enabled;
369};
370
371#endif
372