Lines Matching defs:Fref
1677 static int fll_factors(struct _fll_div *fll_div, unsigned int Fref,
1685 /* Fref must be <=13.5MHz */
1688 while ((Fref / div) > 13500000) {
1694 Fref);
1699 pr_debug("FLL Fref=%u Fout=%u\n", Fref, Fout);
1702 Fref /= div;
1721 if (fll_fratios[i].min <= Fref && Fref <= fll_fratios[i].max) {
1728 pr_err("Unable to find FLL_FRATIO for Fref=%uHz\n", Fref);
1732 fll_div->n = target / (fratio * Fref);
1734 if (target % Fref == 0) {
1738 gcd_fll = gcd(target, fratio * Fref);
1740 fll_div->theta = (target - (fll_div->n * fratio * Fref))
1742 fll_div->lambda = (fratio * Fref) / gcd_fll;
1755 unsigned int Fref, unsigned int Fout)
1803 ret = fll_factors(&factors, Fref, Fout);
1869 fll->fref = Fref;
1873 Fref, Fout);