blob: 671f4d89db9390e3906a5371ae3f8ae56bb73dbd [file] [log] [blame]
J Keerthy3cf467a2013-07-23 12:05:37 +05301/*
2 * OMAP APLL clock support
3 *
4 * Copyright (C) 2013 Texas Instruments, Inc.
5 *
6 * J Keerthy <j-keerthy@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
Stephen Boyd1b29e602015-06-19 15:00:46 -070018#include <linux/clk.h>
J Keerthy3cf467a2013-07-23 12:05:37 +053019#include <linux/clk-provider.h>
20#include <linux/module.h>
21#include <linux/slab.h>
22#include <linux/io.h>
23#include <linux/err.h>
24#include <linux/string.h>
25#include <linux/log2.h>
26#include <linux/of.h>
27#include <linux/of_address.h>
28#include <linux/clk/ti.h>
29#include <linux/delay.h>
30
31#define APLL_FORCE_LOCK 0x1
32#define APLL_AUTO_IDLE 0x2
33#define MAX_APLL_WAIT_TRIES 1000000
34
35#undef pr_fmt
36#define pr_fmt(fmt) "%s: " fmt, __func__
37
38static int dra7_apll_enable(struct clk_hw *hw)
39{
40 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
41 int r = 0, i = 0;
42 struct dpll_data *ad;
43 const char *clk_name;
44 u8 state = 1;
45 u32 v;
46
47 ad = clk->dpll_data;
48 if (!ad)
49 return -EINVAL;
50
51 clk_name = __clk_get_name(clk->hw.clk);
52
53 state <<= __ffs(ad->idlest_mask);
54
55 /* Check is already locked */
56 v = ti_clk_ll_ops->clk_readl(ad->idlest_reg);
57
58 if ((v & ad->idlest_mask) == state)
59 return r;
60
61 v = ti_clk_ll_ops->clk_readl(ad->control_reg);
62 v &= ~ad->enable_mask;
63 v |= APLL_FORCE_LOCK << __ffs(ad->enable_mask);
64 ti_clk_ll_ops->clk_writel(v, ad->control_reg);
65
66 state <<= __ffs(ad->idlest_mask);
67
68 while (1) {
69 v = ti_clk_ll_ops->clk_readl(ad->idlest_reg);
70 if ((v & ad->idlest_mask) == state)
71 break;
72 if (i > MAX_APLL_WAIT_TRIES)
73 break;
74 i++;
75 udelay(1);
76 }
77
78 if (i == MAX_APLL_WAIT_TRIES) {
79 pr_warn("clock: %s failed transition to '%s'\n",
80 clk_name, (state) ? "locked" : "bypassed");
Julia Lawall8d2f9e8e2014-05-19 19:25:48 +080081 r = -EBUSY;
82 } else
J Keerthy3cf467a2013-07-23 12:05:37 +053083 pr_debug("clock: %s transition to '%s' in %d loops\n",
84 clk_name, (state) ? "locked" : "bypassed", i);
85
J Keerthy3cf467a2013-07-23 12:05:37 +053086 return r;
87}
88
89static void dra7_apll_disable(struct clk_hw *hw)
90{
91 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
92 struct dpll_data *ad;
93 u8 state = 1;
94 u32 v;
95
96 ad = clk->dpll_data;
97
98 state <<= __ffs(ad->idlest_mask);
99
100 v = ti_clk_ll_ops->clk_readl(ad->control_reg);
101 v &= ~ad->enable_mask;
102 v |= APLL_AUTO_IDLE << __ffs(ad->enable_mask);
103 ti_clk_ll_ops->clk_writel(v, ad->control_reg);
104}
105
106static int dra7_apll_is_enabled(struct clk_hw *hw)
107{
108 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
109 struct dpll_data *ad;
110 u32 v;
111
112 ad = clk->dpll_data;
113
114 v = ti_clk_ll_ops->clk_readl(ad->control_reg);
115 v &= ad->enable_mask;
116
117 v >>= __ffs(ad->enable_mask);
118
119 return v == APLL_AUTO_IDLE ? 0 : 1;
120}
121
122static u8 dra7_init_apll_parent(struct clk_hw *hw)
123{
124 return 0;
125}
126
127static const struct clk_ops apll_ck_ops = {
128 .enable = &dra7_apll_enable,
129 .disable = &dra7_apll_disable,
130 .is_enabled = &dra7_apll_is_enabled,
131 .get_parent = &dra7_init_apll_parent,
132};
133
134static void __init omap_clk_register_apll(struct clk_hw *hw,
135 struct device_node *node)
136{
137 struct clk_hw_omap *clk_hw = to_clk_hw_omap(hw);
138 struct dpll_data *ad = clk_hw->dpll_data;
139 struct clk *clk;
140
141 ad->clk_ref = of_clk_get(node, 0);
142 ad->clk_bypass = of_clk_get(node, 1);
143
144 if (IS_ERR(ad->clk_ref) || IS_ERR(ad->clk_bypass)) {
145 pr_debug("clk-ref or clk-bypass for %s not ready, retry\n",
146 node->name);
147 if (!ti_clk_retry_init(node, hw, omap_clk_register_apll))
148 return;
149
150 goto cleanup;
151 }
152
153 clk = clk_register(NULL, &clk_hw->hw);
154 if (!IS_ERR(clk)) {
155 of_clk_add_provider(node, of_clk_src_simple_get, clk);
156 kfree(clk_hw->hw.init->parent_names);
157 kfree(clk_hw->hw.init);
158 return;
159 }
160
161cleanup:
162 kfree(clk_hw->dpll_data);
163 kfree(clk_hw->hw.init->parent_names);
164 kfree(clk_hw->hw.init);
165 kfree(clk_hw);
166}
167
168static void __init of_dra7_apll_setup(struct device_node *node)
169{
170 struct dpll_data *ad = NULL;
171 struct clk_hw_omap *clk_hw = NULL;
172 struct clk_init_data *init = NULL;
173 const char **parent_names = NULL;
174 int i;
175
176 ad = kzalloc(sizeof(*ad), GFP_KERNEL);
177 clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
178 init = kzalloc(sizeof(*init), GFP_KERNEL);
179 if (!ad || !clk_hw || !init)
180 goto cleanup;
181
182 clk_hw->dpll_data = ad;
183 clk_hw->hw.init = init;
184 clk_hw->flags = MEMMAP_ADDRESSING;
185
186 init->name = node->name;
187 init->ops = &apll_ck_ops;
188
189 init->num_parents = of_clk_get_parent_count(node);
190 if (init->num_parents < 1) {
191 pr_err("dra7 apll %s must have parent(s)\n", node->name);
192 goto cleanup;
193 }
194
195 parent_names = kzalloc(sizeof(char *) * init->num_parents, GFP_KERNEL);
196 if (!parent_names)
197 goto cleanup;
198
199 for (i = 0; i < init->num_parents; i++)
200 parent_names[i] = of_clk_get_parent_name(node, i);
201
202 init->parent_names = parent_names;
203
204 ad->control_reg = ti_clk_get_reg_addr(node, 0);
205 ad->idlest_reg = ti_clk_get_reg_addr(node, 1);
206
Tero Kristoc807dbe2015-02-23 21:06:08 +0200207 if (IS_ERR(ad->control_reg) || IS_ERR(ad->idlest_reg))
J Keerthy3cf467a2013-07-23 12:05:37 +0530208 goto cleanup;
209
210 ad->idlest_mask = 0x1;
211 ad->enable_mask = 0x3;
212
213 omap_clk_register_apll(&clk_hw->hw, node);
214 return;
215
216cleanup:
217 kfree(parent_names);
218 kfree(ad);
219 kfree(clk_hw);
220 kfree(init);
221}
222CLK_OF_DECLARE(dra7_apll_clock, "ti,dra7-apll-clock", of_dra7_apll_setup);
Tero Kristo4d008582014-02-24 16:06:34 +0200223
224#define OMAP2_EN_APLL_LOCKED 0x3
225#define OMAP2_EN_APLL_STOPPED 0x0
226
227static int omap2_apll_is_enabled(struct clk_hw *hw)
228{
229 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
230 struct dpll_data *ad = clk->dpll_data;
231 u32 v;
232
233 v = ti_clk_ll_ops->clk_readl(ad->control_reg);
234 v &= ad->enable_mask;
235
236 v >>= __ffs(ad->enable_mask);
237
238 return v == OMAP2_EN_APLL_LOCKED ? 1 : 0;
239}
240
241static unsigned long omap2_apll_recalc(struct clk_hw *hw,
242 unsigned long parent_rate)
243{
244 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
245
246 if (omap2_apll_is_enabled(hw))
247 return clk->fixed_rate;
248
249 return 0;
250}
251
252static int omap2_apll_enable(struct clk_hw *hw)
253{
254 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
255 struct dpll_data *ad = clk->dpll_data;
256 u32 v;
257 int i = 0;
258
259 v = ti_clk_ll_ops->clk_readl(ad->control_reg);
260 v &= ~ad->enable_mask;
261 v |= OMAP2_EN_APLL_LOCKED << __ffs(ad->enable_mask);
262 ti_clk_ll_ops->clk_writel(v, ad->control_reg);
263
264 while (1) {
265 v = ti_clk_ll_ops->clk_readl(ad->idlest_reg);
266 if (v & ad->idlest_mask)
267 break;
268 if (i > MAX_APLL_WAIT_TRIES)
269 break;
270 i++;
271 udelay(1);
272 }
273
274 if (i == MAX_APLL_WAIT_TRIES) {
275 pr_warn("%s failed to transition to locked\n",
276 __clk_get_name(clk->hw.clk));
277 return -EBUSY;
278 }
279
280 return 0;
281}
282
283static void omap2_apll_disable(struct clk_hw *hw)
284{
285 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
286 struct dpll_data *ad = clk->dpll_data;
287 u32 v;
288
289 v = ti_clk_ll_ops->clk_readl(ad->control_reg);
290 v &= ~ad->enable_mask;
291 v |= OMAP2_EN_APLL_STOPPED << __ffs(ad->enable_mask);
292 ti_clk_ll_ops->clk_writel(v, ad->control_reg);
293}
294
295static struct clk_ops omap2_apll_ops = {
296 .enable = &omap2_apll_enable,
297 .disable = &omap2_apll_disable,
298 .is_enabled = &omap2_apll_is_enabled,
299 .recalc_rate = &omap2_apll_recalc,
300};
301
302static void omap2_apll_set_autoidle(struct clk_hw_omap *clk, u32 val)
303{
304 struct dpll_data *ad = clk->dpll_data;
305 u32 v;
306
307 v = ti_clk_ll_ops->clk_readl(ad->autoidle_reg);
308 v &= ~ad->autoidle_mask;
309 v |= val << __ffs(ad->autoidle_mask);
310 ti_clk_ll_ops->clk_writel(v, ad->control_reg);
311}
312
313#define OMAP2_APLL_AUTOIDLE_LOW_POWER_STOP 0x3
314#define OMAP2_APLL_AUTOIDLE_DISABLE 0x0
315
316static void omap2_apll_allow_idle(struct clk_hw_omap *clk)
317{
318 omap2_apll_set_autoidle(clk, OMAP2_APLL_AUTOIDLE_LOW_POWER_STOP);
319}
320
321static void omap2_apll_deny_idle(struct clk_hw_omap *clk)
322{
323 omap2_apll_set_autoidle(clk, OMAP2_APLL_AUTOIDLE_DISABLE);
324}
325
326static struct clk_hw_omap_ops omap2_apll_hwops = {
327 .allow_idle = &omap2_apll_allow_idle,
328 .deny_idle = &omap2_apll_deny_idle,
329};
330
331static void __init of_omap2_apll_setup(struct device_node *node)
332{
333 struct dpll_data *ad = NULL;
334 struct clk_hw_omap *clk_hw = NULL;
335 struct clk_init_data *init = NULL;
336 struct clk *clk;
337 const char *parent_name;
338 u32 val;
339
Dan Carpenter6c7ee892014-06-16 12:32:33 +0300340 ad = kzalloc(sizeof(*ad), GFP_KERNEL);
Tero Kristo4d008582014-02-24 16:06:34 +0200341 clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
342 init = kzalloc(sizeof(*init), GFP_KERNEL);
343
344 if (!ad || !clk_hw || !init)
345 goto cleanup;
346
347 clk_hw->dpll_data = ad;
348 clk_hw->hw.init = init;
349 init->ops = &omap2_apll_ops;
350 init->name = node->name;
351 clk_hw->ops = &omap2_apll_hwops;
352
353 init->num_parents = of_clk_get_parent_count(node);
354 if (init->num_parents != 1) {
355 pr_err("%s must have one parent\n", node->name);
356 goto cleanup;
357 }
358
359 parent_name = of_clk_get_parent_name(node, 0);
360 init->parent_names = &parent_name;
361
362 if (of_property_read_u32(node, "ti,clock-frequency", &val)) {
363 pr_err("%s missing clock-frequency\n", node->name);
364 goto cleanup;
365 }
366 clk_hw->fixed_rate = val;
367
368 if (of_property_read_u32(node, "ti,bit-shift", &val)) {
369 pr_err("%s missing bit-shift\n", node->name);
370 goto cleanup;
371 }
372
373 clk_hw->enable_bit = val;
374 ad->enable_mask = 0x3 << val;
375 ad->autoidle_mask = 0x3 << val;
376
377 if (of_property_read_u32(node, "ti,idlest-shift", &val)) {
378 pr_err("%s missing idlest-shift\n", node->name);
379 goto cleanup;
380 }
381
382 ad->idlest_mask = 1 << val;
383
384 ad->control_reg = ti_clk_get_reg_addr(node, 0);
385 ad->autoidle_reg = ti_clk_get_reg_addr(node, 1);
386 ad->idlest_reg = ti_clk_get_reg_addr(node, 2);
387
Tero Kristoc807dbe2015-02-23 21:06:08 +0200388 if (IS_ERR(ad->control_reg) || IS_ERR(ad->autoidle_reg) ||
389 IS_ERR(ad->idlest_reg))
Tero Kristo4d008582014-02-24 16:06:34 +0200390 goto cleanup;
391
392 clk = clk_register(NULL, &clk_hw->hw);
393 if (!IS_ERR(clk)) {
394 of_clk_add_provider(node, of_clk_src_simple_get, clk);
395 kfree(init);
396 return;
397 }
398cleanup:
399 kfree(ad);
400 kfree(clk_hw);
401 kfree(init);
402}
403CLK_OF_DECLARE(omap2_apll_clock, "ti,omap2-apll-clock",
404 of_omap2_apll_setup);