/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2013, The Linux Foundation. All rights reserved. */ #ifndef __QCOM_CLK_PLL_H__ #define __QCOM_CLK_PLL_H__ #include <linux/clk-provider.h> #include "clk-regmap.h" /** * struct pll_freq_tbl - PLL frequency table * @l: L value * @m: M value * @n: N value * @ibits: internal values */ struct pll_freq_tbl { … }; /** * struct clk_pll - phase locked loop (PLL) * @l_reg: L register * @m_reg: M register * @n_reg: N register * @config_reg: config register * @mode_reg: mode register * @status_reg: status register * @status_bit: ANDed with @status_reg to determine if PLL is enabled * @freq_tbl: PLL frequency table * @hw: handle between common and hardware-specific interfaces */ struct clk_pll { … }; extern const struct clk_ops clk_pll_ops; extern const struct clk_ops clk_pll_vote_ops; extern const struct clk_ops clk_pll_sr2_ops; #define to_clk_pll(_hw) … struct pll_config { … }; void clk_pll_configure_sr(struct clk_pll *pll, struct regmap *regmap, const struct pll_config *config, bool fsm_mode); void clk_pll_configure_sr_hpm_lp(struct clk_pll *pll, struct regmap *regmap, const struct pll_config *config, bool fsm_mode); #endif