/Linux-v5.10/drivers/clk/qcom/ |
D | clk-rcg.h | 88 extern const struct clk_ops clk_rcg_ops; 89 extern const struct clk_ops clk_rcg_bypass_ops; 90 extern const struct clk_ops clk_rcg_bypass2_ops; 91 extern const struct clk_ops clk_rcg_pixel_ops; 92 extern const struct clk_ops clk_rcg_esc_ops; 93 extern const struct clk_ops clk_rcg_lcc_ops; 126 extern const struct clk_ops clk_dyn_rcg_ops; 156 extern const struct clk_ops clk_rcg2_ops; 157 extern const struct clk_ops clk_rcg2_floor_ops; 158 extern const struct clk_ops clk_edp_pixel_ops; [all …]
|
D | clk-alpha-pll.h | 126 extern const struct clk_ops clk_alpha_pll_ops; 127 extern const struct clk_ops clk_alpha_pll_fixed_ops; 128 extern const struct clk_ops clk_alpha_pll_hwfsm_ops; 129 extern const struct clk_ops clk_alpha_pll_postdiv_ops; 130 extern const struct clk_ops clk_alpha_pll_huayra_ops; 131 extern const struct clk_ops clk_alpha_pll_postdiv_ro_ops; 133 extern const struct clk_ops clk_alpha_pll_fabia_ops; 134 extern const struct clk_ops clk_alpha_pll_fixed_fabia_ops; 135 extern const struct clk_ops clk_alpha_pll_postdiv_fabia_ops; 137 extern const struct clk_ops clk_alpha_pll_trion_ops; [all …]
|
D | clk-branch.h | 40 extern const struct clk_ops clk_branch_ops; 41 extern const struct clk_ops clk_branch2_ops; 42 extern const struct clk_ops clk_branch_simple_ops; 43 extern const struct clk_ops clk_branch2_aon_ops;
|
/Linux-v5.10/drivers/clk/ |
D | clk-composite.c | 13 const struct clk_ops *mux_ops = composite->mux_ops; in clk_composite_get_parent() 24 const struct clk_ops *mux_ops = composite->mux_ops; in clk_composite_set_parent() 36 const struct clk_ops *rate_ops = composite->rate_ops; in clk_composite_recalc_rate() 48 const struct clk_ops *rate_ops = composite->rate_ops; in clk_composite_determine_rate() 49 const struct clk_ops *mux_ops = composite->mux_ops; in clk_composite_determine_rate() 122 const struct clk_ops *rate_ops = composite->rate_ops; in clk_composite_round_rate() 134 const struct clk_ops *rate_ops = composite->rate_ops; in clk_composite_set_rate() 148 const struct clk_ops *rate_ops = composite->rate_ops; in clk_composite_set_rate_and_parent() 149 const struct clk_ops *mux_ops = composite->mux_ops; in clk_composite_set_rate_and_parent() 172 const struct clk_ops *gate_ops = composite->gate_ops; in clk_composite_is_enabled() [all …]
|
D | clk-scmi.c | 32 ret = clk->handle->clk_ops->rate_get(clk->handle, clk->id, &rate); in scmi_clk_recalc_rate() 72 return clk->handle->clk_ops->rate_set(clk->handle, clk->id, rate); in scmi_clk_set_rate() 79 return clk->handle->clk_ops->enable(clk->handle, clk->id); in scmi_clk_enable() 86 clk->handle->clk_ops->disable(clk->handle, clk->id); in scmi_clk_disable() 89 static const struct clk_ops scmi_clk_ops = { 146 if (!handle || !handle->clk_ops) in scmi_clocks_probe() 149 count = handle->clk_ops->count_get(handle); in scmi_clocks_probe() 170 sclk->info = handle->clk_ops->info_get(handle, idx); in scmi_clocks_probe()
|
D | clk-gpio.c | 74 static const struct clk_ops clk_gpio_gate_ops = { 103 static const struct clk_ops clk_sleeping_gpio_gate_ops = { 133 static const struct clk_ops clk_gpio_mux_ops = { 141 const struct clk_ops *clk_gpio_ops) in clk_register_gpio() 177 const struct clk_ops *ops; in clk_hw_register_gpio_gate()
|
/Linux-v5.10/arch/m68k/include/asm/ |
D | mcfclk.h | 12 struct clk_ops { struct 19 struct clk_ops *clk_ops; member 28 extern struct clk_ops clk_ops0; 30 extern struct clk_ops clk_ops1; 33 extern struct clk_ops clk_ops2; 38 .clk_ops = &clk_ops##clk_bank, \
|
/Linux-v5.10/arch/m68k/coldfire/ |
D | clk.c | 34 clk->clk_ops->enable(clk); in __clk_init_enabled() 40 clk->clk_ops->disable(clk); in __clk_init_disabled() 53 struct clk_ops clk_ops0 = { 69 struct clk_ops clk_ops1 = { 94 if ((clk->enabled++ == 0) && clk->clk_ops) in clk_enable() 95 clk->clk_ops->enable(clk); in clk_enable() 110 if ((--clk->enabled == 0) && clk->clk_ops) in clk_disable() 111 clk->clk_ops->disable(clk); in clk_disable()
|
/Linux-v5.10/drivers/clk/microchip/ |
D | clk-core.h | 58 extern const struct clk_ops pic32_pbclk_ops; 59 extern const struct clk_ops pic32_sclk_ops; 60 extern const struct clk_ops pic32_sclk_no_div_ops; 61 extern const struct clk_ops pic32_spll_ops; 62 extern const struct clk_ops pic32_roclk_ops; 63 extern const struct clk_ops pic32_sosc_ops;
|
/Linux-v5.10/drivers/clk/tegra/ |
D | clk-periph.c | 17 const struct clk_ops *mux_ops = periph->mux_ops; in clk_periph_get_parent() 28 const struct clk_ops *mux_ops = periph->mux_ops; in clk_periph_set_parent() 40 const struct clk_ops *div_ops = periph->div_ops; in clk_periph_recalc_rate() 52 const struct clk_ops *div_ops = periph->div_ops; in clk_periph_round_rate() 64 const struct clk_ops *div_ops = periph->div_ops; in clk_periph_set_rate() 75 const struct clk_ops *gate_ops = periph->gate_ops; in clk_periph_is_enabled() 86 const struct clk_ops *gate_ops = periph->gate_ops; in clk_periph_enable() 97 const struct clk_ops *gate_ops = periph->gate_ops; in clk_periph_disable() 106 const struct clk_ops *div_ops = periph->div_ops; in clk_periph_restore_context() 120 const struct clk_ops tegra_clk_periph_ops = { [all …]
|
D | clk.h | 88 extern const struct clk_ops tegra_clk_sync_source_ops; 133 extern const struct clk_ops tegra_clk_frac_div_ops; 402 extern const struct clk_ops tegra_clk_pll_ops; 403 extern const struct clk_ops tegra_clk_plle_ops; 517 extern const struct clk_ops tegra_clk_pll_out_ops; 586 extern const struct clk_ops tegra_clk_periph_gate_ops; 627 const struct clk_ops *mux_ops; 628 const struct clk_ops *div_ops; 629 const struct clk_ops *gate_ops; 636 extern const struct clk_ops tegra_clk_periph_ops; [all …]
|
/Linux-v5.10/drivers/clk/meson/ |
D | clk-regmap.h | 56 extern const struct clk_ops clk_regmap_gate_ops; 57 extern const struct clk_ops clk_regmap_gate_ro_ops; 84 extern const struct clk_ops clk_regmap_divider_ops; 85 extern const struct clk_ops clk_regmap_divider_ro_ops; 114 extern const struct clk_ops clk_regmap_mux_ops; 115 extern const struct clk_ops clk_regmap_mux_ro_ops;
|
D | clk-phase.h | 28 extern const struct clk_ops meson_clk_phase_ops; 29 extern const struct clk_ops meson_clk_triphase_ops; 30 extern const struct clk_ops meson_sclk_ws_inv_ops;
|
D | clk-pll.h | 46 extern const struct clk_ops meson_clk_pll_ro_ops; 47 extern const struct clk_ops meson_clk_pll_ops; 48 extern const struct clk_ops meson_clk_pcie_pll_ops;
|
D | clk-regmap.c | 47 const struct clk_ops clk_regmap_gate_ops = { 54 const struct clk_ops clk_regmap_gate_ro_ops = { 124 const struct clk_ops clk_regmap_divider_ops = { 131 const struct clk_ops clk_regmap_divider_ro_ops = { 173 const struct clk_ops clk_regmap_mux_ops = { 180 const struct clk_ops clk_regmap_mux_ro_ops = {
|
/Linux-v5.10/drivers/clk/mediatek/ |
D | clk-gate.h | 29 extern const struct clk_ops mtk_clk_gate_ops_setclr; 30 extern const struct clk_ops mtk_clk_gate_ops_setclr_inv; 31 extern const struct clk_ops mtk_clk_gate_ops_no_setclr; 32 extern const struct clk_ops mtk_clk_gate_ops_no_setclr_inv; 42 const struct clk_ops *ops,
|
D | clk-mux.h | 35 const struct clk_ops *ops; 40 extern const struct clk_ops mtk_mux_ops; 41 extern const struct clk_ops mtk_mux_clr_set_upd_ops; 42 extern const struct clk_ops mtk_mux_gate_ops; 43 extern const struct clk_ops mtk_mux_gate_clr_set_upd_ops;
|
D | clk-gate.c | 120 const struct clk_ops mtk_clk_gate_ops_setclr = { 126 const struct clk_ops mtk_clk_gate_ops_setclr_inv = { 132 const struct clk_ops mtk_clk_gate_ops_no_setclr = { 138 const struct clk_ops mtk_clk_gate_ops_no_setclr_inv = { 152 const struct clk_ops *ops, in mtk_clk_register_gate()
|
/Linux-v5.10/drivers/clk/ti/ |
D | dpll.c | 32 static const struct clk_ops dpll_m4xen_ck_ops = { 46 static const struct clk_ops dpll_m4xen_ck_ops = {}; 52 static const struct clk_ops dpll_core_ck_ops = { 57 static const struct clk_ops dpll_ck_ops = { 71 static const struct clk_ops dpll_no_gate_ck_ops = { 83 static const struct clk_ops dpll_core_ck_ops = {}; 84 static const struct clk_ops dpll_ck_ops = {}; 85 static const struct clk_ops dpll_no_gate_ck_ops = {}; 90 static const struct clk_ops omap2_dpll_core_ck_ops = { 97 static const struct clk_ops omap2_dpll_core_ck_ops = {}; [all …]
|
/Linux-v5.10/drivers/clk/actions/ |
D | owl-composite.h | 32 const struct clk_ops *fix_fact_ops; 118 extern const struct clk_ops owl_comp_div_ops; 119 extern const struct clk_ops owl_comp_fact_ops; 120 extern const struct clk_ops owl_comp_fix_fact_ops; 121 extern const struct clk_ops owl_comp_pass_ops; 122 extern const struct clk_ops clk_fixed_factor_ops;
|
/Linux-v5.10/include/linux/ |
D | clk-provider.h | 220 struct clk_ops { struct 287 const struct clk_ops *ops; 347 extern const struct clk_ops clk_fixed_rate_ops; 485 extern const struct clk_ops clk_gate_ops; 618 extern const struct clk_ops clk_divider_ops; 619 extern const struct clk_ops clk_divider_ro_ops; 834 extern const struct clk_ops clk_mux_ops; 835 extern const struct clk_ops clk_mux_ro_ops; 908 extern const struct clk_ops clk_fixed_factor_ops; 961 extern const struct clk_ops clk_fractional_divider_ops; [all …]
|
/Linux-v5.10/drivers/clk/samsung/ |
D | clk-pll.c | 123 static const struct clk_ops samsung_pll2126_clk_ops = { 156 static const struct clk_ops samsung_pll3000_clk_ops = { 253 static const struct clk_ops samsung_pll35xx_clk_ops = { 261 static const struct clk_ops samsung_pll35xx_clk_min_ops = { 370 static const struct clk_ops samsung_pll36xx_clk_ops = { 378 static const struct clk_ops samsung_pll36xx_clk_min_ops = { 508 static const struct clk_ops samsung_pll45xx_clk_ops = { 514 static const struct clk_ops samsung_pll45xx_clk_min_ops = { 667 static const struct clk_ops samsung_pll46xx_clk_ops = { 673 static const struct clk_ops samsung_pll46xx_clk_min_ops = { [all …]
|
/Linux-v5.10/drivers/mmc/host/ |
D | sdhci-of-arasan.c | 102 const struct clk_ops *sdcardclk_ops; 103 const struct clk_ops *sampleclk_ops; 151 const struct sdhci_arasan_clk_ops *clk_ops; member 167 const struct sdhci_arasan_clk_ops *clk_ops; member 553 static const struct clk_ops arasan_sdcardclk_ops = { 580 static const struct clk_ops arasan_sampleclk_ops = { 644 static const struct clk_ops zynqmp_sdcardclk_ops = { 709 static const struct clk_ops zynqmp_sampleclk_ops = { 775 static const struct clk_ops versal_sdcardclk_ops = { 845 static const struct clk_ops versal_sampleclk_ops = { [all …]
|
/Linux-v5.10/drivers/clk/ux500/ |
D | clk-prcmu.c | 188 static const struct clk_ops clk_prcmu_scalable_ops = { 200 static const struct clk_ops clk_prcmu_gate_ops = { 210 static const struct clk_ops clk_prcmu_scalable_rate_ops = { 217 static const struct clk_ops clk_prcmu_rate_ops = { 222 static const struct clk_ops clk_prcmu_opp_gate_ops = { 232 static const struct clk_ops clk_prcmu_opp_volt_scalable_ops = { 249 const struct clk_ops *clk_prcmu_ops) in clk_reg_prcmu()
|
/Linux-v5.10/drivers/clk/berlin/ |
D | berlin2-div.c | 212 static const struct clk_ops berlin2_div_rate_ops = { 216 static const struct clk_ops berlin2_div_gate_ops = { 222 static const struct clk_ops berlin2_div_mux_ops = { 233 const struct clk_ops *mux_ops = &berlin2_div_mux_ops; in berlin2_div_register() 234 const struct clk_ops *rate_ops = &berlin2_div_rate_ops; in berlin2_div_register() 235 const struct clk_ops *gate_ops = &berlin2_div_gate_ops; in berlin2_div_register()
|