aboutsummaryrefslogtreecommitdiffstats
path: root/include/video/omapdss.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/video/omapdss.h')
-rw-r--r--include/video/omapdss.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h
index 4f52f523fba4..0324c7b8a3e0 100644
--- a/include/video/omapdss.h
+++ b/include/video/omapdss.h
@@ -23,6 +23,8 @@
23#include <linux/device.h> 23#include <linux/device.h>
24#include <linux/interrupt.h> 24#include <linux/interrupt.h>
25 25
26#include <video/videomode.h>
27
26#define DISPC_IRQ_FRAMEDONE (1 << 0) 28#define DISPC_IRQ_FRAMEDONE (1 << 0)
27#define DISPC_IRQ_VSYNC (1 << 1) 29#define DISPC_IRQ_VSYNC (1 << 1)
28#define DISPC_IRQ_EVSYNC_EVEN (1 << 2) 30#define DISPC_IRQ_EVSYNC_EVEN (1 << 2)
@@ -768,6 +770,11 @@ const char *omapdss_get_default_display_name(void);
768int omap_dss_start_device(struct omap_dss_device *dssdev); 770int omap_dss_start_device(struct omap_dss_device *dssdev);
769void omap_dss_stop_device(struct omap_dss_device *dssdev); 771void omap_dss_stop_device(struct omap_dss_device *dssdev);
770 772
773void videomode_to_omap_video_timings(const struct videomode *vm,
774 struct omap_video_timings *ovt);
775void omap_video_timings_to_videomode(const struct omap_video_timings *ovt,
776 struct videomode *vm);
777
771int dss_feat_get_num_mgrs(void); 778int dss_feat_get_num_mgrs(void);
772int dss_feat_get_num_ovls(void); 779int dss_feat_get_num_ovls(void);
773enum omap_display_type dss_feat_get_supported_displays(enum omap_channel channel); 780enum omap_display_type dss_feat_get_supported_displays(enum omap_channel channel);