2 * Copyright (c) 2015 Endless Mobile, Inc.
3 * Author: Carlo Caione <carlo@endlessm.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
19 * In the most basic form, a Meson PLL is composed as follows:
22 * +------------------------------+
24 * in -----[ /N ]---[ *M ]---[ >>OD ]----->> out
26 * +------------------------------+
30 * out = (in * M / N) >> OD
33 #include <linux/clk-provider.h>
34 #include <linux/delay.h>
35 #include <linux/err.h>
37 #include <linux/module.h>
38 #include <linux/of_address.h>
39 #include <linux/slab.h>
40 #include <linux/string.h>
44 #define MESON_PLL_RESET BIT(29)
45 #define MESON_PLL_LOCK BIT(31)
47 #define to_meson_clk_pll(_hw) container_of(_hw, struct meson_clk_pll, hw)
49 static unsigned long meson_clk_pll_recalc_rate(struct clk_hw
*hw
,
50 unsigned long parent_rate
)
52 struct meson_clk_pll
*pll
= to_meson_clk_pll(hw
);
54 unsigned long parent_rate_mhz
= parent_rate
/ 1000000;
55 unsigned long rate_mhz
;
56 u16 n
, m
, frac
= 0, od
, od2
= 0;
60 reg
= readl(pll
->base
+ p
->reg_off
);
61 n
= PARM_GET(p
->width
, p
->shift
, reg
);
64 reg
= readl(pll
->base
+ p
->reg_off
);
65 m
= PARM_GET(p
->width
, p
->shift
, reg
);
68 reg
= readl(pll
->base
+ p
->reg_off
);
69 od
= PARM_GET(p
->width
, p
->shift
, reg
);
73 reg
= readl(pll
->base
+ p
->reg_off
);
74 od2
= PARM_GET(p
->width
, p
->shift
, reg
);
79 reg
= readl(pll
->base
+ p
->reg_off
);
80 frac
= PARM_GET(p
->width
, p
->shift
, reg
);
81 rate_mhz
= (parent_rate_mhz
* m
+ \
82 (parent_rate_mhz
* frac
>> 12)) * 2 / n
;
83 rate_mhz
= rate_mhz
>> od
>> od2
;
85 rate_mhz
= (parent_rate_mhz
* m
/ n
) >> od
>> od2
;
87 return rate_mhz
* 1000000;
90 static long meson_clk_pll_round_rate(struct clk_hw
*hw
, unsigned long rate
,
91 unsigned long *parent_rate
)
93 struct meson_clk_pll
*pll
= to_meson_clk_pll(hw
);
94 const struct pll_rate_table
*rate_table
= pll
->rate_table
;
97 for (i
= 0; i
< pll
->rate_count
; i
++) {
98 if (rate
<= rate_table
[i
].rate
)
99 return rate_table
[i
].rate
;
102 /* else return the smallest value */
103 return rate_table
[0].rate
;
106 static const struct pll_rate_table
*meson_clk_get_pll_settings(struct meson_clk_pll
*pll
,
109 const struct pll_rate_table
*rate_table
= pll
->rate_table
;
112 for (i
= 0; i
< pll
->rate_count
; i
++) {
113 if (rate
== rate_table
[i
].rate
)
114 return &rate_table
[i
];
119 static int meson_clk_pll_wait_lock(struct meson_clk_pll
*pll
,
122 int delay
= 24000000;
126 reg
= readl(pll
->base
+ p_n
->reg_off
);
128 if (reg
& MESON_PLL_LOCK
)
135 static int meson_clk_pll_set_rate(struct clk_hw
*hw
, unsigned long rate
,
136 unsigned long parent_rate
)
138 struct meson_clk_pll
*pll
= to_meson_clk_pll(hw
);
140 const struct pll_rate_table
*rate_set
;
141 unsigned long old_rate
;
145 if (parent_rate
== 0 || rate
== 0)
150 rate_set
= meson_clk_get_pll_settings(pll
, rate
);
156 reg
= readl(pll
->base
+ p
->reg_off
);
157 writel(reg
| MESON_PLL_RESET
, pll
->base
+ p
->reg_off
);
159 reg
= PARM_SET(p
->width
, p
->shift
, reg
, rate_set
->n
);
160 writel(reg
, pll
->base
+ p
->reg_off
);
163 reg
= readl(pll
->base
+ p
->reg_off
);
164 reg
= PARM_SET(p
->width
, p
->shift
, reg
, rate_set
->m
);
165 writel(reg
, pll
->base
+ p
->reg_off
);
168 reg
= readl(pll
->base
+ p
->reg_off
);
169 reg
= PARM_SET(p
->width
, p
->shift
, reg
, rate_set
->od
);
170 writel(reg
, pll
->base
+ p
->reg_off
);
174 reg
= readl(pll
->base
+ p
->reg_off
);
175 reg
= PARM_SET(p
->width
, p
->shift
, reg
, rate_set
->od2
);
176 writel(reg
, pll
->base
+ p
->reg_off
);
181 reg
= readl(pll
->base
+ p
->reg_off
);
182 reg
= PARM_SET(p
->width
, p
->shift
, reg
, rate_set
->frac
);
183 writel(reg
, pll
->base
+ p
->reg_off
);
187 ret
= meson_clk_pll_wait_lock(pll
, p
);
189 pr_warn("%s: pll did not lock, trying to restore old rate %lu\n",
191 meson_clk_pll_set_rate(hw
, old_rate
, parent_rate
);
197 const struct clk_ops meson_clk_pll_ops
= {
198 .recalc_rate
= meson_clk_pll_recalc_rate
,
199 .round_rate
= meson_clk_pll_round_rate
,
200 .set_rate
= meson_clk_pll_set_rate
,
203 const struct clk_ops meson_clk_pll_ro_ops
= {
204 .recalc_rate
= meson_clk_pll_recalc_rate
,