1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2015, 2018, The Linux Foundation. All rights reserved. */
4 #ifndef __QCOM_CLK_ALPHA_PLL_H__
5 #define __QCOM_CLK_ALPHA_PLL_H__
7 #include <linux/clk-provider.h>
8 #include "clk-regmap.h"
12 CLK_ALPHA_PLL_TYPE_DEFAULT
,
13 CLK_ALPHA_PLL_TYPE_HUAYRA
,
14 CLK_ALPHA_PLL_TYPE_BRAMMO
,
15 CLK_ALPHA_PLL_TYPE_FABIA
,
16 CLK_ALPHA_PLL_TYPE_TRION
,
17 CLK_ALPHA_PLL_TYPE_MAX
,
30 PLL_OFF_CONFIG_CTL_U1
,
40 extern const u8 clk_alpha_pll_regs
[CLK_ALPHA_PLL_TYPE_MAX
][PLL_OFF_MAX_REGS
];
43 unsigned long min_freq
;
44 unsigned long max_freq
;
49 * struct clk_alpha_pll - phase locked loop (PLL)
50 * @offset: base address of registers
51 * @vco_table: array of VCO settings
52 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
53 * @clkr: regmap clock handle
55 struct clk_alpha_pll
{
59 const struct pll_vco
*vco_table
;
61 #define SUPPORTS_OFFLINE_REQ BIT(0)
62 #define SUPPORTS_FSM_MODE BIT(2)
63 #define SUPPORTS_DYNAMIC_UPDATE BIT(3)
66 struct clk_regmap clkr
;
70 * struct clk_alpha_pll_postdiv - phase locked loop (PLL) post-divider
71 * @offset: base address of registers
72 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
73 * @width: width of post-divider
74 * @post_div_shift: shift to differentiate between odd & even post-divider
75 * @post_div_table: table with PLL odd and even post-divider settings
76 * @num_post_div: Number of PLL post-divider settings
78 * @clkr: regmap clock handle
80 struct clk_alpha_pll_postdiv
{
85 struct clk_regmap clkr
;
87 const struct clk_div_table
*post_div_table
;
91 struct alpha_pll_config
{
96 u32 config_ctl_hi_val
;
100 u32 early_output_mask
;
111 extern const struct clk_ops clk_alpha_pll_ops
;
112 extern const struct clk_ops clk_alpha_pll_hwfsm_ops
;
113 extern const struct clk_ops clk_alpha_pll_postdiv_ops
;
114 extern const struct clk_ops clk_alpha_pll_huayra_ops
;
115 extern const struct clk_ops clk_alpha_pll_postdiv_ro_ops
;
117 extern const struct clk_ops clk_alpha_pll_fabia_ops
;
118 extern const struct clk_ops clk_alpha_pll_fixed_fabia_ops
;
119 extern const struct clk_ops clk_alpha_pll_postdiv_fabia_ops
;
121 void clk_alpha_pll_configure(struct clk_alpha_pll
*pll
, struct regmap
*regmap
,
122 const struct alpha_pll_config
*config
);
123 void clk_fabia_pll_configure(struct clk_alpha_pll
*pll
, struct regmap
*regmap
,
124 const struct alpha_pll_config
*config
);
125 extern const struct clk_ops clk_trion_fixed_pll_ops
;
126 extern const struct clk_ops clk_trion_pll_postdiv_ops
;