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

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_pll.c 83 * @ref_div_max: reference divider maximum
91 unsigned fb_div_max, unsigned ref_div_max,
95 ref_div_max = min(128 / post_div, ref_div_max);
98 *ref_div = min(max(DIV_ROUND_CLOSEST(den, post_div), 1u), ref_div_max);
134 unsigned ref_div_min, ref_div_max, ref_div; local in function:amdgpu_pll_compute
155 ref_div_max = pll->reference_div;
157 ref_div_max = pll->max_ref_div;
209 ref_div_max, &fb_div, &ref_div);
223 amdgpu_pll_get_fb_ref_div(nom, den, post_div, fb_div_max, ref_div_max,
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_display.c 915 * @ref_div_max: reference divider maximum
923 unsigned fb_div_max, unsigned ref_div_max,
927 ref_div_max = max(min(100 / post_div, ref_div_max), 1u);
930 *ref_div = min(max(den/post_div, 1u), ref_div_max);
966 unsigned ref_div_min, ref_div_max, ref_div; local in function:radeon_compute_pll_avivo
987 ref_div_max = pll->reference_div;
990 ref_div_max = min(pll->max_ref_div, 7u);
992 ref_div_max = pll->max_ref_div;
1044 ref_div_max, &fb_div, &ref_div)
    [all...]

Completed in 16 milliseconds