aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2/dss/dispc.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/omap2/dss/dispc.c')
-rw-r--r--drivers/video/omap2/dss/dispc.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c
index 1f4a3275d10..957c0496279 100644
--- a/drivers/video/omap2/dss/dispc.c
+++ b/drivers/video/omap2/dss/dispc.c
@@ -3165,35 +3165,6 @@ static void dispc_dump_regs(struct seq_file *s)
3165#undef DUMPREG 3165#undef DUMPREG
3166} 3166}
3167 3167
3168static void _dispc_mgr_set_pol_freq(enum omap_channel channel, bool onoff,
3169 bool rf, bool ieo, bool ipc, bool ihs, bool ivs)
3170{
3171 u32 l = 0;
3172
3173 DSSDBG("onoff %d rf %d ieo %d ipc %d ihs %d ivs %d\n",
3174 onoff, rf, ieo, ipc, ihs, ivs);
3175
3176 l |= FLD_VAL(onoff, 17, 17);
3177 l |= FLD_VAL(rf, 16, 16);
3178 l |= FLD_VAL(ieo, 15, 15);
3179 l |= FLD_VAL(ipc, 14, 14);
3180 l |= FLD_VAL(ihs, 13, 13);
3181 l |= FLD_VAL(ivs, 12, 12);
3182
3183 dispc_write_reg(DISPC_POL_FREQ(channel), l);
3184}
3185
3186void dispc_mgr_set_pol_freq(enum omap_channel channel,
3187 enum omap_panel_config config)
3188{
3189 _dispc_mgr_set_pol_freq(channel, (config & OMAP_DSS_LCD_ONOFF) != 0,
3190 (config & OMAP_DSS_LCD_RF) != 0,
3191 (config & OMAP_DSS_LCD_IEO) != 0,
3192 (config & OMAP_DSS_LCD_IPC) != 0,
3193 (config & OMAP_DSS_LCD_IHS) != 0,
3194 (config & OMAP_DSS_LCD_IVS) != 0);
3195}
3196
3197/* with fck as input clock rate, find dispc dividers that produce req_pck */ 3168/* with fck as input clock rate, find dispc dividers that produce req_pck */
3198void dispc_find_clk_divs(unsigned long req_pck, unsigned long fck, 3169void dispc_find_clk_divs(unsigned long req_pck, unsigned long fck,
3199 struct dispc_clock_info *cinfo) 3170 struct dispc_clock_info *cinfo)