Searched refs:htot (Results 1 – 6 of 6) sorted by relevance
/linux-4.4.14/drivers/gpu/drm/gma500/ |
D | psb_intel_display.c | 390 int htot; in psb_intel_crtc_mode_get() local 399 htot = REG_READ(map->htotal); in psb_intel_crtc_mode_get() 405 htot = p->htotal; in psb_intel_crtc_mode_get() 416 mode->hdisplay = (htot & 0xffff) + 1; in psb_intel_crtc_mode_get() 417 mode->htotal = ((htot & 0xffff0000) >> 16) + 1; in psb_intel_crtc_mode_get()
|
D | cdv_intel_display.c | 937 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()
|
/linux-4.4.14/drivers/video/fbdev/ |
D | gxt4500.c | 382 unsigned int prefetch_pix, htot; in gxt4500_set_par() local 428 htot = var->xres + var->left_margin + var->right_margin + in gxt4500_set_par() 430 writereg(par, DTG_HORIZ_EXTENT, htot - 1); in gxt4500_set_par() 445 if (prefetch_pix >= htot) in gxt4500_set_par() 446 prefetch_pix = htot - 1; in gxt4500_set_par() 447 writereg(par, DTG_VERT_SHORT, htot - prefetch_pix - 1); in gxt4500_set_par()
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-dv-timings.c | 258 u32 htot, vtot; in v4l2_print_dv_timings() local 264 htot = V4L2_DV_BT_FRAME_WIDTH(bt); in v4l2_print_dv_timings() 269 fps = (htot * vtot) > 0 ? div_u64((100 * (u64)bt->pixelclock), in v4l2_print_dv_timings() 270 (htot * vtot)) : 0; in v4l2_print_dv_timings() 277 fps / 100, fps % 100, htot, vtot); in v4l2_print_dv_timings()
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | vivid-core.c | 868 u32 htot, vtot; in vivid_create_instance() local 873 htot = V4L2_DV_BT_FRAME_WIDTH(bt); in vivid_create_instance() 877 (u32)bt->pixelclock / (htot * vtot)); in vivid_create_instance()
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_display.c | 10679 int htot = I915_READ(HTOTAL(cpu_transcoder)); in intel_crtc_mode_get() local 10704 mode->hdisplay = (htot & 0xffff) + 1; in intel_crtc_mode_get() 10705 mode->htotal = ((htot & 0xffff0000) >> 16) + 1; in intel_crtc_mode_get()
|