diff options
Diffstat (limited to 'drivers/video/omap2/dss/dispc.h')
-rw-r--r-- | drivers/video/omap2/dss/dispc.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dispc.h b/drivers/video/omap2/dss/dispc.h index c06efc38983e..5836bd1650f9 100644 --- a/drivers/video/omap2/dss/dispc.h +++ b/drivers/video/omap2/dss/dispc.h | |||
@@ -97,6 +97,17 @@ | |||
97 | #define DISPC_OVL_PRELOAD(n) (DISPC_OVL_BASE(n) + \ | 97 | #define DISPC_OVL_PRELOAD(n) (DISPC_OVL_BASE(n) + \ |
98 | DISPC_PRELOAD_OFFSET(n)) | 98 | DISPC_PRELOAD_OFFSET(n)) |
99 | 99 | ||
100 | /* DISPC up/downsampling FIR filter coefficient structure */ | ||
101 | struct dispc_coef { | ||
102 | s8 hc4_vc22; | ||
103 | s8 hc3_vc2; | ||
104 | u8 hc2_vc1; | ||
105 | s8 hc1_vc0; | ||
106 | s8 hc0_vc00; | ||
107 | }; | ||
108 | |||
109 | const struct dispc_coef *dispc_ovl_get_scale_coef(int inc, int five_taps); | ||
110 | |||
100 | /* DISPC manager/channel specific registers */ | 111 | /* DISPC manager/channel specific registers */ |
101 | static inline u16 DISPC_DEFAULT_COLOR(enum omap_channel channel) | 112 | static inline u16 DISPC_DEFAULT_COLOR(enum omap_channel channel) |
102 | { | 113 | { |