2 * Copyright (c) 2013, The Linux Foundation. All rights reserved.
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <linux/kernel.h>
15 #include <linux/bitops.h>
16 #include <linux/err.h>
17 #include <linux/bug.h>
18 #include <linux/delay.h>
19 #include <linux/export.h>
20 #include <linux/clk-provider.h>
21 #include <linux/regmap.h>
23 #include <asm/div64.h>
27 #define PLL_OUTCTRL BIT(0)
28 #define PLL_BYPASSNL BIT(1)
29 #define PLL_RESET_N BIT(2)
30 #define PLL_LOCK_COUNT_SHIFT 8
31 #define PLL_LOCK_COUNT_MASK 0x3f
32 #define PLL_BIAS_COUNT_SHIFT 14
33 #define PLL_BIAS_COUNT_MASK 0x3f
34 #define PLL_VOTE_FSM_ENA BIT(20)
35 #define PLL_VOTE_FSM_RESET BIT(21)
37 static int clk_pll_enable(struct clk_hw
*hw
)
39 struct clk_pll
*pll
= to_clk_pll(hw
);
43 mask
= PLL_OUTCTRL
| PLL_RESET_N
| PLL_BYPASSNL
;
44 ret
= regmap_read(pll
->clkr
.regmap
, pll
->mode_reg
, &val
);
48 /* Skip if already enabled or in FSM mode */
49 if ((val
& mask
) == mask
|| val
& PLL_VOTE_FSM_ENA
)
52 /* Disable PLL bypass mode. */
53 ret
= regmap_update_bits(pll
->clkr
.regmap
, pll
->mode_reg
, PLL_BYPASSNL
,
59 * H/W requires a 5us delay between disabling the bypass and
60 * de-asserting the reset. Delay 10us just to be safe.
64 /* De-assert active-low PLL reset. */
65 ret
= regmap_update_bits(pll
->clkr
.regmap
, pll
->mode_reg
, PLL_RESET_N
,
70 /* Wait until PLL is locked. */
73 /* Enable PLL output. */
74 ret
= regmap_update_bits(pll
->clkr
.regmap
, pll
->mode_reg
, PLL_OUTCTRL
,
82 static void clk_pll_disable(struct clk_hw
*hw
)
84 struct clk_pll
*pll
= to_clk_pll(hw
);
88 regmap_read(pll
->clkr
.regmap
, pll
->mode_reg
, &val
);
89 /* Skip if in FSM mode */
90 if (val
& PLL_VOTE_FSM_ENA
)
92 mask
= PLL_OUTCTRL
| PLL_RESET_N
| PLL_BYPASSNL
;
93 regmap_update_bits(pll
->clkr
.regmap
, pll
->mode_reg
, mask
, 0);
97 clk_pll_recalc_rate(struct clk_hw
*hw
, unsigned long parent_rate
)
99 struct clk_pll
*pll
= to_clk_pll(hw
);
104 regmap_read(pll
->clkr
.regmap
, pll
->l_reg
, &l
);
105 regmap_read(pll
->clkr
.regmap
, pll
->m_reg
, &m
);
106 regmap_read(pll
->clkr
.regmap
, pll
->n_reg
, &n
);
112 rate
= parent_rate
* l
;
119 if (pll
->post_div_width
) {
120 regmap_read(pll
->clkr
.regmap
, pll
->config_reg
, &config
);
121 config
>>= pll
->post_div_shift
;
122 config
&= BIT(pll
->post_div_width
) - 1;
130 struct pll_freq_tbl
*find_freq(const struct pll_freq_tbl
*f
, unsigned long rate
)
143 clk_pll_determine_rate(struct clk_hw
*hw
, unsigned long rate
,
144 unsigned long *p_rate
, struct clk_hw
**p
)
146 struct clk_pll
*pll
= to_clk_pll(hw
);
147 const struct pll_freq_tbl
*f
;
149 f
= find_freq(pll
->freq_tbl
, rate
);
151 return clk_pll_recalc_rate(hw
, *p_rate
);
157 clk_pll_set_rate(struct clk_hw
*hw
, unsigned long rate
, unsigned long p_rate
)
159 struct clk_pll
*pll
= to_clk_pll(hw
);
160 const struct pll_freq_tbl
*f
;
163 u32 enable_mask
= PLL_OUTCTRL
| PLL_BYPASSNL
| PLL_RESET_N
;
165 f
= find_freq(pll
->freq_tbl
, rate
);
169 regmap_read(pll
->clkr
.regmap
, pll
->mode_reg
, &mode
);
170 enabled
= (mode
& enable_mask
) == enable_mask
;
175 regmap_update_bits(pll
->clkr
.regmap
, pll
->l_reg
, 0x3ff, f
->l
);
176 regmap_update_bits(pll
->clkr
.regmap
, pll
->m_reg
, 0x7ffff, f
->m
);
177 regmap_update_bits(pll
->clkr
.regmap
, pll
->n_reg
, 0x7ffff, f
->n
);
178 regmap_write(pll
->clkr
.regmap
, pll
->config_reg
, f
->ibits
);
186 const struct clk_ops clk_pll_ops
= {
187 .enable
= clk_pll_enable
,
188 .disable
= clk_pll_disable
,
189 .recalc_rate
= clk_pll_recalc_rate
,
190 .determine_rate
= clk_pll_determine_rate
,
191 .set_rate
= clk_pll_set_rate
,
193 EXPORT_SYMBOL_GPL(clk_pll_ops
);
195 static int wait_for_pll(struct clk_pll
*pll
)
200 const char *name
= __clk_get_name(pll
->clkr
.hw
.clk
);
202 /* Wait for pll to enable. */
203 for (count
= 200; count
> 0; count
--) {
204 ret
= regmap_read(pll
->clkr
.regmap
, pll
->status_reg
, &val
);
207 if (val
& BIT(pll
->status_bit
))
212 WARN(1, "%s didn't enable after voting for it!\n", name
);
216 static int clk_pll_vote_enable(struct clk_hw
*hw
)
219 struct clk_pll
*p
= to_clk_pll(__clk_get_hw(__clk_get_parent(hw
->clk
)));
221 ret
= clk_enable_regmap(hw
);
225 return wait_for_pll(p
);
228 const struct clk_ops clk_pll_vote_ops
= {
229 .enable
= clk_pll_vote_enable
,
230 .disable
= clk_disable_regmap
,
232 EXPORT_SYMBOL_GPL(clk_pll_vote_ops
);
235 clk_pll_set_fsm_mode(struct clk_pll
*pll
, struct regmap
*regmap
, u8 lock_count
)
240 /* De-assert reset to FSM */
241 regmap_update_bits(regmap
, pll
->mode_reg
, PLL_VOTE_FSM_RESET
, 0);
243 /* Program bias count and lock count */
244 val
= 1 << PLL_BIAS_COUNT_SHIFT
| lock_count
<< PLL_LOCK_COUNT_SHIFT
;
245 mask
= PLL_BIAS_COUNT_MASK
<< PLL_BIAS_COUNT_SHIFT
;
246 mask
|= PLL_LOCK_COUNT_MASK
<< PLL_LOCK_COUNT_SHIFT
;
247 regmap_update_bits(regmap
, pll
->mode_reg
, mask
, val
);
249 /* Enable PLL FSM voting */
250 regmap_update_bits(regmap
, pll
->mode_reg
, PLL_VOTE_FSM_ENA
,
254 static void clk_pll_configure(struct clk_pll
*pll
, struct regmap
*regmap
,
255 const struct pll_config
*config
)
260 regmap_write(regmap
, pll
->l_reg
, config
->l
);
261 regmap_write(regmap
, pll
->m_reg
, config
->m
);
262 regmap_write(regmap
, pll
->n_reg
, config
->n
);
264 val
= config
->vco_val
;
265 val
|= config
->pre_div_val
;
266 val
|= config
->post_div_val
;
267 val
|= config
->mn_ena_mask
;
268 val
|= config
->main_output_mask
;
269 val
|= config
->aux_output_mask
;
271 mask
= config
->vco_mask
;
272 mask
|= config
->pre_div_mask
;
273 mask
|= config
->post_div_mask
;
274 mask
|= config
->mn_ena_mask
;
275 mask
|= config
->main_output_mask
;
276 mask
|= config
->aux_output_mask
;
278 regmap_update_bits(regmap
, pll
->config_reg
, mask
, val
);
281 void clk_pll_configure_sr(struct clk_pll
*pll
, struct regmap
*regmap
,
282 const struct pll_config
*config
, bool fsm_mode
)
284 clk_pll_configure(pll
, regmap
, config
);
286 clk_pll_set_fsm_mode(pll
, regmap
, 8);
288 EXPORT_SYMBOL_GPL(clk_pll_configure_sr
);
290 void clk_pll_configure_sr_hpm_lp(struct clk_pll
*pll
, struct regmap
*regmap
,
291 const struct pll_config
*config
, bool fsm_mode
)
293 clk_pll_configure(pll
, regmap
, config
);
295 clk_pll_set_fsm_mode(pll
, regmap
, 0);
297 EXPORT_SYMBOL_GPL(clk_pll_configure_sr_hpm_lp
);