HomeSort by: relevance | last modified time | path
    Searched defs:post_div_max (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_pll.c 133 unsigned post_div_min, post_div_max, post_div; local in function:amdgpu_pll_compute
162 post_div_max = pll->post_div;
185 post_div_max = vco_max / target_clock;
186 if ((target_clock * post_div_max) > vco_max)
187 --post_div_max;
188 if (post_div_max > pll->max_post_div)
189 post_div_max = pll->max_post_div;
203 post_div_best = post_div_max;
206 for (post_div = post_div_min; post_div <= post_div_max; ++post_div) {
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_display.c 965 unsigned post_div_min, post_div_max, post_div; local in function:radeon_compute_pll_avivo
997 post_div_max = pll->post_div;
1020 post_div_max = vco_max / target_clock;
1021 if ((target_clock * post_div_max) > vco_max)
1022 --post_div_max;
1023 if (post_div_max > pll->max_post_div)
1024 post_div_max = pll->max_post_div;
1038 post_div_best = post_div_max;
1041 for (post_div = post_div_min; post_div <= post_div_max; ++post_div) {

Completed in 14 milliseconds