Lines Matching refs:post_divr_freq
73 * @post_divr_freq: input clock rate after the R divider
76 * on the input clock frequency after the post-R-divider @post_divr_freq.
83 static int __wrpll_calc_filter_range(unsigned long post_divr_freq)
85 if (post_divr_freq < MIN_POST_DIVR_FREQ ||
86 post_divr_freq > MAX_POST_DIVR_FREQ) {
88 __func__, post_divr_freq);
92 switch (post_divr_freq) {
230 u32 best_f, f, post_divr_freq;
281 post_divr_freq = div_u64(parent_rate, r);
282 vco_pre = fbdiv * post_divr_freq;
305 post_divr_freq = div_u64(parent_rate, best_r);
308 range = __wrpll_calc_filter_range(post_divr_freq);