Home
last modified time | relevance | path

Searched refs:mux_ops (Results 1 – 7 of 7) sorted by relevance

/linux-4.1.27/drivers/clk/
Dclk-composite.c27 const struct clk_ops *mux_ops = composite->mux_ops; in clk_composite_get_parent() local
32 return mux_ops->get_parent(mux_hw); in clk_composite_get_parent()
38 const struct clk_ops *mux_ops = composite->mux_ops; in clk_composite_set_parent() local
43 return mux_ops->set_parent(mux_hw, index); in clk_composite_set_parent()
66 const struct clk_ops *mux_ops = composite->mux_ops; in clk_composite_determine_rate() local
83 mux_hw && mux_ops && mux_ops->set_parent) { in clk_composite_determine_rate()
122 } else if (mux_hw && mux_ops && mux_ops->determine_rate) { in clk_composite_determine_rate()
124 return mux_ops->determine_rate(mux_hw, rate, min_rate, in clk_composite_determine_rate()
192 struct clk_hw *mux_hw, const struct clk_ops *mux_ops, in clk_register_composite() argument
215 if (mux_hw && mux_ops) { in clk_register_composite()
[all …]
/linux-4.1.27/drivers/clk/tegra/
Dclk-periph.c28 const struct clk_ops *mux_ops = periph->mux_ops; in clk_periph_get_parent() local
33 return mux_ops->get_parent(mux_hw); in clk_periph_get_parent()
39 const struct clk_ops *mux_ops = periph->mux_ops; in clk_periph_set_parent() local
44 return mux_ops->set_parent(mux_hw, index); in clk_periph_set_parent()
Dclk.h422 const struct clk_ops *mux_ops; member
464 .mux_ops = &clk_mux_ops, \
/linux-4.1.27/arch/arm/mach-imx/
Dclk-busy.c119 const struct clk_ops *mux_ops; member
135 return busy->mux_ops->get_parent(&busy->mux.hw); in clk_busy_mux_get_parent()
143 ret = busy->mux_ops->set_parent(&busy->mux.hw, index); in clk_busy_mux_set_parent()
174 busy->mux_ops = &clk_mux_ops; in imx_clk_busy_mux()
/linux-4.1.27/drivers/clk/berlin/
Dberlin2-div.c243 const struct clk_ops *mux_ops = &berlin2_div_mux_ops; in berlin2_div_register() local
260 mux_ops = NULL; in berlin2_div_register()
263 &div->hw, mux_ops, &div->hw, rate_ops, in berlin2_div_register()
/linux-4.1.27/drivers/clk/rockchip/
Dclk.c53 const struct clk_ops *mux_ops = NULL, *div_ops = NULL, in rockchip_clk_register_branch() local
66 mux_ops = (mux_flags & CLK_MUX_READ_ONLY) ? &clk_mux_ro_ops in rockchip_clk_register_branch()
97 mux ? &mux->hw : NULL, mux_ops, in rockchip_clk_register_branch()
/linux-4.1.27/include/linux/
Dclk-provider.h515 const struct clk_ops *mux_ops; member
522 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,