blob: 35fa0e8b0f87444bbaf4241fa2889c018c1c8f49 [file] [log] [blame]
Axel Lin6192fa82012-06-29 21:32:15 +08001/* drivers/pwm/pwm-samsung.c
Sascha Hauer215c29d2012-03-15 10:04:36 +01002 *
3 * Copyright (c) 2007 Ben Dooks
4 * Copyright (c) 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org>
6 *
7 * S3C series PWM device core
8 *
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.
12*/
13
14#include <linux/export.h>
15#include <linux/kernel.h>
16#include <linux/platform_device.h>
17#include <linux/slab.h>
18#include <linux/err.h>
19#include <linux/clk.h>
20#include <linux/io.h>
21#include <linux/pwm.h>
22
23#include <mach/map.h>
24
25#include <plat/regs-timer.h>
26
27struct s3c_chip {
28 struct platform_device *pdev;
29
30 struct clk *clk_div;
31 struct clk *clk;
32 const char *label;
33
34 unsigned int period_ns;
35 unsigned int duty_ns;
36
37 unsigned char tcon_base;
38 unsigned char pwm_id;
39 struct pwm_chip chip;
40};
41
42#define to_s3c_chip(chip) container_of(chip, struct s3c_chip, chip)
43
44#define pwm_dbg(_pwm, msg...) dev_dbg(&(_pwm)->pdev->dev, msg)
45
46static struct clk *clk_scaler[2];
47
48static inline int pwm_is_tdiv(struct s3c_chip *chip)
49{
50 return clk_get_parent(chip->clk) == chip->clk_div;
51}
52
53#define pwm_tcon_start(pwm) (1 << (pwm->tcon_base + 0))
54#define pwm_tcon_invert(pwm) (1 << (pwm->tcon_base + 2))
55#define pwm_tcon_autoreload(pwm) (1 << (pwm->tcon_base + 3))
56#define pwm_tcon_manulupdate(pwm) (1 << (pwm->tcon_base + 1))
57
58static int s3c_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
59{
60 struct s3c_chip *s3c = to_s3c_chip(chip);
61 unsigned long flags;
62 unsigned long tcon;
63
64 local_irq_save(flags);
65
66 tcon = __raw_readl(S3C2410_TCON);
67 tcon |= pwm_tcon_start(s3c);
68 __raw_writel(tcon, S3C2410_TCON);
69
70 local_irq_restore(flags);
71
72 return 0;
73}
74
75static void s3c_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
76{
77 struct s3c_chip *s3c = to_s3c_chip(chip);
78 unsigned long flags;
79 unsigned long tcon;
80
81 local_irq_save(flags);
82
83 tcon = __raw_readl(S3C2410_TCON);
84 tcon &= ~pwm_tcon_start(s3c);
85 __raw_writel(tcon, S3C2410_TCON);
86
87 local_irq_restore(flags);
88}
89
90static unsigned long pwm_calc_tin(struct s3c_chip *s3c, unsigned long freq)
91{
92 unsigned long tin_parent_rate;
93 unsigned int div;
94
95 tin_parent_rate = clk_get_rate(clk_get_parent(s3c->clk_div));
96 pwm_dbg(s3c, "tin parent at %lu\n", tin_parent_rate);
97
98 for (div = 2; div <= 16; div *= 2) {
99 if ((tin_parent_rate / (div << 16)) < freq)
100 return tin_parent_rate / div;
101 }
102
103 return tin_parent_rate / 16;
104}
105
106#define NS_IN_HZ (1000000000UL)
107
108static int s3c_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
109 int duty_ns, int period_ns)
110{
111 struct s3c_chip *s3c = to_s3c_chip(chip);
112 unsigned long tin_rate;
113 unsigned long tin_ns;
114 unsigned long period;
115 unsigned long flags;
116 unsigned long tcon;
117 unsigned long tcnt;
118 long tcmp;
119
120 /* We currently avoid using 64bit arithmetic by using the
121 * fact that anything faster than 1Hz is easily representable
122 * by 32bits. */
123
124 if (period_ns > NS_IN_HZ || duty_ns > NS_IN_HZ)
125 return -ERANGE;
126
127 if (duty_ns > period_ns)
128 return -EINVAL;
129
130 if (period_ns == s3c->period_ns &&
131 duty_ns == s3c->duty_ns)
132 return 0;
133
134 /* The TCMP and TCNT can be read without a lock, they're not
135 * shared between the timers. */
136
137 tcmp = __raw_readl(S3C2410_TCMPB(s3c->pwm_id));
138 tcnt = __raw_readl(S3C2410_TCNTB(s3c->pwm_id));
139
140 period = NS_IN_HZ / period_ns;
141
142 pwm_dbg(s3c, "duty_ns=%d, period_ns=%d (%lu)\n",
143 duty_ns, period_ns, period);
144
145 /* Check to see if we are changing the clock rate of the PWM */
146
147 if (s3c->period_ns != period_ns) {
148 if (pwm_is_tdiv(s3c)) {
149 tin_rate = pwm_calc_tin(s3c, period);
150 clk_set_rate(s3c->clk_div, tin_rate);
151 } else
152 tin_rate = clk_get_rate(s3c->clk);
153
154 s3c->period_ns = period_ns;
155
156 pwm_dbg(s3c, "tin_rate=%lu\n", tin_rate);
157
158 tin_ns = NS_IN_HZ / tin_rate;
159 tcnt = period_ns / tin_ns;
160 } else
161 tin_ns = NS_IN_HZ / clk_get_rate(s3c->clk);
162
163 /* Note, counters count down */
164
165 tcmp = duty_ns / tin_ns;
166 tcmp = tcnt - tcmp;
167 /* the pwm hw only checks the compare register after a decrement,
168 so the pin never toggles if tcmp = tcnt */
169 if (tcmp == tcnt)
170 tcmp--;
171
172 pwm_dbg(s3c, "tin_ns=%lu, tcmp=%ld/%lu\n", tin_ns, tcmp, tcnt);
173
174 if (tcmp < 0)
175 tcmp = 0;
176
177 /* Update the PWM register block. */
178
179 local_irq_save(flags);
180
181 __raw_writel(tcmp, S3C2410_TCMPB(s3c->pwm_id));
182 __raw_writel(tcnt, S3C2410_TCNTB(s3c->pwm_id));
183
184 tcon = __raw_readl(S3C2410_TCON);
185 tcon |= pwm_tcon_manulupdate(s3c);
186 tcon |= pwm_tcon_autoreload(s3c);
187 __raw_writel(tcon, S3C2410_TCON);
188
189 tcon &= ~pwm_tcon_manulupdate(s3c);
190 __raw_writel(tcon, S3C2410_TCON);
191
192 local_irq_restore(flags);
193
194 return 0;
195}
196
197static struct pwm_ops s3c_pwm_ops = {
198 .enable = s3c_pwm_enable,
199 .disable = s3c_pwm_disable,
200 .config = s3c_pwm_config,
201 .owner = THIS_MODULE,
202};
203
204static int s3c_pwm_probe(struct platform_device *pdev)
205{
206 struct device *dev = &pdev->dev;
207 struct s3c_chip *s3c;
208 unsigned long flags;
209 unsigned long tcon;
210 unsigned int id = pdev->id;
211 int ret;
212
213 if (id == 4) {
214 dev_err(dev, "TIMER4 is currently not supported\n");
215 return -ENXIO;
216 }
217
Axel Lin6192fa82012-06-29 21:32:15 +0800218 s3c = devm_kzalloc(&pdev->dev, sizeof(*s3c), GFP_KERNEL);
Sascha Hauer215c29d2012-03-15 10:04:36 +0100219 if (s3c == NULL) {
220 dev_err(dev, "failed to allocate pwm_device\n");
221 return -ENOMEM;
222 }
223
224 /* calculate base of control bits in TCON */
225 s3c->tcon_base = id == 0 ? 0 : (id * 4) + 4;
226 s3c->chip.ops = &s3c_pwm_ops;
227 s3c->chip.base = -1;
228 s3c->chip.npwm = 1;
229
Axel Lin6192fa82012-06-29 21:32:15 +0800230 s3c->clk = devm_clk_get(dev, "pwm-tin");
Sascha Hauer215c29d2012-03-15 10:04:36 +0100231 if (IS_ERR(s3c->clk)) {
232 dev_err(dev, "failed to get pwm tin clk\n");
Axel Lin6192fa82012-06-29 21:32:15 +0800233 return PTR_ERR(s3c->clk);
Sascha Hauer215c29d2012-03-15 10:04:36 +0100234 }
235
Axel Lin6192fa82012-06-29 21:32:15 +0800236 s3c->clk_div = devm_clk_get(dev, "pwm-tdiv");
Sascha Hauer215c29d2012-03-15 10:04:36 +0100237 if (IS_ERR(s3c->clk_div)) {
238 dev_err(dev, "failed to get pwm tdiv clk\n");
Axel Lin6192fa82012-06-29 21:32:15 +0800239 return PTR_ERR(s3c->clk_div);
Sascha Hauer215c29d2012-03-15 10:04:36 +0100240 }
241
242 clk_enable(s3c->clk);
243 clk_enable(s3c->clk_div);
244
245 local_irq_save(flags);
246
247 tcon = __raw_readl(S3C2410_TCON);
248 tcon |= pwm_tcon_invert(s3c);
249 __raw_writel(tcon, S3C2410_TCON);
250
251 local_irq_restore(flags);
252
253 ret = pwmchip_add(&s3c->chip);
254 if (ret < 0) {
255 dev_err(dev, "failed to register pwm\n");
256 goto err_clk_tdiv;
257 }
258
259 pwm_dbg(s3c, "config bits %02x\n",
260 (__raw_readl(S3C2410_TCON) >> s3c->tcon_base) & 0x0f);
261
262 dev_info(dev, "tin at %lu, tdiv at %lu, tin=%sclk, base %d\n",
263 clk_get_rate(s3c->clk),
264 clk_get_rate(s3c->clk_div),
265 pwm_is_tdiv(s3c) ? "div" : "ext", s3c->tcon_base);
266
267 platform_set_drvdata(pdev, s3c);
268 return 0;
269
270 err_clk_tdiv:
271 clk_disable(s3c->clk_div);
272 clk_disable(s3c->clk);
Sascha Hauer215c29d2012-03-15 10:04:36 +0100273 return ret;
274}
275
276static int __devexit s3c_pwm_remove(struct platform_device *pdev)
277{
278 struct s3c_chip *s3c = platform_get_drvdata(pdev);
279 int err;
280
281 err = pwmchip_remove(&s3c->chip);
282 if (err < 0)
283 return err;
284
285 clk_disable(s3c->clk_div);
286 clk_disable(s3c->clk);
Sascha Hauer215c29d2012-03-15 10:04:36 +0100287
288 return 0;
289}
290
291#ifdef CONFIG_PM
292static int s3c_pwm_suspend(struct platform_device *pdev, pm_message_t state)
293{
294 struct s3c_chip *s3c = platform_get_drvdata(pdev);
295
296 /* No one preserve these values during suspend so reset them
297 * Otherwise driver leaves PWM unconfigured if same values
298 * passed to pwm_config
299 */
300 s3c->period_ns = 0;
301 s3c->duty_ns = 0;
302
303 return 0;
304}
305
306static int s3c_pwm_resume(struct platform_device *pdev)
307{
308 struct s3c_chip *s3c = platform_get_drvdata(pdev);
309 unsigned long tcon;
310
311 /* Restore invertion */
312 tcon = __raw_readl(S3C2410_TCON);
313 tcon |= pwm_tcon_invert(s3c);
314 __raw_writel(tcon, S3C2410_TCON);
315
316 return 0;
317}
318
319#else
320#define s3c_pwm_suspend NULL
321#define s3c_pwm_resume NULL
322#endif
323
324static struct platform_driver s3c_pwm_driver = {
325 .driver = {
326 .name = "s3c24xx-pwm",
327 .owner = THIS_MODULE,
328 },
329 .probe = s3c_pwm_probe,
330 .remove = __devexit_p(s3c_pwm_remove),
331 .suspend = s3c_pwm_suspend,
332 .resume = s3c_pwm_resume,
333};
334
335static int __init pwm_init(void)
336{
337 int ret;
338
339 clk_scaler[0] = clk_get(NULL, "pwm-scaler0");
340 clk_scaler[1] = clk_get(NULL, "pwm-scaler1");
341
342 if (IS_ERR(clk_scaler[0]) || IS_ERR(clk_scaler[1])) {
343 printk(KERN_ERR "%s: failed to get scaler clocks\n", __func__);
344 return -EINVAL;
345 }
346
347 ret = platform_driver_register(&s3c_pwm_driver);
348 if (ret)
349 printk(KERN_ERR "%s: failed to add pwm driver\n", __func__);
350
351 return ret;
352}
353
354arch_initcall(pwm_init);