Lines Matching refs:post_divr_freq
90 static int __wrpll_calc_filter_range(unsigned long post_divr_freq) in __wrpll_calc_filter_range() argument
94 if (post_divr_freq < MIN_POST_DIVR_FREQ || in __wrpll_calc_filter_range()
95 post_divr_freq > MAX_POST_DIVR_FREQ) { in __wrpll_calc_filter_range()
97 __func__, post_divr_freq); in __wrpll_calc_filter_range()
101 if (post_divr_freq < 11000000) in __wrpll_calc_filter_range()
103 else if (post_divr_freq < 18000000) in __wrpll_calc_filter_range()
105 else if (post_divr_freq < 30000000) in __wrpll_calc_filter_range()
107 else if (post_divr_freq < 50000000) in __wrpll_calc_filter_range()
109 else if (post_divr_freq < 80000000) in __wrpll_calc_filter_range()
111 else if (post_divr_freq < 130000000) in __wrpll_calc_filter_range()
246 u32 best_f, f, post_divr_freq, fbcfg; in analogbits_wrpll_configure_for_rate() local
311 post_divr_freq = div_u64(parent_rate, r); in analogbits_wrpll_configure_for_rate()
312 vco_pre = fbdiv * post_divr_freq; in analogbits_wrpll_configure_for_rate()
335 post_divr_freq = div_u64(parent_rate, best_r); in analogbits_wrpll_configure_for_rate()
338 c->range = __wrpll_calc_filter_range(post_divr_freq); in analogbits_wrpll_configure_for_rate()