Home
last modified time | relevance | path

Searched refs:hsync (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/sys/dev/videomode/
H A Dmodelines19 # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
20 ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
22 # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
23 ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
25 # 720x400 @ 70Hz (EDID established timing) hsync: 31.47kHz
26 ModeLine "720x400" 28.32 720 738 846 900 400 412 414 449 -hsync +vsync
28 # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
29 ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
31 # 720x400 @ 88Hz (EDID established timing) hsync: 39.44kHz
32 ModeLine "720x400" 35.5 720 738 846 900 400 421 423 449 -hsync
[all...]
/openbsd-src/sys/dev/pci/drm/i915/display/
H A Dvlv_dsi.c1019 u16 hactive, hfp, hsync, hbp, vfp, vsync; in bxt_dsi_get_pipe_config() local
1064 hsync = intel_de_read(dev_priv, MIPI_HSYNC_PADDING_COUNT(port)); in bxt_dsi_get_pipe_config()
1070 hsync = pixels_from_txbyteclkhs(hsync, bpp, lane_count, in bxt_dsi_get_pipe_config()
1077 hsync *= 2; in bxt_dsi_get_pipe_config()
1085 adjusted_mode->crtc_htotal = hactive + hfp + hsync + hbp; in bxt_dsi_get_pipe_config()
1087 adjusted_mode->crtc_hsync_end = hsync + adjusted_mode->crtc_hsync_start; in bxt_dsi_get_pipe_config()
1219 u16 hactive, hfp, hsync, hbp, vfp, vsync, vbp; in set_dsi_timings() local
1223 hsync = adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start; in set_dsi_timings()
1231 hsync /= 2; in set_dsi_timings()
1243 hsync = txbyteclkhs(hsync, bpp, lane_count, in set_dsi_timings()
[all …]
H A Dintel_vbt_defs.h1041 u16 hsync; member
H A Dintel_bios.c969 panel_fixed_mode->hsync_start + dtd->hsync; in parse_generic_dtd()
/openbsd-src/sys/dev/ic/
H A Dmonitors.h41 u_int16_t hsync; /* Horizontal Sync */ member
/openbsd-src/sys/dev/pci/drm/include/drm/
H A Ddrm_displayid.h118 u8 hsync[2]; member
/openbsd-src/sys/dev/pci/drm/
H A Ddrm_modes.c857 /* width of hsync as % of total line */ in drm_gtf_mode_complex()
876 int hsync, hfront_porch, vodd_front_porch_lines; in drm_gtf_mode_complex() local
981 hsync = H_SYNC_PERCENT * total_pixels / 100; in drm_gtf_mode_complex()
982 hsync = (hsync + GTF_CELL_GRAN / 2) / GTF_CELL_GRAN; in drm_gtf_mode_complex()
983 hsync = hsync * GTF_CELL_GRAN; in drm_gtf_mode_complex()
985 hfront_porch = hblank / 2 - hsync; in drm_gtf_mode_complex()
992 drm_mode->hsync_end = drm_mode->hsync_start + hsync; in drm_gtf_mode_complex()
H A Ddrm_edid.c3586 int hsync, hmin, hmax; in mode_in_hsync_range() local
3594 hsync = drm_mode_hsync(mode); in mode_in_hsync_range()
3596 return (hsync <= hmax && hsync >= hmin); in mode_in_hsync_range()
6678 unsigned hsync = (timings->hsync[0] | (timings->hsync[1] & 0x7f) << 8) + 1; in drm_mode_displayid_detailed() local
6684 bool hsync_positive = (timings->hsync[1] >> 7) & 0x1; in drm_mode_displayid_detailed()
6694 mode->hsync_start = mode->hdisplay + hsync; in drm_mode_displayid_detailed()
/openbsd-src/sys/dev/pci/
H A Dtga.c1650 ((m->hsync / 4) << 14) |
1656 ((m->hsync / 4) << 14) |
/openbsd-src/sys/sys/
H A Dvideoio.h5025 * @hsync: Horizontal Sync length in pixels
5060 u_int32_t hsync;
5163 ((bt)->hfrontporch + (bt)->hsync + (bt)->hbackporch)
2284 u_int32_t hsync; global() member
/openbsd-src/sys/arch/armv7/omap/
H A Domdisplay.c935 hsync = geom->width*den/nom + geom->horiz_sync_width + in omdisplay_initialize()