/linux-6.3-rc2/drivers/clk/actions/ |
A D | owl-mux.c | 17 const struct owl_mux_hw *mux_hw) in owl_mux_helper_get_parent() argument 22 regmap_read(common->regmap, mux_hw->reg, ®); in owl_mux_helper_get_parent() 23 parent = reg >> mux_hw->shift; in owl_mux_helper_get_parent() 24 parent &= BIT(mux_hw->width) - 1; in owl_mux_helper_get_parent() 33 return owl_mux_helper_get_parent(&mux->common, &mux->mux_hw); in owl_mux_get_parent() 37 struct owl_mux_hw *mux_hw, u8 index) in owl_mux_helper_set_parent() argument 41 regmap_read(common->regmap, mux_hw->reg, ®); in owl_mux_helper_set_parent() 42 reg &= ~GENMASK(mux_hw->width + mux_hw->shift - 1, mux_hw->shift); in owl_mux_helper_set_parent() 43 regmap_write(common->regmap, mux_hw->reg, in owl_mux_helper_set_parent() 44 reg | (index << mux_hw->shift)); in owl_mux_helper_set_parent() [all …]
|
A D | owl-mux.h | 23 struct owl_mux_hw mux_hw; member 37 .mux_hw = OWL_MUX_HW(_reg, _shift, _width), \ 55 const struct owl_mux_hw *mux_hw); 57 struct owl_mux_hw *mux_hw, u8 index);
|
A D | owl-composite.h | 28 struct owl_mux_hw mux_hw; member 40 .mux_hw = _mux, \ 69 .mux_hw = _mux, \ 100 .mux_hw = _mux, \
|
A D | owl-composite.c | 20 return owl_mux_helper_get_parent(&comp->common, &comp->mux_hw); in owl_comp_get_parent() 27 return owl_mux_helper_set_parent(&comp->common, &comp->mux_hw, index); in owl_comp_set_parent()
|
/linux-6.3-rc2/drivers/clk/ |
A D | clk-composite.c | 15 struct clk_hw *mux_hw = composite->mux_hw; in clk_composite_get_parent() local 17 __clk_hw_set_clk(mux_hw, hw); in clk_composite_get_parent() 19 return mux_ops->get_parent(mux_hw); in clk_composite_get_parent() 26 struct clk_hw *mux_hw = composite->mux_hw; in clk_composite_set_parent() local 28 __clk_hw_set_clk(mux_hw, hw); in clk_composite_set_parent() 75 struct clk_hw *mux_hw = composite->mux_hw; in clk_composite_determine_rate() local 183 struct clk_hw *mux_hw = composite->mux_hw; in clk_composite_set_rate_and_parent() local 187 __clk_hw_set_clk(mux_hw, hw); in clk_composite_set_rate_and_parent() 263 if (mux_hw && mux_ops) { in __clk_hw_register_composite() 269 composite->mux_hw = mux_hw; in __clk_hw_register_composite() [all …]
|
A D | clk-stm32h7.c | 350 struct clk_hw *mux_hw; member 367 struct clk_hw *mux_hw; in get_cfg_composite_div() local 372 mux_hw = div_hw = gate_hw = NULL; in get_cfg_composite_div() 381 mux_hw = &mux->hw; in get_cfg_composite_div() 412 composite->mux_hw = mux_hw; in get_cfg_composite_div() 1326 c_cfg.mux_hw, c_cfg.mux_ops, in stm32h7_rcc_init() 1349 c_cfg.mux_hw, c_cfg.mux_ops, in stm32h7_rcc_init() 1364 c_cfg.mux_hw, c_cfg.mux_ops, in stm32h7_rcc_init() 1378 c_cfg.mux_hw, c_cfg.mux_ops, in stm32h7_rcc_init()
|
A D | clk-stm32mp1.c | 486 struct clk_hw *mux_hw; in _get_stm32_mux() local 500 mux_hw = &mmux->mux.hw; in _get_stm32_mux() 514 mux_hw = &mux->hw; in _get_stm32_mux() 517 return mux_hw; in _get_stm32_mux() 629 struct clk_hw *mux_hw, *div_hw, *gate_hw; in clk_stm32_register_composite() local 631 mux_hw = NULL; in clk_stm32_register_composite() 641 if (!IS_ERR(mux_hw)) { in clk_stm32_register_composite() 672 mux_hw, mux_ops, div_hw, div_ops, in clk_stm32_register_composite() 878 struct clk_hw *mux_hw = &clk_elem->mux.hw; in pll_get_parent() local 880 __clk_hw_set_clk(mux_hw, hw); in pll_get_parent() [all …]
|
A D | clk-bm1880.c | 761 struct clk_hw *mux_hw = NULL, *gate_hw = NULL, *div_hw = NULL; in bm1880_clk_register_composite() local 776 mux_hw = &mux->hw; in bm1880_clk_register_composite() 825 num_parents, mux_hw, mux_ops, div_hw, in bm1880_clk_register_composite()
|
A D | clk-stm32f4.c | 1631 struct clk_hw *mux_hw = NULL, *gate_hw = NULL; in stm32_register_aux_clk() local 1660 mux_hw = &mux->hw; in stm32_register_aux_clk() 1664 if (mux_hw == NULL && gate_hw == NULL) { in stm32_register_aux_clk() 1670 mux_hw, mux_ops, in stm32_register_aux_clk()
|
/linux-6.3-rc2/drivers/clk/tegra/ |
A D | clk-periph.c | 18 struct clk_hw *mux_hw = &periph->mux.hw; in clk_periph_get_parent() local 20 __clk_hw_set_clk(mux_hw, hw); in clk_periph_get_parent() 22 return mux_ops->get_parent(mux_hw); in clk_periph_get_parent() 29 struct clk_hw *mux_hw = &periph->mux.hw; in clk_periph_set_parent() local 31 __clk_hw_set_clk(mux_hw, hw); in clk_periph_set_parent() 33 return mux_ops->set_parent(mux_hw, index); in clk_periph_set_parent()
|
/linux-6.3-rc2/drivers/clk/mvebu/ |
A D | armada-37xx-periph.c | 98 struct clk_hw *mux_hw; member 205 .mux_hw = &mux_##_name.hw, \ 215 .mux_hw = &mux_##_name.hw, \ 249 .mux_hw = &mux_##_name.hw, \ 623 struct clk_hw *mux_hw = NULL, *gate_hw = NULL, *rate_hw = NULL; in armada_3700_add_composite_clk() local 625 if (data->mux_hw) { in armada_3700_add_composite_clk() 628 mux_hw = data->mux_hw; in armada_3700_add_composite_clk() 629 mux = to_clk_mux(mux_hw); in armada_3700_add_composite_clk() 631 mux_ops = mux_hw->init->ops; in armada_3700_add_composite_clk() 677 mux_hw = muxrate_hw; in armada_3700_add_composite_clk() [all …]
|
/linux-6.3-rc2/drivers/clk/imx/ |
A D | clk-composite-7ulp.c | 76 struct clk_hw *mux_hw = NULL, *fd_hw = NULL, *gate_hw = NULL; in imx_ulp_clk_hw_composite() local 87 mux_hw = &mux->hw; in imx_ulp_clk_hw_composite() 141 mux_hw, &clk_mux_ops, fd_hw, in imx_ulp_clk_hw_composite()
|
A D | clk-composite-93.c | 188 struct clk_hw *hw = ERR_PTR(-ENOMEM), *mux_hw; in imx93_clk_composite_flags() local 200 mux_hw = &mux->hw; in imx93_clk_composite_flags() 223 mux_hw, &clk_mux_ro_ops, div_hw, in imx93_clk_composite_flags() 237 mux_hw, &imx93_clk_composite_mux_ops, div_hw, in imx93_clk_composite_flags()
|
A D | clk-composite-8m.c | 180 struct clk_hw *hw = ERR_PTR(-ENOMEM), *mux_hw; in __imx8m_clk_hw_composite() local 192 mux_hw = &mux->hw; in __imx8m_clk_hw_composite() 239 mux_hw, mux_ops, div_hw, in __imx8m_clk_hw_composite()
|
/linux-6.3-rc2/drivers/clk/st/ |
A D | clk-flexgen.c | 99 struct clk_hw *mux_hw = &flexgen->mux.hw; in flexgen_get_parent() local 101 __clk_hw_set_clk(mux_hw, hw); in flexgen_get_parent() 103 return clk_mux_ops.get_parent(mux_hw); in flexgen_get_parent() 109 struct clk_hw *mux_hw = &flexgen->mux.hw; in flexgen_set_parent() local 111 __clk_hw_set_clk(mux_hw, hw); in flexgen_set_parent() 113 return clk_mux_ops.set_parent(mux_hw, index); in flexgen_set_parent()
|
/linux-6.3-rc2/drivers/clk/mediatek/ |
A D | clk-mtk.c | 225 struct clk_hw *mux_hw = NULL, *gate_hw = NULL, *div_hw = NULL; in mtk_clk_register_composite() local 242 mux_hw = &mux->hw; in mtk_clk_register_composite() 286 mux_hw, mux_ops, in mtk_clk_register_composite() 316 if (composite->mux_hw) in mtk_clk_unregister_composite() 317 mux = to_clk_mux(composite->mux_hw); in mtk_clk_unregister_composite()
|
/linux-6.3-rc2/drivers/clk/sunxi/ |
A D | clk-factors.c | 186 struct clk_hw *mux_hw = NULL; in __sunxi_factors_register() local 242 mux_hw = &mux->hw; in __sunxi_factors_register() 247 mux_hw, &clk_mux_ops, in __sunxi_factors_register()
|
/linux-6.3-rc2/include/linux/ |
A D | clk-provider.h | 1221 struct clk_hw *mux_hw; member 1234 struct clk_hw *mux_hw, const struct clk_ops *mux_ops, 1240 struct clk_hw *mux_hw, const struct clk_ops *mux_ops, 1247 struct clk_hw *mux_hw, const struct clk_ops *mux_ops, 1254 struct clk_hw *mux_hw, const struct clk_ops *mux_ops, 1261 struct clk_hw *mux_hw, const struct clk_ops *mux_ops,
|
/linux-6.3-rc2/drivers/clk/nxp/ |
A D | clk-lpc32xx.c | 1434 struct clk_hw *mux_hw = NULL, *div_hw = NULL, *gate_hw = NULL; in lpc32xx_clk_register() local 1443 mux_hw = &mux0->clk.hw; in lpc32xx_clk_register() 1456 mux_hw, mops, div_hw, dops, in lpc32xx_clk_register()
|