Home
last modified time | relevance | path

Searched refs:gate_hw (Results 1 – 6 of 6) sorted by relevance

/linux-4.1.27/drivers/clk/
Dclk-composite.c161 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_is_enabled() local
163 __clk_hw_set_clk(gate_hw, hw); in clk_composite_is_enabled()
165 return gate_ops->is_enabled(gate_hw); in clk_composite_is_enabled()
172 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_enable() local
174 __clk_hw_set_clk(gate_hw, hw); in clk_composite_enable()
176 return gate_ops->enable(gate_hw); in clk_composite_enable()
183 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_disable() local
185 __clk_hw_set_clk(gate_hw, hw); in clk_composite_disable()
187 gate_ops->disable(gate_hw); in clk_composite_disable()
194 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, in clk_register_composite() argument
[all …]
/linux-4.1.27/drivers/clk/tegra/
Dclk-periph.c87 struct clk_hw *gate_hw = &periph->gate.hw; in clk_periph_is_enabled() local
89 __clk_hw_set_clk(gate_hw, hw); in clk_periph_is_enabled()
91 return gate_ops->is_enabled(gate_hw); in clk_periph_is_enabled()
98 struct clk_hw *gate_hw = &periph->gate.hw; in clk_periph_enable() local
100 __clk_hw_set_clk(gate_hw, hw); in clk_periph_enable()
102 return gate_ops->enable(gate_hw); in clk_periph_enable()
109 struct clk_hw *gate_hw = &periph->gate.hw; in clk_periph_disable() local
111 gate_ops->disable(gate_hw); in clk_periph_disable()
/linux-4.1.27/drivers/clk/sunxi/
Dclk-factors.c170 struct clk_hw *gate_hw = NULL; in sunxi_factors_register() local
212 gate_hw = &gate->hw; in sunxi_factors_register()
236 gate_hw, &clk_gate_ops, 0); in sunxi_factors_register()
Dclk-sunxi.c1127 struct clk_hw *gate_hw, *rate_hw; in sunxi_divs_clk_setup() local
1171 gate_hw = NULL; in sunxi_divs_clk_setup()
1185 gate_hw = &gate->hw; in sunxi_divs_clk_setup()
1222 gate_hw, &clk_gate_ops, in sunxi_divs_clk_setup()
/linux-4.1.27/include/linux/
Dclk-provider.h513 struct clk_hw *gate_hw; member
524 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
/linux-4.1.27/drivers/clk/st/
Dclkgen-mux.c819 kfree(container_of(composite->gate_hw, struct clk_gate, hw)); in st_of_clkgen_vcc_setup()