2 * Copyright (c) 2014 MundoReader S.L.
3 * Author: Heiko Stuebner <heiko@sntech.de>
5 * Copyright (c) 2015 Rockchip Electronics Co. Ltd.
6 * Author: Xing Zheng <zhengxing@rock-chips.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
19 #include <asm/div64.h>
20 #include <linux/slab.h>
22 #include <linux/delay.h>
23 #include <linux/clk-provider.h>
24 #include <linux/regmap.h>
25 #include <linux/clk.h>
28 #define PLL_MODE_MASK 0x3
29 #define PLL_MODE_SLOW 0x0
30 #define PLL_MODE_NORM 0x1
31 #define PLL_MODE_DEEP 0x2
33 struct rockchip_clk_pll
{
36 struct clk_mux pll_mux
;
37 const struct clk_ops
*pll_mux_ops
;
39 struct notifier_block clk_nb
;
41 void __iomem
*reg_base
;
43 unsigned int lock_shift
;
44 enum rockchip_pll_type type
;
46 const struct rockchip_pll_rate_table
*rate_table
;
47 unsigned int rate_count
;
50 struct rockchip_clk_provider
*ctx
;
53 #define to_rockchip_clk_pll(_hw) container_of(_hw, struct rockchip_clk_pll, hw)
54 #define to_rockchip_clk_pll_nb(nb) \
55 container_of(nb, struct rockchip_clk_pll, clk_nb)
57 static const struct rockchip_pll_rate_table
*rockchip_get_pll_settings(
58 struct rockchip_clk_pll
*pll
, unsigned long rate
)
60 const struct rockchip_pll_rate_table
*rate_table
= pll
->rate_table
;
63 for (i
= 0; i
< pll
->rate_count
; i
++) {
64 if (rate
== rate_table
[i
].rate
)
65 return &rate_table
[i
];
71 static long rockchip_pll_round_rate(struct clk_hw
*hw
,
72 unsigned long drate
, unsigned long *prate
)
74 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
75 const struct rockchip_pll_rate_table
*rate_table
= pll
->rate_table
;
78 /* Assumming rate_table is in descending order */
79 for (i
= 0; i
< pll
->rate_count
; i
++) {
80 if (drate
>= rate_table
[i
].rate
)
81 return rate_table
[i
].rate
;
84 /* return minimum supported value */
85 return rate_table
[i
- 1].rate
;
89 * Wait for the pll to reach the locked state.
90 * The calling set_rate function is responsible for making sure the
91 * grf regmap is available.
93 static int rockchip_pll_wait_lock(struct rockchip_clk_pll
*pll
)
95 struct regmap
*grf
= pll
->ctx
->grf
;
97 int delay
= 24000000, ret
;
100 ret
= regmap_read(grf
, pll
->lock_offset
, &val
);
102 pr_err("%s: failed to read pll lock status: %d\n",
107 if (val
& BIT(pll
->lock_shift
))
112 pr_err("%s: timeout waiting for pll to lock\n", __func__
);
120 #define RK3036_PLLCON(i) (i * 0x4)
121 #define RK3036_PLLCON0_FBDIV_MASK 0xfff
122 #define RK3036_PLLCON0_FBDIV_SHIFT 0
123 #define RK3036_PLLCON0_POSTDIV1_MASK 0x7
124 #define RK3036_PLLCON0_POSTDIV1_SHIFT 12
125 #define RK3036_PLLCON1_REFDIV_MASK 0x3f
126 #define RK3036_PLLCON1_REFDIV_SHIFT 0
127 #define RK3036_PLLCON1_POSTDIV2_MASK 0x7
128 #define RK3036_PLLCON1_POSTDIV2_SHIFT 6
129 #define RK3036_PLLCON1_DSMPD_MASK 0x1
130 #define RK3036_PLLCON1_DSMPD_SHIFT 12
131 #define RK3036_PLLCON2_FRAC_MASK 0xffffff
132 #define RK3036_PLLCON2_FRAC_SHIFT 0
134 #define RK3036_PLLCON1_PWRDOWN (1 << 13)
136 static void rockchip_rk3036_pll_get_params(struct rockchip_clk_pll
*pll
,
137 struct rockchip_pll_rate_table
*rate
)
141 pllcon
= readl_relaxed(pll
->reg_base
+ RK3036_PLLCON(0));
142 rate
->fbdiv
= ((pllcon
>> RK3036_PLLCON0_FBDIV_SHIFT
)
143 & RK3036_PLLCON0_FBDIV_MASK
);
144 rate
->postdiv1
= ((pllcon
>> RK3036_PLLCON0_POSTDIV1_SHIFT
)
145 & RK3036_PLLCON0_POSTDIV1_MASK
);
147 pllcon
= readl_relaxed(pll
->reg_base
+ RK3036_PLLCON(1));
148 rate
->refdiv
= ((pllcon
>> RK3036_PLLCON1_REFDIV_SHIFT
)
149 & RK3036_PLLCON1_REFDIV_MASK
);
150 rate
->postdiv2
= ((pllcon
>> RK3036_PLLCON1_POSTDIV2_SHIFT
)
151 & RK3036_PLLCON1_POSTDIV2_MASK
);
152 rate
->dsmpd
= ((pllcon
>> RK3036_PLLCON1_DSMPD_SHIFT
)
153 & RK3036_PLLCON1_DSMPD_MASK
);
155 pllcon
= readl_relaxed(pll
->reg_base
+ RK3036_PLLCON(2));
156 rate
->frac
= ((pllcon
>> RK3036_PLLCON2_FRAC_SHIFT
)
157 & RK3036_PLLCON2_FRAC_MASK
);
160 static unsigned long rockchip_rk3036_pll_recalc_rate(struct clk_hw
*hw
,
163 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
164 struct rockchip_pll_rate_table cur
;
167 rockchip_rk3036_pll_get_params(pll
, &cur
);
170 do_div(rate64
, cur
.refdiv
);
172 if (cur
.dsmpd
== 0) {
173 /* fractional mode */
174 u64 frac_rate64
= prate
* cur
.frac
;
176 do_div(frac_rate64
, cur
.refdiv
);
177 rate64
+= frac_rate64
>> 24;
180 do_div(rate64
, cur
.postdiv1
);
181 do_div(rate64
, cur
.postdiv2
);
183 return (unsigned long)rate64
;
186 static int rockchip_rk3036_pll_set_params(struct rockchip_clk_pll
*pll
,
187 const struct rockchip_pll_rate_table
*rate
)
189 const struct clk_ops
*pll_mux_ops
= pll
->pll_mux_ops
;
190 struct clk_mux
*pll_mux
= &pll
->pll_mux
;
191 struct rockchip_pll_rate_table cur
;
193 int rate_change_remuxed
= 0;
197 pr_debug("%s: rate settings for %lu fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
198 __func__
, rate
->rate
, rate
->fbdiv
, rate
->postdiv1
, rate
->refdiv
,
199 rate
->postdiv2
, rate
->dsmpd
, rate
->frac
);
201 rockchip_rk3036_pll_get_params(pll
, &cur
);
204 cur_parent
= pll_mux_ops
->get_parent(&pll_mux
->hw
);
205 if (cur_parent
== PLL_MODE_NORM
) {
206 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_SLOW
);
207 rate_change_remuxed
= 1;
210 /* update pll values */
211 writel_relaxed(HIWORD_UPDATE(rate
->fbdiv
, RK3036_PLLCON0_FBDIV_MASK
,
212 RK3036_PLLCON0_FBDIV_SHIFT
) |
213 HIWORD_UPDATE(rate
->postdiv1
, RK3036_PLLCON0_POSTDIV1_MASK
,
214 RK3036_PLLCON0_POSTDIV1_SHIFT
),
215 pll
->reg_base
+ RK3036_PLLCON(0));
217 writel_relaxed(HIWORD_UPDATE(rate
->refdiv
, RK3036_PLLCON1_REFDIV_MASK
,
218 RK3036_PLLCON1_REFDIV_SHIFT
) |
219 HIWORD_UPDATE(rate
->postdiv2
, RK3036_PLLCON1_POSTDIV2_MASK
,
220 RK3036_PLLCON1_POSTDIV2_SHIFT
) |
221 HIWORD_UPDATE(rate
->dsmpd
, RK3036_PLLCON1_DSMPD_MASK
,
222 RK3036_PLLCON1_DSMPD_SHIFT
),
223 pll
->reg_base
+ RK3036_PLLCON(1));
225 /* GPLL CON2 is not HIWORD_MASK */
226 pllcon
= readl_relaxed(pll
->reg_base
+ RK3036_PLLCON(2));
227 pllcon
&= ~(RK3036_PLLCON2_FRAC_MASK
<< RK3036_PLLCON2_FRAC_SHIFT
);
228 pllcon
|= rate
->frac
<< RK3036_PLLCON2_FRAC_SHIFT
;
229 writel_relaxed(pllcon
, pll
->reg_base
+ RK3036_PLLCON(2));
231 /* wait for the pll to lock */
232 ret
= rockchip_pll_wait_lock(pll
);
234 pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
236 rockchip_rk3036_pll_set_params(pll
, &cur
);
239 if (rate_change_remuxed
)
240 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_NORM
);
245 static int rockchip_rk3036_pll_set_rate(struct clk_hw
*hw
, unsigned long drate
,
248 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
249 const struct rockchip_pll_rate_table
*rate
;
251 pr_debug("%s: changing %s to %lu with a parent rate of %lu\n",
252 __func__
, __clk_get_name(hw
->clk
), drate
, prate
);
254 /* Get required rate settings from table */
255 rate
= rockchip_get_pll_settings(pll
, drate
);
257 pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__
,
258 drate
, __clk_get_name(hw
->clk
));
262 return rockchip_rk3036_pll_set_params(pll
, rate
);
265 static int rockchip_rk3036_pll_enable(struct clk_hw
*hw
)
267 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
269 writel(HIWORD_UPDATE(0, RK3036_PLLCON1_PWRDOWN
, 0),
270 pll
->reg_base
+ RK3036_PLLCON(1));
275 static void rockchip_rk3036_pll_disable(struct clk_hw
*hw
)
277 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
279 writel(HIWORD_UPDATE(RK3036_PLLCON1_PWRDOWN
,
280 RK3036_PLLCON1_PWRDOWN
, 0),
281 pll
->reg_base
+ RK3036_PLLCON(1));
284 static int rockchip_rk3036_pll_is_enabled(struct clk_hw
*hw
)
286 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
287 u32 pllcon
= readl(pll
->reg_base
+ RK3036_PLLCON(1));
289 return !(pllcon
& RK3036_PLLCON1_PWRDOWN
);
292 static void rockchip_rk3036_pll_init(struct clk_hw
*hw
)
294 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
295 const struct rockchip_pll_rate_table
*rate
;
296 struct rockchip_pll_rate_table cur
;
299 if (!(pll
->flags
& ROCKCHIP_PLL_SYNC_RATE
))
302 drate
= clk_hw_get_rate(hw
);
303 rate
= rockchip_get_pll_settings(pll
, drate
);
305 /* when no rate setting for the current rate, rely on clk_set_rate */
309 rockchip_rk3036_pll_get_params(pll
, &cur
);
311 pr_debug("%s: pll %s@%lu: Hz\n", __func__
, __clk_get_name(hw
->clk
),
313 pr_debug("old - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
314 cur
.fbdiv
, cur
.postdiv1
, cur
.refdiv
, cur
.postdiv2
,
315 cur
.dsmpd
, cur
.frac
);
316 pr_debug("new - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
317 rate
->fbdiv
, rate
->postdiv1
, rate
->refdiv
, rate
->postdiv2
,
318 rate
->dsmpd
, rate
->frac
);
320 if (rate
->fbdiv
!= cur
.fbdiv
|| rate
->postdiv1
!= cur
.postdiv1
||
321 rate
->refdiv
!= cur
.refdiv
|| rate
->postdiv2
!= cur
.postdiv2
||
322 rate
->dsmpd
!= cur
.dsmpd
||
323 (!cur
.dsmpd
&& (rate
->frac
!= cur
.frac
))) {
324 struct clk
*parent
= clk_get_parent(hw
->clk
);
327 pr_warn("%s: parent of %s not available\n",
328 __func__
, __clk_get_name(hw
->clk
));
332 pr_debug("%s: pll %s: rate params do not match rate table, adjusting\n",
333 __func__
, __clk_get_name(hw
->clk
));
334 rockchip_rk3036_pll_set_params(pll
, rate
);
338 static const struct clk_ops rockchip_rk3036_pll_clk_norate_ops
= {
339 .recalc_rate
= rockchip_rk3036_pll_recalc_rate
,
340 .enable
= rockchip_rk3036_pll_enable
,
341 .disable
= rockchip_rk3036_pll_disable
,
342 .is_enabled
= rockchip_rk3036_pll_is_enabled
,
345 static const struct clk_ops rockchip_rk3036_pll_clk_ops
= {
346 .recalc_rate
= rockchip_rk3036_pll_recalc_rate
,
347 .round_rate
= rockchip_pll_round_rate
,
348 .set_rate
= rockchip_rk3036_pll_set_rate
,
349 .enable
= rockchip_rk3036_pll_enable
,
350 .disable
= rockchip_rk3036_pll_disable
,
351 .is_enabled
= rockchip_rk3036_pll_is_enabled
,
352 .init
= rockchip_rk3036_pll_init
,
356 * PLL used in RK3066, RK3188 and RK3288
359 #define RK3066_PLL_RESET_DELAY(nr) ((nr * 500) / 24 + 1)
361 #define RK3066_PLLCON(i) (i * 0x4)
362 #define RK3066_PLLCON0_OD_MASK 0xf
363 #define RK3066_PLLCON0_OD_SHIFT 0
364 #define RK3066_PLLCON0_NR_MASK 0x3f
365 #define RK3066_PLLCON0_NR_SHIFT 8
366 #define RK3066_PLLCON1_NF_MASK 0x1fff
367 #define RK3066_PLLCON1_NF_SHIFT 0
368 #define RK3066_PLLCON2_NB_MASK 0xfff
369 #define RK3066_PLLCON2_NB_SHIFT 0
370 #define RK3066_PLLCON3_RESET (1 << 5)
371 #define RK3066_PLLCON3_PWRDOWN (1 << 1)
372 #define RK3066_PLLCON3_BYPASS (1 << 0)
374 static void rockchip_rk3066_pll_get_params(struct rockchip_clk_pll
*pll
,
375 struct rockchip_pll_rate_table
*rate
)
379 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(0));
380 rate
->nr
= ((pllcon
>> RK3066_PLLCON0_NR_SHIFT
)
381 & RK3066_PLLCON0_NR_MASK
) + 1;
382 rate
->no
= ((pllcon
>> RK3066_PLLCON0_OD_SHIFT
)
383 & RK3066_PLLCON0_OD_MASK
) + 1;
385 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(1));
386 rate
->nf
= ((pllcon
>> RK3066_PLLCON1_NF_SHIFT
)
387 & RK3066_PLLCON1_NF_MASK
) + 1;
389 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(2));
390 rate
->nb
= ((pllcon
>> RK3066_PLLCON2_NB_SHIFT
)
391 & RK3066_PLLCON2_NB_MASK
) + 1;
394 static unsigned long rockchip_rk3066_pll_recalc_rate(struct clk_hw
*hw
,
397 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
398 struct rockchip_pll_rate_table cur
;
402 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(3));
403 if (pllcon
& RK3066_PLLCON3_BYPASS
) {
404 pr_debug("%s: pll %s is bypassed\n", __func__
,
405 clk_hw_get_name(hw
));
409 rockchip_rk3066_pll_get_params(pll
, &cur
);
412 do_div(rate64
, cur
.nr
);
413 do_div(rate64
, cur
.no
);
415 return (unsigned long)rate64
;
418 static int rockchip_rk3066_pll_set_params(struct rockchip_clk_pll
*pll
,
419 const struct rockchip_pll_rate_table
*rate
)
421 const struct clk_ops
*pll_mux_ops
= pll
->pll_mux_ops
;
422 struct clk_mux
*pll_mux
= &pll
->pll_mux
;
423 struct rockchip_pll_rate_table cur
;
424 int rate_change_remuxed
= 0;
428 pr_debug("%s: rate settings for %lu (nr, no, nf): (%d, %d, %d)\n",
429 __func__
, rate
->rate
, rate
->nr
, rate
->no
, rate
->nf
);
431 rockchip_rk3066_pll_get_params(pll
, &cur
);
434 cur_parent
= pll_mux_ops
->get_parent(&pll_mux
->hw
);
435 if (cur_parent
== PLL_MODE_NORM
) {
436 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_SLOW
);
437 rate_change_remuxed
= 1;
440 /* enter reset mode */
441 writel(HIWORD_UPDATE(RK3066_PLLCON3_RESET
, RK3066_PLLCON3_RESET
, 0),
442 pll
->reg_base
+ RK3066_PLLCON(3));
444 /* update pll values */
445 writel(HIWORD_UPDATE(rate
->nr
- 1, RK3066_PLLCON0_NR_MASK
,
446 RK3066_PLLCON0_NR_SHIFT
) |
447 HIWORD_UPDATE(rate
->no
- 1, RK3066_PLLCON0_OD_MASK
,
448 RK3066_PLLCON0_OD_SHIFT
),
449 pll
->reg_base
+ RK3066_PLLCON(0));
451 writel_relaxed(HIWORD_UPDATE(rate
->nf
- 1, RK3066_PLLCON1_NF_MASK
,
452 RK3066_PLLCON1_NF_SHIFT
),
453 pll
->reg_base
+ RK3066_PLLCON(1));
454 writel_relaxed(HIWORD_UPDATE(rate
->nb
- 1, RK3066_PLLCON2_NB_MASK
,
455 RK3066_PLLCON2_NB_SHIFT
),
456 pll
->reg_base
+ RK3066_PLLCON(2));
458 /* leave reset and wait the reset_delay */
459 writel(HIWORD_UPDATE(0, RK3066_PLLCON3_RESET
, 0),
460 pll
->reg_base
+ RK3066_PLLCON(3));
461 udelay(RK3066_PLL_RESET_DELAY(rate
->nr
));
463 /* wait for the pll to lock */
464 ret
= rockchip_pll_wait_lock(pll
);
466 pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
468 rockchip_rk3066_pll_set_params(pll
, &cur
);
471 if (rate_change_remuxed
)
472 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_NORM
);
477 static int rockchip_rk3066_pll_set_rate(struct clk_hw
*hw
, unsigned long drate
,
480 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
481 const struct rockchip_pll_rate_table
*rate
;
483 pr_debug("%s: changing %s to %lu with a parent rate of %lu\n",
484 __func__
, clk_hw_get_name(hw
), drate
, prate
);
486 /* Get required rate settings from table */
487 rate
= rockchip_get_pll_settings(pll
, drate
);
489 pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__
,
490 drate
, clk_hw_get_name(hw
));
494 return rockchip_rk3066_pll_set_params(pll
, rate
);
497 static int rockchip_rk3066_pll_enable(struct clk_hw
*hw
)
499 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
501 writel(HIWORD_UPDATE(0, RK3066_PLLCON3_PWRDOWN
, 0),
502 pll
->reg_base
+ RK3066_PLLCON(3));
507 static void rockchip_rk3066_pll_disable(struct clk_hw
*hw
)
509 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
511 writel(HIWORD_UPDATE(RK3066_PLLCON3_PWRDOWN
,
512 RK3066_PLLCON3_PWRDOWN
, 0),
513 pll
->reg_base
+ RK3066_PLLCON(3));
516 static int rockchip_rk3066_pll_is_enabled(struct clk_hw
*hw
)
518 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
519 u32 pllcon
= readl(pll
->reg_base
+ RK3066_PLLCON(3));
521 return !(pllcon
& RK3066_PLLCON3_PWRDOWN
);
524 static void rockchip_rk3066_pll_init(struct clk_hw
*hw
)
526 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
527 const struct rockchip_pll_rate_table
*rate
;
528 struct rockchip_pll_rate_table cur
;
531 if (!(pll
->flags
& ROCKCHIP_PLL_SYNC_RATE
))
534 drate
= clk_hw_get_rate(hw
);
535 rate
= rockchip_get_pll_settings(pll
, drate
);
537 /* when no rate setting for the current rate, rely on clk_set_rate */
541 rockchip_rk3066_pll_get_params(pll
, &cur
);
543 pr_debug("%s: pll %s@%lu: nr (%d:%d); no (%d:%d); nf(%d:%d), nb(%d:%d)\n",
544 __func__
, clk_hw_get_name(hw
), drate
, rate
->nr
, cur
.nr
,
545 rate
->no
, cur
.no
, rate
->nf
, cur
.nf
, rate
->nb
, cur
.nb
);
546 if (rate
->nr
!= cur
.nr
|| rate
->no
!= cur
.no
|| rate
->nf
!= cur
.nf
547 || rate
->nb
!= cur
.nb
) {
548 pr_debug("%s: pll %s: rate params do not match rate table, adjusting\n",
549 __func__
, clk_hw_get_name(hw
));
550 rockchip_rk3066_pll_set_params(pll
, rate
);
554 static const struct clk_ops rockchip_rk3066_pll_clk_norate_ops
= {
555 .recalc_rate
= rockchip_rk3066_pll_recalc_rate
,
556 .enable
= rockchip_rk3066_pll_enable
,
557 .disable
= rockchip_rk3066_pll_disable
,
558 .is_enabled
= rockchip_rk3066_pll_is_enabled
,
561 static const struct clk_ops rockchip_rk3066_pll_clk_ops
= {
562 .recalc_rate
= rockchip_rk3066_pll_recalc_rate
,
563 .round_rate
= rockchip_pll_round_rate
,
564 .set_rate
= rockchip_rk3066_pll_set_rate
,
565 .enable
= rockchip_rk3066_pll_enable
,
566 .disable
= rockchip_rk3066_pll_disable
,
567 .is_enabled
= rockchip_rk3066_pll_is_enabled
,
568 .init
= rockchip_rk3066_pll_init
,
575 #define RK3399_PLLCON(i) (i * 0x4)
576 #define RK3399_PLLCON0_FBDIV_MASK 0xfff
577 #define RK3399_PLLCON0_FBDIV_SHIFT 0
578 #define RK3399_PLLCON1_REFDIV_MASK 0x3f
579 #define RK3399_PLLCON1_REFDIV_SHIFT 0
580 #define RK3399_PLLCON1_POSTDIV1_MASK 0x7
581 #define RK3399_PLLCON1_POSTDIV1_SHIFT 8
582 #define RK3399_PLLCON1_POSTDIV2_MASK 0x7
583 #define RK3399_PLLCON1_POSTDIV2_SHIFT 12
584 #define RK3399_PLLCON2_FRAC_MASK 0xffffff
585 #define RK3399_PLLCON2_FRAC_SHIFT 0
586 #define RK3399_PLLCON2_LOCK_STATUS BIT(31)
587 #define RK3399_PLLCON3_PWRDOWN BIT(0)
588 #define RK3399_PLLCON3_DSMPD_MASK 0x1
589 #define RK3399_PLLCON3_DSMPD_SHIFT 3
591 static int rockchip_rk3399_pll_wait_lock(struct rockchip_clk_pll
*pll
)
594 int delay
= 24000000;
596 /* poll check the lock status in rk3399 xPLLCON2 */
598 pllcon
= readl_relaxed(pll
->reg_base
+ RK3399_PLLCON(2));
599 if (pllcon
& RK3399_PLLCON2_LOCK_STATUS
)
605 pr_err("%s: timeout waiting for pll to lock\n", __func__
);
609 static void rockchip_rk3399_pll_get_params(struct rockchip_clk_pll
*pll
,
610 struct rockchip_pll_rate_table
*rate
)
614 pllcon
= readl_relaxed(pll
->reg_base
+ RK3399_PLLCON(0));
615 rate
->fbdiv
= ((pllcon
>> RK3399_PLLCON0_FBDIV_SHIFT
)
616 & RK3399_PLLCON0_FBDIV_MASK
);
618 pllcon
= readl_relaxed(pll
->reg_base
+ RK3399_PLLCON(1));
619 rate
->refdiv
= ((pllcon
>> RK3399_PLLCON1_REFDIV_SHIFT
)
620 & RK3399_PLLCON1_REFDIV_MASK
);
621 rate
->postdiv1
= ((pllcon
>> RK3399_PLLCON1_POSTDIV1_SHIFT
)
622 & RK3399_PLLCON1_POSTDIV1_MASK
);
623 rate
->postdiv2
= ((pllcon
>> RK3399_PLLCON1_POSTDIV2_SHIFT
)
624 & RK3399_PLLCON1_POSTDIV2_MASK
);
626 pllcon
= readl_relaxed(pll
->reg_base
+ RK3399_PLLCON(2));
627 rate
->frac
= ((pllcon
>> RK3399_PLLCON2_FRAC_SHIFT
)
628 & RK3399_PLLCON2_FRAC_MASK
);
630 pllcon
= readl_relaxed(pll
->reg_base
+ RK3399_PLLCON(3));
631 rate
->dsmpd
= ((pllcon
>> RK3399_PLLCON3_DSMPD_SHIFT
)
632 & RK3399_PLLCON3_DSMPD_MASK
);
635 static unsigned long rockchip_rk3399_pll_recalc_rate(struct clk_hw
*hw
,
638 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
639 struct rockchip_pll_rate_table cur
;
642 rockchip_rk3399_pll_get_params(pll
, &cur
);
645 do_div(rate64
, cur
.refdiv
);
647 if (cur
.dsmpd
== 0) {
648 /* fractional mode */
649 u64 frac_rate64
= prate
* cur
.frac
;
651 do_div(frac_rate64
, cur
.refdiv
);
652 rate64
+= frac_rate64
>> 24;
655 do_div(rate64
, cur
.postdiv1
);
656 do_div(rate64
, cur
.postdiv2
);
658 return (unsigned long)rate64
;
661 static int rockchip_rk3399_pll_set_params(struct rockchip_clk_pll
*pll
,
662 const struct rockchip_pll_rate_table
*rate
)
664 const struct clk_ops
*pll_mux_ops
= pll
->pll_mux_ops
;
665 struct clk_mux
*pll_mux
= &pll
->pll_mux
;
666 struct rockchip_pll_rate_table cur
;
668 int rate_change_remuxed
= 0;
672 pr_debug("%s: rate settings for %lu fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
673 __func__
, rate
->rate
, rate
->fbdiv
, rate
->postdiv1
, rate
->refdiv
,
674 rate
->postdiv2
, rate
->dsmpd
, rate
->frac
);
676 rockchip_rk3399_pll_get_params(pll
, &cur
);
679 cur_parent
= pll_mux_ops
->get_parent(&pll_mux
->hw
);
680 if (cur_parent
== PLL_MODE_NORM
) {
681 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_SLOW
);
682 rate_change_remuxed
= 1;
685 /* update pll values */
686 writel_relaxed(HIWORD_UPDATE(rate
->fbdiv
, RK3399_PLLCON0_FBDIV_MASK
,
687 RK3399_PLLCON0_FBDIV_SHIFT
),
688 pll
->reg_base
+ RK3399_PLLCON(0));
690 writel_relaxed(HIWORD_UPDATE(rate
->refdiv
, RK3399_PLLCON1_REFDIV_MASK
,
691 RK3399_PLLCON1_REFDIV_SHIFT
) |
692 HIWORD_UPDATE(rate
->postdiv1
, RK3399_PLLCON1_POSTDIV1_MASK
,
693 RK3399_PLLCON1_POSTDIV1_SHIFT
) |
694 HIWORD_UPDATE(rate
->postdiv2
, RK3399_PLLCON1_POSTDIV2_MASK
,
695 RK3399_PLLCON1_POSTDIV2_SHIFT
),
696 pll
->reg_base
+ RK3399_PLLCON(1));
698 /* xPLL CON2 is not HIWORD_MASK */
699 pllcon
= readl_relaxed(pll
->reg_base
+ RK3399_PLLCON(2));
700 pllcon
&= ~(RK3399_PLLCON2_FRAC_MASK
<< RK3399_PLLCON2_FRAC_SHIFT
);
701 pllcon
|= rate
->frac
<< RK3399_PLLCON2_FRAC_SHIFT
;
702 writel_relaxed(pllcon
, pll
->reg_base
+ RK3399_PLLCON(2));
704 writel_relaxed(HIWORD_UPDATE(rate
->dsmpd
, RK3399_PLLCON3_DSMPD_MASK
,
705 RK3399_PLLCON3_DSMPD_SHIFT
),
706 pll
->reg_base
+ RK3399_PLLCON(3));
708 /* wait for the pll to lock */
709 ret
= rockchip_rk3399_pll_wait_lock(pll
);
711 pr_warn("%s: pll update unsuccessful, trying to restore old params\n",
713 rockchip_rk3399_pll_set_params(pll
, &cur
);
716 if (rate_change_remuxed
)
717 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_NORM
);
722 static int rockchip_rk3399_pll_set_rate(struct clk_hw
*hw
, unsigned long drate
,
725 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
726 const struct rockchip_pll_rate_table
*rate
;
728 pr_debug("%s: changing %s to %lu with a parent rate of %lu\n",
729 __func__
, __clk_get_name(hw
->clk
), drate
, prate
);
731 /* Get required rate settings from table */
732 rate
= rockchip_get_pll_settings(pll
, drate
);
734 pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__
,
735 drate
, __clk_get_name(hw
->clk
));
739 return rockchip_rk3399_pll_set_params(pll
, rate
);
742 static int rockchip_rk3399_pll_enable(struct clk_hw
*hw
)
744 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
746 writel(HIWORD_UPDATE(0, RK3399_PLLCON3_PWRDOWN
, 0),
747 pll
->reg_base
+ RK3399_PLLCON(3));
752 static void rockchip_rk3399_pll_disable(struct clk_hw
*hw
)
754 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
756 writel(HIWORD_UPDATE(RK3399_PLLCON3_PWRDOWN
,
757 RK3399_PLLCON3_PWRDOWN
, 0),
758 pll
->reg_base
+ RK3399_PLLCON(3));
761 static int rockchip_rk3399_pll_is_enabled(struct clk_hw
*hw
)
763 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
764 u32 pllcon
= readl(pll
->reg_base
+ RK3399_PLLCON(3));
766 return !(pllcon
& RK3399_PLLCON3_PWRDOWN
);
769 static void rockchip_rk3399_pll_init(struct clk_hw
*hw
)
771 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
772 const struct rockchip_pll_rate_table
*rate
;
773 struct rockchip_pll_rate_table cur
;
776 if (!(pll
->flags
& ROCKCHIP_PLL_SYNC_RATE
))
779 drate
= clk_hw_get_rate(hw
);
780 rate
= rockchip_get_pll_settings(pll
, drate
);
782 /* when no rate setting for the current rate, rely on clk_set_rate */
786 rockchip_rk3399_pll_get_params(pll
, &cur
);
788 pr_debug("%s: pll %s@%lu: Hz\n", __func__
, __clk_get_name(hw
->clk
),
790 pr_debug("old - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
791 cur
.fbdiv
, cur
.postdiv1
, cur
.refdiv
, cur
.postdiv2
,
792 cur
.dsmpd
, cur
.frac
);
793 pr_debug("new - fbdiv: %d, postdiv1: %d, refdiv: %d, postdiv2: %d, dsmpd: %d, frac: %d\n",
794 rate
->fbdiv
, rate
->postdiv1
, rate
->refdiv
, rate
->postdiv2
,
795 rate
->dsmpd
, rate
->frac
);
797 if (rate
->fbdiv
!= cur
.fbdiv
|| rate
->postdiv1
!= cur
.postdiv1
||
798 rate
->refdiv
!= cur
.refdiv
|| rate
->postdiv2
!= cur
.postdiv2
||
799 rate
->dsmpd
!= cur
.dsmpd
||
800 (!cur
.dsmpd
&& (rate
->frac
!= cur
.frac
))) {
801 struct clk
*parent
= clk_get_parent(hw
->clk
);
804 pr_warn("%s: parent of %s not available\n",
805 __func__
, __clk_get_name(hw
->clk
));
809 pr_debug("%s: pll %s: rate params do not match rate table, adjusting\n",
810 __func__
, __clk_get_name(hw
->clk
));
811 rockchip_rk3399_pll_set_params(pll
, rate
);
815 static const struct clk_ops rockchip_rk3399_pll_clk_norate_ops
= {
816 .recalc_rate
= rockchip_rk3399_pll_recalc_rate
,
817 .enable
= rockchip_rk3399_pll_enable
,
818 .disable
= rockchip_rk3399_pll_disable
,
819 .is_enabled
= rockchip_rk3399_pll_is_enabled
,
822 static const struct clk_ops rockchip_rk3399_pll_clk_ops
= {
823 .recalc_rate
= rockchip_rk3399_pll_recalc_rate
,
824 .round_rate
= rockchip_pll_round_rate
,
825 .set_rate
= rockchip_rk3399_pll_set_rate
,
826 .enable
= rockchip_rk3399_pll_enable
,
827 .disable
= rockchip_rk3399_pll_disable
,
828 .is_enabled
= rockchip_rk3399_pll_is_enabled
,
829 .init
= rockchip_rk3399_pll_init
,
833 * Common registering of pll clocks
836 struct clk
*rockchip_clk_register_pll(struct rockchip_clk_provider
*ctx
,
837 enum rockchip_pll_type pll_type
,
838 const char *name
, const char *const *parent_names
,
839 u8 num_parents
, int con_offset
, int grf_lock_offset
,
840 int lock_shift
, int mode_offset
, int mode_shift
,
841 struct rockchip_pll_rate_table
*rate_table
,
842 unsigned long flags
, u8 clk_pll_flags
)
844 const char *pll_parents
[3];
845 struct clk_init_data init
;
846 struct rockchip_clk_pll
*pll
;
847 struct clk_mux
*pll_mux
;
848 struct clk
*pll_clk
, *mux_clk
;
851 if (num_parents
!= 2) {
852 pr_err("%s: needs two parent clocks\n", __func__
);
853 return ERR_PTR(-EINVAL
);
856 /* name the actual pll */
857 snprintf(pll_name
, sizeof(pll_name
), "pll_%s", name
);
859 pll
= kzalloc(sizeof(*pll
), GFP_KERNEL
);
861 return ERR_PTR(-ENOMEM
);
863 /* create the mux on top of the real pll */
864 pll
->pll_mux_ops
= &clk_mux_ops
;
865 pll_mux
= &pll
->pll_mux
;
866 pll_mux
->reg
= ctx
->reg_base
+ mode_offset
;
867 pll_mux
->shift
= mode_shift
;
868 pll_mux
->mask
= PLL_MODE_MASK
;
870 pll_mux
->lock
= &ctx
->lock
;
871 pll_mux
->hw
.init
= &init
;
873 if (pll_type
== pll_rk3036
||
874 pll_type
== pll_rk3066
||
875 pll_type
== pll_rk3399
)
876 pll_mux
->flags
|= CLK_MUX_HIWORD_MASK
;
878 /* the actual muxing is xin24m, pll-output, xin32k */
879 pll_parents
[0] = parent_names
[0];
880 pll_parents
[1] = pll_name
;
881 pll_parents
[2] = parent_names
[1];
884 init
.flags
= CLK_SET_RATE_PARENT
;
885 init
.ops
= pll
->pll_mux_ops
;
886 init
.parent_names
= pll_parents
;
887 init
.num_parents
= ARRAY_SIZE(pll_parents
);
889 mux_clk
= clk_register(NULL
, &pll_mux
->hw
);
893 /* now create the actual pll */
894 init
.name
= pll_name
;
896 /* keep all plls untouched for now */
897 init
.flags
= flags
| CLK_IGNORE_UNUSED
;
899 init
.parent_names
= &parent_names
[0];
900 init
.num_parents
= 1;
905 /* find count of rates in rate_table */
906 for (len
= 0; rate_table
[len
].rate
!= 0; )
909 pll
->rate_count
= len
;
910 pll
->rate_table
= kmemdup(rate_table
,
912 sizeof(struct rockchip_pll_rate_table
),
914 WARN(!pll
->rate_table
,
915 "%s: could not allocate rate table for %s\n",
921 if (!pll
->rate_table
|| IS_ERR(ctx
->grf
))
922 init
.ops
= &rockchip_rk3036_pll_clk_norate_ops
;
924 init
.ops
= &rockchip_rk3036_pll_clk_ops
;
927 if (!pll
->rate_table
|| IS_ERR(ctx
->grf
))
928 init
.ops
= &rockchip_rk3066_pll_clk_norate_ops
;
930 init
.ops
= &rockchip_rk3066_pll_clk_ops
;
933 if (!pll
->rate_table
)
934 init
.ops
= &rockchip_rk3399_pll_clk_norate_ops
;
936 init
.ops
= &rockchip_rk3399_pll_clk_ops
;
939 pr_warn("%s: Unknown pll type for pll clk %s\n",
943 pll
->hw
.init
= &init
;
944 pll
->type
= pll_type
;
945 pll
->reg_base
= ctx
->reg_base
+ con_offset
;
946 pll
->lock_offset
= grf_lock_offset
;
947 pll
->lock_shift
= lock_shift
;
948 pll
->flags
= clk_pll_flags
;
949 pll
->lock
= &ctx
->lock
;
952 pll_clk
= clk_register(NULL
, &pll
->hw
);
953 if (IS_ERR(pll_clk
)) {
954 pr_err("%s: failed to register pll clock %s : %ld\n",
955 __func__
, name
, PTR_ERR(pll_clk
));
962 clk_unregister(mux_clk
);