Lines Matching refs:vmode
1242 fbinfo->var.vmode = FB_VMODE_NONINTERLACED; in s3c_fb_probe_win()
1288 struct fb_videomode *vmode = sfb->pdata->vtiming; in s3c_fb_set_rgb_timing() local
1293 if (!vmode->pixclock) in s3c_fb_set_rgb_timing()
1294 s3c_fb_missing_pixclock(vmode); in s3c_fb_set_rgb_timing()
1296 clkdiv = s3c_fb_calc_pixclk(sfb, vmode->pixclock); in s3c_fb_set_rgb_timing()
1310 data = VIDTCON0_VBPD(vmode->upper_margin - 1) | in s3c_fb_set_rgb_timing()
1311 VIDTCON0_VFPD(vmode->lower_margin - 1) | in s3c_fb_set_rgb_timing()
1312 VIDTCON0_VSPW(vmode->vsync_len - 1); in s3c_fb_set_rgb_timing()
1315 data = VIDTCON1_HBPD(vmode->left_margin - 1) | in s3c_fb_set_rgb_timing()
1316 VIDTCON1_HFPD(vmode->right_margin - 1) | in s3c_fb_set_rgb_timing()
1317 VIDTCON1_HSPW(vmode->hsync_len - 1); in s3c_fb_set_rgb_timing()
1320 data = VIDTCON2_LINEVAL(vmode->yres - 1) | in s3c_fb_set_rgb_timing()
1321 VIDTCON2_HOZVAL(vmode->xres - 1) | in s3c_fb_set_rgb_timing()
1322 VIDTCON2_LINEVAL_E(vmode->yres - 1) | in s3c_fb_set_rgb_timing()
1323 VIDTCON2_HOZVAL_E(vmode->xres - 1); in s3c_fb_set_rgb_timing()