Home
last modified time | relevance | path

Searched refs:vco_max (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/dev/drm/amd/amdgpu/
H A Damdgpu_pll.c157 unsigned vco_min, vco_max; in amdgpu_pll_compute() local
161 vco_max = pll->lcd_pll_out_max; in amdgpu_pll_compute()
164 vco_max = pll->pll_out_max; in amdgpu_pll_compute()
169 vco_max *= 10; in amdgpu_pll_compute()
178 post_div_max = vco_max / target_clock; in amdgpu_pll_compute()
179 if ((target_clock * post_div_max) > vco_max) in amdgpu_pll_compute()
/dragonfly/sys/dev/drm/radeon/
H A Dradeon_display.c995 unsigned vco_min, vco_max; in radeon_compute_pll_avivo() local
999 vco_max = pll->lcd_pll_out_max; in radeon_compute_pll_avivo()
1002 vco_max = pll->pll_out_max; in radeon_compute_pll_avivo()
1007 vco_max *= 10; in radeon_compute_pll_avivo()
1016 post_div_max = vco_max / target_clock; in radeon_compute_pll_avivo()
1017 if ((target_clock * post_div_max) > vco_max) in radeon_compute_pll_avivo()
H A Dradeon_uvd.c961 unsigned vco_min, unsigned vco_max, in radeon_uvd_calc_upll_dividers() argument
976 for (vco_freq = vco_min; vco_freq <= vco_max; vco_freq += 100) { in radeon_uvd_calc_upll_dividers()
H A Dradeon.h1707 unsigned vco_min, unsigned vco_max,