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>
20 #include <linux/pwm.h>
22 #include <mach/irqs.h>
24 #include <plat/devs.h>
25 #include <plat/regs-timer.h>
28 struct list_head list
;
29 struct platform_device
*pdev
;
35 unsigned int period_ns
;
38 unsigned char tcon_base
;
39 unsigned char running
;
40 unsigned char use_count
;
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]) { \
57 .flags = IORESOURCE_IRQ \
61 #define DEFINE_S3C_TIMER(_tmr_no, _irq) \
62 .name = "s3c24xx-pwm", \
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
;
92 mutex_lock(&pwm_lock
);
94 list_for_each_entry(pwm
, &pwm_list
, list
) {
95 if (pwm
->pwm_id
== pwm_id
) {
102 if (pwm
->use_count
== 0) {
106 pwm
= ERR_PTR(-EBUSY
);
108 pwm
= ERR_PTR(-ENOENT
);
110 mutex_unlock(&pwm_lock
);
114 EXPORT_SYMBOL(pwm_request
);
117 void pwm_free(struct pwm_device
*pwm
)
119 mutex_lock(&pwm_lock
);
121 if (pwm
->use_count
) {
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
)
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
);
154 EXPORT_SYMBOL(pwm_enable
);
156 void pwm_disable(struct pwm_device
*pwm
)
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
);
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
;
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
;
202 /* We currently avoid using 64bit arithmetic by using the
203 * fact that anything faster than 1Hz is easily representable
206 if (period_ns
> NS_IN_HZ
|| duty_ns
> NS_IN_HZ
)
209 if (duty_ns
> period_ns
)
212 if (period_ns
== pwm
->period_ns
&&
213 duty_ns
== pwm
->duty_ns
)
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
);
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
;
243 tin_ns
= NS_IN_HZ
/ clk_get_rate(pwm
->clk
);
245 /* Note, counters count down */
247 tcmp
= duty_ns
/ tin_ns
;
249 /* the pwm hw only checks the compare register after a decrement,
250 so the pin never toggles if tcmp = tcnt */
254 pwm_dbg(pwm
, "tin_ns=%lu, tcmp=%ld/%lu\n", tin_ns
, tcmp
, tcnt
);
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
);
279 EXPORT_SYMBOL(pwm_config
);
281 static int pwm_register(struct pwm_device
*pwm
)
286 mutex_lock(&pwm_lock
);
287 list_add_tail(&pwm
->list
, &pwm_list
);
288 mutex_unlock(&pwm_lock
);
293 static int s3c_pwm_probe(struct platform_device
*pdev
)
295 struct device
*dev
= &pdev
->dev
;
296 struct pwm_device
*pwm
;
299 unsigned int id
= pdev
->id
;
303 dev_err(dev
, "TIMER4 is currently not supported\n");
307 pwm
= kzalloc(sizeof(struct pwm_device
), GFP_KERNEL
);
309 dev_err(dev
, "failed to allocate pwm_device\n");
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
);
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
);
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
);
344 dev_err(dev
, "failed to register pwm\n");
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
);
360 clk_put(pwm
->clk_div
);
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
);
381 static struct platform_driver s3c_pwm_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)
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__
);
402 ret
= platform_driver_register(&s3c_pwm_driver
);
404 printk(KERN_ERR
"%s: failed to add pwm driver\n", __func__
);
409 arch_initcall(pwm_init
);