Lines Matching refs:gate_hw
173 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_is_enabled() local
175 __clk_hw_set_clk(gate_hw, hw); in clk_composite_is_enabled()
177 return gate_ops->is_enabled(gate_hw); in clk_composite_is_enabled()
184 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_enable() local
186 __clk_hw_set_clk(gate_hw, hw); in clk_composite_enable()
188 return gate_ops->enable(gate_hw); in clk_composite_enable()
195 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_disable() local
197 __clk_hw_set_clk(gate_hw, hw); in clk_composite_disable()
199 gate_ops->disable(gate_hw); in clk_composite_disable()
206 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, in clk_hw_register_composite() argument
276 if (gate_hw && gate_ops) { in clk_hw_register_composite()
283 composite->gate_hw = gate_hw; in clk_hw_register_composite()
305 if (composite->gate_hw) in clk_hw_register_composite()
306 composite->gate_hw->clk = hw->clk; in clk_hw_register_composite()
319 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, in clk_register_composite() argument
325 mux_hw, mux_ops, rate_hw, rate_ops, gate_hw, gate_ops, in clk_register_composite()