Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * linux/drivers/video/omap2/dss/dss.h
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6 *
7 * Some code and ideas taken from drivers/video/omap/ driver
8 * by Imre Deak.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#ifndef __OMAP2_DSS_H
24#define __OMAP2_DSS_H
25
26#ifdef CONFIG_OMAP2_DSS_DEBUG_SUPPORT
27#define DEBUG
28#endif
29
30#ifdef DEBUG
31extern bool dss_debug;
32#ifdef DSS_SUBSYS_NAME
33#define DSSDBG(format, ...) \
34 if (dss_debug) \
35 printk(KERN_DEBUG "omapdss " DSS_SUBSYS_NAME ": " format, \
36 ## __VA_ARGS__)
37#else
38#define DSSDBG(format, ...) \
39 if (dss_debug) \
40 printk(KERN_DEBUG "omapdss: " format, ## __VA_ARGS__)
41#endif
42
43#ifdef DSS_SUBSYS_NAME
44#define DSSDBGF(format, ...) \
45 if (dss_debug) \
46 printk(KERN_DEBUG "omapdss " DSS_SUBSYS_NAME \
47 ": %s(" format ")\n", \
48 __func__, \
49 ## __VA_ARGS__)
50#else
51#define DSSDBGF(format, ...) \
52 if (dss_debug) \
53 printk(KERN_DEBUG "omapdss: " \
54 ": %s(" format ")\n", \
55 __func__, \
56 ## __VA_ARGS__)
57#endif
58
59#else /* DEBUG */
60#define DSSDBG(format, ...)
61#define DSSDBGF(format, ...)
62#endif
63
64
65#ifdef DSS_SUBSYS_NAME
66#define DSSERR(format, ...) \
67 printk(KERN_ERR "omapdss " DSS_SUBSYS_NAME " error: " format, \
68 ## __VA_ARGS__)
69#else
70#define DSSERR(format, ...) \
71 printk(KERN_ERR "omapdss error: " format, ## __VA_ARGS__)
72#endif
73
74#ifdef DSS_SUBSYS_NAME
75#define DSSINFO(format, ...) \
76 printk(KERN_INFO "omapdss " DSS_SUBSYS_NAME ": " format, \
77 ## __VA_ARGS__)
78#else
79#define DSSINFO(format, ...) \
80 printk(KERN_INFO "omapdss: " format, ## __VA_ARGS__)
81#endif
82
83#ifdef DSS_SUBSYS_NAME
84#define DSSWARN(format, ...) \
85 printk(KERN_WARNING "omapdss " DSS_SUBSYS_NAME ": " format, \
86 ## __VA_ARGS__)
87#else
88#define DSSWARN(format, ...) \
89 printk(KERN_WARNING "omapdss: " format, ## __VA_ARGS__)
90#endif
91
92/* OMAP TRM gives bitfields as start:end, where start is the higher bit
93 number. For example 7:0 */
94#define FLD_MASK(start, end) (((1 << ((start) - (end) + 1)) - 1) << (end))
95#define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end))
96#define FLD_GET(val, start, end) (((val) & FLD_MASK(start, end)) >> (end))
97#define FLD_MOD(orig, val, start, end) \
98 (((orig) & ~FLD_MASK(start, end)) | FLD_VAL(val, start, end))
99
100enum dss_io_pad_mode {
101 DSS_IO_PAD_MODE_RESET,
102 DSS_IO_PAD_MODE_RFBI,
103 DSS_IO_PAD_MODE_BYPASS,
104};
105
106enum dss_hdmi_venc_clk_source_select {
107 DSS_VENC_TV_CLK = 0,
108 DSS_HDMI_M_PCLK = 1,
109};
110
111enum dss_dsi_content_type {
112 DSS_DSI_CONTENT_DCS,
113 DSS_DSI_CONTENT_GENERIC,
114};
115
116struct dss_clock_info {
117 /* rates that we get with dividers below */
118 unsigned long fck;
119
120 /* dividers */
121 u16 fck_div;
122};
123
124struct dispc_clock_info {
125 /* rates that we get with dividers below */
126 unsigned long lck;
127 unsigned long pck;
128
129 /* dividers */
130 u16 lck_div;
131 u16 pck_div;
132};
133
134struct dsi_clock_info {
135 /* rates that we get with dividers below */
136 unsigned long fint;
137 unsigned long clkin4ddr;
138 unsigned long clkin;
139 unsigned long dsi_pll_hsdiv_dispc_clk; /* OMAP3: DSI1_PLL_CLK
140 * OMAP4: PLLx_CLK1 */
141 unsigned long dsi_pll_hsdiv_dsi_clk; /* OMAP3: DSI2_PLL_CLK
142 * OMAP4: PLLx_CLK2 */
143 unsigned long lp_clk;
144
145 /* dividers */
146 u16 regn;
147 u16 regm;
148 u16 regm_dispc; /* OMAP3: REGM3
149 * OMAP4: REGM4 */
150 u16 regm_dsi; /* OMAP3: REGM4
151 * OMAP4: REGM5 */
152 u16 lp_clk_div;
153
154 u8 highfreq;
155 bool use_sys_clk;
156};
157
158struct seq_file;
159struct platform_device;
160
161/* core */
162struct bus_type *dss_get_bus(void);
163struct regulator *dss_get_vdds_dsi(void);
164struct regulator *dss_get_vdds_sdi(void);
165
166/* apply */
167void dss_apply_init(void);
168int dss_mgr_wait_for_go(struct omap_overlay_manager *mgr);
169int dss_mgr_wait_for_go_ovl(struct omap_overlay *ovl);
170void dss_mgr_start_update(struct omap_overlay_manager *mgr);
171int omap_dss_mgr_apply(struct omap_overlay_manager *mgr);
172
173int dss_mgr_enable(struct omap_overlay_manager *mgr);
174void dss_mgr_disable(struct omap_overlay_manager *mgr);
175int dss_mgr_set_info(struct omap_overlay_manager *mgr,
176 struct omap_overlay_manager_info *info);
177void dss_mgr_get_info(struct omap_overlay_manager *mgr,
178 struct omap_overlay_manager_info *info);
179int dss_mgr_set_device(struct omap_overlay_manager *mgr,
180 struct omap_dss_device *dssdev);
181int dss_mgr_unset_device(struct omap_overlay_manager *mgr);
182
183bool dss_ovl_is_enabled(struct omap_overlay *ovl);
184int dss_ovl_enable(struct omap_overlay *ovl);
185int dss_ovl_disable(struct omap_overlay *ovl);
186int dss_ovl_set_info(struct omap_overlay *ovl,
187 struct omap_overlay_info *info);
188void dss_ovl_get_info(struct omap_overlay *ovl,
189 struct omap_overlay_info *info);
190int dss_ovl_set_manager(struct omap_overlay *ovl,
191 struct omap_overlay_manager *mgr);
192int dss_ovl_unset_manager(struct omap_overlay *ovl);
193
194/* display */
195int dss_suspend_all_devices(void);
196int dss_resume_all_devices(void);
197void dss_disable_all_devices(void);
198
199void dss_init_device(struct platform_device *pdev,
200 struct omap_dss_device *dssdev);
201void dss_uninit_device(struct platform_device *pdev,
202 struct omap_dss_device *dssdev);
203bool dss_use_replication(struct omap_dss_device *dssdev,
204 enum omap_color_mode mode);
205void default_get_overlay_fifo_thresholds(enum omap_plane plane,
206 u32 fifo_size, u32 burst_size,
207 u32 *fifo_low, u32 *fifo_high);
208
209/* manager */
210int dss_init_overlay_managers(struct platform_device *pdev);
211void dss_uninit_overlay_managers(struct platform_device *pdev);
212int dss_mgr_simple_check(struct omap_overlay_manager *mgr,
213 const struct omap_overlay_manager_info *info);
214int dss_mgr_check(struct omap_overlay_manager *mgr,
215 struct omap_dss_device *dssdev,
216 struct omap_overlay_manager_info *info,
217 struct omap_overlay_info **overlay_infos);
218
219/* overlay */
220void dss_init_overlays(struct platform_device *pdev);
221void dss_uninit_overlays(struct platform_device *pdev);
222void dss_overlay_setup_dispc_manager(struct omap_overlay_manager *mgr);
223void dss_recheck_connections(struct omap_dss_device *dssdev, bool force);
224int dss_ovl_simple_check(struct omap_overlay *ovl,
225 const struct omap_overlay_info *info);
226int dss_ovl_check(struct omap_overlay *ovl,
227 struct omap_overlay_info *info, struct omap_dss_device *dssdev);
228
229/* DSS */
230int dss_init_platform_driver(void);
231void dss_uninit_platform_driver(void);
232
233int dss_runtime_get(void);
234void dss_runtime_put(void);
235
236void dss_select_hdmi_venc_clk_source(enum dss_hdmi_venc_clk_source_select);
237enum dss_hdmi_venc_clk_source_select dss_get_hdmi_venc_clk_source(void);
238const char *dss_get_generic_clk_source_name(enum omap_dss_clk_source clk_src);
239void dss_dump_clocks(struct seq_file *s);
240
241void dss_dump_regs(struct seq_file *s);
242#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT)
243void dss_debug_dump_clocks(struct seq_file *s);
244#endif
245
246void dss_sdi_init(u8 datapairs);
247int dss_sdi_enable(void);
248void dss_sdi_disable(void);
249
250void dss_select_dispc_clk_source(enum omap_dss_clk_source clk_src);
251void dss_select_dsi_clk_source(int dsi_module,
252 enum omap_dss_clk_source clk_src);
253void dss_select_lcd_clk_source(enum omap_channel channel,
254 enum omap_dss_clk_source clk_src);
255enum omap_dss_clk_source dss_get_dispc_clk_source(void);
256enum omap_dss_clk_source dss_get_dsi_clk_source(int dsi_module);
257enum omap_dss_clk_source dss_get_lcd_clk_source(enum omap_channel channel);
258
259void dss_set_venc_output(enum omap_dss_venc_type type);
260void dss_set_dac_pwrdn_bgz(bool enable);
261
262unsigned long dss_get_dpll4_rate(void);
263int dss_calc_clock_rates(struct dss_clock_info *cinfo);
264int dss_set_clock_div(struct dss_clock_info *cinfo);
265int dss_get_clock_div(struct dss_clock_info *cinfo);
266int dss_calc_clock_div(bool is_tft, unsigned long req_pck,
267 struct dss_clock_info *dss_cinfo,
268 struct dispc_clock_info *dispc_cinfo);
269
270/* SDI */
271#ifdef CONFIG_OMAP2_DSS_SDI
272int sdi_init(void);
273void sdi_exit(void);
274int sdi_init_display(struct omap_dss_device *display);
275#else
276static inline int sdi_init(void)
277{
278 return 0;
279}
280static inline void sdi_exit(void)
281{
282}
283#endif
284
285/* DSI */
286#ifdef CONFIG_OMAP2_DSS_DSI
287
288struct dentry;
289struct file_operations;
290
291int dsi_init_platform_driver(void);
292void dsi_uninit_platform_driver(void);
293
294int dsi_runtime_get(struct platform_device *dsidev);
295void dsi_runtime_put(struct platform_device *dsidev);
296
297void dsi_dump_clocks(struct seq_file *s);
298void dsi_create_debugfs_files_irq(struct dentry *debugfs_dir,
299 const struct file_operations *debug_fops);
300void dsi_create_debugfs_files_reg(struct dentry *debugfs_dir,
301 const struct file_operations *debug_fops);
302
303int dsi_init_display(struct omap_dss_device *display);
304void dsi_irq_handler(void);
305u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt);
306
307unsigned long dsi_get_pll_hsdiv_dispc_rate(struct platform_device *dsidev);
308int dsi_pll_set_clock_div(struct platform_device *dsidev,
309 struct dsi_clock_info *cinfo);
310int dsi_pll_calc_clock_div_pck(struct platform_device *dsidev, bool is_tft,
311 unsigned long req_pck, struct dsi_clock_info *cinfo,
312 struct dispc_clock_info *dispc_cinfo);
313int dsi_pll_init(struct platform_device *dsidev, bool enable_hsclk,
314 bool enable_hsdiv);
315void dsi_pll_uninit(struct platform_device *dsidev, bool disconnect_lanes);
316void dsi_get_overlay_fifo_thresholds(enum omap_plane plane,
317 u32 fifo_size, u32 burst_size,
318 u32 *fifo_low, u32 *fifo_high);
319void dsi_wait_pll_hsdiv_dispc_active(struct platform_device *dsidev);
320void dsi_wait_pll_hsdiv_dsi_active(struct platform_device *dsidev);
321struct platform_device *dsi_get_dsidev_from_id(int module);
322#else
323static inline int dsi_init_platform_driver(void)
324{
325 return 0;
326}
327static inline void dsi_uninit_platform_driver(void)
328{
329}
330static inline int dsi_runtime_get(struct platform_device *dsidev)
331{
332 return 0;
333}
334static inline void dsi_runtime_put(struct platform_device *dsidev)
335{
336}
337static inline u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt)
338{
339 WARN("%s: DSI not compiled in, returning pixel_size as 0\n", __func__);
340 return 0;
341}
342static inline unsigned long dsi_get_pll_hsdiv_dispc_rate(struct platform_device *dsidev)
343{
344 WARN("%s: DSI not compiled in, returning rate as 0\n", __func__);
345 return 0;
346}
347static inline int dsi_pll_set_clock_div(struct platform_device *dsidev,
348 struct dsi_clock_info *cinfo)
349{
350 WARN("%s: DSI not compiled in\n", __func__);
351 return -ENODEV;
352}
353static inline int dsi_pll_calc_clock_div_pck(struct platform_device *dsidev,
354 bool is_tft, unsigned long req_pck,
355 struct dsi_clock_info *dsi_cinfo,
356 struct dispc_clock_info *dispc_cinfo)
357{
358 WARN("%s: DSI not compiled in\n", __func__);
359 return -ENODEV;
360}
361static inline int dsi_pll_init(struct platform_device *dsidev,
362 bool enable_hsclk, bool enable_hsdiv)
363{
364 WARN("%s: DSI not compiled in\n", __func__);
365 return -ENODEV;
366}
367static inline void dsi_pll_uninit(struct platform_device *dsidev,
368 bool disconnect_lanes)
369{
370}
371static inline void dsi_wait_pll_hsdiv_dispc_active(struct platform_device *dsidev)
372{
373}
374static inline void dsi_wait_pll_hsdiv_dsi_active(struct platform_device *dsidev)
375{
376}
377static inline struct platform_device *dsi_get_dsidev_from_id(int module)
378{
379 WARN("%s: DSI not compiled in, returning platform device as NULL\n",
380 __func__);
381 return NULL;
382}
383#endif
384
385/* DPI */
386#ifdef CONFIG_OMAP2_DSS_DPI
387int dpi_init(void);
388void dpi_exit(void);
389int dpi_init_display(struct omap_dss_device *dssdev);
390#else
391static inline int dpi_init(void)
392{
393 return 0;
394}
395static inline void dpi_exit(void)
396{
397}
398#endif
399
400/* DISPC */
401int dispc_init_platform_driver(void);
402void dispc_uninit_platform_driver(void);
403void dispc_dump_clocks(struct seq_file *s);
404void dispc_dump_irqs(struct seq_file *s);
405void dispc_dump_regs(struct seq_file *s);
406void dispc_irq_handler(void);
407void dispc_fake_vsync_irq(void);
408
409int dispc_runtime_get(void);
410void dispc_runtime_put(void);
411
412void dispc_enable_sidle(void);
413void dispc_disable_sidle(void);
414
415void dispc_lcd_enable_signal_polarity(bool act_high);
416void dispc_lcd_enable_signal(bool enable);
417void dispc_pck_free_enable(bool enable);
418void dispc_set_digit_size(u16 width, u16 height);
419void dispc_enable_fifomerge(bool enable);
420void dispc_enable_gamma_table(bool enable);
421void dispc_set_loadmode(enum omap_dss_load_mode mode);
422
423bool dispc_lcd_timings_ok(struct omap_video_timings *timings);
424unsigned long dispc_fclk_rate(void);
425void dispc_find_clk_divs(bool is_tft, unsigned long req_pck, unsigned long fck,
426 struct dispc_clock_info *cinfo);
427int dispc_calc_clock_rates(unsigned long dispc_fclk_rate,
428 struct dispc_clock_info *cinfo);
429
430
431void dispc_ovl_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high);
432u32 dispc_ovl_get_fifo_size(enum omap_plane plane);
433u32 dispc_ovl_get_burst_size(enum omap_plane plane);
434int dispc_ovl_setup(enum omap_plane plane, struct omap_overlay_info *oi,
435 bool ilace, bool replication);
436int dispc_ovl_enable(enum omap_plane plane, bool enable);
437void dispc_ovl_set_channel_out(enum omap_plane plane,
438 enum omap_channel channel);
439
440void dispc_mgr_enable_fifohandcheck(enum omap_channel channel, bool enable);
441void dispc_mgr_set_lcd_size(enum omap_channel channel, u16 width, u16 height);
442u32 dispc_mgr_get_vsync_irq(enum omap_channel channel);
443u32 dispc_mgr_get_framedone_irq(enum omap_channel channel);
444bool dispc_mgr_go_busy(enum omap_channel channel);
445void dispc_mgr_go(enum omap_channel channel);
446bool dispc_mgr_is_enabled(enum omap_channel channel);
447void dispc_mgr_enable(enum omap_channel channel, bool enable);
448bool dispc_mgr_is_channel_enabled(enum omap_channel channel);
449void dispc_mgr_set_io_pad_mode(enum dss_io_pad_mode mode);
450void dispc_mgr_enable_stallmode(enum omap_channel channel, bool enable);
451void dispc_mgr_set_tft_data_lines(enum omap_channel channel, u8 data_lines);
452void dispc_mgr_set_lcd_display_type(enum omap_channel channel,
453 enum omap_lcd_display_type type);
454void dispc_mgr_set_lcd_timings(enum omap_channel channel,
455 struct omap_video_timings *timings);
456void dispc_mgr_set_pol_freq(enum omap_channel channel,
457 enum omap_panel_config config, u8 acbi, u8 acb);
458unsigned long dispc_mgr_lclk_rate(enum omap_channel channel);
459unsigned long dispc_mgr_pclk_rate(enum omap_channel channel);
460int dispc_mgr_set_clock_div(enum omap_channel channel,
461 struct dispc_clock_info *cinfo);
462int dispc_mgr_get_clock_div(enum omap_channel channel,
463 struct dispc_clock_info *cinfo);
464void dispc_mgr_setup(enum omap_channel channel,
465 struct omap_overlay_manager_info *info);
466
467/* VENC */
468#ifdef CONFIG_OMAP2_DSS_VENC
469int venc_init_platform_driver(void);
470void venc_uninit_platform_driver(void);
471void venc_dump_regs(struct seq_file *s);
472int venc_init_display(struct omap_dss_device *display);
473unsigned long venc_get_pixel_clock(void);
474#else
475static inline int venc_init_platform_driver(void)
476{
477 return 0;
478}
479static inline void venc_uninit_platform_driver(void)
480{
481}
482static inline unsigned long venc_get_pixel_clock(void)
483{
484 WARN("%s: VENC not compiled in, returning pclk as 0\n", __func__);
485 return 0;
486}
487#endif
488
489/* HDMI */
490#ifdef CONFIG_OMAP4_DSS_HDMI
491int hdmi_init_platform_driver(void);
492void hdmi_uninit_platform_driver(void);
493int hdmi_init_display(struct omap_dss_device *dssdev);
494unsigned long hdmi_get_pixel_clock(void);
495void hdmi_dump_regs(struct seq_file *s);
496#else
497static inline int hdmi_init_display(struct omap_dss_device *dssdev)
498{
499 return 0;
500}
501static inline int hdmi_init_platform_driver(void)
502{
503 return 0;
504}
505static inline void hdmi_uninit_platform_driver(void)
506{
507}
508static inline unsigned long hdmi_get_pixel_clock(void)
509{
510 WARN("%s: HDMI not compiled in, returning pclk as 0\n", __func__);
511 return 0;
512}
513#endif
514int omapdss_hdmi_display_enable(struct omap_dss_device *dssdev);
515void omapdss_hdmi_display_disable(struct omap_dss_device *dssdev);
516void omapdss_hdmi_display_set_timing(struct omap_dss_device *dssdev);
517int omapdss_hdmi_display_check_timing(struct omap_dss_device *dssdev,
518 struct omap_video_timings *timings);
519int omapdss_hdmi_read_edid(u8 *buf, int len);
520bool omapdss_hdmi_detect(void);
521int hdmi_panel_init(void);
522void hdmi_panel_exit(void);
523
524/* RFBI */
525#ifdef CONFIG_OMAP2_DSS_RFBI
526int rfbi_init_platform_driver(void);
527void rfbi_uninit_platform_driver(void);
528void rfbi_dump_regs(struct seq_file *s);
529int rfbi_init_display(struct omap_dss_device *display);
530#else
531static inline int rfbi_init_platform_driver(void)
532{
533 return 0;
534}
535static inline void rfbi_uninit_platform_driver(void)
536{
537}
538#endif
539
540
541#ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
542static inline void dss_collect_irq_stats(u32 irqstatus, unsigned *irq_arr)
543{
544 int b;
545 for (b = 0; b < 32; ++b) {
546 if (irqstatus & (1 << b))
547 irq_arr[b]++;
548 }
549}
550#endif
551
552#endif