Home
last modified time | relevance | path

Searched refs:vtot (Results 1 – 5 of 5) sorted by relevance

/drivers/gpu/drm/gma500/
Dpsb_intel_display.c391 int vtot; in psb_intel_crtc_mode_get() local
400 vtot = REG_READ(map->vtotal); in psb_intel_crtc_mode_get()
406 vtot = p->vtotal; in psb_intel_crtc_mode_get()
419 mode->vdisplay = (vtot & 0xffff) + 1; in psb_intel_crtc_mode_get()
420 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; in psb_intel_crtc_mode_get()
Dcdv_intel_display.c939 int vtot; in cdv_intel_crtc_mode_get() local
945 vtot = REG_READ(map->vtotal); in cdv_intel_crtc_mode_get()
951 vtot = p->vtotal; in cdv_intel_crtc_mode_get()
964 mode->vdisplay = (vtot & 0xffff) + 1; in cdv_intel_crtc_mode_get()
965 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; in cdv_intel_crtc_mode_get()
/drivers/media/v4l2-core/
Dv4l2-dv-timings.c257 u32 htot, vtot; in v4l2_print_dv_timings() local
263 vtot = V4L2_DV_BT_FRAME_HEIGHT(bt); in v4l2_print_dv_timings()
270 (htot * vtot) > 0 ? ((u32)bt->pixelclock / (htot * vtot)) : 0, in v4l2_print_dv_timings()
271 htot, vtot); in v4l2_print_dv_timings()
/drivers/media/platform/vivid/
Dvivid-core.c851 u32 htot, vtot; in vivid_create_instance() local
857 vtot = V4L2_DV_BT_FRAME_HEIGHT(bt); in vivid_create_instance()
860 (u32)bt->pixelclock / (htot * vtot)); in vivid_create_instance()
/drivers/gpu/drm/i915/
Dintel_display.c8993 int vtot = I915_READ(VTOTAL(cpu_transcoder)); in intel_crtc_mode_get() local
9020 mode->vdisplay = (vtot & 0xffff) + 1; in intel_crtc_mode_get()
9021 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1; in intel_crtc_mode_get()