HomeSort by: relevance | last modified time | path
    Searched refs:vsync_start (Results 1 - 25 of 50) sorted by relevancy

1 2

  /src/sys/dev/videomode/
videomode.h 40 int vsync_start; member in struct:videomode
vesagtf.c 623 vmp->vsync_start = v_lines + v_odd_front_porch_lines;
624 vmp->vsync_end = vmp->vsync_start + params->vsync_rqd;
679 vmp->vdisplay, vmp->vsync_start, vmp->vsync_end, vmp->vtotal);
edid.c 281 edid->edid_modes[i].vsync_start,
411 vmp->vsync_start = vactive + vsyncoff;
412 vmp->vsync_end = vmp->vsync_start + vsyncwid;
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_encoders.c 177 unsigned vover = native_mode->vsync_start - native_mode->vdisplay;
179 unsigned vsync_width = native_mode->vsync_end - native_mode->vsync_start;
192 adjusted_mode->vsync_start = native_mode->vdisplay + vover;
193 adjusted_mode->vsync_end = adjusted_mode->vsync_start + vsync_width;
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_modes.h 141 .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \
157 .htotal = (hd), .vdisplay = (vd), .vsync_start = (vd), \
183 * @vsync_start: vertical sync start
290 int vsync_start; member in struct:drm_display_mode
446 (m)->vdisplay, (m)->vsync_start, (m)->vsync_end, (m)->vtotal, \
  /src/sys/external/bsd/drm2/dist/drm/
drm_modes.c 294 drm_mode->vsync_start = drm_mode->vdisplay + CVT_MIN_V_PORCH;
295 drm_mode->vsync_end = drm_mode->vsync_start + vsync;
326 drm_mode->vsync_start = drm_mode->vdisplay + CVT_RB_VFPORCH;
327 drm_mode->vsync_end = drm_mode->vsync_start + vsync;
525 drm_mode->vsync_start = vdisplay_rnd + vodd_front_porch_lines;
526 drm_mode->vsync_end = drm_mode->vsync_start + V_SYNC_RQD;
607 dmode->vsync_start = dmode->vdisplay + vm->vfront_porch;
608 dmode->vsync_end = dmode->vsync_start + vm->vsync_len;
648 vm->vfront_porch = dmode->vsync_start - dmode->vdisplay;
649 vm->vsync_len = dmode->vsync_end - dmode->vsync_start;
    [all...]
  /src/usr.sbin/grfconfig/
grfconfig.c 179 gv->vsync_start = atoi(cps[10]);
203 (gv->vsync_start == 0) ||
265 gv->vsync_start *= 2;
276 gv->vsync_start /= 2;
381 gv->vsync_start,
  /src/sys/arch/arm/iomd/
vidc20config.c 493 vidcvideo_write(VIDC_VSWR, vm->vsync_end - vm->vsync_start - 1);
494 vidcvideo_write(VIDC_VBSR, vm->vtotal - vm->vsync_start - 1);
495 vidcvideo_write(VIDC_VDSR, vm->vtotal - vm->vsync_start - 1);
497 vm->vtotal - vm->vsync_start + vm->vdisplay - 1);
499 vm->vtotal - vm->vsync_start + vm->vdisplay - 1);
655 vidc_currentmode.timings.vsync_start;
  /src/sys/arch/amiga/dev/
grfioctl.h 94 u_short vsync_start; member in struct:grfvideo_mode
grf_ul.c 386 ba->data = md->vsync_stop - md->vsync_start;
387 ba->data = md->vtotal - md->vsync_start - 1;
388 ba->data = md->vblank_start + md->vtotal - md->vsync_start - 1;
595 vm->vsync_start = md->vsync_start;
  /src/sys/dev/ic/
igsfb_subr.c 486 int vsync_start, hsync_start, vsync_end, hsync_end; local in function:igsfb_set_mode
519 ((mode->vsync_start & 0x400) >> 8) |
520 ((mode->vsync_start & 0x400) >> 7) |
555 vblank_start = uimin(mode->vsync_start, mode->vdisplay);
558 vsync_start = mode->vsync_start;
569 ((vsync_start & 0x200) >> 2) |
574 ((vsync_start & 0x100) >> 6) |
588 igs_crtc_write(iot, ioh, 0x10, vsync_start & 0xff);
vga_raster.c 939 | ((mode->vsync_start & 0x100) >> 6)
940 | (((mode->vsync_start - 1) & 0x100) >> 5)
944 | ((mode->vsync_start & 0x200) >> 2);
946 regs->crtc[9] = (((mode->vsync_start - 1) & 0x200) >> 4) | 0x40;
955 regs->crtc[16] = mode->vsync_start & 0xff;
960 regs->crtc[21] = (mode->vsync_start - 1) & 0xff;
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_encoders.c 338 unsigned vover = native_mode->vsync_start - native_mode->vdisplay;
340 unsigned vsync_width = native_mode->vsync_end - native_mode->vsync_start;
355 adjusted_mode->vsync_start = native_mode->vdisplay + vover;
356 adjusted_mode->vsync_end = adjusted_mode->vsync_start + vsync_width;
  /src/sys/arch/atari/dev/
grfioctl.h 103 u_short vsync_start; member in struct:grfvideo_mode
grfabs_et.c 538 regs->crt[CRT_ID_START_VER_RETR] = mode->vsync_start;
558 ((mode->vsync_start & 0x100) ? 0x04 : 0x00) |
562 ((mode->vsync_start & 0x200) ? 0x80 : 0x00);
568 ((mode->vsync_start & 0x400) ? 0x08 : 0x00) |
  /src/sys/external/bsd/drm/dist/shared-core/
drm_mode.h 88 uint16_t vdisplay, vsync_start, vsync_end, vtotal, vscan; member in struct:drm_mode_modeinfo
  /src/sys/arch/arm/rockchip/
rk_vop.c 315 uint32_t vtotal, vsync_start; local in function:rk_vop_plane_atomic_update
336 vsync_start = mode->vsync_start;
338 __SHIFTIN(dst->y1 + vtotal - vsync_start, WIN0_DSP_YST);
473 const u_int vsync_len = adjusted_mode->vsync_end - adjusted_mode->vsync_start;
475 const u_int vfront_porch = adjusted_mode->vsync_start - adjusted_mode->vdisplay;
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_tv.c 1013 * vsync_start
1023 mode->vsync_start = mode->vdisplay +
1025 mode->vsync_end = mode->vsync_start +
1030 mode->vsync_start = mode->vdisplay +
1033 mode->vsync_end = mode->vsync_start +
1074 int vsync_start = mode->vsync_start - mode->vdisplay + bottom_margin; local in function:intel_tv_scale_mode_vert
1082 mode->vsync_start = vdisplay + vsync_start * new_vtotal / mode->vtotal;
icl_dsi.c 806 u16 vtotal, vactive, vsync_start, vsync_end, vsync_shift; local in function:gen11_dsi_set_transcoder_timings
831 vsync_start = adjusted_mode->crtc_vsync_start;
894 if (vsync_end < vsync_start || vsync_end > vtotal)
897 if (vsync_start < vactive)
898 DRM_ERROR("vsync_start less than vactive\n");
904 (vsync_start - 1) | ((vsync_end - 1) << 16));
intel_bios.c 140 panel_fixed_mode->vsync_start = panel_fixed_mode->vdisplay +
142 panel_fixed_mode->vsync_end = panel_fixed_mode->vsync_start +
370 panel_fixed_mode->vsync_start =
373 panel_fixed_mode->vsync_start + dtd->vsync;
  /src/sys/arch/arm/sunxi/
sunxi_tcon.c 558 mode.vsync_start = lcd_vt - lcd_vbp;
559 mode.vsync_end = lcd_vspw + mode.vsync_start;
736 const u_int vspw = mode->vsync_end - mode->vsync_start;
737 const u_int vbp = mode->vtotal - mode->vsync_start;
sunxi_hdmi.c 844 const u_int vfp = mode->vsync_start - mode->vdisplay;
845 const u_int vspw = mode->vsync_end - mode->vsync_start;
846 const u_int vbp = mode->vtotal - mode->vsync_start;
  /src/sys/dev/pci/
machfb.c 933 int vtotal, vdisplay, vsync_start, vsync_end; local in function:mach64_get_mode
966 vsync_start = (vsync_end & 0x07ff) + 1;
967 vsync_end = ((vsync_end & 0x1f0000) >> 16) + vsync_start;
992 hsync_start, hsync_end, htotal, vsync_start, vsync_end, vtotal,
1003 mode->vsync_start = vsync_start;
1081 ((mode->vsync_end - mode->vsync_start) << 16) |
1082 (mode->vsync_start - 1);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
nouveau_dispnv04_tvnv17.c 285 mode->vsync_start = output_mode->vsync_start;
549 output_mode->vsync_start - 1;
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
drm_mode.h 231 __u16 vsync_start; member in struct:drm_mode_modeinfo

Completed in 31 milliseconds

1 2