blob: 69c6472cdf582e06b5daa7d5a5baa86dad503091 [file] [log] [blame]
Paul Mundt253b0882009-05-13 17:38:11 +09001#include <linux/clk.h>
2#include <linux/compiler.h>
Magnus Damm4c7eb4e2009-06-17 04:55:42 +00003#include <linux/slab.h>
Magnus Damm6881e8b2009-05-28 12:52:29 +00004#include <linux/io.h>
Magnus Damm53041f02010-05-11 09:35:11 +00005#include <asm/clkdev.h>
Paul Mundt253b0882009-05-13 17:38:11 +09006#include <asm/clock.h>
7
Magnus Damm6881e8b2009-05-28 12:52:29 +00008static int sh_clk_mstp32_enable(struct clk *clk)
9{
10 __raw_writel(__raw_readl(clk->enable_reg) & ~(1 << clk->enable_bit),
11 clk->enable_reg);
12 return 0;
13}
14
15static void sh_clk_mstp32_disable(struct clk *clk)
16{
17 __raw_writel(__raw_readl(clk->enable_reg) | (1 << clk->enable_bit),
18 clk->enable_reg);
19}
20
21static struct clk_ops sh_clk_mstp32_clk_ops = {
22 .enable = sh_clk_mstp32_enable,
23 .disable = sh_clk_mstp32_disable,
24 .recalc = followparent_recalc,
25};
26
27int __init sh_clk_mstp32_register(struct clk *clks, int nr)
28{
29 struct clk *clkp;
30 int ret = 0;
31 int k;
32
33 for (k = 0; !ret && (k < nr); k++) {
34 clkp = clks + k;
35 clkp->ops = &sh_clk_mstp32_clk_ops;
36 ret |= clk_register(clkp);
37 }
38
39 return ret;
40}
41
Magnus Damm2693e272009-06-02 08:53:54 +000042static long sh_clk_div_round_rate(struct clk *clk, unsigned long rate)
43{
44 return clk_rate_table_round(clk, clk->freq_table, rate);
45}
46
47static int sh_clk_div6_divisors[64] = {
48 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
49 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
50 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
51 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64
52};
53
54static struct clk_div_mult_table sh_clk_div6_table = {
55 .divisors = sh_clk_div6_divisors,
56 .nr_divisors = ARRAY_SIZE(sh_clk_div6_divisors),
57};
58
59static unsigned long sh_clk_div6_recalc(struct clk *clk)
60{
61 struct clk_div_mult_table *table = &sh_clk_div6_table;
62 unsigned int idx;
63
64 clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
65 table, NULL);
66
67 idx = __raw_readl(clk->enable_reg) & 0x003f;
68
69 return clk->freq_table[idx].frequency;
70}
71
Magnus Damm098dee92009-06-04 05:31:41 +000072static int sh_clk_div6_set_rate(struct clk *clk,
73 unsigned long rate, int algo_id)
74{
75 unsigned long value;
76 int idx;
77
78 idx = clk_rate_table_find(clk, clk->freq_table, rate);
79 if (idx < 0)
80 return idx;
81
82 value = __raw_readl(clk->enable_reg);
83 value &= ~0x3f;
84 value |= idx;
85 __raw_writel(value, clk->enable_reg);
86 return 0;
87}
88
89static int sh_clk_div6_enable(struct clk *clk)
90{
91 unsigned long value;
92 int ret;
93
94 ret = sh_clk_div6_set_rate(clk, clk->rate, 0);
95 if (ret == 0) {
96 value = __raw_readl(clk->enable_reg);
97 value &= ~0x100; /* clear stop bit to enable clock */
98 __raw_writel(value, clk->enable_reg);
99 }
100 return ret;
101}
102
103static void sh_clk_div6_disable(struct clk *clk)
104{
105 unsigned long value;
106
107 value = __raw_readl(clk->enable_reg);
108 value |= 0x100; /* stop clock */
109 value |= 0x3f; /* VDIV bits must be non-zero, overwrite divider */
110 __raw_writel(value, clk->enable_reg);
111}
112
Magnus Damm2693e272009-06-02 08:53:54 +0000113static struct clk_ops sh_clk_div6_clk_ops = {
114 .recalc = sh_clk_div6_recalc,
115 .round_rate = sh_clk_div_round_rate,
Magnus Damm098dee92009-06-04 05:31:41 +0000116 .set_rate = sh_clk_div6_set_rate,
117 .enable = sh_clk_div6_enable,
118 .disable = sh_clk_div6_disable,
Magnus Damm2693e272009-06-02 08:53:54 +0000119};
120
121int __init sh_clk_div6_register(struct clk *clks, int nr)
122{
123 struct clk *clkp;
124 void *freq_table;
125 int nr_divs = sh_clk_div6_table.nr_divisors;
126 int freq_table_size = sizeof(struct cpufreq_frequency_table);
127 int ret = 0;
128 int k;
129
130 freq_table_size *= (nr_divs + 1);
Magnus Damm4c7eb4e2009-06-17 04:55:42 +0000131 freq_table = kzalloc(freq_table_size * nr, GFP_KERNEL);
132 if (!freq_table) {
133 pr_err("sh_clk_div6_register: unable to alloc memory\n");
Magnus Damm2693e272009-06-02 08:53:54 +0000134 return -ENOMEM;
Magnus Damm4c7eb4e2009-06-17 04:55:42 +0000135 }
Magnus Damm2693e272009-06-02 08:53:54 +0000136
137 for (k = 0; !ret && (k < nr); k++) {
138 clkp = clks + k;
139
140 clkp->ops = &sh_clk_div6_clk_ops;
141 clkp->id = -1;
142 clkp->freq_table = freq_table + (k * freq_table_size);
143 clkp->freq_table[nr_divs].frequency = CPUFREQ_TABLE_END;
144
145 ret = clk_register(clkp);
146 }
147
148 return ret;
149}
150
Magnus Damma1153e22009-05-28 13:11:31 +0000151static unsigned long sh_clk_div4_recalc(struct clk *clk)
152{
Magnus Damm0a5f3372010-02-19 09:22:25 +0000153 struct clk_div4_table *d4t = clk->priv;
154 struct clk_div_mult_table *table = d4t->div_mult_table;
Magnus Damma1153e22009-05-28 13:11:31 +0000155 unsigned int idx;
156
157 clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
158 table, &clk->arch_flags);
159
160 idx = (__raw_readl(clk->enable_reg) >> clk->enable_bit) & 0x000f;
161
162 return clk->freq_table[idx].frequency;
163}
164
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000165static int sh_clk_div4_set_parent(struct clk *clk, struct clk *parent)
166{
Magnus Damm0a5f3372010-02-19 09:22:25 +0000167 struct clk_div4_table *d4t = clk->priv;
168 struct clk_div_mult_table *table = d4t->div_mult_table;
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000169 u32 value;
170 int ret;
171
Magnus Dammd40db0c2010-05-11 07:05:09 +0000172 /* we really need a better way to determine parent index, but for
173 * now assume internal parent comes with CLK_ENABLE_ON_INIT set,
174 * no CLK_ENABLE_ON_INIT means external clock...
175 */
176
177 if (parent->flags & CLK_ENABLE_ON_INIT)
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000178 value = __raw_readl(clk->enable_reg) & ~(1 << 7);
179 else
180 value = __raw_readl(clk->enable_reg) | (1 << 7);
181
182 ret = clk_reparent(clk, parent);
183 if (ret < 0)
184 return ret;
185
186 __raw_writel(value, clk->enable_reg);
187
188 /* Rebiuld the frequency table */
189 clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
190 table, &clk->arch_flags);
191
192 return 0;
193}
194
195static int sh_clk_div4_set_rate(struct clk *clk, unsigned long rate, int algo_id)
196{
Magnus Damm7be85c62010-02-19 09:26:56 +0000197 struct clk_div4_table *d4t = clk->priv;
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000198 unsigned long value;
199 int idx = clk_rate_table_find(clk, clk->freq_table, rate);
200 if (idx < 0)
201 return idx;
202
203 value = __raw_readl(clk->enable_reg);
Magnus Dammde7ca212010-02-19 09:12:00 +0000204 value &= ~(0xf << clk->enable_bit);
205 value |= (idx << clk->enable_bit);
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000206 __raw_writel(value, clk->enable_reg);
207
Magnus Damm7be85c62010-02-19 09:26:56 +0000208 if (d4t->kick)
209 d4t->kick(clk);
210
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000211 return 0;
212}
213
214static int sh_clk_div4_enable(struct clk *clk)
215{
216 __raw_writel(__raw_readl(clk->enable_reg) & ~(1 << 8), clk->enable_reg);
217 return 0;
218}
219
220static void sh_clk_div4_disable(struct clk *clk)
221{
222 __raw_writel(__raw_readl(clk->enable_reg) | (1 << 8), clk->enable_reg);
223}
224
Magnus Damma1153e22009-05-28 13:11:31 +0000225static struct clk_ops sh_clk_div4_clk_ops = {
226 .recalc = sh_clk_div4_recalc,
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000227 .set_rate = sh_clk_div4_set_rate,
Magnus Damm2693e272009-06-02 08:53:54 +0000228 .round_rate = sh_clk_div_round_rate,
Magnus Damma1153e22009-05-28 13:11:31 +0000229};
230
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000231static struct clk_ops sh_clk_div4_enable_clk_ops = {
232 .recalc = sh_clk_div4_recalc,
233 .set_rate = sh_clk_div4_set_rate,
234 .round_rate = sh_clk_div_round_rate,
235 .enable = sh_clk_div4_enable,
236 .disable = sh_clk_div4_disable,
237};
238
239static struct clk_ops sh_clk_div4_reparent_clk_ops = {
240 .recalc = sh_clk_div4_recalc,
241 .set_rate = sh_clk_div4_set_rate,
242 .round_rate = sh_clk_div_round_rate,
243 .enable = sh_clk_div4_enable,
244 .disable = sh_clk_div4_disable,
245 .set_parent = sh_clk_div4_set_parent,
246};
247
248static int __init sh_clk_div4_register_ops(struct clk *clks, int nr,
Magnus Damm0a5f3372010-02-19 09:22:25 +0000249 struct clk_div4_table *table, struct clk_ops *ops)
Magnus Damma1153e22009-05-28 13:11:31 +0000250{
251 struct clk *clkp;
252 void *freq_table;
Magnus Damm0a5f3372010-02-19 09:22:25 +0000253 int nr_divs = table->div_mult_table->nr_divisors;
Magnus Damma1153e22009-05-28 13:11:31 +0000254 int freq_table_size = sizeof(struct cpufreq_frequency_table);
255 int ret = 0;
256 int k;
257
Magnus Damma50de782009-06-02 08:43:59 +0000258 freq_table_size *= (nr_divs + 1);
Magnus Damm4c7eb4e2009-06-17 04:55:42 +0000259 freq_table = kzalloc(freq_table_size * nr, GFP_KERNEL);
260 if (!freq_table) {
261 pr_err("sh_clk_div4_register: unable to alloc memory\n");
Magnus Damma1153e22009-05-28 13:11:31 +0000262 return -ENOMEM;
Magnus Damm4c7eb4e2009-06-17 04:55:42 +0000263 }
Magnus Damma1153e22009-05-28 13:11:31 +0000264
265 for (k = 0; !ret && (k < nr); k++) {
266 clkp = clks + k;
267
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000268 clkp->ops = ops;
Magnus Damma1153e22009-05-28 13:11:31 +0000269 clkp->id = -1;
270 clkp->priv = table;
271
272 clkp->freq_table = freq_table + (k * freq_table_size);
273 clkp->freq_table[nr_divs].frequency = CPUFREQ_TABLE_END;
274
275 ret = clk_register(clkp);
276 }
277
278 return ret;
279}
280
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000281int __init sh_clk_div4_register(struct clk *clks, int nr,
Magnus Damm0a5f3372010-02-19 09:22:25 +0000282 struct clk_div4_table *table)
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000283{
284 return sh_clk_div4_register_ops(clks, nr, table, &sh_clk_div4_clk_ops);
285}
286
287int __init sh_clk_div4_enable_register(struct clk *clks, int nr,
Magnus Damm0a5f3372010-02-19 09:22:25 +0000288 struct clk_div4_table *table)
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000289{
290 return sh_clk_div4_register_ops(clks, nr, table,
291 &sh_clk_div4_enable_clk_ops);
292}
293
294int __init sh_clk_div4_reparent_register(struct clk *clks, int nr,
Magnus Damm0a5f3372010-02-19 09:22:25 +0000295 struct clk_div4_table *table)
Guennadi Liakhovetski31c3af52010-01-19 11:14:31 +0000296{
297 return sh_clk_div4_register_ops(clks, nr, table,
298 &sh_clk_div4_reparent_clk_ops);
299}
300
Paul Mundt36aa1e32009-05-22 14:00:34 +0900301#ifdef CONFIG_SH_CLK_CPG_LEGACY
Paul Mundt253b0882009-05-13 17:38:11 +0900302static struct clk master_clk = {
Paul Mundt253b0882009-05-13 17:38:11 +0900303 .flags = CLK_ENABLE_ON_INIT,
304 .rate = CONFIG_SH_PCLK_FREQ,
305};
306
307static struct clk peripheral_clk = {
Paul Mundt253b0882009-05-13 17:38:11 +0900308 .parent = &master_clk,
309 .flags = CLK_ENABLE_ON_INIT,
310};
311
312static struct clk bus_clk = {
Paul Mundt253b0882009-05-13 17:38:11 +0900313 .parent = &master_clk,
314 .flags = CLK_ENABLE_ON_INIT,
315};
316
317static struct clk cpu_clk = {
Paul Mundt253b0882009-05-13 17:38:11 +0900318 .parent = &master_clk,
319 .flags = CLK_ENABLE_ON_INIT,
320};
321
322/*
323 * The ordering of these clocks matters, do not change it.
324 */
325static struct clk *onchip_clocks[] = {
326 &master_clk,
327 &peripheral_clk,
328 &bus_clk,
329 &cpu_clk,
330};
331
Magnus Damm53041f02010-05-11 09:35:11 +0000332#define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }
333
334static struct clk_lookup lookups[] = {
335 /* main clocks */
336 CLKDEV_CON_ID("master_clk", &master_clk),
337 CLKDEV_CON_ID("peripheral_clk", &peripheral_clk),
338 CLKDEV_CON_ID("bus_clk", &bus_clk),
339 CLKDEV_CON_ID("cpu_clk", &cpu_clk),
340};
341
Paul Mundt253b0882009-05-13 17:38:11 +0900342int __init __deprecated cpg_clk_init(void)
343{
344 int i, ret = 0;
345
346 for (i = 0; i < ARRAY_SIZE(onchip_clocks); i++) {
347 struct clk *clk = onchip_clocks[i];
348 arch_init_clk_ops(&clk->ops, i);
349 if (clk->ops)
350 ret |= clk_register(clk);
351 }
352
Magnus Damm53041f02010-05-11 09:35:11 +0000353 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
354
Paul Mundt0776d602010-03-29 17:22:50 +0900355 clk_add_alias("tmu_fck", NULL, "peripheral_clk", NULL);
356 clk_add_alias("mtu2_fck", NULL, "peripheral_clk", NULL);
357 clk_add_alias("cmt_fck", NULL, "peripheral_clk", NULL);
358 clk_add_alias("sci_ick", NULL, "peripheral_clk", NULL);
359
Paul Mundt253b0882009-05-13 17:38:11 +0900360 return ret;
361}
362
363/*
364 * Placeholder for compatability, until the lazy CPUs do this
365 * on their own.
366 */
367int __init __weak arch_clk_init(void)
368{
369 return cpg_clk_init();
370}
Paul Mundt36aa1e32009-05-22 14:00:34 +0900371#endif /* CONFIG_SH_CPG_CLK_LEGACY */