Home
last modified time | relevance | path

Searched refs:rate_hw (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/drivers/clk/
Dclk-composite.c51 struct clk_hw *rate_hw = composite->rate_hw; in clk_composite_recalc_rate() local
53 __clk_hw_set_clk(rate_hw, hw); in clk_composite_recalc_rate()
55 return rate_ops->recalc_rate(rate_hw, parent_rate); in clk_composite_recalc_rate()
67 struct clk_hw *rate_hw = composite->rate_hw; in clk_composite_determine_rate() local
76 if (rate_hw && rate_ops && rate_ops->determine_rate) { in clk_composite_determine_rate()
77 __clk_hw_set_clk(rate_hw, hw); in clk_composite_determine_rate()
78 return rate_ops->determine_rate(rate_hw, rate, min_rate, in clk_composite_determine_rate()
82 } else if (rate_hw && rate_ops && rate_ops->round_rate && in clk_composite_determine_rate()
91 return rate_ops->round_rate(rate_hw, rate, in clk_composite_determine_rate()
102 tmp_rate = rate_ops->round_rate(rate_hw, rate, in clk_composite_determine_rate()
[all …]
/linux-4.1.27/drivers/clk/sunxi/
Dclk-sunxi.c1127 struct clk_hw *gate_hw, *rate_hw; in sunxi_divs_clk_setup() local
1172 rate_hw = NULL; in sunxi_divs_clk_setup()
1197 rate_hw = &fix_factor->hw; in sunxi_divs_clk_setup()
1213 rate_hw = &divider->hw; in sunxi_divs_clk_setup()
1221 rate_hw, rate_ops, in sunxi_divs_clk_setup()
/linux-4.1.27/include/linux/
Dclk-provider.h512 struct clk_hw *rate_hw; member
523 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
/linux-4.1.27/drivers/clk/st/
Dclkgen-mux.c820 kfree(container_of(composite->rate_hw, struct clk_divider, hw)); in st_of_clkgen_vcc_setup()