Lines Matching refs:clk_hw

24 static u8 clk_composite_get_parent(struct clk_hw *hw)  in clk_composite_get_parent()
28 struct clk_hw *mux_hw = composite->mux_hw; in clk_composite_get_parent()
35 static int clk_composite_set_parent(struct clk_hw *hw, u8 index) in clk_composite_set_parent()
39 struct clk_hw *mux_hw = composite->mux_hw; in clk_composite_set_parent()
46 static unsigned long clk_composite_recalc_rate(struct clk_hw *hw, in clk_composite_recalc_rate()
51 struct clk_hw *rate_hw = composite->rate_hw; in clk_composite_recalc_rate()
58 static int clk_composite_determine_rate(struct clk_hw *hw, in clk_composite_determine_rate()
64 struct clk_hw *rate_hw = composite->rate_hw; in clk_composite_determine_rate()
65 struct clk_hw *mux_hw = composite->mux_hw; in clk_composite_determine_rate()
66 struct clk_hw *parent; in clk_composite_determine_rate()
132 static long clk_composite_round_rate(struct clk_hw *hw, unsigned long rate, in clk_composite_round_rate()
137 struct clk_hw *rate_hw = composite->rate_hw; in clk_composite_round_rate()
144 static int clk_composite_set_rate(struct clk_hw *hw, unsigned long rate, in clk_composite_set_rate()
149 struct clk_hw *rate_hw = composite->rate_hw; in clk_composite_set_rate()
156 static int clk_composite_is_enabled(struct clk_hw *hw) in clk_composite_is_enabled()
160 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_is_enabled()
167 static int clk_composite_enable(struct clk_hw *hw) in clk_composite_enable()
171 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_enable()
178 static void clk_composite_disable(struct clk_hw *hw) in clk_composite_disable()
182 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_disable()
191 struct clk_hw *mux_hw, const struct clk_ops *mux_ops, in clk_register_composite()
192 struct clk_hw *rate_hw, const struct clk_ops *rate_ops, in clk_register_composite()
193 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, in clk_register_composite()