Lines Matching refs:rate_hw

26 	struct clk_hw *rate_hw;  member
64 struct clk_hw *rate_hw = composite->rate_hw; in clk_regmap_composite_recalc_rate() local
66 __clk_hw_set_clk(rate_hw, hw); in clk_regmap_composite_recalc_rate()
68 return rate_ops->recalc_rate(rate_hw, parent_rate); in clk_regmap_composite_recalc_rate()
77 struct clk_hw *rate_hw = composite->rate_hw; in clk_regmap_composite_determine_rate() local
87 if (rate_hw && rate_ops && rate_ops->determine_rate) { in clk_regmap_composite_determine_rate()
88 __clk_hw_set_clk(rate_hw, hw); in clk_regmap_composite_determine_rate()
89 return rate_ops->determine_rate(rate_hw, req); in clk_regmap_composite_determine_rate()
90 } else if (rate_hw && rate_ops && rate_ops->round_rate && in clk_regmap_composite_determine_rate()
99 rate = rate_ops->round_rate(rate_hw, req->rate, in clk_regmap_composite_determine_rate()
115 tmp_rate = rate_ops->round_rate(rate_hw, req->rate, in clk_regmap_composite_determine_rate()
152 struct clk_hw *rate_hw = composite->rate_hw; in clk_regmap_composite_round_rate() local
154 __clk_hw_set_clk(rate_hw, hw); in clk_regmap_composite_round_rate()
156 return rate_ops->round_rate(rate_hw, rate, prate); in clk_regmap_composite_round_rate()
165 struct clk_hw *rate_hw = composite->rate_hw; in clk_regmap_composite_set_rate() local
167 __clk_hw_set_clk(rate_hw, hw); in clk_regmap_composite_set_rate()
169 return rate_ops->set_rate(rate_hw, rate, parent_rate); in clk_regmap_composite_set_rate()
337 composite->rate_hw = div_hw; in devm_clk_regmap_register_composite()
364 composite->rate_hw = fd_hw; in devm_clk_regmap_register_composite()
392 if (composite->rate_hw) in devm_clk_regmap_register_composite()
393 composite->rate_hw->clk = clk; in devm_clk_regmap_register_composite()