Home
last modified time | relevance | path

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

/openbsd/src/sys/dev/pci/drm/amd/amdgpu/
Damdgpu_pll.c166 unsigned vco_min, vco_max; in amdgpu_pll_compute() local
170 vco_max = pll->lcd_pll_out_max; in amdgpu_pll_compute()
173 vco_max = pll->pll_out_max; in amdgpu_pll_compute()
178 vco_max *= 10; in amdgpu_pll_compute()
187 post_div_max = vco_max / target_clock; in amdgpu_pll_compute()
188 if ((target_clock * post_div_max) > vco_max) in amdgpu_pll_compute()
Damdgpu_si.c1715 unsigned vco_min, unsigned vco_max, in si_calc_upll_dividers() argument
1730 for (vco_freq = vco_min; vco_freq <= vco_max; vco_freq += 100) { in si_calc_upll_dividers()
/openbsd/src/sys/dev/pci/drm/radeon/
Dradeon_display.c1002 unsigned vco_min, vco_max; in radeon_compute_pll_avivo() local
1006 vco_max = pll->lcd_pll_out_max; in radeon_compute_pll_avivo()
1009 vco_max = pll->pll_out_max; in radeon_compute_pll_avivo()
1014 vco_max *= 10; in radeon_compute_pll_avivo()
1023 post_div_max = vco_max / target_clock; in radeon_compute_pll_avivo()
1024 if ((target_clock * post_div_max) > vco_max) in radeon_compute_pll_avivo()
Dradeon_uvd.c950 unsigned vco_min, unsigned vco_max, in radeon_uvd_calc_upll_dividers() argument
965 for (vco_freq = vco_min; vco_freq <= vco_max; vco_freq += 100) { in radeon_uvd_calc_upll_dividers()
Dradeon.h1707 unsigned vco_min, unsigned vco_max,