/linux-6.6.21/drivers/clk/ |
D | clk-composite.c | 207 const struct clk_ops *gate_ops = composite->gate_ops; in clk_composite_is_enabled() local 212 return gate_ops->is_enabled(gate_hw); in clk_composite_is_enabled() 218 const struct clk_ops *gate_ops = composite->gate_ops; in clk_composite_enable() local 223 return gate_ops->enable(gate_hw); in clk_composite_enable() 229 const struct clk_ops *gate_ops = composite->gate_ops; in clk_composite_disable() local 234 gate_ops->disable(gate_hw); in clk_composite_disable() 242 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, in __clk_hw_register_composite() argument 315 if (gate_hw && gate_ops) { in __clk_hw_register_composite() 316 if (!gate_ops->is_enabled || !gate_ops->enable || in __clk_hw_register_composite() 317 !gate_ops->disable) { in __clk_hw_register_composite() [all …]
|
D | clk-stm32h7.c | 356 const struct clk_ops *gate_ops; member 366 const struct clk_ops *mux_ops, *div_ops, *gate_ops; in get_cfg_composite_div() local 371 mux_ops = div_ops = gate_ops = NULL; in get_cfg_composite_div() 407 gate_ops = gcfg->gate->ops ? in get_cfg_composite_div() 419 composite->gate_ops = gate_ops; in get_cfg_composite_div() 1327 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init() 1350 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init() 1365 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init() 1379 c_cfg.gate_hw, c_cfg.gate_ops, in stm32h7_rcc_init()
|
D | clk-bm1880.c | 762 const struct clk_ops *mux_ops = NULL, *gate_ops = NULL, *div_ops = NULL; in bm1880_clk_register_composite() local 800 gate_ops = &clk_gate_ops; in bm1880_clk_register_composite() 826 div_ops, gate_hw, gate_ops, in bm1880_clk_register_composite()
|
D | clk-stm32f4.c | 1633 const struct clk_ops *mux_ops = NULL, *gate_ops = NULL; in stm32_register_aux_clk() local 1647 gate_ops = &clk_gate_ops; in stm32_register_aux_clk() 1673 gate_hw, gate_ops, in stm32_register_aux_clk()
|
D | clk-stm32mp1.c | 628 const struct clk_ops *mux_ops, *div_ops, *gate_ops; in clk_stm32_register_composite() local 636 gate_ops = NULL; in clk_stm32_register_composite() 664 gate_ops = &clk_gate_ops; in clk_stm32_register_composite() 667 gate_ops = cfg->gate->ops; in clk_stm32_register_composite() 673 gate_hw, gate_ops, flags); in clk_stm32_register_composite()
|
/linux-6.6.21/drivers/clk/tegra/ |
D | clk-sdmmc-mux.c | 169 const struct clk_ops *gate_ops = sdmmc_mux->gate_ops; in clk_sdmmc_mux_is_enabled() local 174 return gate_ops->is_enabled(gate_hw); in clk_sdmmc_mux_is_enabled() 180 const struct clk_ops *gate_ops = sdmmc_mux->gate_ops; in clk_sdmmc_mux_enable() local 185 return gate_ops->enable(gate_hw); in clk_sdmmc_mux_enable() 191 const struct clk_ops *gate_ops = sdmmc_mux->gate_ops; in clk_sdmmc_mux_disable() local 194 gate_ops->disable(gate_hw); in clk_sdmmc_mux_disable() 200 const struct clk_ops *gate_ops = sdmmc_mux->gate_ops; in clk_sdmmc_mux_disable_unused() local 203 gate_ops->disable_unused(gate_hw); in clk_sdmmc_mux_disable_unused() 267 sdmmc_mux->gate_ops = &tegra_clk_periph_gate_ops; in tegra_clk_register_sdmmc_mux_div()
|
D | clk-periph.c | 81 const struct clk_ops *gate_ops = periph->gate_ops; in clk_periph_is_enabled() local 86 return gate_ops->is_enabled(gate_hw); in clk_periph_is_enabled() 92 const struct clk_ops *gate_ops = periph->gate_ops; in clk_periph_enable() local 97 return gate_ops->enable(gate_hw); in clk_periph_enable() 103 const struct clk_ops *gate_ops = periph->gate_ops; in clk_periph_disable() local 106 gate_ops->disable(gate_hw); in clk_periph_disable() 112 const struct clk_ops *gate_ops = periph->gate_ops; in clk_periph_disable_unused() local 115 gate_ops->disable_unused(gate_hw); in clk_periph_disable_unused()
|
D | clk.h | 625 const struct clk_ops *gate_ops; member 667 .gate_ops = &tegra_clk_periph_gate_ops, \ 787 const struct clk_ops *gate_ops; member
|
/linux-6.6.21/drivers/clk/berlin/ |
D | berlin2-div.c | 236 const struct clk_ops *gate_ops = &berlin2_div_gate_ops; in berlin2_div_register() local 249 gate_ops = NULL; in berlin2_div_register() 255 &div->hw, gate_ops, flags); in berlin2_div_register()
|
/linux-6.6.21/drivers/clk/rockchip/ |
D | clk-half-divider.c | 174 *gate_ops = NULL; in rockchip_clk_register_halfdiv() local 199 gate_ops = &clk_gate_ops; in rockchip_clk_register_halfdiv() 218 gate ? &gate->hw : NULL, gate_ops, in rockchip_clk_register_halfdiv()
|
D | clk.c | 53 *gate_ops = NULL; in rockchip_clk_register_branch() local 82 gate_ops = &clk_gate_ops; in rockchip_clk_register_branch() 109 gate ? &gate->hw : NULL, gate_ops, in rockchip_clk_register_branch() 218 const struct clk_ops *div_ops = NULL, *gate_ops = NULL; in rockchip_clk_register_frac_branch() local 239 gate_ops = &clk_gate_ops; in rockchip_clk_register_frac_branch() 256 gate ? &gate->hw : NULL, gate_ops, in rockchip_clk_register_frac_branch()
|
/linux-6.6.21/include/linux/ |
D | clk-provider.h | 1245 const struct clk_ops *gate_ops; member 1254 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, 1260 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, 1267 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, 1274 struct clk_hw *gate_hw, const struct clk_ops *gate_ops, 1281 struct clk_hw *gate_hw, const struct clk_ops *gate_ops,
|
/linux-6.6.21/drivers/clk/mediatek/ |
D | clk-mtk.c | 225 const struct clk_ops *mux_ops = NULL, *gate_ops = NULL, *div_ops = NULL; in mtk_clk_register_composite() local 265 gate_ops = &clk_gate_ops; in mtk_clk_register_composite() 287 gate_hw, gate_ops, in mtk_clk_register_composite()
|
/linux-6.6.21/drivers/clk/mvebu/ |
D | armada-37xx-periph.c | 620 const struct clk_ops *mux_ops = NULL, *gate_ops = NULL, in armada_3700_add_composite_clk() local 640 gate_ops = gate_hw->init->ops; in armada_3700_add_composite_clk() 689 gate_hw, gate_ops, CLK_IGNORE_UNUSED); in armada_3700_add_composite_clk()
|