Lines Matching refs:f_vco
38 float fields_sec, f_vco; in g100_g400max_maventv_vid_pll_find() local
166 f_vco = (si->ps.f_ref / m) * n; in g100_g400max_maventv_vid_pll_find()
167 LOG(2, ("found vid VCO freq %fMhz, pixclk %fMhz\n", f_vco, (f_vco / p))); in g100_g400max_maventv_vid_pll_find()
216 f_vco = (si->ps.f_ref / (m + 1)) * (n + 1); in g100_g400max_maventv_vid_pll_find()
217 LOG(2, ("MAVENTV: using vid VCO frequency %fMhz\n", f_vco)); in g100_g400max_maventv_vid_pll_find()
225 if (f_vco >= 180) {p |= (0x03 << 3); break;}; in g100_g400max_maventv_vid_pll_find()
226 if (f_vco >= 140) {p |= (0x02 << 3); break;}; in g100_g400max_maventv_vid_pll_find()
227 if (f_vco >= 100) {p |= (0x01 << 3); break;}; in g100_g400max_maventv_vid_pll_find()
234 if (f_vco >= 240) {p |= (0x03 << 3); break;}; in g100_g400max_maventv_vid_pll_find()
235 if (f_vco >= 170) {p |= (0x02 << 3); break;}; in g100_g400max_maventv_vid_pll_find()
236 if (f_vco >= 110) {p |= (0x01 << 3); break;}; in g100_g400max_maventv_vid_pll_find()
251 (f_vco / ((p & 0x07) + 1)), m, n, p)); in g100_g400max_maventv_vid_pll_find()