1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2014, The Linux Foundation. All rights reserved. */
4 #ifndef __QCOM_CLK_COMMON_H__
5 #define __QCOM_CLK_COMMON_H__
7 struct platform_device
;
10 struct qcom_reset_map
;
15 #define PLL_LOCK_COUNT_SHIFT 8
16 #define PLL_LOCK_COUNT_MASK 0x3f
17 #define PLL_BIAS_COUNT_SHIFT 14
18 #define PLL_BIAS_COUNT_MASK 0x3f
19 #define PLL_VOTE_FSM_ENA BIT(20)
20 #define PLL_VOTE_FSM_RESET BIT(21)
23 const struct regmap_config
*config
;
24 struct clk_regmap
**clks
;
26 const struct qcom_reset_map
*resets
;
30 struct clk_hw
**clk_hws
;
35 * struct parent_map - map table for source select configuration values
37 * @cfg: configuration value
44 extern const struct freq_tbl
*qcom_find_freq(const struct freq_tbl
*f
,
46 extern const struct freq_tbl
*qcom_find_freq_floor(const struct freq_tbl
*f
,
49 qcom_pll_set_fsm_mode(struct regmap
*m
, u32 reg
, u8 bias_count
, u8 lock_count
);
50 extern int qcom_find_src_index(struct clk_hw
*hw
, const struct parent_map
*map
,
53 extern int qcom_cc_register_board_clk(struct device
*dev
, const char *path
,
54 const char *name
, unsigned long rate
);
55 extern int qcom_cc_register_sleep_clk(struct device
*dev
);
57 extern struct regmap
*qcom_cc_map(struct platform_device
*pdev
,
58 const struct qcom_cc_desc
*desc
);
59 extern int qcom_cc_really_probe(struct platform_device
*pdev
,
60 const struct qcom_cc_desc
*desc
,
61 struct regmap
*regmap
);
62 extern int qcom_cc_probe(struct platform_device
*pdev
,
63 const struct qcom_cc_desc
*desc
);
64 extern int qcom_cc_probe_by_index(struct platform_device
*pdev
, int index
,
65 const struct qcom_cc_desc
*desc
);