This source file includes following definitions.
- rockchip_get_cpuclk_settings
- rockchip_cpuclk_recalc_rate
- rockchip_cpuclk_set_dividers
- rockchip_cpuclk_pre_rate_change
- rockchip_cpuclk_post_rate_change
- rockchip_cpuclk_notifier_cb
- rockchip_clk_register_cpuclk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 #include <linux/of.h>
33 #include <linux/slab.h>
34 #include <linux/io.h>
35 #include <linux/clk.h>
36 #include <linux/clk-provider.h>
37 #include "clk.h"
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 struct rockchip_cpuclk {
53 struct clk_hw hw;
54
55 struct clk_mux cpu_mux;
56 const struct clk_ops *cpu_mux_ops;
57
58 struct clk *alt_parent;
59 void __iomem *reg_base;
60 struct notifier_block clk_nb;
61 unsigned int rate_count;
62 struct rockchip_cpuclk_rate_table *rate_table;
63 const struct rockchip_cpuclk_reg_data *reg_data;
64 spinlock_t *lock;
65 };
66
67 #define to_rockchip_cpuclk_hw(hw) container_of(hw, struct rockchip_cpuclk, hw)
68 #define to_rockchip_cpuclk_nb(nb) \
69 container_of(nb, struct rockchip_cpuclk, clk_nb)
70
71 static const struct rockchip_cpuclk_rate_table *rockchip_get_cpuclk_settings(
72 struct rockchip_cpuclk *cpuclk, unsigned long rate)
73 {
74 const struct rockchip_cpuclk_rate_table *rate_table =
75 cpuclk->rate_table;
76 int i;
77
78 for (i = 0; i < cpuclk->rate_count; i++) {
79 if (rate == rate_table[i].prate)
80 return &rate_table[i];
81 }
82
83 return NULL;
84 }
85
86 static unsigned long rockchip_cpuclk_recalc_rate(struct clk_hw *hw,
87 unsigned long parent_rate)
88 {
89 struct rockchip_cpuclk *cpuclk = to_rockchip_cpuclk_hw(hw);
90 const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
91 u32 clksel0 = readl_relaxed(cpuclk->reg_base + reg_data->core_reg);
92
93 clksel0 >>= reg_data->div_core_shift;
94 clksel0 &= reg_data->div_core_mask;
95 return parent_rate / (clksel0 + 1);
96 }
97
98 static const struct clk_ops rockchip_cpuclk_ops = {
99 .recalc_rate = rockchip_cpuclk_recalc_rate,
100 };
101
102 static void rockchip_cpuclk_set_dividers(struct rockchip_cpuclk *cpuclk,
103 const struct rockchip_cpuclk_rate_table *rate)
104 {
105 int i;
106
107
108 for (i = 0; i < ARRAY_SIZE(rate->divs); i++) {
109 const struct rockchip_cpuclk_clksel *clksel = &rate->divs[i];
110
111 if (!clksel->reg)
112 continue;
113
114 pr_debug("%s: setting reg 0x%x to 0x%x\n",
115 __func__, clksel->reg, clksel->val);
116 writel(clksel->val, cpuclk->reg_base + clksel->reg);
117 }
118 }
119
120 static int rockchip_cpuclk_pre_rate_change(struct rockchip_cpuclk *cpuclk,
121 struct clk_notifier_data *ndata)
122 {
123 const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
124 const struct rockchip_cpuclk_rate_table *rate;
125 unsigned long alt_prate, alt_div;
126 unsigned long flags;
127
128
129 rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate);
130 if (!rate) {
131 pr_err("%s: Invalid rate : %lu for cpuclk\n",
132 __func__, ndata->new_rate);
133 return -EINVAL;
134 }
135
136 alt_prate = clk_get_rate(cpuclk->alt_parent);
137
138 spin_lock_irqsave(cpuclk->lock, flags);
139
140
141
142
143
144
145
146 if (alt_prate > ndata->old_rate) {
147
148 alt_div = DIV_ROUND_UP(alt_prate, ndata->old_rate) - 1;
149 if (alt_div > reg_data->div_core_mask) {
150 pr_warn("%s: limiting alt-divider %lu to %d\n",
151 __func__, alt_div, reg_data->div_core_mask);
152 alt_div = reg_data->div_core_mask;
153 }
154
155
156
157
158
159
160
161
162 pr_debug("%s: setting div %lu as alt-rate %lu > old-rate %lu\n",
163 __func__, alt_div, alt_prate, ndata->old_rate);
164
165 writel(HIWORD_UPDATE(alt_div, reg_data->div_core_mask,
166 reg_data->div_core_shift) |
167 HIWORD_UPDATE(reg_data->mux_core_alt,
168 reg_data->mux_core_mask,
169 reg_data->mux_core_shift),
170 cpuclk->reg_base + reg_data->core_reg);
171 } else {
172
173 writel(HIWORD_UPDATE(reg_data->mux_core_alt,
174 reg_data->mux_core_mask,
175 reg_data->mux_core_shift),
176 cpuclk->reg_base + reg_data->core_reg);
177 }
178
179 spin_unlock_irqrestore(cpuclk->lock, flags);
180 return 0;
181 }
182
183 static int rockchip_cpuclk_post_rate_change(struct rockchip_cpuclk *cpuclk,
184 struct clk_notifier_data *ndata)
185 {
186 const struct rockchip_cpuclk_reg_data *reg_data = cpuclk->reg_data;
187 const struct rockchip_cpuclk_rate_table *rate;
188 unsigned long flags;
189
190 rate = rockchip_get_cpuclk_settings(cpuclk, ndata->new_rate);
191 if (!rate) {
192 pr_err("%s: Invalid rate : %lu for cpuclk\n",
193 __func__, ndata->new_rate);
194 return -EINVAL;
195 }
196
197 spin_lock_irqsave(cpuclk->lock, flags);
198
199 if (ndata->old_rate < ndata->new_rate)
200 rockchip_cpuclk_set_dividers(cpuclk, rate);
201
202
203
204
205
206
207
208
209 writel(HIWORD_UPDATE(0, reg_data->div_core_mask,
210 reg_data->div_core_shift) |
211 HIWORD_UPDATE(reg_data->mux_core_main,
212 reg_data->mux_core_mask,
213 reg_data->mux_core_shift),
214 cpuclk->reg_base + reg_data->core_reg);
215
216 if (ndata->old_rate > ndata->new_rate)
217 rockchip_cpuclk_set_dividers(cpuclk, rate);
218
219 spin_unlock_irqrestore(cpuclk->lock, flags);
220 return 0;
221 }
222
223
224
225
226
227
228
229 static int rockchip_cpuclk_notifier_cb(struct notifier_block *nb,
230 unsigned long event, void *data)
231 {
232 struct clk_notifier_data *ndata = data;
233 struct rockchip_cpuclk *cpuclk = to_rockchip_cpuclk_nb(nb);
234 int ret = 0;
235
236 pr_debug("%s: event %lu, old_rate %lu, new_rate: %lu\n",
237 __func__, event, ndata->old_rate, ndata->new_rate);
238 if (event == PRE_RATE_CHANGE)
239 ret = rockchip_cpuclk_pre_rate_change(cpuclk, ndata);
240 else if (event == POST_RATE_CHANGE)
241 ret = rockchip_cpuclk_post_rate_change(cpuclk, ndata);
242
243 return notifier_from_errno(ret);
244 }
245
246 struct clk *rockchip_clk_register_cpuclk(const char *name,
247 const char *const *parent_names, u8 num_parents,
248 const struct rockchip_cpuclk_reg_data *reg_data,
249 const struct rockchip_cpuclk_rate_table *rates,
250 int nrates, void __iomem *reg_base, spinlock_t *lock)
251 {
252 struct rockchip_cpuclk *cpuclk;
253 struct clk_init_data init;
254 struct clk *clk, *cclk;
255 int ret;
256
257 if (num_parents < 2) {
258 pr_err("%s: needs at least two parent clocks\n", __func__);
259 return ERR_PTR(-EINVAL);
260 }
261
262 cpuclk = kzalloc(sizeof(*cpuclk), GFP_KERNEL);
263 if (!cpuclk)
264 return ERR_PTR(-ENOMEM);
265
266 init.name = name;
267 init.parent_names = &parent_names[reg_data->mux_core_main];
268 init.num_parents = 1;
269 init.ops = &rockchip_cpuclk_ops;
270
271
272 init.flags = (nrates > 0) ? CLK_SET_RATE_PARENT : 0;
273
274
275 init.flags |= CLK_SET_RATE_NO_REPARENT;
276
277 init.flags |= CLK_GET_RATE_NOCACHE;
278
279 cpuclk->reg_base = reg_base;
280 cpuclk->lock = lock;
281 cpuclk->reg_data = reg_data;
282 cpuclk->clk_nb.notifier_call = rockchip_cpuclk_notifier_cb;
283 cpuclk->hw.init = &init;
284
285 cpuclk->alt_parent = __clk_lookup(parent_names[reg_data->mux_core_alt]);
286 if (!cpuclk->alt_parent) {
287 pr_err("%s: could not lookup alternate parent: (%d)\n",
288 __func__, reg_data->mux_core_alt);
289 ret = -EINVAL;
290 goto free_cpuclk;
291 }
292
293 ret = clk_prepare_enable(cpuclk->alt_parent);
294 if (ret) {
295 pr_err("%s: could not enable alternate parent\n",
296 __func__);
297 goto free_cpuclk;
298 }
299
300 clk = __clk_lookup(parent_names[reg_data->mux_core_main]);
301 if (!clk) {
302 pr_err("%s: could not lookup parent clock: (%d) %s\n",
303 __func__, reg_data->mux_core_main,
304 parent_names[reg_data->mux_core_main]);
305 ret = -EINVAL;
306 goto free_alt_parent;
307 }
308
309 ret = clk_notifier_register(clk, &cpuclk->clk_nb);
310 if (ret) {
311 pr_err("%s: failed to register clock notifier for %s\n",
312 __func__, name);
313 goto free_alt_parent;
314 }
315
316 if (nrates > 0) {
317 cpuclk->rate_count = nrates;
318 cpuclk->rate_table = kmemdup(rates,
319 sizeof(*rates) * nrates,
320 GFP_KERNEL);
321 if (!cpuclk->rate_table) {
322 ret = -ENOMEM;
323 goto unregister_notifier;
324 }
325 }
326
327 cclk = clk_register(NULL, &cpuclk->hw);
328 if (IS_ERR(cclk)) {
329 pr_err("%s: could not register cpuclk %s\n", __func__, name);
330 ret = PTR_ERR(cclk);
331 goto free_rate_table;
332 }
333
334 return cclk;
335
336 free_rate_table:
337 kfree(cpuclk->rate_table);
338 unregister_notifier:
339 clk_notifier_unregister(clk, &cpuclk->clk_nb);
340 free_alt_parent:
341 clk_disable_unprepare(cpuclk->alt_parent);
342 free_cpuclk:
343 kfree(cpuclk);
344 return ERR_PTR(ret);
345 }