Home
last modified time | relevance | path

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

/drivers/clk/
Dclk-composite.c155 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_is_enabled() local
157 gate_hw->clk = hw->clk; in clk_composite_is_enabled()
159 return gate_ops->is_enabled(gate_hw); in clk_composite_is_enabled()
166 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_enable() local
168 gate_hw->clk = hw->clk; in clk_composite_enable()
170 return gate_ops->enable(gate_hw); in clk_composite_enable()
177 struct clk_hw *gate_hw = composite->gate_hw; in clk_composite_disable() local
179 gate_hw->clk = hw->clk; in clk_composite_disable()
181 gate_ops->disable(gate_hw); in clk_composite_disable()
188 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, in clk_register_composite() argument
[all …]
/drivers/clk/tegra/
Dclk-periph.c87 struct clk_hw *gate_hw = &periph->gate.hw; in clk_periph_is_enabled() local
89 gate_hw->clk = hw->clk; 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 gate_hw->clk = hw->clk; 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()
/drivers/clk/sunxi/
Dclk-factors.c167 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.c948 struct clk_hw *gate_hw, *rate_hw; in sunxi_divs_clk_setup() local
982 gate_hw = NULL; in sunxi_divs_clk_setup()
996 gate_hw = &gate->hw; in sunxi_divs_clk_setup()
1033 gate_hw, &clk_gate_ops, in sunxi_divs_clk_setup()
/drivers/clk/st/
Dclkgen-mux.c819 kfree(container_of(composite->gate_hw, struct clk_gate, hw)); in st_of_clkgen_vcc_setup()