blob: f1bba88ed2f571f9980a56c0af29798e6d75e244 [file] [log] [blame]
Ben Dooksb999f0d2008-07-03 11:24:27 +01001/* linux/arch/arm/plat-s3c24xx/pwm-clock.c
2 *
3 * Copyright (c) 2007 Simtec Electronics
4 * Copyright (c) 2007, 2008 Ben Dooks
5 * Ben Dooks <ben-linux@fluff.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License.
10*/
11
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/list.h>
16#include <linux/errno.h>
Ben Dooksb09bcdd2008-11-21 10:36:03 +000017#include <linux/log2.h>
Ben Dooksb999f0d2008-07-03 11:24:27 +010018#include <linux/clk.h>
19#include <linux/err.h>
20#include <linux/io.h>
21
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
Ben Dookse550ae72008-10-21 14:06:56 +010023#include <mach/map.h>
Ben Dooksb999f0d2008-07-03 11:24:27 +010024#include <asm/irq.h>
25
Ben Dooksd5120ae2008-10-07 23:09:51 +010026#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010027#include <plat/cpu.h>
Ben Dooksb999f0d2008-07-03 11:24:27 +010028
Ben Dooksa2b7ba92008-10-07 22:26:09 +010029#include <plat/regs-timer.h>
Ben Dooksb09bcdd2008-11-21 10:36:03 +000030#include <mach/pwm-clock.h>
Ben Dooksb999f0d2008-07-03 11:24:27 +010031
32/* Each of the timers 0 through 5 go through the following
33 * clock tree, with the inputs depending on the timers.
34 *
35 * pclk ---- [ prescaler 0 ] -+---> timer 0
36 * +---> timer 1
37 *
38 * pclk ---- [ prescaler 1 ] -+---> timer 2
39 * +---> timer 3
40 * \---> timer 4
41 *
42 * Which are fed into the timers as so:
43 *
44 * prescaled 0 ---- [ div 2,4,8,16 ] ---\
45 * [mux] -> timer 0
46 * tclk 0 ------------------------------/
47 *
48 * prescaled 0 ---- [ div 2,4,8,16 ] ---\
49 * [mux] -> timer 1
50 * tclk 0 ------------------------------/
51 *
52 *
53 * prescaled 1 ---- [ div 2,4,8,16 ] ---\
54 * [mux] -> timer 2
55 * tclk 1 ------------------------------/
56 *
57 * prescaled 1 ---- [ div 2,4,8,16 ] ---\
58 * [mux] -> timer 3
59 * tclk 1 ------------------------------/
60 *
61 * prescaled 1 ---- [ div 2,4,8, 16 ] --\
62 * [mux] -> timer 4
63 * tclk 1 ------------------------------/
64 *
65 * Since the mux and the divider are tied together in the
66 * same register space, it is impossible to set the parent
67 * and the rate at the same time. To avoid this, we add an
68 * intermediate 'prescaled-and-divided' clock to select
69 * as the parent for the timer input clock called tdiv.
70 *
71 * prescaled clk --> pwm-tdiv ---\
72 * [ mux ] --> timer X
73 * tclk -------------------------/
74*/
75
Ben Dooks7d2dbcf2008-11-21 10:36:06 +000076static struct clk clk_timer_scaler[];
77
Ben Dooks82fd8e62008-11-21 10:36:04 +000078static unsigned long clk_pwm_scaler_get_rate(struct clk *clk)
Ben Dooksb999f0d2008-07-03 11:24:27 +010079{
80 unsigned long tcfg0 = __raw_readl(S3C2410_TCFG0);
81
Ben Dooks7d2dbcf2008-11-21 10:36:06 +000082 if (clk == &clk_timer_scaler[1]) {
Ben Dooksb999f0d2008-07-03 11:24:27 +010083 tcfg0 &= S3C2410_TCFG_PRESCALER1_MASK;
84 tcfg0 >>= S3C2410_TCFG_PRESCALER1_SHIFT;
85 } else {
86 tcfg0 &= S3C2410_TCFG_PRESCALER0_MASK;
87 }
88
89 return clk_get_rate(clk->parent) / (tcfg0 + 1);
90}
91
Ben Dooks82fd8e62008-11-21 10:36:04 +000092static unsigned long clk_pwm_scaler_round_rate(struct clk *clk,
93 unsigned long rate)
94{
95 unsigned long parent_rate = clk_get_rate(clk->parent);
96 unsigned long divisor = parent_rate / rate;
97
98 if (divisor > 256)
99 divisor = 256;
100 else if (divisor < 2)
101 divisor = 2;
102
103 return parent_rate / divisor;
104}
105
106static int clk_pwm_scaler_set_rate(struct clk *clk, unsigned long rate)
107{
108 unsigned long round = clk_pwm_scaler_round_rate(clk, rate);
109 unsigned long tcfg0;
110 unsigned long divisor;
111 unsigned long flags;
112
113 divisor = clk_get_rate(clk->parent) / round;
114 divisor--;
115
116 local_irq_save(flags);
117 tcfg0 = __raw_readl(S3C2410_TCFG0);
118
Ben Dooks7d2dbcf2008-11-21 10:36:06 +0000119 if (clk == &clk_timer_scaler[1]) {
Ben Dooks82fd8e62008-11-21 10:36:04 +0000120 tcfg0 &= ~S3C2410_TCFG_PRESCALER1_MASK;
121 tcfg0 |= divisor << S3C2410_TCFG_PRESCALER1_SHIFT;
122 } else {
123 tcfg0 &= ~S3C2410_TCFG_PRESCALER0_MASK;
124 tcfg0 |= divisor;
125 }
126
127 __raw_writel(tcfg0, S3C2410_TCFG0);
128 local_irq_restore(flags);
129
130 return 0;
131}
Ben Dooksb999f0d2008-07-03 11:24:27 +0100132
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000133static struct clk_ops clk_pwm_scaler_ops = {
134 .get_rate = clk_pwm_scaler_get_rate,
135 .set_rate = clk_pwm_scaler_set_rate,
136 .round_rate = clk_pwm_scaler_round_rate,
137};
138
Ben Dooks1442e662008-08-26 22:54:04 +0100139static struct clk clk_timer_scaler[] = {
Ben Dooksb999f0d2008-07-03 11:24:27 +0100140 [0] = {
141 .name = "pwm-scaler0",
142 .id = -1,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000143 .ops = &clk_pwm_scaler_ops,
Ben Dooksb999f0d2008-07-03 11:24:27 +0100144 },
145 [1] = {
146 .name = "pwm-scaler1",
147 .id = -1,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000148 .ops = &clk_pwm_scaler_ops,
Ben Dooksb999f0d2008-07-03 11:24:27 +0100149 },
150};
151
Ben Dooks1442e662008-08-26 22:54:04 +0100152static struct clk clk_timer_tclk[] = {
Ben Dooksb999f0d2008-07-03 11:24:27 +0100153 [0] = {
154 .name = "pwm-tclk0",
155 .id = -1,
156 },
157 [1] = {
158 .name = "pwm-tclk1",
159 .id = -1,
160 },
161};
162
163struct pwm_tdiv_clk {
164 struct clk clk;
165 unsigned int divisor;
166};
167
168static inline struct pwm_tdiv_clk *to_tdiv(struct clk *clk)
169{
170 return container_of(clk, struct pwm_tdiv_clk, clk);
171}
172
Ben Dooksb999f0d2008-07-03 11:24:27 +0100173static unsigned long clk_pwm_tdiv_get_rate(struct clk *clk)
174{
175 unsigned long tcfg1 = __raw_readl(S3C2410_TCFG1);
176 unsigned int divisor;
177
178 tcfg1 >>= S3C2410_TCFG1_SHIFT(clk->id);
179 tcfg1 &= S3C2410_TCFG1_MUX_MASK;
180
Ben Dooksb09bcdd2008-11-21 10:36:03 +0000181 if (pwm_cfg_src_is_tclk(tcfg1))
Ben Dooksb999f0d2008-07-03 11:24:27 +0100182 divisor = to_tdiv(clk)->divisor;
183 else
184 divisor = tcfg_to_divisor(tcfg1);
185
186 return clk_get_rate(clk->parent) / divisor;
187}
188
189static unsigned long clk_pwm_tdiv_round_rate(struct clk *clk,
190 unsigned long rate)
191{
192 unsigned long parent_rate;
193 unsigned long divisor;
194
195 parent_rate = clk_get_rate(clk->parent);
196 divisor = parent_rate / rate;
197
Ben Dooksb09bcdd2008-11-21 10:36:03 +0000198 if (divisor <= 1 && pwm_tdiv_has_div1())
199 divisor = 1;
200 else if (divisor <= 2)
Ben Dooksb999f0d2008-07-03 11:24:27 +0100201 divisor = 2;
202 else if (divisor <= 4)
203 divisor = 4;
204 else if (divisor <= 8)
205 divisor = 8;
206 else
207 divisor = 16;
208
209 return parent_rate / divisor;
210}
211
212static unsigned long clk_pwm_tdiv_bits(struct pwm_tdiv_clk *divclk)
213{
Ben Dooksb09bcdd2008-11-21 10:36:03 +0000214 return pwm_tdiv_div_bits(divclk->divisor);
Ben Dooksb999f0d2008-07-03 11:24:27 +0100215}
216
217static void clk_pwm_tdiv_update(struct pwm_tdiv_clk *divclk)
218{
219 unsigned long tcfg1 = __raw_readl(S3C2410_TCFG1);
220 unsigned long bits = clk_pwm_tdiv_bits(divclk);
221 unsigned long flags;
222 unsigned long shift = S3C2410_TCFG1_SHIFT(divclk->clk.id);
223
224 local_irq_save(flags);
225
226 tcfg1 = __raw_readl(S3C2410_TCFG1);
227 tcfg1 &= ~(S3C2410_TCFG1_MUX_MASK << shift);
228 tcfg1 |= bits << shift;
229 __raw_writel(tcfg1, S3C2410_TCFG1);
230
231 local_irq_restore(flags);
232}
233
234static int clk_pwm_tdiv_set_rate(struct clk *clk, unsigned long rate)
235{
236 struct pwm_tdiv_clk *divclk = to_tdiv(clk);
237 unsigned long tcfg1 = __raw_readl(S3C2410_TCFG1);
238 unsigned long parent_rate = clk_get_rate(clk->parent);
239 unsigned long divisor;
240
241 tcfg1 >>= S3C2410_TCFG1_SHIFT(clk->id);
242 tcfg1 &= S3C2410_TCFG1_MUX_MASK;
243
244 rate = clk_round_rate(clk, rate);
245 divisor = parent_rate / rate;
246
247 if (divisor > 16)
248 return -EINVAL;
249
250 divclk->divisor = divisor;
251
252 /* Update the current MUX settings if we are currently
253 * selected as the clock source for this clock. */
254
Ben Dooksb09bcdd2008-11-21 10:36:03 +0000255 if (!pwm_cfg_src_is_tclk(tcfg1))
Ben Dooksb999f0d2008-07-03 11:24:27 +0100256 clk_pwm_tdiv_update(divclk);
257
258 return 0;
259}
260
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000261static struct clk_ops clk_tdiv_ops = {
262 .get_rate = clk_pwm_tdiv_get_rate,
263 .set_rate = clk_pwm_tdiv_set_rate,
264 .round_rate = clk_pwm_tdiv_round_rate,
265};
266
Ben Dooks1442e662008-08-26 22:54:04 +0100267static struct pwm_tdiv_clk clk_timer_tdiv[] = {
Ben Dooksb999f0d2008-07-03 11:24:27 +0100268 [0] = {
269 .clk = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000270 .name = "pwm-tdiv",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900271 .devname = "s3c24xx-pwm.0",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000272 .ops = &clk_tdiv_ops,
273 .parent = &clk_timer_scaler[0],
Ben Dooksb999f0d2008-07-03 11:24:27 +0100274 },
275 },
276 [1] = {
277 .clk = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000278 .name = "pwm-tdiv",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900279 .devname = "s3c24xx-pwm.1",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000280 .ops = &clk_tdiv_ops,
281 .parent = &clk_timer_scaler[0],
Ben Dooksb999f0d2008-07-03 11:24:27 +0100282 }
283 },
284 [2] = {
285 .clk = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000286 .name = "pwm-tdiv",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900287 .devname = "s3c24xx-pwm.2",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000288 .ops = &clk_tdiv_ops,
289 .parent = &clk_timer_scaler[1],
Ben Dooksb999f0d2008-07-03 11:24:27 +0100290 },
291 },
292 [3] = {
293 .clk = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000294 .name = "pwm-tdiv",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900295 .devname = "s3c24xx-pwm.3",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000296 .ops = &clk_tdiv_ops,
297 .parent = &clk_timer_scaler[1],
Ben Dooksb999f0d2008-07-03 11:24:27 +0100298 },
299 },
300 [4] = {
301 .clk = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000302 .name = "pwm-tdiv",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900303 .devname = "s3c24xx-pwm.4",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000304 .ops = &clk_tdiv_ops,
305 .parent = &clk_timer_scaler[1],
Ben Dooksb999f0d2008-07-03 11:24:27 +0100306 },
307 },
308};
309
310static int __init clk_pwm_tdiv_register(unsigned int id)
311{
312 struct pwm_tdiv_clk *divclk = &clk_timer_tdiv[id];
313 unsigned long tcfg1 = __raw_readl(S3C2410_TCFG1);
314
315 tcfg1 >>= S3C2410_TCFG1_SHIFT(id);
316 tcfg1 &= S3C2410_TCFG1_MUX_MASK;
317
318 divclk->clk.id = id;
319 divclk->divisor = tcfg_to_divisor(tcfg1);
320
321 return s3c24xx_register_clock(&divclk->clk);
322}
323
324static inline struct clk *s3c24xx_pwmclk_tclk(unsigned int id)
325{
326 return (id >= 2) ? &clk_timer_tclk[1] : &clk_timer_tclk[0];
327}
328
329static inline struct clk *s3c24xx_pwmclk_tdiv(unsigned int id)
330{
331 return &clk_timer_tdiv[id].clk;
332}
333
334static int clk_pwm_tin_set_parent(struct clk *clk, struct clk *parent)
335{
336 unsigned int id = clk->id;
337 unsigned long tcfg1;
338 unsigned long flags;
339 unsigned long bits;
340 unsigned long shift = S3C2410_TCFG1_SHIFT(id);
341
342 if (parent == s3c24xx_pwmclk_tclk(id))
Ben Dooksb09bcdd2008-11-21 10:36:03 +0000343 bits = S3C_TCFG1_MUX_TCLK << shift;
Ben Dooksb999f0d2008-07-03 11:24:27 +0100344 else if (parent == s3c24xx_pwmclk_tdiv(id))
Dallas Foley7e90d762008-10-16 16:46:07 +0100345 bits = clk_pwm_tdiv_bits(to_tdiv(parent)) << shift;
Ben Dooksb999f0d2008-07-03 11:24:27 +0100346 else
347 return -EINVAL;
348
349 clk->parent = parent;
350
351 local_irq_save(flags);
352
353 tcfg1 = __raw_readl(S3C2410_TCFG1);
354 tcfg1 &= ~(S3C2410_TCFG1_MUX_MASK << shift);
355 __raw_writel(tcfg1 | bits, S3C2410_TCFG1);
356
357 local_irq_restore(flags);
358
359 return 0;
360}
361
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000362static struct clk_ops clk_tin_ops = {
363 .set_parent = clk_pwm_tin_set_parent,
364};
365
Ben Dooksb999f0d2008-07-03 11:24:27 +0100366static struct clk clk_tin[] = {
367 [0] = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000368 .name = "pwm-tin",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900369 .devname = "s3c24xx-pwm.0",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000370 .id = 0,
371 .ops = &clk_tin_ops,
Ben Dooksb999f0d2008-07-03 11:24:27 +0100372 },
373 [1] = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000374 .name = "pwm-tin",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900375 .devname = "s3c24xx-pwm.1",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000376 .id = 1,
377 .ops = &clk_tin_ops,
Ben Dooksb999f0d2008-07-03 11:24:27 +0100378 },
379 [2] = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000380 .name = "pwm-tin",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900381 .devname = "s3c24xx-pwm.2",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000382 .id = 2,
383 .ops = &clk_tin_ops,
Ben Dooksb999f0d2008-07-03 11:24:27 +0100384 },
385 [3] = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000386 .name = "pwm-tin",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900387 .devname = "s3c24xx-pwm.3",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000388 .id = 3,
389 .ops = &clk_tin_ops,
Ben Dooksb999f0d2008-07-03 11:24:27 +0100390 },
391 [4] = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000392 .name = "pwm-tin",
Thomas Abrahame83626f2011-06-14 19:12:26 +0900393 .devname = "s3c24xx-pwm.4",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000394 .id = 4,
395 .ops = &clk_tin_ops,
Ben Dooksb999f0d2008-07-03 11:24:27 +0100396 },
397};
398
399static __init int clk_pwm_tin_register(struct clk *pwm)
400{
401 unsigned long tcfg1 = __raw_readl(S3C2410_TCFG1);
402 unsigned int id = pwm->id;
403
404 struct clk *parent;
405 int ret;
406
407 ret = s3c24xx_register_clock(pwm);
408 if (ret < 0)
409 return ret;
410
411 tcfg1 >>= S3C2410_TCFG1_SHIFT(id);
412 tcfg1 &= S3C2410_TCFG1_MUX_MASK;
413
Ben Dooksb09bcdd2008-11-21 10:36:03 +0000414 if (pwm_cfg_src_is_tclk(tcfg1))
Ben Dooksb999f0d2008-07-03 11:24:27 +0100415 parent = s3c24xx_pwmclk_tclk(id);
416 else
417 parent = s3c24xx_pwmclk_tdiv(id);
418
419 return clk_set_parent(pwm, parent);
420}
421
Ben Dooks9d325f22008-11-21 10:36:05 +0000422/**
423 * s3c_pwmclk_init() - initialise pwm clocks
424 *
425 * Initialise and register the clocks which provide the inputs for the
426 * pwm timer blocks.
427 *
428 * Note, this call is required by the time core, so must be called after
429 * the base clocks are added and before any of the initcalls are run.
430 */
431__init void s3c_pwmclk_init(void)
Ben Dooksb999f0d2008-07-03 11:24:27 +0100432{
433 struct clk *clk_timers;
434 unsigned int clk;
435 int ret;
436
437 clk_timers = clk_get(NULL, "timers");
438 if (IS_ERR(clk_timers)) {
439 printk(KERN_ERR "%s: no parent clock\n", __func__);
Ben Dooks9d325f22008-11-21 10:36:05 +0000440 return;
Ben Dooksb999f0d2008-07-03 11:24:27 +0100441 }
442
Ben Dooks1d9f13c2010-01-06 01:21:38 +0900443 for (clk = 0; clk < ARRAY_SIZE(clk_timer_scaler); clk++)
Ben Dooksb999f0d2008-07-03 11:24:27 +0100444 clk_timer_scaler[clk].parent = clk_timers;
Ben Dooksb999f0d2008-07-03 11:24:27 +0100445
Ben Dooks1d9f13c2010-01-06 01:21:38 +0900446 s3c_register_clocks(clk_timer_scaler, ARRAY_SIZE(clk_timer_scaler));
447 s3c_register_clocks(clk_timer_tclk, ARRAY_SIZE(clk_timer_tclk));
Ben Dooksb999f0d2008-07-03 11:24:27 +0100448
449 for (clk = 0; clk < ARRAY_SIZE(clk_timer_tdiv); clk++) {
450 ret = clk_pwm_tdiv_register(clk);
Ben Dooks1d9f13c2010-01-06 01:21:38 +0900451
Ben Dooksb999f0d2008-07-03 11:24:27 +0100452 if (ret < 0) {
453 printk(KERN_ERR "error adding pwm%d tdiv clock\n", clk);
Ben Dooks9d325f22008-11-21 10:36:05 +0000454 return;
Ben Dooksb999f0d2008-07-03 11:24:27 +0100455 }
456 }
457
458 for (clk = 0; clk < ARRAY_SIZE(clk_tin); clk++) {
459 ret = clk_pwm_tin_register(&clk_tin[clk]);
460 if (ret < 0) {
461 printk(KERN_ERR "error adding pwm%d tin clock\n", clk);
Ben Dooks9d325f22008-11-21 10:36:05 +0000462 return;
Ben Dooksb999f0d2008-07-03 11:24:27 +0100463 }
464 }
Ben Dooksb999f0d2008-07-03 11:24:27 +0100465}