Home
last modified time | relevance | path

Searched refs:vbl (Results 1 – 13 of 13) sorted by relevance

/dragonfly/contrib/mdocml/
H A Dterm.c110 if (p->minbl && vbl < p->minbl) in term_flushln()
111 vbl = p->minbl; in term_flushln()
151 vbl += (vtarget - vbr) / 2; in term_flushln()
153 vbl += vtarget - vbr; in term_flushln()
158 term_field(p, vbl, nbr); in term_flushln()
371 vbl += vn - vis; in term_field()
377 vbl += dv; in term_field()
389 if (vbl > 0) { in term_field()
390 (*p->advance)(p, vbl); in term_field()
391 p->viscol += vbl; in term_field()
[all …]
/dragonfly/sys/dev/drm/radeon/
H A Dradeon_display.c1835 u32 stat_crtc = 0, vbl = 0, position = 0; in radeon_get_crtc_scanoutpos() local
1849 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + in radeon_get_crtc_scanoutpos()
1856 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + in radeon_get_crtc_scanoutpos()
1863 vbl = RREG32(EVERGREEN_CRTC_V_BLANK_START_END + in radeon_get_crtc_scanoutpos()
1892 vbl = RREG32(AVIVO_D1CRTC_V_BLANK_START_END); in radeon_get_crtc_scanoutpos()
1897 vbl = RREG32(AVIVO_D2CRTC_V_BLANK_START_END); in radeon_get_crtc_scanoutpos()
1907 vbl = (RREG32(RADEON_CRTC_V_TOTAL_DISP) & in radeon_get_crtc_scanoutpos()
1918 vbl = (RREG32(RADEON_CRTC2_V_TOTAL_DISP) & in radeon_get_crtc_scanoutpos()
1940 if (vbl > 0) { in radeon_get_crtc_scanoutpos()
1943 vbl_start = vbl & 0x1fff; in radeon_get_crtc_scanoutpos()
[all …]
/dragonfly/sys/dev/drm/amd/amdgpu/
H A Damdgpu_display.c780 u32 vbl = 0, position = 0; in amdgpu_display_get_crtc_scanoutpos() local
792 if (amdgpu_display_page_flip_get_scanoutpos(adev, pipe, &vbl, &position) == 0) in amdgpu_display_get_crtc_scanoutpos()
806 if (vbl > 0) { in amdgpu_display_get_crtc_scanoutpos()
809 vbl_start = vbl & 0x1fff; in amdgpu_display_get_crtc_scanoutpos()
810 vbl_end = (vbl >> 16) & 0x1fff; in amdgpu_display_get_crtc_scanoutpos()
H A Ddce_virtual.c64 u32 *vbl, u32 *position) in dce_virtual_crtc_get_scanoutpos() argument
66 *vbl = 0; in dce_virtual_crtc_get_scanoutpos()
H A Damdgpu_mode.h284 u32 *vbl, u32 *position);
H A Damdgpu.h1773 …age_flip_get_scanoutpos(adev, crtc, vbl, pos) (adev)->mode_info.funcs->page_flip_get_scanoutpos((a… argument
H A Ddce_v10_0.c253 u32 *vbl, u32 *position) in dce_v10_0_crtc_get_scanoutpos() argument
258 *vbl = RREG32(mmCRTC_V_BLANK_START_END + crtc_offsets[crtc]); in dce_v10_0_crtc_get_scanoutpos()
H A Ddce_v11_0.c271 u32 *vbl, u32 *position) in dce_v11_0_crtc_get_scanoutpos() argument
276 *vbl = RREG32(mmCRTC_V_BLANK_START_END + crtc_offsets[crtc]); in dce_v11_0_crtc_get_scanoutpos()
/dragonfly/sys/dev/drm/
H A Ddrm_vblank.c814 e->event.vbl.sequence = seq; in send_vblank_event()
820 e->event.vbl.tv_sec = tv.tv_sec; in send_vblank_event()
821 e->event.vbl.tv_usec = tv.tv_nsec / 1000; in send_vblank_event()
1346 e->event.base.length = sizeof(e->event.vbl); in drm_queue_vblank_event()
1347 e->event.vbl.user_data = vblwait->request.signal; in drm_queue_vblank_event()
1348 e->event.vbl.crtc_id = 0; in drm_queue_vblank_event()
1352 e->event.vbl.crtc_id = crtc->base.id; in drm_queue_vblank_event()
H A Ddrm_plane.c1030 e->event.vbl.user_data = page_flip->user_data; in drm_mode_page_flip_ioctl()
1031 e->event.vbl.crtc_id = crtc->base.id; in drm_mode_page_flip_ioctl()
H A Ddrm_atomic.c1827 e->event.vbl.crtc_id = crtc->base.id; in create_vblank_event()
1828 e->event.vbl.user_data = user_data; in create_vblank_event()
/dragonfly/sys/dev/drm/include/drm/
H A Ddrm_vblank.h59 struct drm_event_vblank vbl; member
/dragonfly/sys/dev/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm.c179 u32 *vbl, u32 *position) in dm_crtc_get_scanoutpos() argument
207 *vbl = v_blank_start | (v_blank_end << 16); in dm_crtc_get_scanoutpos()