Home
last modified time | relevance | path

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

/linux-4.4.14/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()
64 struct clk_hw *rate_hw = composite->rate_hw; in clk_composite_determine_rate() local
74 if (rate_hw && rate_ops && rate_ops->determine_rate) { in clk_composite_determine_rate()
75 __clk_hw_set_clk(rate_hw, hw); in clk_composite_determine_rate()
76 return rate_ops->determine_rate(rate_hw, req); in clk_composite_determine_rate()
77 } else if (rate_hw && rate_ops && rate_ops->round_rate && in clk_composite_determine_rate()
86 rate = rate_ops->round_rate(rate_hw, req->rate, in clk_composite_determine_rate()
102 tmp_rate = rate_ops->round_rate(rate_hw, req->rate, in clk_composite_determine_rate()
[all …]
/linux-4.4.14/drivers/clk/sunxi/
Dclk-sunxi.c981 struct clk_hw *gate_hw, *rate_hw; in sunxi_divs_clk_setup() local
1026 rate_hw = NULL; in sunxi_divs_clk_setup()
1051 rate_hw = &fix_factor->hw; in sunxi_divs_clk_setup()
1067 rate_hw = &divider->hw; in sunxi_divs_clk_setup()
1075 rate_hw, rate_ops, in sunxi_divs_clk_setup()
/linux-4.4.14/include/linux/
Dclk-provider.h574 struct clk_hw *rate_hw; member
585 struct clk_hw *rate_hw, const struct clk_ops *rate_ops,
/linux-4.4.14/drivers/clk/st/
Dclkgen-mux.c828 kfree(container_of(composite->rate_hw, struct clk_divider, hw)); in st_of_clkgen_vcc_setup()