Lines Matching refs:rate
126 static u32 msc313_cpupll_regforfrequecy(unsigned long rate, unsigned long parent_rate)
130 if (prescaled == 0 || rate == 0)
132 return DIV_ROUND_UP_ULL(prescaled, rate);
143 static long msc313_cpupll_round_rate(struct clk_hw *hw, unsigned long rate,
146 u32 reg = msc313_cpupll_regforfrequecy(rate, *parent_rate);
151 * rate doesn't overshoot the requested rate.
153 for (; rounded >= rate && reg > 0; reg--)
159 static int msc313_cpupll_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate)
162 u32 reg = msc313_cpupll_regforfrequecy(rate, parent_rate);