2 * linux/drivers/video/omap2/dss/dss.h
4 * Copyright (C) 2009 Nokia Corporation
7 * Some code and ideas taken from drivers/video/omap/ driver
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.
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
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/>.
26 #include <linux/interrupt.h>
34 #ifdef DSS_SUBSYS_NAME
35 #define pr_fmt(fmt) DSS_SUBSYS_NAME ": " fmt
37 #define pr_fmt(fmt) fmt
40 #define DSSDBG(format, ...) \
41 pr_debug(format, ## __VA_ARGS__)
43 #ifdef DSS_SUBSYS_NAME
44 #define DSSERR(format, ...) \
45 printk(KERN_ERR "omapdss " DSS_SUBSYS_NAME " error: " format, \
48 #define DSSERR(format, ...) \
49 printk(KERN_ERR "omapdss error: " format, ## __VA_ARGS__)
52 #ifdef DSS_SUBSYS_NAME
53 #define DSSINFO(format, ...) \
54 printk(KERN_INFO "omapdss " DSS_SUBSYS_NAME ": " format, \
57 #define DSSINFO(format, ...) \
58 printk(KERN_INFO "omapdss: " format, ## __VA_ARGS__)
61 #ifdef DSS_SUBSYS_NAME
62 #define DSSWARN(format, ...) \
63 printk(KERN_WARNING "omapdss " DSS_SUBSYS_NAME ": " format, \
66 #define DSSWARN(format, ...) \
67 printk(KERN_WARNING "omapdss: " format, ## __VA_ARGS__)
70 /* OMAP TRM gives bitfields as start:end, where start is the higher bit
71 number. For example 7:0 */
72 #define FLD_MASK(start, end) (((1 << ((start) - (end) + 1)) - 1) << (end))
73 #define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end))
74 #define FLD_GET(val, start, end) (((val) & FLD_MASK(start, end)) >> (end))
75 #define FLD_MOD(orig, val, start, end) \
76 (((orig) & ~FLD_MASK(start, end)) | FLD_VAL(val, start, end))
78 enum dss_io_pad_mode {
79 DSS_IO_PAD_MODE_RESET,
81 DSS_IO_PAD_MODE_BYPASS,
84 enum dss_hdmi_venc_clk_source_select {
89 enum dss_dsi_content_type {
91 DSS_DSI_CONTENT_GENERIC,
94 enum dss_writeback_channel {
105 enum dss_clk_source {
116 DSS_CLK_SRC_HDMI_PLL,
129 #define DSS_PLL_MAX_HSDIVS 4
137 * Type-A PLLs: clkout[]/mX[] refer to hsdiv outputs m4, m5, m6, m7.
138 * Type-B PLLs: clkout[0] refers to m2.
140 struct dss_pll_clock_info {
141 /* rates that we get with dividers below */
143 unsigned long clkdco;
144 unsigned long clkout[DSS_PLL_MAX_HSDIVS];
150 u16 mX[DSS_PLL_MAX_HSDIVS];
155 int (*enable)(struct dss_pll *pll);
156 void (*disable)(struct dss_pll *pll);
157 int (*set_config)(struct dss_pll *pll,
158 const struct dss_pll_clock_info *cinfo);
162 enum dss_pll_type type;
169 unsigned long fint_min, fint_max;
170 unsigned long clkdco_min, clkdco_low, clkdco_max;
174 u8 mX_msb[DSS_PLL_MAX_HSDIVS], mX_lsb[DSS_PLL_MAX_HSDIVS];
187 struct regulator *regulator;
191 const struct dss_pll_hw *hw;
193 const struct dss_pll_ops *ops;
195 struct dss_pll_clock_info cinfo;
198 struct dispc_clock_info {
199 /* rates that we get with dividers below */
208 struct dss_lcd_mgr_config {
209 enum dss_io_pad_mode io_pad_mode;
214 struct dispc_clock_info clock_info;
216 int video_port_width;
218 int lcden_sig_polarity;
222 struct platform_device;
225 struct platform_device *dss_get_core_pdev(void);
226 int dss_dsi_enable_pads(int dsi_id, unsigned lane_mask);
227 void dss_dsi_disable_pads(int dsi_id, unsigned lane_mask);
228 int dss_set_min_bus_tput(struct device *dev, unsigned long tput);
229 int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *));
231 static inline bool dss_mgr_is_lcd(enum omap_channel id)
233 if (id == OMAP_DSS_CHANNEL_LCD || id == OMAP_DSS_CHANNEL_LCD2 ||
234 id == OMAP_DSS_CHANNEL_LCD3)
241 int dss_init_platform_driver(void) __init;
242 void dss_uninit_platform_driver(void);
244 int dss_runtime_get(void);
245 void dss_runtime_put(void);
247 unsigned long dss_get_dispc_clk_rate(void);
248 int dss_dpi_select_source(int port, enum omap_channel channel);
249 void dss_select_hdmi_venc_clk_source(enum dss_hdmi_venc_clk_source_select);
250 enum dss_hdmi_venc_clk_source_select dss_get_hdmi_venc_clk_source(void);
251 const char *dss_get_clk_source_name(enum dss_clk_source clk_src);
252 void dss_dump_clocks(struct seq_file *s);
255 struct dss_pll *dss_video_pll_init(struct platform_device *pdev, int id,
256 struct regulator *regulator);
257 void dss_video_pll_uninit(struct dss_pll *pll);
260 struct device_node *dss_of_port_get_parent_device(struct device_node *port);
261 u32 dss_of_port_get_port_number(struct device_node *port);
263 #if defined(CONFIG_OMAP2_DSS_DEBUGFS)
264 void dss_debug_dump_clocks(struct seq_file *s);
267 void dss_ctrl_pll_enable(enum dss_pll_id pll_id, bool enable);
269 void dss_sdi_init(int datapairs);
270 int dss_sdi_enable(void);
271 void dss_sdi_disable(void);
273 void dss_select_dsi_clk_source(int dsi_module,
274 enum dss_clk_source clk_src);
275 void dss_select_lcd_clk_source(enum omap_channel channel,
276 enum dss_clk_source clk_src);
277 enum dss_clk_source dss_get_dispc_clk_source(void);
278 enum dss_clk_source dss_get_dsi_clk_source(int dsi_module);
279 enum dss_clk_source dss_get_lcd_clk_source(enum omap_channel channel);
281 void dss_set_venc_output(enum omap_dss_venc_type type);
282 void dss_set_dac_pwrdn_bgz(bool enable);
284 int dss_set_fck_rate(unsigned long rate);
286 typedef bool (*dss_div_calc_func)(unsigned long fck, void *data);
287 bool dss_div_calc(unsigned long pck, unsigned long fck_min,
288 dss_div_calc_func func, void *data);
291 int sdi_init_platform_driver(void) __init;
292 void sdi_uninit_platform_driver(void);
294 #ifdef CONFIG_OMAP2_DSS_SDI
295 int sdi_init_port(struct platform_device *pdev, struct device_node *port);
296 void sdi_uninit_port(struct device_node *port);
298 static inline int sdi_init_port(struct platform_device *pdev,
299 struct device_node *port)
303 static inline void sdi_uninit_port(struct device_node *port)
310 #ifdef CONFIG_OMAP2_DSS_DSI
313 struct file_operations;
315 int dsi_init_platform_driver(void) __init;
316 void dsi_uninit_platform_driver(void);
318 void dsi_dump_clocks(struct seq_file *s);
320 void dsi_irq_handler(void);
321 u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt);
324 static inline u8 dsi_get_pixel_size(enum omap_dss_dsi_pixel_format fmt)
326 WARN(1, "%s: DSI not compiled in, returning pixel_size as 0\n",
333 int dpi_init_platform_driver(void) __init;
334 void dpi_uninit_platform_driver(void);
336 #ifdef CONFIG_OMAP2_DSS_DPI
337 int dpi_init_port(struct platform_device *pdev, struct device_node *port);
338 void dpi_uninit_port(struct device_node *port);
340 static inline int dpi_init_port(struct platform_device *pdev,
341 struct device_node *port)
345 static inline void dpi_uninit_port(struct device_node *port)
351 int dispc_init_platform_driver(void) __init;
352 void dispc_uninit_platform_driver(void);
353 void dispc_dump_clocks(struct seq_file *s);
355 void dispc_enable_sidle(void);
356 void dispc_disable_sidle(void);
358 void dispc_lcd_enable_signal(bool enable);
359 void dispc_pck_free_enable(bool enable);
360 void dispc_enable_fifomerge(bool enable);
361 void dispc_enable_gamma_table(bool enable);
363 typedef bool (*dispc_div_calc_func)(int lckd, int pckd, unsigned long lck,
364 unsigned long pck, void *data);
365 bool dispc_div_calc(unsigned long dispc,
366 unsigned long pck_min, unsigned long pck_max,
367 dispc_div_calc_func func, void *data);
369 bool dispc_mgr_timings_ok(enum omap_channel channel, const struct videomode *vm);
370 int dispc_calc_clock_rates(unsigned long dispc_fclk_rate,
371 struct dispc_clock_info *cinfo);
374 void dispc_ovl_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high);
375 void dispc_ovl_compute_fifo_thresholds(enum omap_plane plane,
376 u32 *fifo_low, u32 *fifo_high, bool use_fifomerge,
379 void dispc_mgr_set_clock_div(enum omap_channel channel,
380 const struct dispc_clock_info *cinfo);
381 int dispc_mgr_get_clock_div(enum omap_channel channel,
382 struct dispc_clock_info *cinfo);
383 void dispc_set_tv_pclk(unsigned long pclk);
385 u32 dispc_wb_get_framedone_irq(void);
386 bool dispc_wb_go_busy(void);
387 void dispc_wb_go(void);
388 void dispc_wb_enable(bool enable);
389 bool dispc_wb_is_enabled(void);
390 void dispc_wb_set_channel_in(enum dss_writeback_channel channel);
391 int dispc_wb_setup(const struct omap_dss_writeback_info *wi,
392 bool mem_to_mem, const struct videomode *vm);
395 int venc_init_platform_driver(void) __init;
396 void venc_uninit_platform_driver(void);
399 int hdmi4_init_platform_driver(void) __init;
400 void hdmi4_uninit_platform_driver(void);
402 int hdmi5_init_platform_driver(void) __init;
403 void hdmi5_uninit_platform_driver(void);
406 int rfbi_init_platform_driver(void) __init;
407 void rfbi_uninit_platform_driver(void);
410 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
411 static inline void dss_collect_irq_stats(u32 irqstatus, unsigned *irq_arr)
414 for (b = 0; b < 32; ++b) {
415 if (irqstatus & (1 << b))
422 typedef bool (*dss_pll_calc_func)(int n, int m, unsigned long fint,
423 unsigned long clkdco, void *data);
424 typedef bool (*dss_hsdiv_calc_func)(int m_dispc, unsigned long dispc,
427 int dss_pll_register(struct dss_pll *pll);
428 void dss_pll_unregister(struct dss_pll *pll);
429 struct dss_pll *dss_pll_find(const char *name);
430 struct dss_pll *dss_pll_find_by_src(enum dss_clk_source src);
431 unsigned dss_pll_get_clkout_idx_for_src(enum dss_clk_source src);
432 int dss_pll_enable(struct dss_pll *pll);
433 void dss_pll_disable(struct dss_pll *pll);
434 int dss_pll_set_config(struct dss_pll *pll,
435 const struct dss_pll_clock_info *cinfo);
437 bool dss_pll_hsdiv_calc_a(const struct dss_pll *pll, unsigned long clkdco,
438 unsigned long out_min, unsigned long out_max,
439 dss_hsdiv_calc_func func, void *data);
440 bool dss_pll_calc_a(const struct dss_pll *pll, unsigned long clkin,
441 unsigned long pll_min, unsigned long pll_max,
442 dss_pll_calc_func func, void *data);
444 bool dss_pll_calc_b(const struct dss_pll *pll, unsigned long clkin,
445 unsigned long target_clkout, struct dss_pll_clock_info *cinfo);
447 int dss_pll_write_config_type_a(struct dss_pll *pll,
448 const struct dss_pll_clock_info *cinfo);
449 int dss_pll_write_config_type_b(struct dss_pll *pll,
450 const struct dss_pll_clock_info *cinfo);
451 int dss_pll_wait_reset_done(struct dss_pll *pll);