Lines Matching full:vco
42 /* MIN_VCO_FREQ: minimum VCO frequency, in Hz (Fvco_min) */
45 /* MAX_VCO_FREQ: maximum VCO frequency, in Hz (Fvco_max) */
131 * @vco_rate: pointer to a u64 to store the computed VCO rate into
136 * desired target VCO rate into the variable pointed to by @vco_rate.
225 u64 target_vco_rate, delta, best_delta, f_pre_div, vco, vco_pre; in wrpll_configure_for_rate() local
254 /* Calculate the Q shift and target VCO rate */ in wrpll_configure_for_rate()
279 vco = vco_pre * f; in wrpll_configure_for_rate()
282 if (vco > target_vco_rate) { in wrpll_configure_for_rate()
284 vco = vco_pre * f; in wrpll_configure_for_rate()
285 } else if (vco < MIN_VCO_FREQ) { in wrpll_configure_for_rate()
287 vco = vco_pre * f; in wrpll_configure_for_rate()
290 delta = abs(target_rate - vco); in wrpll_configure_for_rate()