Lines Matching refs:parent
25 * clk->rate = (parent->rate * N * (K + 1) >> P) / (M + 1)
26 * parent - fixed parent. No clk_set_parent support
92 struct clk_hw *parent, *best_parent = NULL;
96 /* find the parent that can help provide the fastest rate <= rate */
103 parent = clk_hw_get_parent_by_index(hw, i);
104 if (!parent)
107 parent_rate = clk_hw_round_rate(parent, req->rate);
109 parent_rate = clk_hw_get_rate(parent);
116 best_parent = parent;