Home
last modified time | relevance | path

Searched refs:calc_val (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/u-boot/drivers/video/drm/
H A Drockchip_display_helper.c72 unsigned int calc_val; in drm_mode_vrefresh() local
81 calc_val = (mode->clock * 1000); in drm_mode_vrefresh()
82 calc_val /= mode->htotal; in drm_mode_vrefresh()
83 refresh = (calc_val + vtotal / 2) / vtotal; in drm_mode_vrefresh()
/OK3568_Linux_fs/u-boot/common/
H A Dedid.c1936 unsigned int calc_val; in drm_get_vrefresh() local
1945 calc_val = (mode->clock * 1000); in drm_get_vrefresh()
1946 calc_val /= mode->htotal; in drm_get_vrefresh()
1947 refresh = (calc_val + vtotal / 2) / vtotal; in drm_get_vrefresh()
4521 unsigned int calc_val; in drm_mode_hsync() local
4526 calc_val = (mode->clock * 1000) / mode->htotal; /* hsync in Hz */ in drm_mode_hsync()
4527 calc_val += 500; /* round to 1000Hz */ in drm_mode_hsync()
4528 calc_val /= 1000; /* truncate to kHz */ in drm_mode_hsync()
4530 return calc_val; in drm_mode_hsync()