[ARM] pxa/treo680: move LCD power GPIO to proper place
[linux-2.6/mini2440.git] / arch / arm / plat-s3c24xx / pwm.c
blob82a6d4de02a381ddfff417cf66b8c0425d107502
1 /* arch/arm/plat-s3c24xx/pwm.c
3 * Copyright (c) 2007 Ben Dooks
4 * Copyright (c) 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org>
7 * S3C24XX PWM device core
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License.
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/err.h>
18 #include <linux/clk.h>
19 #include <linux/io.h>
20 #include <linux/pwm.h>
22 #include <mach/irqs.h>
24 #include <plat/devs.h>
25 #include <plat/regs-timer.h>
27 struct pwm_device {
28 struct list_head list;
29 struct platform_device *pdev;
31 struct clk *clk_div;
32 struct clk *clk;
33 const char *label;
35 unsigned int period_ns;
36 unsigned int duty_ns;
38 unsigned char tcon_base;
39 unsigned char running;
40 unsigned char use_count;
41 unsigned char pwm_id;
44 #define pwm_dbg(_pwm, msg...) dev_dbg(&(_pwm)->pdev->dev, msg)
46 static struct clk *clk_scaler[2];
48 /* Standard setup for a timer block. */
50 #define TIMER_RESOURCE_SIZE (1)
52 #define TIMER_RESOURCE(_tmr, _irq) \
53 (struct resource [TIMER_RESOURCE_SIZE]) { \
54 [0] = { \
55 .start = _irq, \
56 .end = _irq, \
57 .flags = IORESOURCE_IRQ \
58 } \
61 #define DEFINE_S3C_TIMER(_tmr_no, _irq) \
62 .name = "s3c24xx-pwm", \
63 .id = _tmr_no, \
64 .num_resources = TIMER_RESOURCE_SIZE, \
65 .resource = TIMER_RESOURCE(_tmr_no, _irq), \
67 /* since we already have an static mapping for the timer, we do not
68 * bother setting any IO resource for the base.
71 struct platform_device s3c_device_timer[] = {
72 [0] = { DEFINE_S3C_TIMER(0, IRQ_TIMER0) },
73 [1] = { DEFINE_S3C_TIMER(1, IRQ_TIMER1) },
74 [2] = { DEFINE_S3C_TIMER(2, IRQ_TIMER2) },
75 [3] = { DEFINE_S3C_TIMER(3, IRQ_TIMER3) },
76 [4] = { DEFINE_S3C_TIMER(4, IRQ_TIMER4) },
79 static inline int pwm_is_tdiv(struct pwm_device *pwm)
81 return clk_get_parent(pwm->clk) == pwm->clk_div;
84 static DEFINE_MUTEX(pwm_lock);
85 static LIST_HEAD(pwm_list);
87 struct pwm_device *pwm_request(int pwm_id, const char *label)
89 struct pwm_device *pwm;
90 int found = 0;
92 mutex_lock(&pwm_lock);
94 list_for_each_entry(pwm, &pwm_list, list) {
95 if (pwm->pwm_id == pwm_id) {
96 found = 1;
97 break;
101 if (found) {
102 if (pwm->use_count == 0) {
103 pwm->use_count = 1;
104 pwm->label = label;
105 } else
106 pwm = ERR_PTR(-EBUSY);
107 } else
108 pwm = ERR_PTR(-ENOENT);
110 mutex_unlock(&pwm_lock);
111 return pwm;
114 EXPORT_SYMBOL(pwm_request);
117 void pwm_free(struct pwm_device *pwm)
119 mutex_lock(&pwm_lock);
121 if (pwm->use_count) {
122 pwm->use_count--;
123 pwm->label = NULL;
124 } else
125 printk(KERN_ERR "PWM%d device already freed\n", pwm->pwm_id);
127 mutex_unlock(&pwm_lock);
130 EXPORT_SYMBOL(pwm_free);
132 #define pwm_tcon_start(pwm) (1 << (pwm->tcon_base + 0))
133 #define pwm_tcon_invert(pwm) (1 << (pwm->tcon_base + 2))
134 #define pwm_tcon_autoreload(pwm) (1 << (pwm->tcon_base + 3))
135 #define pwm_tcon_manulupdate(pwm) (1 << (pwm->tcon_base + 1))
137 int pwm_enable(struct pwm_device *pwm)
139 unsigned long flags;
140 unsigned long tcon;
142 local_irq_save(flags);
144 tcon = __raw_readl(S3C2410_TCON);
145 tcon |= pwm_tcon_start(pwm);
146 __raw_writel(tcon, S3C2410_TCON);
148 local_irq_restore(flags);
150 pwm->running = 1;
151 return 0;
154 EXPORT_SYMBOL(pwm_enable);
156 void pwm_disable(struct pwm_device *pwm)
158 unsigned long flags;
159 unsigned long tcon;
161 local_irq_save(flags);
163 tcon = __raw_readl(S3C2410_TCON);
164 tcon &= ~pwm_tcon_start(pwm);
165 __raw_writel(tcon, S3C2410_TCON);
167 local_irq_restore(flags);
169 pwm->running = 0;
172 EXPORT_SYMBOL(pwm_disable);
174 static unsigned long pwm_calc_tin(struct pwm_device *pwm, unsigned long freq)
176 unsigned long tin_parent_rate;
177 unsigned int div;
179 tin_parent_rate = clk_get_rate(clk_get_parent(pwm->clk_div));
180 pwm_dbg(pwm, "tin parent at %lu\n", tin_parent_rate);
182 for (div = 2; div <= 16; div *= 2) {
183 if ((tin_parent_rate / (div << 16)) < freq)
184 return tin_parent_rate / div;
187 return tin_parent_rate / 16;
190 #define NS_IN_HZ (1000000000UL)
192 int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns)
194 unsigned long tin_rate;
195 unsigned long tin_ns;
196 unsigned long period;
197 unsigned long flags;
198 unsigned long tcon;
199 unsigned long tcnt;
200 long tcmp;
202 /* We currently avoid using 64bit arithmetic by using the
203 * fact that anything faster than 1Hz is easily representable
204 * by 32bits. */
206 if (period_ns > NS_IN_HZ || duty_ns > NS_IN_HZ)
207 return -ERANGE;
209 if (duty_ns > period_ns)
210 return -EINVAL;
212 if (period_ns == pwm->period_ns &&
213 duty_ns == pwm->duty_ns)
214 return 0;
216 /* The TCMP and TCNT can be read without a lock, they're not
217 * shared between the timers. */
219 tcmp = __raw_readl(S3C2410_TCMPB(pwm->pwm_id));
220 tcnt = __raw_readl(S3C2410_TCNTB(pwm->pwm_id));
222 period = NS_IN_HZ / period_ns;
224 pwm_dbg(pwm, "duty_ns=%d, period_ns=%d (%lu)\n",
225 duty_ns, period_ns, period);
227 /* Check to see if we are changing the clock rate of the PWM */
229 if (pwm->period_ns != period_ns) {
230 if (pwm_is_tdiv(pwm)) {
231 tin_rate = pwm_calc_tin(pwm, period);
232 clk_set_rate(pwm->clk_div, tin_rate);
233 } else
234 tin_rate = clk_get_rate(pwm->clk);
236 pwm->period_ns = period_ns;
238 pwm_dbg(pwm, "tin_rate=%lu\n", tin_rate);
240 tin_ns = NS_IN_HZ / tin_rate;
241 tcnt = period_ns / tin_ns;
242 } else
243 tin_ns = NS_IN_HZ / clk_get_rate(pwm->clk);
245 /* Note, counters count down */
247 tcmp = duty_ns / tin_ns;
248 tcmp = tcnt - tcmp;
249 /* the pwm hw only checks the compare register after a decrement,
250 so the pin never toggles if tcmp = tcnt */
251 if (tcmp == tcnt)
252 tcmp--;
254 pwm_dbg(pwm, "tin_ns=%lu, tcmp=%ld/%lu\n", tin_ns, tcmp, tcnt);
256 if (tcmp < 0)
257 tcmp = 0;
259 /* Update the PWM register block. */
261 local_irq_save(flags);
263 __raw_writel(tcmp, S3C2410_TCMPB(pwm->pwm_id));
264 __raw_writel(tcnt, S3C2410_TCNTB(pwm->pwm_id));
266 tcon = __raw_readl(S3C2410_TCON);
267 tcon |= pwm_tcon_manulupdate(pwm);
268 tcon |= pwm_tcon_autoreload(pwm);
269 __raw_writel(tcon, S3C2410_TCON);
271 tcon &= ~pwm_tcon_manulupdate(pwm);
272 __raw_writel(tcon, S3C2410_TCON);
274 local_irq_restore(flags);
276 return 0;
279 EXPORT_SYMBOL(pwm_config);
281 static int pwm_register(struct pwm_device *pwm)
283 pwm->duty_ns = -1;
284 pwm->period_ns = -1;
286 mutex_lock(&pwm_lock);
287 list_add_tail(&pwm->list, &pwm_list);
288 mutex_unlock(&pwm_lock);
290 return 0;
293 static int s3c_pwm_probe(struct platform_device *pdev)
295 struct device *dev = &pdev->dev;
296 struct pwm_device *pwm;
297 unsigned long flags;
298 unsigned long tcon;
299 unsigned int id = pdev->id;
300 int ret;
302 if (id == 4) {
303 dev_err(dev, "TIMER4 is currently not supported\n");
304 return -ENXIO;
307 pwm = kzalloc(sizeof(struct pwm_device), GFP_KERNEL);
308 if (pwm == NULL) {
309 dev_err(dev, "failed to allocate pwm_device\n");
310 return -ENOMEM;
313 pwm->pdev = pdev;
314 pwm->pwm_id = id;
316 /* calculate base of control bits in TCON */
317 pwm->tcon_base = id == 0 ? 0 : (id * 4) + 4;
319 pwm->clk = clk_get(dev, "pwm-tin");
320 if (IS_ERR(pwm->clk)) {
321 dev_err(dev, "failed to get pwm tin clk\n");
322 ret = PTR_ERR(pwm->clk);
323 goto err_alloc;
326 pwm->clk_div = clk_get(dev, "pwm-tdiv");
327 if (IS_ERR(pwm->clk_div)) {
328 dev_err(dev, "failed to get pwm tdiv clk\n");
329 ret = PTR_ERR(pwm->clk_div);
330 goto err_clk_tin;
333 local_irq_save(flags);
335 tcon = __raw_readl(S3C2410_TCON);
336 tcon |= pwm_tcon_invert(pwm);
337 __raw_writel(tcon, S3C2410_TCON);
339 local_irq_restore(flags);
342 ret = pwm_register(pwm);
343 if (ret) {
344 dev_err(dev, "failed to register pwm\n");
345 goto err_clk_tdiv;
348 pwm_dbg(pwm, "config bits %02x\n",
349 (__raw_readl(S3C2410_TCON) >> pwm->tcon_base) & 0x0f);
351 dev_info(dev, "tin at %lu, tdiv at %lu, tin=%sclk, base %d\n",
352 clk_get_rate(pwm->clk),
353 clk_get_rate(pwm->clk_div),
354 pwm_is_tdiv(pwm) ? "div" : "ext", pwm->tcon_base);
356 platform_set_drvdata(pdev, pwm);
357 return 0;
359 err_clk_tdiv:
360 clk_put(pwm->clk_div);
362 err_clk_tin:
363 clk_put(pwm->clk);
365 err_alloc:
366 kfree(pwm);
367 return ret;
370 static int s3c_pwm_remove(struct platform_device *pdev)
372 struct pwm_device *pwm = platform_get_drvdata(pdev);
374 clk_put(pwm->clk_div);
375 clk_put(pwm->clk);
376 kfree(pwm);
378 return 0;
381 static struct platform_driver s3c_pwm_driver = {
382 .driver = {
383 .name = "s3c24xx-pwm",
384 .owner = THIS_MODULE,
386 .probe = s3c_pwm_probe,
387 .remove = __devexit_p(s3c_pwm_remove),
390 static int __init pwm_init(void)
392 int ret;
394 clk_scaler[0] = clk_get(NULL, "pwm-scaler0");
395 clk_scaler[1] = clk_get(NULL, "pwm-scaler1");
397 if (IS_ERR(clk_scaler[0]) || IS_ERR(clk_scaler[1])) {
398 printk(KERN_ERR "%s: failed to get scaler clocks\n", __func__);
399 return -EINVAL;
402 ret = platform_driver_register(&s3c_pwm_driver);
403 if (ret)
404 printk(KERN_ERR "%s: failed to add pwm driver\n", __func__);
406 return ret;
409 arch_initcall(pwm_init);