2 * Copyright (c) 2014 MundoReader S.L.
3 * Author: Heiko Stuebner <heiko@sntech.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <asm/div64.h>
17 #include <linux/slab.h>
19 #include <linux/delay.h>
20 #include <linux/clk.h>
21 #include <linux/clk-provider.h>
22 #include <linux/regmap.h>
25 #define PLL_MODE_MASK 0x3
26 #define PLL_MODE_SLOW 0x0
27 #define PLL_MODE_NORM 0x1
28 #define PLL_MODE_DEEP 0x2
30 struct rockchip_clk_pll
{
33 struct clk_mux pll_mux
;
34 const struct clk_ops
*pll_mux_ops
;
36 struct notifier_block clk_nb
;
38 void __iomem
*reg_base
;
40 unsigned int lock_shift
;
41 enum rockchip_pll_type type
;
43 const struct rockchip_pll_rate_table
*rate_table
;
44 unsigned int rate_count
;
48 #define to_rockchip_clk_pll(_hw) container_of(_hw, struct rockchip_clk_pll, hw)
49 #define to_rockchip_clk_pll_nb(nb) \
50 container_of(nb, struct rockchip_clk_pll, clk_nb)
52 static const struct rockchip_pll_rate_table
*rockchip_get_pll_settings(
53 struct rockchip_clk_pll
*pll
, unsigned long rate
)
55 const struct rockchip_pll_rate_table
*rate_table
= pll
->rate_table
;
58 for (i
= 0; i
< pll
->rate_count
; i
++) {
59 if (rate
== rate_table
[i
].rate
)
60 return &rate_table
[i
];
66 static long rockchip_pll_round_rate(struct clk_hw
*hw
,
67 unsigned long drate
, unsigned long *prate
)
69 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
70 const struct rockchip_pll_rate_table
*rate_table
= pll
->rate_table
;
73 /* Assumming rate_table is in descending order */
74 for (i
= 0; i
< pll
->rate_count
; i
++) {
75 if (drate
>= rate_table
[i
].rate
)
76 return rate_table
[i
].rate
;
79 /* return minimum supported value */
80 return rate_table
[i
- 1].rate
;
84 * Wait for the pll to reach the locked state.
85 * The calling set_rate function is responsible for making sure the
86 * grf regmap is available.
88 static int rockchip_pll_wait_lock(struct rockchip_clk_pll
*pll
)
90 struct regmap
*grf
= rockchip_clk_get_grf();
92 int delay
= 24000000, ret
;
95 ret
= regmap_read(grf
, pll
->lock_offset
, &val
);
97 pr_err("%s: failed to read pll lock status: %d\n",
102 if (val
& BIT(pll
->lock_shift
))
107 pr_err("%s: timeout waiting for pll to lock\n", __func__
);
112 * PLL used in RK3066, RK3188 and RK3288
115 #define RK3066_PLL_RESET_DELAY(nr) ((nr * 500) / 24 + 1)
117 #define RK3066_PLLCON(i) (i * 0x4)
118 #define RK3066_PLLCON0_OD_MASK 0xf
119 #define RK3066_PLLCON0_OD_SHIFT 0
120 #define RK3066_PLLCON0_NR_MASK 0x3f
121 #define RK3066_PLLCON0_NR_SHIFT 8
122 #define RK3066_PLLCON1_NF_MASK 0x1fff
123 #define RK3066_PLLCON1_NF_SHIFT 0
124 #define RK3066_PLLCON2_BWADJ_MASK 0xfff
125 #define RK3066_PLLCON2_BWADJ_SHIFT 0
126 #define RK3066_PLLCON3_RESET (1 << 5)
127 #define RK3066_PLLCON3_PWRDOWN (1 << 1)
128 #define RK3066_PLLCON3_BYPASS (1 << 0)
130 static unsigned long rockchip_rk3066_pll_recalc_rate(struct clk_hw
*hw
,
133 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
134 u64 nf
, nr
, no
, rate64
= prate
;
137 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(3));
138 if (pllcon
& RK3066_PLLCON3_BYPASS
) {
139 pr_debug("%s: pll %s is bypassed\n", __func__
,
140 __clk_get_name(hw
->clk
));
144 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(1));
145 nf
= (pllcon
>> RK3066_PLLCON1_NF_SHIFT
) & RK3066_PLLCON1_NF_MASK
;
147 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(0));
148 nr
= (pllcon
>> RK3066_PLLCON0_NR_SHIFT
) & RK3066_PLLCON0_NR_MASK
;
149 no
= (pllcon
>> RK3066_PLLCON0_OD_SHIFT
) & RK3066_PLLCON0_OD_MASK
;
152 do_div(rate64
, nr
+ 1);
153 do_div(rate64
, no
+ 1);
155 return (unsigned long)rate64
;
158 static int rockchip_rk3066_pll_set_rate(struct clk_hw
*hw
, unsigned long drate
,
161 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
162 const struct rockchip_pll_rate_table
*rate
;
163 unsigned long old_rate
= rockchip_rk3066_pll_recalc_rate(hw
, prate
);
164 struct regmap
*grf
= rockchip_clk_get_grf();
165 struct clk_mux
*pll_mux
= &pll
->pll_mux
;
166 const struct clk_ops
*pll_mux_ops
= pll
->pll_mux_ops
;
167 int rate_change_remuxed
= 0;
172 pr_debug("%s: grf regmap not available, aborting rate change\n",
177 pr_debug("%s: changing %s from %lu to %lu with a parent rate of %lu\n",
178 __func__
, __clk_get_name(hw
->clk
), old_rate
, drate
, prate
);
180 /* Get required rate settings from table */
181 rate
= rockchip_get_pll_settings(pll
, drate
);
183 pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__
,
184 drate
, __clk_get_name(hw
->clk
));
188 pr_debug("%s: rate settings for %lu (nr, no, nf): (%d, %d, %d)\n",
189 __func__
, rate
->rate
, rate
->nr
, rate
->no
, rate
->nf
);
191 cur_parent
= pll_mux_ops
->get_parent(&pll_mux
->hw
);
192 if (cur_parent
== PLL_MODE_NORM
) {
193 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_SLOW
);
194 rate_change_remuxed
= 1;
197 /* enter reset mode */
198 writel(HIWORD_UPDATE(RK3066_PLLCON3_RESET
, RK3066_PLLCON3_RESET
, 0),
199 pll
->reg_base
+ RK3066_PLLCON(3));
201 /* update pll values */
202 writel(HIWORD_UPDATE(rate
->nr
- 1, RK3066_PLLCON0_NR_MASK
,
203 RK3066_PLLCON0_NR_SHIFT
) |
204 HIWORD_UPDATE(rate
->no
- 1, RK3066_PLLCON0_OD_MASK
,
205 RK3066_PLLCON0_OD_SHIFT
),
206 pll
->reg_base
+ RK3066_PLLCON(0));
208 writel_relaxed(HIWORD_UPDATE(rate
->nf
- 1, RK3066_PLLCON1_NF_MASK
,
209 RK3066_PLLCON1_NF_SHIFT
),
210 pll
->reg_base
+ RK3066_PLLCON(1));
211 writel_relaxed(HIWORD_UPDATE(rate
->bwadj
, RK3066_PLLCON2_BWADJ_MASK
,
212 RK3066_PLLCON2_BWADJ_SHIFT
),
213 pll
->reg_base
+ RK3066_PLLCON(2));
215 /* leave reset and wait the reset_delay */
216 writel(HIWORD_UPDATE(0, RK3066_PLLCON3_RESET
, 0),
217 pll
->reg_base
+ RK3066_PLLCON(3));
218 udelay(RK3066_PLL_RESET_DELAY(rate
->nr
));
220 /* wait for the pll to lock */
221 ret
= rockchip_pll_wait_lock(pll
);
223 pr_warn("%s: pll did not lock, trying to restore old rate %lu\n",
225 rockchip_rk3066_pll_set_rate(hw
, old_rate
, prate
);
228 if (rate_change_remuxed
)
229 pll_mux_ops
->set_parent(&pll_mux
->hw
, PLL_MODE_NORM
);
234 static int rockchip_rk3066_pll_enable(struct clk_hw
*hw
)
236 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
238 writel(HIWORD_UPDATE(0, RK3066_PLLCON3_PWRDOWN
, 0),
239 pll
->reg_base
+ RK3066_PLLCON(3));
244 static void rockchip_rk3066_pll_disable(struct clk_hw
*hw
)
246 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
248 writel(HIWORD_UPDATE(RK3066_PLLCON3_PWRDOWN
,
249 RK3066_PLLCON3_PWRDOWN
, 0),
250 pll
->reg_base
+ RK3066_PLLCON(3));
253 static int rockchip_rk3066_pll_is_enabled(struct clk_hw
*hw
)
255 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
256 u32 pllcon
= readl(pll
->reg_base
+ RK3066_PLLCON(3));
258 return !(pllcon
& RK3066_PLLCON3_PWRDOWN
);
261 static void rockchip_rk3066_pll_init(struct clk_hw
*hw
)
263 struct rockchip_clk_pll
*pll
= to_rockchip_clk_pll(hw
);
264 const struct rockchip_pll_rate_table
*rate
;
265 unsigned int nf
, nr
, no
, bwadj
;
269 if (!(pll
->flags
& ROCKCHIP_PLL_SYNC_RATE
))
272 drate
= __clk_get_rate(hw
->clk
);
273 rate
= rockchip_get_pll_settings(pll
, drate
);
275 /* when no rate setting for the current rate, rely on clk_set_rate */
279 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(0));
280 nr
= ((pllcon
>> RK3066_PLLCON0_NR_SHIFT
) & RK3066_PLLCON0_NR_MASK
) + 1;
281 no
= ((pllcon
>> RK3066_PLLCON0_OD_SHIFT
) & RK3066_PLLCON0_OD_MASK
) + 1;
283 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(1));
284 nf
= ((pllcon
>> RK3066_PLLCON1_NF_SHIFT
) & RK3066_PLLCON1_NF_MASK
) + 1;
286 pllcon
= readl_relaxed(pll
->reg_base
+ RK3066_PLLCON(2));
287 bwadj
= (pllcon
>> RK3066_PLLCON2_BWADJ_SHIFT
) & RK3066_PLLCON2_BWADJ_MASK
;
289 pr_debug("%s: pll %s@%lu: nr (%d:%d); no (%d:%d); nf(%d:%d), bwadj(%d:%d)\n",
290 __func__
, __clk_get_name(hw
->clk
), drate
, rate
->nr
, nr
,
291 rate
->no
, no
, rate
->nf
, nf
, rate
->bwadj
, bwadj
);
292 if (rate
->nr
!= nr
|| rate
->no
!= no
|| rate
->nf
!= nf
293 || rate
->bwadj
!= bwadj
) {
294 struct clk
*parent
= __clk_get_parent(hw
->clk
);
298 pr_warn("%s: parent of %s not available\n",
299 __func__
, __clk_get_name(hw
->clk
));
303 pr_debug("%s: pll %s: rate params do not match rate table, adjusting\n",
304 __func__
, __clk_get_name(hw
->clk
));
305 prate
= __clk_get_rate(parent
);
306 rockchip_rk3066_pll_set_rate(hw
, drate
, prate
);
310 static const struct clk_ops rockchip_rk3066_pll_clk_norate_ops
= {
311 .recalc_rate
= rockchip_rk3066_pll_recalc_rate
,
312 .enable
= rockchip_rk3066_pll_enable
,
313 .disable
= rockchip_rk3066_pll_disable
,
314 .is_enabled
= rockchip_rk3066_pll_is_enabled
,
317 static const struct clk_ops rockchip_rk3066_pll_clk_ops
= {
318 .recalc_rate
= rockchip_rk3066_pll_recalc_rate
,
319 .round_rate
= rockchip_pll_round_rate
,
320 .set_rate
= rockchip_rk3066_pll_set_rate
,
321 .enable
= rockchip_rk3066_pll_enable
,
322 .disable
= rockchip_rk3066_pll_disable
,
323 .is_enabled
= rockchip_rk3066_pll_is_enabled
,
324 .init
= rockchip_rk3066_pll_init
,
328 * Common registering of pll clocks
331 struct clk
*rockchip_clk_register_pll(enum rockchip_pll_type pll_type
,
332 const char *name
, const char *const *parent_names
,
333 u8 num_parents
, void __iomem
*base
, int con_offset
,
334 int grf_lock_offset
, int lock_shift
, int mode_offset
,
335 int mode_shift
, struct rockchip_pll_rate_table
*rate_table
,
336 u8 clk_pll_flags
, spinlock_t
*lock
)
338 const char *pll_parents
[3];
339 struct clk_init_data init
;
340 struct rockchip_clk_pll
*pll
;
341 struct clk_mux
*pll_mux
;
342 struct clk
*pll_clk
, *mux_clk
;
345 if (num_parents
!= 2) {
346 pr_err("%s: needs two parent clocks\n", __func__
);
347 return ERR_PTR(-EINVAL
);
350 /* name the actual pll */
351 snprintf(pll_name
, sizeof(pll_name
), "pll_%s", name
);
353 pll
= kzalloc(sizeof(*pll
), GFP_KERNEL
);
355 return ERR_PTR(-ENOMEM
);
357 init
.name
= pll_name
;
359 /* keep all plls untouched for now */
360 init
.flags
= CLK_IGNORE_UNUSED
;
362 init
.parent_names
= &parent_names
[0];
363 init
.num_parents
= 1;
368 /* find count of rates in rate_table */
369 for (len
= 0; rate_table
[len
].rate
!= 0; )
372 pll
->rate_count
= len
;
373 pll
->rate_table
= kmemdup(rate_table
,
375 sizeof(struct rockchip_pll_rate_table
),
377 WARN(!pll
->rate_table
,
378 "%s: could not allocate rate table for %s\n",
384 if (!pll
->rate_table
)
385 init
.ops
= &rockchip_rk3066_pll_clk_norate_ops
;
387 init
.ops
= &rockchip_rk3066_pll_clk_ops
;
390 pr_warn("%s: Unknown pll type for pll clk %s\n",
394 pll
->hw
.init
= &init
;
395 pll
->type
= pll_type
;
396 pll
->reg_base
= base
+ con_offset
;
397 pll
->lock_offset
= grf_lock_offset
;
398 pll
->lock_shift
= lock_shift
;
399 pll
->flags
= clk_pll_flags
;
402 /* create the mux on top of the real pll */
403 pll
->pll_mux_ops
= &clk_mux_ops
;
404 pll_mux
= &pll
->pll_mux
;
405 pll_mux
->reg
= base
+ mode_offset
;
406 pll_mux
->shift
= mode_shift
;
407 pll_mux
->mask
= PLL_MODE_MASK
;
409 pll_mux
->lock
= lock
;
410 pll_mux
->hw
.init
= &init
;
412 if (pll_type
== pll_rk3066
)
413 pll_mux
->flags
|= CLK_MUX_HIWORD_MASK
;
415 pll_clk
= clk_register(NULL
, &pll
->hw
);
416 if (IS_ERR(pll_clk
)) {
417 pr_err("%s: failed to register pll clock %s : %ld\n",
418 __func__
, name
, PTR_ERR(pll_clk
));
423 /* the actual muxing is xin24m, pll-output, xin32k */
424 pll_parents
[0] = parent_names
[0];
425 pll_parents
[1] = pll_name
;
426 pll_parents
[2] = parent_names
[1];
429 init
.flags
= CLK_SET_RATE_PARENT
;
430 init
.ops
= pll
->pll_mux_ops
;
431 init
.parent_names
= pll_parents
;
432 init
.num_parents
= ARRAY_SIZE(pll_parents
);
434 mux_clk
= clk_register(NULL
, &pll_mux
->hw
);
441 clk_unregister(pll_clk
);