Lines Matching refs:vmode
1243 fbinfo->var.vmode = FB_VMODE_NONINTERLACED; in s3c_fb_probe_win()
1290 struct fb_videomode *vmode = sfb->pdata->vtiming; in s3c_fb_set_rgb_timing() local
1295 if (!vmode->pixclock) in s3c_fb_set_rgb_timing()
1296 s3c_fb_missing_pixclock(vmode); in s3c_fb_set_rgb_timing()
1298 clkdiv = s3c_fb_calc_pixclk(sfb, vmode->pixclock); in s3c_fb_set_rgb_timing()
1312 data = VIDTCON0_VBPD(vmode->upper_margin - 1) | in s3c_fb_set_rgb_timing()
1313 VIDTCON0_VFPD(vmode->lower_margin - 1) | in s3c_fb_set_rgb_timing()
1314 VIDTCON0_VSPW(vmode->vsync_len - 1); in s3c_fb_set_rgb_timing()
1317 data = VIDTCON1_HBPD(vmode->left_margin - 1) | in s3c_fb_set_rgb_timing()
1318 VIDTCON1_HFPD(vmode->right_margin - 1) | in s3c_fb_set_rgb_timing()
1319 VIDTCON1_HSPW(vmode->hsync_len - 1); in s3c_fb_set_rgb_timing()
1322 data = VIDTCON2_LINEVAL(vmode->yres - 1) | in s3c_fb_set_rgb_timing()
1323 VIDTCON2_HOZVAL(vmode->xres - 1) | in s3c_fb_set_rgb_timing()
1324 VIDTCON2_LINEVAL_E(vmode->yres - 1) | in s3c_fb_set_rgb_timing()
1325 VIDTCON2_HOZVAL_E(vmode->xres - 1); in s3c_fb_set_rgb_timing()