Home
last modified time | relevance | path

Searched refs:vfreq (Results 1 – 7 of 7) sorted by relevance

/openbmc/u-boot/common/
H A Dedid.c287 uint32_t h_total, v_total, vfreq; in edid_print_dtd() local
298 vfreq = pixclock / (v_total * h_total); in edid_print_dtd()
300 vfreq = 1; /* Error case */ in edid_print_dtd()
302 v_active, h_active > 1000 ? ' ' : '\t', vfreq); in edid_print_dtd()
423 unsigned char xres, vfreq; in edid_print_info() local
426 vfreq = EDID1_INFO_STANDARD_TIMING_VFREQ(*edid_info, i); in edid_print_info()
427 if ((xres != vfreq) || in edid_print_info()
429 ((vfreq != 0) && (vfreq != 1))) { in edid_print_info()
448 x > 1000 ? ' ' : '\t', (vfreq & 0x3f) + 60); in edid_print_info()
/openbmc/linux/drivers/video/fbdev/core/
H A Dfbmon.c1019 u32 vfreq; member
1139 static u32 fb_get_hfreq(u32 vfreq, u32 yres) in fb_get_hfreq() argument
1143 divisor = (1000000 - (vfreq * FLYBACK))/1000; in fb_get_hfreq()
1144 hfreq = (yres + V_FRONTPORCH) * vfreq * 1000; in fb_get_hfreq()
1263 if (timings->vfreq > vfmax) { in fb_get_mode()
1264 timings->vfreq = vfmax; in fb_get_mode()
1273 timings->vfreq = val; in fb_get_mode()
1290 (timings->vfreq < vfmin || timings->vfreq > vfmax || in fb_get_mode()
1436 u32 hfreq, vfreq, htotal, vtotal, pixclock; in fb_validate_mode() local
1477 vfreq = hfreq/vtotal; in fb_validate_mode()
[all …]
/openbmc/linux/drivers/video/fbdev/
H A Dplatinumfb.h342 int vfreq; member
H A Datafb.c897 int hfreq, vfreq; in falcon_decode_var() local
1285 vfreq = (hfreq * 2) / (par->VFT + 1); in falcon_decode_var()
1286 if (vfreq > fb_info.monspecs.vfmax && !doubleline && !interlace) { in falcon_decode_var()
1290 } else if (vfreq < fb_info.monspecs.vfmin && !interlace && !doubleline) { in falcon_decode_var()
1294 } else if (vfreq < fb_info.monspecs.vfmin && doubleline) { in falcon_decode_var()
1306 } else if (vfreq > fb_info.monspecs.vfmax && doubleline) { in falcon_decode_var()
1317 } else if (vfreq > fb_info.monspecs.vfmax && interlace) { in falcon_decode_var()
1328 } else if (vfreq < fb_info.monspecs.vfmin || in falcon_decode_var()
1329 vfreq > fb_info.monspecs.vfmax) in falcon_decode_var()
/openbmc/linux/drivers/video/fbdev/i810/
H A Di810_main.c2018 int err = -1, vfreq, hfreq, pixclock; in i810fb_init_pci() local
2082 vfreq = hfreq/(info->var.yres + info->var.upper_margin + in i810fb_init_pci()
2095 info->var.yres, info->var.bits_per_pixel, vfreq); in i810fb_init_pci()
/openbmc/linux/drivers/video/fbdev/matrox/
H A Dmatroxfb_base.c2195 static struct { int xres, yres, left, right, upper, lower, hslen, vslen, vfreq; } timmings[] __init… member
2308 fv = timmings[res].vfreq; in matroxfb_init_params()
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_edid.c3307 unsigned vfreq = (t->vfreq_aspect & EDID_TIMING_VFREQ_MASK) in drm_mode_std() local
3317 vrefresh_rate = vfreq + 60; in drm_mode_std()