Home
last modified time | relevance | path

Searched refs:htot (Results 1 – 6 of 6) sorted by relevance

/drivers/gpu/drm/gma500/
Dpsb_intel_display.c389 int htot; in psb_intel_crtc_mode_get() local
398 htot = REG_READ(map->htotal); in psb_intel_crtc_mode_get()
404 htot = p->htotal; in psb_intel_crtc_mode_get()
415 mode->hdisplay = (htot & 0xffff) + 1; in psb_intel_crtc_mode_get()
416 mode->htotal = ((htot & 0xffff0000) >> 16) + 1; in psb_intel_crtc_mode_get()
Dcdv_intel_display.c937 int htot; in cdv_intel_crtc_mode_get() local
943 htot = REG_READ(map->htotal); in cdv_intel_crtc_mode_get()
949 htot = p->htotal; in cdv_intel_crtc_mode_get()
960 mode->hdisplay = (htot & 0xffff) + 1; in cdv_intel_crtc_mode_get()
961 mode->htotal = ((htot & 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
262 htot = V4L2_DV_BT_FRAME_WIDTH(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/video/fbdev/
Dgxt4500.c381 unsigned int prefetch_pix, htot; in gxt4500_set_par() local
427 htot = var->xres + var->left_margin + var->right_margin + in gxt4500_set_par()
429 writereg(par, DTG_HORIZ_EXTENT, htot - 1); in gxt4500_set_par()
444 if (prefetch_pix >= htot) in gxt4500_set_par()
445 prefetch_pix = htot - 1; in gxt4500_set_par()
446 writereg(par, DTG_VERT_SHORT, htot - prefetch_pix - 1); in gxt4500_set_par()
/drivers/media/platform/vivid/
Dvivid-core.c851 u32 htot, vtot; in vivid_create_instance() local
856 htot = V4L2_DV_BT_FRAME_WIDTH(bt); in vivid_create_instance()
860 (u32)bt->pixelclock / (htot * vtot)); in vivid_create_instance()
/drivers/gpu/drm/i915/
Dintel_display.c8991 int htot = I915_READ(HTOTAL(cpu_transcoder)); in intel_crtc_mode_get() local
9016 mode->hdisplay = (htot & 0xffff) + 1; in intel_crtc_mode_get()
9017 mode->htotal = ((htot & 0xffff0000) >> 16) + 1; in intel_crtc_mode_get()