72a5e621a9bbcdbe54b1adeed575e77e69315a8a
[deliverable/linux.git] / arch / sh / kernel / cpu / clock-cpg.c
1 #include <linux/clk.h>
2 #include <linux/compiler.h>
3 #include <linux/slab.h>
4 #include <linux/io.h>
5 #include <asm/clock.h>
6
7 static int sh_clk_mstp32_enable(struct clk *clk)
8 {
9 __raw_writel(__raw_readl(clk->enable_reg) & ~(1 << clk->enable_bit),
10 clk->enable_reg);
11 return 0;
12 }
13
14 static void sh_clk_mstp32_disable(struct clk *clk)
15 {
16 __raw_writel(__raw_readl(clk->enable_reg) | (1 << clk->enable_bit),
17 clk->enable_reg);
18 }
19
20 static struct clk_ops sh_clk_mstp32_clk_ops = {
21 .enable = sh_clk_mstp32_enable,
22 .disable = sh_clk_mstp32_disable,
23 .recalc = followparent_recalc,
24 };
25
26 int __init sh_clk_mstp32_register(struct clk *clks, int nr)
27 {
28 struct clk *clkp;
29 int ret = 0;
30 int k;
31
32 for (k = 0; !ret && (k < nr); k++) {
33 clkp = clks + k;
34 clkp->ops = &sh_clk_mstp32_clk_ops;
35 ret |= clk_register(clkp);
36 }
37
38 return ret;
39 }
40
41 static long sh_clk_div_round_rate(struct clk *clk, unsigned long rate)
42 {
43 return clk_rate_table_round(clk, clk->freq_table, rate);
44 }
45
46 static int sh_clk_div6_divisors[64] = {
47 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
48 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
49 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
50 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64
51 };
52
53 static struct clk_div_mult_table sh_clk_div6_table = {
54 .divisors = sh_clk_div6_divisors,
55 .nr_divisors = ARRAY_SIZE(sh_clk_div6_divisors),
56 };
57
58 static unsigned long sh_clk_div6_recalc(struct clk *clk)
59 {
60 struct clk_div_mult_table *table = &sh_clk_div6_table;
61 unsigned int idx;
62
63 clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
64 table, NULL);
65
66 idx = __raw_readl(clk->enable_reg) & 0x003f;
67
68 return clk->freq_table[idx].frequency;
69 }
70
71 static int sh_clk_div6_set_rate(struct clk *clk,
72 unsigned long rate, int algo_id)
73 {
74 unsigned long value;
75 int idx;
76
77 idx = clk_rate_table_find(clk, clk->freq_table, rate);
78 if (idx < 0)
79 return idx;
80
81 value = __raw_readl(clk->enable_reg);
82 value &= ~0x3f;
83 value |= idx;
84 __raw_writel(value, clk->enable_reg);
85 return 0;
86 }
87
88 static int sh_clk_div6_enable(struct clk *clk)
89 {
90 unsigned long value;
91 int ret;
92
93 ret = sh_clk_div6_set_rate(clk, clk->rate, 0);
94 if (ret == 0) {
95 value = __raw_readl(clk->enable_reg);
96 value &= ~0x100; /* clear stop bit to enable clock */
97 __raw_writel(value, clk->enable_reg);
98 }
99 return ret;
100 }
101
102 static void sh_clk_div6_disable(struct clk *clk)
103 {
104 unsigned long value;
105
106 value = __raw_readl(clk->enable_reg);
107 value |= 0x100; /* stop clock */
108 value |= 0x3f; /* VDIV bits must be non-zero, overwrite divider */
109 __raw_writel(value, clk->enable_reg);
110 }
111
112 static struct clk_ops sh_clk_div6_clk_ops = {
113 .recalc = sh_clk_div6_recalc,
114 .round_rate = sh_clk_div_round_rate,
115 .set_rate = sh_clk_div6_set_rate,
116 .enable = sh_clk_div6_enable,
117 .disable = sh_clk_div6_disable,
118 };
119
120 int __init sh_clk_div6_register(struct clk *clks, int nr)
121 {
122 struct clk *clkp;
123 void *freq_table;
124 int nr_divs = sh_clk_div6_table.nr_divisors;
125 int freq_table_size = sizeof(struct cpufreq_frequency_table);
126 int ret = 0;
127 int k;
128
129 freq_table_size *= (nr_divs + 1);
130 freq_table = kzalloc(freq_table_size * nr, GFP_KERNEL);
131 if (!freq_table) {
132 pr_err("sh_clk_div6_register: unable to alloc memory\n");
133 return -ENOMEM;
134 }
135
136 for (k = 0; !ret && (k < nr); k++) {
137 clkp = clks + k;
138
139 clkp->ops = &sh_clk_div6_clk_ops;
140 clkp->id = -1;
141 clkp->freq_table = freq_table + (k * freq_table_size);
142 clkp->freq_table[nr_divs].frequency = CPUFREQ_TABLE_END;
143
144 ret = clk_register(clkp);
145 }
146
147 return ret;
148 }
149
150 static unsigned long sh_clk_div4_recalc(struct clk *clk)
151 {
152 struct clk_div_mult_table *table = clk->priv;
153 unsigned int idx;
154
155 clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
156 table, &clk->arch_flags);
157
158 idx = (__raw_readl(clk->enable_reg) >> clk->enable_bit) & 0x000f;
159
160 return clk->freq_table[idx].frequency;
161 }
162
163 static int sh_clk_div4_set_parent(struct clk *clk, struct clk *parent)
164 {
165 struct clk_div_mult_table *table = clk->priv;
166 u32 value;
167 int ret;
168
169 if (!strcmp("pll_clk", parent->name))
170 value = __raw_readl(clk->enable_reg) & ~(1 << 7);
171 else
172 value = __raw_readl(clk->enable_reg) | (1 << 7);
173
174 ret = clk_reparent(clk, parent);
175 if (ret < 0)
176 return ret;
177
178 __raw_writel(value, clk->enable_reg);
179
180 /* Rebiuld the frequency table */
181 clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
182 table, &clk->arch_flags);
183
184 return 0;
185 }
186
187 static int sh_clk_div4_set_rate(struct clk *clk, unsigned long rate, int algo_id)
188 {
189 unsigned long value;
190 int idx = clk_rate_table_find(clk, clk->freq_table, rate);
191 if (idx < 0)
192 return idx;
193
194 value = __raw_readl(clk->enable_reg);
195 value &= ~(0xf << clk->enable_bit);
196 value |= (idx << clk->enable_bit);
197 __raw_writel(value, clk->enable_reg);
198
199 return 0;
200 }
201
202 static int sh_clk_div4_enable(struct clk *clk)
203 {
204 __raw_writel(__raw_readl(clk->enable_reg) & ~(1 << 8), clk->enable_reg);
205 return 0;
206 }
207
208 static void sh_clk_div4_disable(struct clk *clk)
209 {
210 __raw_writel(__raw_readl(clk->enable_reg) | (1 << 8), clk->enable_reg);
211 }
212
213 static struct clk_ops sh_clk_div4_clk_ops = {
214 .recalc = sh_clk_div4_recalc,
215 .set_rate = sh_clk_div4_set_rate,
216 .round_rate = sh_clk_div_round_rate,
217 };
218
219 static struct clk_ops sh_clk_div4_enable_clk_ops = {
220 .recalc = sh_clk_div4_recalc,
221 .set_rate = sh_clk_div4_set_rate,
222 .round_rate = sh_clk_div_round_rate,
223 .enable = sh_clk_div4_enable,
224 .disable = sh_clk_div4_disable,
225 };
226
227 static struct clk_ops sh_clk_div4_reparent_clk_ops = {
228 .recalc = sh_clk_div4_recalc,
229 .set_rate = sh_clk_div4_set_rate,
230 .round_rate = sh_clk_div_round_rate,
231 .enable = sh_clk_div4_enable,
232 .disable = sh_clk_div4_disable,
233 .set_parent = sh_clk_div4_set_parent,
234 };
235
236 static int __init sh_clk_div4_register_ops(struct clk *clks, int nr,
237 struct clk_div_mult_table *table, struct clk_ops *ops)
238 {
239 struct clk *clkp;
240 void *freq_table;
241 int nr_divs = table->nr_divisors;
242 int freq_table_size = sizeof(struct cpufreq_frequency_table);
243 int ret = 0;
244 int k;
245
246 freq_table_size *= (nr_divs + 1);
247 freq_table = kzalloc(freq_table_size * nr, GFP_KERNEL);
248 if (!freq_table) {
249 pr_err("sh_clk_div4_register: unable to alloc memory\n");
250 return -ENOMEM;
251 }
252
253 for (k = 0; !ret && (k < nr); k++) {
254 clkp = clks + k;
255
256 clkp->ops = ops;
257 clkp->id = -1;
258 clkp->priv = table;
259
260 clkp->freq_table = freq_table + (k * freq_table_size);
261 clkp->freq_table[nr_divs].frequency = CPUFREQ_TABLE_END;
262
263 ret = clk_register(clkp);
264 }
265
266 return ret;
267 }
268
269 int __init sh_clk_div4_register(struct clk *clks, int nr,
270 struct clk_div_mult_table *table)
271 {
272 return sh_clk_div4_register_ops(clks, nr, table, &sh_clk_div4_clk_ops);
273 }
274
275 int __init sh_clk_div4_enable_register(struct clk *clks, int nr,
276 struct clk_div_mult_table *table)
277 {
278 return sh_clk_div4_register_ops(clks, nr, table,
279 &sh_clk_div4_enable_clk_ops);
280 }
281
282 int __init sh_clk_div4_reparent_register(struct clk *clks, int nr,
283 struct clk_div_mult_table *table)
284 {
285 return sh_clk_div4_register_ops(clks, nr, table,
286 &sh_clk_div4_reparent_clk_ops);
287 }
288
289 #ifdef CONFIG_SH_CLK_CPG_LEGACY
290 static struct clk master_clk = {
291 .name = "master_clk",
292 .flags = CLK_ENABLE_ON_INIT,
293 .rate = CONFIG_SH_PCLK_FREQ,
294 };
295
296 static struct clk peripheral_clk = {
297 .name = "peripheral_clk",
298 .parent = &master_clk,
299 .flags = CLK_ENABLE_ON_INIT,
300 };
301
302 static struct clk bus_clk = {
303 .name = "bus_clk",
304 .parent = &master_clk,
305 .flags = CLK_ENABLE_ON_INIT,
306 };
307
308 static struct clk cpu_clk = {
309 .name = "cpu_clk",
310 .parent = &master_clk,
311 .flags = CLK_ENABLE_ON_INIT,
312 };
313
314 /*
315 * The ordering of these clocks matters, do not change it.
316 */
317 static struct clk *onchip_clocks[] = {
318 &master_clk,
319 &peripheral_clk,
320 &bus_clk,
321 &cpu_clk,
322 };
323
324 int __init __deprecated cpg_clk_init(void)
325 {
326 int i, ret = 0;
327
328 for (i = 0; i < ARRAY_SIZE(onchip_clocks); i++) {
329 struct clk *clk = onchip_clocks[i];
330 arch_init_clk_ops(&clk->ops, i);
331 if (clk->ops)
332 ret |= clk_register(clk);
333 }
334
335 return ret;
336 }
337
338 /*
339 * Placeholder for compatability, until the lazy CPUs do this
340 * on their own.
341 */
342 int __init __weak arch_clk_init(void)
343 {
344 return cpg_clk_init();
345 }
346 #endif /* CONFIG_SH_CPG_CLK_LEGACY */
This page took 0.037076 seconds and 4 git commands to generate.