Lines Matching refs:nom
882 * @nom: nominator
891 static void avivo_reduce_ratio(unsigned *nom, unsigned *den,
897 tmp = gcd(*nom, *den);
898 *nom /= tmp;
902 if (*nom < nom_min) {
903 tmp = DIV_ROUND_UP(nom_min, *nom);
904 *nom *= tmp;
911 *nom *= tmp;
919 * @nom: nominator
930 static void avivo_get_fb_ref_div(unsigned nom, unsigned den, unsigned post_div,
939 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den);
977 unsigned nom, den;
1037 nom = target_clock;
1041 avivo_reduce_ratio(&nom, &den, fb_div_min, post_div_min);
1052 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max,
1067 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max, ref_div_max,