aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2/dss/dss.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2011-11-04 12:14:20 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2011-12-02 01:54:27 -0500
commitc64dca40c5cf1cc61355411dcfb90949e57afdf0 (patch)
tree345c78502c37fd0014c84e6c922033824d9fc942 /drivers/video/omap2/dss/dss.h
parent2cc5d1af5ad0a130fa5812f99bca18e0cdadbd36 (diff)
OMAPDSS: setup manager with dispc_mgr_setup()
Change manager configuration to be similar to overlay configuration by creating dispc_mgr_setup() which takes omap_overlay_manager_info as parameter. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dss.h')
-rw-r--r--drivers/video/omap2/dss/dss.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/video/omap2/dss/dss.h b/drivers/video/omap2/dss/dss.h
index 11c72d15ead2..a8022578c603 100644
--- a/drivers/video/omap2/dss/dss.h
+++ b/drivers/video/omap2/dss/dss.h
@@ -405,9 +405,6 @@ void dispc_ovl_set_channel_out(enum omap_plane plane,
405 405
406void dispc_mgr_enable_fifohandcheck(enum omap_channel channel, bool enable); 406void dispc_mgr_enable_fifohandcheck(enum omap_channel channel, bool enable);
407void dispc_mgr_set_lcd_size(enum omap_channel channel, u16 width, u16 height); 407void dispc_mgr_set_lcd_size(enum omap_channel channel, u16 width, u16 height);
408void dispc_mgr_enable_cpr(enum omap_channel channel, bool enable);
409void dispc_mgr_set_cpr_coef(enum omap_channel channel,
410 struct omap_dss_cpr_coefs *coefs);
411bool dispc_mgr_go_busy(enum omap_channel channel); 408bool dispc_mgr_go_busy(enum omap_channel channel);
412void dispc_mgr_go(enum omap_channel channel); 409void dispc_mgr_go(enum omap_channel channel);
413bool dispc_mgr_is_enabled(enum omap_channel channel); 410bool dispc_mgr_is_enabled(enum omap_channel channel);
@@ -418,16 +415,10 @@ void dispc_mgr_enable_stallmode(enum omap_channel channel, bool enable);
418void dispc_mgr_set_tft_data_lines(enum omap_channel channel, u8 data_lines); 415void dispc_mgr_set_tft_data_lines(enum omap_channel channel, u8 data_lines);
419void dispc_mgr_set_lcd_display_type(enum omap_channel channel, 416void dispc_mgr_set_lcd_display_type(enum omap_channel channel,
420 enum omap_lcd_display_type type); 417 enum omap_lcd_display_type type);
421void dispc_mgr_set_default_color(enum omap_channel channel, u32 color);
422u32 dispc_mgr_get_default_color(enum omap_channel channel); 418u32 dispc_mgr_get_default_color(enum omap_channel channel);
423void dispc_mgr_set_trans_key(enum omap_channel ch,
424 enum omap_dss_trans_key_type type,
425 u32 trans_key);
426void dispc_mgr_get_trans_key(enum omap_channel ch, 419void dispc_mgr_get_trans_key(enum omap_channel ch,
427 enum omap_dss_trans_key_type *type, 420 enum omap_dss_trans_key_type *type,
428 u32 *trans_key); 421 u32 *trans_key);
429void dispc_mgr_enable_trans_key(enum omap_channel ch, bool enable);
430void dispc_mgr_enable_alpha_fixed_zorder(enum omap_channel ch, bool enable);
431bool dispc_mgr_trans_key_enabled(enum omap_channel ch); 422bool dispc_mgr_trans_key_enabled(enum omap_channel ch);
432bool dispc_mgr_alpha_fixed_zorder_enabled(enum omap_channel ch); 423bool dispc_mgr_alpha_fixed_zorder_enabled(enum omap_channel ch);
433void dispc_mgr_set_lcd_timings(enum omap_channel channel, 424void dispc_mgr_set_lcd_timings(enum omap_channel channel,
@@ -440,6 +431,8 @@ int dispc_mgr_set_clock_div(enum omap_channel channel,
440 struct dispc_clock_info *cinfo); 431 struct dispc_clock_info *cinfo);
441int dispc_mgr_get_clock_div(enum omap_channel channel, 432int dispc_mgr_get_clock_div(enum omap_channel channel,
442 struct dispc_clock_info *cinfo); 433 struct dispc_clock_info *cinfo);
434void dispc_mgr_setup(enum omap_channel channel,
435 struct omap_overlay_manager_info *info);
443 436
444/* VENC */ 437/* VENC */
445#ifdef CONFIG_OMAP2_DSS_VENC 438#ifdef CONFIG_OMAP2_DSS_VENC