Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/clk/actions/
Dowl-gate.c17 const struct owl_gate_hw *gate_hw, bool enable) in owl_gate_set() argument
19 int set = gate_hw->gate_flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0; in owl_gate_set()
24 regmap_read(common->regmap, gate_hw->reg, &reg); in owl_gate_set()
27 reg |= BIT(gate_hw->bit_idx); in owl_gate_set()
29 reg &= ~BIT(gate_hw->bit_idx); in owl_gate_set()
31 regmap_write(common->regmap, gate_hw->reg, reg); in owl_gate_set()
39 owl_gate_set(common, &gate->gate_hw, false); in owl_gate_disable()
47 owl_gate_set(common, &gate->gate_hw, true); in owl_gate_enable()
53 const struct owl_gate_hw *gate_hw) in owl_gate_clk_is_enabled() argument
57 regmap_read(common->regmap, gate_hw->reg, &reg); in owl_gate_clk_is_enabled()
[all …]
Dowl-gate.h23 struct owl_gate_hw gate_hw; member
37 .gate_hw = OWL_GATE_HW(_reg, _bit_idx, _gate_flags), \
50 .gate_hw = OWL_GATE_HW(_reg, _bit_idx, _gate_flags), \
67 const struct owl_gate_hw *gate_hw, bool enable);
69 const struct owl_gate_hw *gate_hw);
Dowl-composite.h29 struct owl_gate_hw gate_hw; member
41 .gate_hw = _gate, \
55 .gate_hw = _gate, \
70 .gate_hw = _gate, \
84 .gate_hw = _gate, \
101 .gate_hw = _gate, \
Dowl-composite.c35 owl_gate_set(common, &comp->gate_hw, false); in owl_comp_disable()
43 owl_gate_set(common, &comp->gate_hw, true); in owl_comp_enable()
53 return owl_gate_clk_is_enabled(common, &comp->gate_hw); in owl_comp_is_enabled()
/Linux-v5.4/drivers/clk/
Dclk-composite.c173 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
[all …]
Dclk-stm32h7.c352 struct clk_hw *gate_hw; member
369 struct clk_hw *gate_hw; in get_cfg_composite_div() local
372 mux_hw = div_hw = gate_hw = NULL; in get_cfg_composite_div()
406 gate_hw = &gate->hw; in get_cfg_composite_div()
418 composite->gate_hw = gate_hw; in get_cfg_composite_div()
1328 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init()
1351 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init()
1366 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init()
1380 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init()
Dclk-stm32mp1.c539 struct clk_hw *gate_hw; in _get_stm32_gate() local
554 gate_hw = &mgate->gate.hw; in _get_stm32_gate()
566 gate_hw = &gate->hw; in _get_stm32_gate()
569 return gate_hw; in _get_stm32_gate()
616 struct clk_hw *mux_hw, *div_hw, *gate_hw; in clk_stm32_register_composite() local
620 gate_hw = NULL; in clk_stm32_register_composite()
648 gate_hw = _get_stm32_gate(base, cfg->gate, lock); in clk_stm32_register_composite()
650 if (!IS_ERR(gate_hw)) { in clk_stm32_register_composite()
660 gate_hw, gate_ops, flags); in clk_stm32_register_composite()
Dclk-stm32f4.c1635 struct clk_hw *mux_hw = NULL, *gate_hw = NULL; in stm32_register_aux_clk() local
1649 gate_hw = &gate->hw; in stm32_register_aux_clk()
1668 if (mux_hw == NULL && gate_hw == NULL) { in stm32_register_aux_clk()
1676 gate_hw, gate_ops, in stm32_register_aux_clk()
/Linux-v5.4/drivers/clk/tegra/
Dclk-periph.c75 struct clk_hw *gate_hw = &periph->gate.hw; in clk_periph_is_enabled() local
77 __clk_hw_set_clk(gate_hw, hw); in clk_periph_is_enabled()
79 return gate_ops->is_enabled(gate_hw); in clk_periph_is_enabled()
86 struct clk_hw *gate_hw = &periph->gate.hw; in clk_periph_enable() local
88 __clk_hw_set_clk(gate_hw, hw); in clk_periph_enable()
90 return gate_ops->enable(gate_hw); in clk_periph_enable()
97 struct clk_hw *gate_hw = &periph->gate.hw; in clk_periph_disable() local
99 gate_ops->disable(gate_hw); in clk_periph_disable()
Dclk-sdmmc-mux.c170 struct clk_hw *gate_hw = &sdmmc_mux->gate.hw; in clk_sdmmc_mux_is_enabled() local
172 __clk_hw_set_clk(gate_hw, hw); in clk_sdmmc_mux_is_enabled()
174 return gate_ops->is_enabled(gate_hw); in clk_sdmmc_mux_is_enabled()
181 struct clk_hw *gate_hw = &sdmmc_mux->gate.hw; in clk_sdmmc_mux_enable() local
183 __clk_hw_set_clk(gate_hw, hw); in clk_sdmmc_mux_enable()
185 return gate_ops->enable(gate_hw); in clk_sdmmc_mux_enable()
192 struct clk_hw *gate_hw = &sdmmc_mux->gate.hw; in clk_sdmmc_mux_disable() local
194 gate_ops->disable(gate_hw); in clk_sdmmc_mux_disable()
/Linux-v5.4/drivers/clk/imx/
Dclk-composite-7ulp.c30 struct clk_hw *mux_hw = NULL, *fd_hw = NULL, *gate_hw = NULL; in imx7ulp_clk_composite() local
70 gate_hw = &gate->hw; in imx7ulp_clk_composite()
77 &clk_fractional_divider_ops, gate_hw, in imx7ulp_clk_composite()
Dclk-composite-8m.c132 struct clk_hw *div_hw, *gate_hw; in imx8m_clk_composite_flags() local
161 gate_hw = &gate->hw; in imx8m_clk_composite_flags()
168 gate_hw, &clk_gate_ops, flags); in imx8m_clk_composite_flags()
/Linux-v5.4/drivers/clk/mvebu/
Darmada-37xx-periph.c98 struct clk_hw *gate_hw; member
204 .gate_hw = &gate_##_name.hw, \
214 .gate_hw = &gate_##_name.hw, \
223 .gate_hw = &gate_##_name.hw, \
230 .gate_hw = &gate_##_name.hw, \
613 struct clk_hw *mux_hw = NULL, *gate_hw = NULL, *rate_hw = NULL; in armada_3700_add_composite_clk() local
625 if (data->gate_hw) { in armada_3700_add_composite_clk()
628 gate_hw = data->gate_hw; in armada_3700_add_composite_clk()
629 gate = to_clk_gate(gate_hw); in armada_3700_add_composite_clk()
631 gate_ops = gate_hw->init->ops; in armada_3700_add_composite_clk()
[all …]
/Linux-v5.4/drivers/clk/ti/
Dadpll.c551 struct clk_hw *gate_hw = &co->gate.hw; in ti_adpll_clkout_enable() local
553 __clk_hw_set_clk(gate_hw, hw); in ti_adpll_clkout_enable()
555 return clk_gate_ops.enable(gate_hw); in ti_adpll_clkout_enable()
561 struct clk_hw *gate_hw = &co->gate.hw; in ti_adpll_clkout_disable() local
563 __clk_hw_set_clk(gate_hw, hw); in ti_adpll_clkout_disable()
564 clk_gate_ops.disable(gate_hw); in ti_adpll_clkout_disable()
570 struct clk_hw *gate_hw = &co->gate.hw; in ti_adpll_clkout_is_enabled() local
572 __clk_hw_set_clk(gate_hw, hw); in ti_adpll_clkout_is_enabled()
574 return clk_gate_ops.is_enabled(gate_hw); in ti_adpll_clkout_is_enabled()
/Linux-v5.4/drivers/clk/mediatek/
Dclk-mtk.c156 struct clk_hw *mux_hw = NULL, *gate_hw = NULL, *div_hw = NULL; in mtk_clk_register_composite() local
196 gate_hw = &gate->hw; in mtk_clk_register_composite()
219 gate_hw, gate_ops, in mtk_clk_register_composite()
/Linux-v5.4/drivers/clk/sunxi/
Dclk-factors.c185 struct clk_hw *gate_hw = NULL; in __sunxi_factors_register() local
226 gate_hw = &gate->hw; in __sunxi_factors_register()
249 gate_hw, &clk_gate_ops, CLK_IS_CRITICAL); in __sunxi_factors_register()
Dclk-sunxi.c950 struct clk_hw *gate_hw, *rate_hw; in sunxi_divs_clk_setup() local
1030 gate_hw = NULL; in sunxi_divs_clk_setup()
1044 gate_hw = &gate->hw; in sunxi_divs_clk_setup()
1081 gate_hw, &clk_gate_ops, in sunxi_divs_clk_setup()
/Linux-v5.4/include/linux/
Dclk-provider.h731 struct clk_hw *gate_hw; member
744 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
751 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
/Linux-v5.4/drivers/clk/nxp/
Dclk-lpc32xx.c1434 struct clk_hw *mux_hw = NULL, *div_hw = NULL, *gate_hw = NULL; in lpc32xx_clk_register() local
1451 gate_hw = &gate0->clk.hw; in lpc32xx_clk_register()
1457 gate_hw, gops, lpc32xx_clk->flags); in lpc32xx_clk_register()