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