Searched refs:vtotal (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-11-stable/sys/dev/videomode/
H A Dmodelines2c.awk87 vtotal = $11;
113 vrefresh= int(((hrefresh * ifactor) / vtotal) + .1);
123 vsyncstart, vsyncend, vtotal, hflags "|" vflags iflags);
132 vsyncstart/2, vsyncend/2, vtotal/2,
H A Dvideomode.h43 int vtotal; member in struct:videomode
H A Dpickmode.c82 mref = this->dot_clock * 1000 / (this->htotal * this->vtotal);
135 (*preferred)->htotal), (*preferred)->vtotal);
161 mtemp->htotal), mtemp->vtotal);
175 modes[i].htotal), modes[i].vtotal));
H A Dvesagtf.c630 vmp->vtotal = total_v_lines;
671 vf = 1.0 * hf / vmp->vtotal;
683 vmp->vdisplay, vmp->vsync_start, vmp->vsync_end, vmp->vtotal);
H A Dedid.c268 edid->edid_modes[i].htotal), edid->edid_modes[i].vtotal));
276 edid->edid_modes[i].vtotal);
289 edid->edid_preferred_mode->vtotal));
311 mode->htotal), mode->vtotal);
317 edid->edid_modes[i].htotal), edid->edid_modes[i].vtotal)) {
403 vmp->vtotal = vactive + vblank;
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_modes.c57 mode->vsync_end, mode->vtotal, mode->type, mode->flags);
193 drm_mode->vtotal = vdisplay_rnd + 2 * vmargin +
249 drm_mode->vtotal = vdisplay_rnd + 2 * vmargin + vbilines;
265 drm_mode->vtotal *= 2;
448 drm_mode->vtotal = vtotal_lines;
453 drm_mode->vtotal *= 2;
637 else if (mode->htotal > 0 && mode->vtotal > 0) {
638 int vtotal; local
639 vtotal = mode->vtotal;
[all...]
H A Ddrm_irq.c492 DRM_DEBUG("crtc %d: hwmode: htotal %d, vtotal %d, vdisplay %d\n",
553 int vbl_status, vtotal, vdisplay; local
570 vtotal = mode->crtc_vtotal;
581 if (vtotal <= 0 || vdisplay <= 0 || framedur_ns == 0) {
661 ((vdisplay - vpos) < vtotal / 100)) {
H A Ddrm_mode.h91 __u16 vdisplay, vsync_start, vsync_end, vtotal, vscan; member in struct:drm_mode_modeinfo
H A Ddrm_edid.c883 mode->vtotal *= 2;
884 mode->vtotal |= 1;
961 mode->vtotal = mode->vdisplay + vblank;
963 /* Some EDIDs have bogus h/vtotal values */
966 if (mode->vsync_end > mode->vtotal)
967 mode->vtotal = mode->vsync_end + 1;
H A Ddrm_crtc.h118 .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \
144 int vtotal; member in struct:drm_display_mode
/freebsd-11-stable/sys/arm/allwinner/
H A Da10_fb.c346 u_int vtotal, framerate, clk; local
358 vbp = mode->vtotal - mode->vsync_start;
359 vbl = VBLANK_LEN(mode->vtotal, mode->vdisplay, interlace);
407 vtotal = VTOTAL(mode->vtotal);
410 mode->htotal), mode->vtotal);
411 clk = mode->htotal * (VTOTAL(mode->vtotal) + 1) * framerate;
413 vtotal += 1;
415 TCON_WRITE(sc, TCON1_BASIC4, BASIC4_VT(vtotal) | BASIC4_VBP(vbp));
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_crt.c466 uint32_t vtotal, vactive; local
492 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
522 if (vblank_start <= vactive && vblank_end >= vtotal) {
533 if (vblank_start - vactive >= vtotal - vblank_end)
536 vsample = (vtotal + vblank_end) >> 1;
H A Dintel_bios.c97 panel_fixed_mode->vtotal = panel_fixed_mode->vdisplay +
112 /* Some VBTs have bogus h/vtotal values */
115 if (panel_fixed_mode->vsync_end > panel_fixed_mode->vtotal)
116 panel_fixed_mode->vtotal = panel_fixed_mode->vsync_end + 1;
H A Dintel_panel.c53 adjusted_mode->vtotal = fixed_mode->vtotal;
H A Ddvo_ns2501.c292 ("%s: is mode valid (hdisplay=%d,htotal=%d,vdisplay=%d,vtotal=%d)\n",
294 mode->vtotal);
320 ("%s: set mode (hdisplay=%d,htotal=%d,vdisplay=%d,vtotal=%d).\n",
322 mode->vtotal);
H A Dintel_dvo.c236 C(vtotal);
H A Dintel_lvds.c837 scan->vtotal == fixed_mode->vtotal) {
H A Dintel_tv.c1155 .vtotal = 1104,
1413 mode_ptr->vtotal = vactive_s + 33;
1415 tmp = (u64) tv_mode->refresh * mode_ptr->vtotal;
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_encoders.c282 unsigned vblank = native_mode->vtotal - native_mode->vdisplay;
300 adjusted_mode->vtotal = native_mode->vdisplay + vblank;
H A Dradeon_display.c1559 int vbl_start, vbl_end, vtotal, ret = 0; local
1675 vtotal = rdev->mode_info.crtcs[crtc]->base.hwmode.crtc_vtotal;
1676 *vpos = *vpos - vtotal;
/freebsd-11-stable/sys/arm/ti/am335x/
H A Dtda19988.c438 n_line = mode->vtotal;
452 vwin1_line_start = mode->vtotal - mode->vdisplay - 1;
464 vwin1_line_start = (mode->vtotal - mode->vdisplay)/2;
471 vwin2_line_start = vwin1_line_start + mode->vtotal/2;
475 vs2_line_start = vs1_line_start + mode->vtotal/2 ;
H A Dam335x_lcd.c190 #define MODE_VBP(mode) ((mode)->vtotal - (mode)->vsync_end)
289 refresh = (refresh + mode->vtotal / 2) / mode->vtotal;
860 sc->sc_panel.panel_vbp = videomode->vtotal - videomode->vsync_end;
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx6_hdmi.c181 vblank = sc->sc_mode.vtotal - sc->sc_mode.vdisplay;
190 vbp = sc->sc_mode.vtotal - sc->sc_mode.vsync_end;
H A Dimx6_ipu.c73 #define MODE_VBP(mode) ((mode)->vtotal - (mode)->vsync_end)
693 sc->sc_mode->vtotal - 1, DI_SYNC_COUNTER(DI_COUNTER_INT_HSYNC),
701 IPU_WRITE4(sc, di_scr_conf, sc->sc_mode->vtotal - 1);
/freebsd-11-stable/sys/dev/bktr/
H A Dbktr_reg.h432 int vtotal, vdelay, vactive; member in struct:format_params

Completed in 189 milliseconds

12