Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2007 Ben Dooks
4 * Copyright (c) 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org>
6 * Copyright (c) 2013 Tomasz Figa <tomasz.figa@gmail.com>
7 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
8 *
9 * PWM driver for Samsung SoCs
10 */
11
12#include <linux/bitops.h>
13#include <linux/clk.h>
14#include <linux/export.h>
15#include <linux/err.h>
16#include <linux/io.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/of.h>
20#include <linux/platform_device.h>
21#include <linux/pwm.h>
22#include <linux/slab.h>
23#include <linux/spinlock.h>
24#include <linux/time.h>
25
26/* For struct samsung_timer_variant and samsung_pwm_lock. */
27#include <clocksource/samsung_pwm.h>
28
29#define REG_TCFG0 0x00
30#define REG_TCFG1 0x04
31#define REG_TCON 0x08
32
33#define REG_TCNTB(chan) (0x0c + ((chan) * 0xc))
34#define REG_TCMPB(chan) (0x10 + ((chan) * 0xc))
35
36#define TCFG0_PRESCALER_MASK 0xff
37#define TCFG0_PRESCALER1_SHIFT 8
38
39#define TCFG1_MUX_MASK 0xf
40#define TCFG1_SHIFT(chan) (4 * (chan))
41
42/*
43 * Each channel occupies 4 bits in TCON register, but there is a gap of 4
44 * bits (one channel) after channel 0, so channels have different numbering
45 * when accessing TCON register. See to_tcon_channel() function.
46 *
47 * In addition, the location of autoreload bit for channel 4 (TCON channel 5)
48 * in its set of bits is 2 as opposed to 3 for other channels.
49 */
50#define TCON_START(chan) BIT(4 * (chan) + 0)
51#define TCON_MANUALUPDATE(chan) BIT(4 * (chan) + 1)
52#define TCON_INVERT(chan) BIT(4 * (chan) + 2)
53#define _TCON_AUTORELOAD(chan) BIT(4 * (chan) + 3)
54#define _TCON_AUTORELOAD4(chan) BIT(4 * (chan) + 2)
55#define TCON_AUTORELOAD(chan) \
56 ((chan < 5) ? _TCON_AUTORELOAD(chan) : _TCON_AUTORELOAD4(chan))
57
58/**
59 * struct samsung_pwm_channel - private data of PWM channel
60 * @period_ns: current period in nanoseconds programmed to the hardware
61 * @duty_ns: current duty time in nanoseconds programmed to the hardware
62 * @tin_ns: time of one timer tick in nanoseconds with current timer rate
63 */
64struct samsung_pwm_channel {
65 u32 period_ns;
66 u32 duty_ns;
67 u32 tin_ns;
68};
69
70/**
71 * struct samsung_pwm_chip - private data of PWM chip
72 * @variant: local copy of hardware variant data
73 * @inverter_mask: inverter status for all channels - one bit per channel
74 * @disabled_mask: disabled status for all channels - one bit per channel
75 * @base: base address of mapped PWM registers
76 * @base_clk: base clock used to drive the timers
77 * @tclk0: external clock 0 (can be ERR_PTR if not present)
78 * @tclk1: external clock 1 (can be ERR_PTR if not present)
79 * @channel: per channel driver data
80 */
81struct samsung_pwm_chip {
82 struct samsung_pwm_variant variant;
83 u8 inverter_mask;
84 u8 disabled_mask;
85
86 void __iomem *base;
87 struct clk *base_clk;
88 struct clk *tclk0;
89 struct clk *tclk1;
90 struct samsung_pwm_channel channel[SAMSUNG_PWM_NUM];
91};
92
93#ifndef CONFIG_CLKSRC_SAMSUNG_PWM
94/*
95 * PWM block is shared between pwm-samsung and samsung_pwm_timer drivers
96 * and some registers need access synchronization. If both drivers are
97 * compiled in, the spinlock is defined in the clocksource driver,
98 * otherwise following definition is used.
99 *
100 * Currently we do not need any more complex synchronization method
101 * because all the supported SoCs contain only one instance of the PWM
102 * IP. Should this change, both drivers will need to be modified to
103 * properly synchronize accesses to particular instances.
104 */
105static DEFINE_SPINLOCK(samsung_pwm_lock);
106#endif
107
108static inline
109struct samsung_pwm_chip *to_samsung_pwm_chip(struct pwm_chip *chip)
110{
111 return pwmchip_get_drvdata(chip);
112}
113
114static inline unsigned int to_tcon_channel(unsigned int channel)
115{
116 /* TCON register has a gap of 4 bits (1 channel) after channel 0 */
117 return (channel == 0) ? 0 : (channel + 1);
118}
119
120static void __pwm_samsung_manual_update(struct samsung_pwm_chip *our_chip,
121 struct pwm_device *pwm)
122{
123 unsigned int tcon_chan = to_tcon_channel(pwm->hwpwm);
124 u32 tcon;
125
126 tcon = readl(our_chip->base + REG_TCON);
127 tcon |= TCON_MANUALUPDATE(tcon_chan);
128 writel(tcon, our_chip->base + REG_TCON);
129
130 tcon &= ~TCON_MANUALUPDATE(tcon_chan);
131 writel(tcon, our_chip->base + REG_TCON);
132}
133
134static void pwm_samsung_set_divisor(struct samsung_pwm_chip *our_chip,
135 unsigned int channel, u8 divisor)
136{
137 u8 shift = TCFG1_SHIFT(channel);
138 unsigned long flags;
139 u32 reg;
140 u8 bits;
141
142 bits = (fls(divisor) - 1) - our_chip->variant.div_base;
143
144 spin_lock_irqsave(&samsung_pwm_lock, flags);
145
146 reg = readl(our_chip->base + REG_TCFG1);
147 reg &= ~(TCFG1_MUX_MASK << shift);
148 reg |= bits << shift;
149 writel(reg, our_chip->base + REG_TCFG1);
150
151 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
152}
153
154static int pwm_samsung_is_tdiv(struct samsung_pwm_chip *our_chip, unsigned int chan)
155{
156 struct samsung_pwm_variant *variant = &our_chip->variant;
157 u32 reg;
158
159 reg = readl(our_chip->base + REG_TCFG1);
160 reg >>= TCFG1_SHIFT(chan);
161 reg &= TCFG1_MUX_MASK;
162
163 return (BIT(reg) & variant->tclk_mask) == 0;
164}
165
166static unsigned long pwm_samsung_get_tin_rate(struct samsung_pwm_chip *our_chip,
167 unsigned int chan)
168{
169 unsigned long rate;
170 u32 reg;
171
172 rate = clk_get_rate(our_chip->base_clk);
173
174 reg = readl(our_chip->base + REG_TCFG0);
175 if (chan >= 2)
176 reg >>= TCFG0_PRESCALER1_SHIFT;
177 reg &= TCFG0_PRESCALER_MASK;
178
179 return rate / (reg + 1);
180}
181
182static unsigned long pwm_samsung_calc_tin(struct pwm_chip *chip,
183 unsigned int chan, unsigned long freq)
184{
185 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
186 struct samsung_pwm_variant *variant = &our_chip->variant;
187 unsigned long rate;
188 struct clk *clk;
189 u8 div;
190
191 if (!pwm_samsung_is_tdiv(our_chip, chan)) {
192 clk = (chan < 2) ? our_chip->tclk0 : our_chip->tclk1;
193 if (!IS_ERR(clk)) {
194 rate = clk_get_rate(clk);
195 if (rate)
196 return rate;
197 }
198
199 dev_warn(pwmchip_parent(chip),
200 "tclk of PWM %d is inoperational, using tdiv\n", chan);
201 }
202
203 rate = pwm_samsung_get_tin_rate(our_chip, chan);
204 dev_dbg(pwmchip_parent(chip), "tin parent at %lu\n", rate);
205
206 /*
207 * Compare minimum PWM frequency that can be achieved with possible
208 * divider settings and choose the lowest divisor that can generate
209 * frequencies lower than requested.
210 */
211 if (variant->bits < 32) {
212 /* Only for s3c24xx */
213 for (div = variant->div_base; div < 4; ++div)
214 if ((rate >> (variant->bits + div)) < freq)
215 break;
216 } else {
217 /*
218 * Other variants have enough counter bits to generate any
219 * requested rate, so no need to check higher divisors.
220 */
221 div = variant->div_base;
222 }
223
224 pwm_samsung_set_divisor(our_chip, chan, BIT(div));
225
226 return rate >> div;
227}
228
229static int pwm_samsung_request(struct pwm_chip *chip, struct pwm_device *pwm)
230{
231 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
232
233 if (!(our_chip->variant.output_mask & BIT(pwm->hwpwm))) {
234 dev_warn(pwmchip_parent(chip),
235 "tried to request PWM channel %d without output\n",
236 pwm->hwpwm);
237 return -EINVAL;
238 }
239
240 memset(&our_chip->channel[pwm->hwpwm], 0, sizeof(our_chip->channel[pwm->hwpwm]));
241
242 return 0;
243}
244
245static int pwm_samsung_enable(struct pwm_chip *chip, struct pwm_device *pwm)
246{
247 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
248 unsigned int tcon_chan = to_tcon_channel(pwm->hwpwm);
249 unsigned long flags;
250 u32 tcon;
251
252 spin_lock_irqsave(&samsung_pwm_lock, flags);
253
254 tcon = readl(our_chip->base + REG_TCON);
255
256 tcon &= ~TCON_START(tcon_chan);
257 tcon |= TCON_MANUALUPDATE(tcon_chan);
258 writel(tcon, our_chip->base + REG_TCON);
259
260 tcon &= ~TCON_MANUALUPDATE(tcon_chan);
261 tcon |= TCON_START(tcon_chan) | TCON_AUTORELOAD(tcon_chan);
262 writel(tcon, our_chip->base + REG_TCON);
263
264 our_chip->disabled_mask &= ~BIT(pwm->hwpwm);
265
266 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
267
268 return 0;
269}
270
271static void pwm_samsung_disable(struct pwm_chip *chip, struct pwm_device *pwm)
272{
273 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
274 unsigned int tcon_chan = to_tcon_channel(pwm->hwpwm);
275 unsigned long flags;
276 u32 tcon;
277
278 spin_lock_irqsave(&samsung_pwm_lock, flags);
279
280 tcon = readl(our_chip->base + REG_TCON);
281 tcon &= ~TCON_AUTORELOAD(tcon_chan);
282 writel(tcon, our_chip->base + REG_TCON);
283
284 /*
285 * In case the PWM is at 100% duty cycle, force a manual
286 * update to prevent the signal from staying high.
287 */
288 if (readl(our_chip->base + REG_TCMPB(pwm->hwpwm)) == (u32)-1U)
289 __pwm_samsung_manual_update(our_chip, pwm);
290
291 our_chip->disabled_mask |= BIT(pwm->hwpwm);
292
293 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
294}
295
296static void pwm_samsung_manual_update(struct samsung_pwm_chip *our_chip,
297 struct pwm_device *pwm)
298{
299 unsigned long flags;
300
301 spin_lock_irqsave(&samsung_pwm_lock, flags);
302
303 __pwm_samsung_manual_update(our_chip, pwm);
304
305 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
306}
307
308static int __pwm_samsung_config(struct pwm_chip *chip, struct pwm_device *pwm,
309 int duty_ns, int period_ns, bool force_period)
310{
311 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
312 struct samsung_pwm_channel *chan = &our_chip->channel[pwm->hwpwm];
313 u32 tin_ns = chan->tin_ns, tcnt, tcmp, oldtcmp;
314
315 tcnt = readl(our_chip->base + REG_TCNTB(pwm->hwpwm));
316 oldtcmp = readl(our_chip->base + REG_TCMPB(pwm->hwpwm));
317
318 /* We need tick count for calculation, not last tick. */
319 ++tcnt;
320
321 /* Check to see if we are changing the clock rate of the PWM. */
322 if (chan->period_ns != period_ns || force_period) {
323 unsigned long tin_rate;
324 u32 period;
325
326 period = NSEC_PER_SEC / period_ns;
327
328 dev_dbg(pwmchip_parent(chip), "duty_ns=%d, period_ns=%d (%u)\n",
329 duty_ns, period_ns, period);
330
331 tin_rate = pwm_samsung_calc_tin(chip, pwm->hwpwm, period);
332
333 dev_dbg(pwmchip_parent(chip), "tin_rate=%lu\n", tin_rate);
334
335 tin_ns = NSEC_PER_SEC / tin_rate;
336 tcnt = period_ns / tin_ns;
337 }
338
339 /* Period is too short. */
340 if (tcnt <= 1)
341 return -ERANGE;
342
343 /* Note that counters count down. */
344 tcmp = duty_ns / tin_ns;
345
346 /* 0% duty is not available */
347 if (!tcmp)
348 ++tcmp;
349
350 tcmp = tcnt - tcmp;
351
352 /* Decrement to get tick numbers, instead of tick counts. */
353 --tcnt;
354 /* -1UL will give 100% duty. */
355 --tcmp;
356
357 dev_dbg(pwmchip_parent(chip), "tin_ns=%u, tcmp=%u/%u\n", tin_ns, tcmp, tcnt);
358
359 /* Update PWM registers. */
360 writel(tcnt, our_chip->base + REG_TCNTB(pwm->hwpwm));
361 writel(tcmp, our_chip->base + REG_TCMPB(pwm->hwpwm));
362
363 /*
364 * In case the PWM is currently at 100% duty cycle, force a manual
365 * update to prevent the signal staying high if the PWM is disabled
366 * shortly afer this update (before it autoreloaded the new values).
367 */
368 if (oldtcmp == (u32) -1) {
369 dev_dbg(pwmchip_parent(chip), "Forcing manual update");
370 pwm_samsung_manual_update(our_chip, pwm);
371 }
372
373 chan->period_ns = period_ns;
374 chan->tin_ns = tin_ns;
375 chan->duty_ns = duty_ns;
376
377 return 0;
378}
379
380static int pwm_samsung_config(struct pwm_chip *chip, struct pwm_device *pwm,
381 int duty_ns, int period_ns)
382{
383 return __pwm_samsung_config(chip, pwm, duty_ns, period_ns, false);
384}
385
386static void pwm_samsung_set_invert(struct samsung_pwm_chip *our_chip,
387 unsigned int channel, bool invert)
388{
389 unsigned int tcon_chan = to_tcon_channel(channel);
390 unsigned long flags;
391 u32 tcon;
392
393 spin_lock_irqsave(&samsung_pwm_lock, flags);
394
395 tcon = readl(our_chip->base + REG_TCON);
396
397 if (invert) {
398 our_chip->inverter_mask |= BIT(channel);
399 tcon |= TCON_INVERT(tcon_chan);
400 } else {
401 our_chip->inverter_mask &= ~BIT(channel);
402 tcon &= ~TCON_INVERT(tcon_chan);
403 }
404
405 writel(tcon, our_chip->base + REG_TCON);
406
407 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
408}
409
410static int pwm_samsung_set_polarity(struct pwm_chip *chip,
411 struct pwm_device *pwm,
412 enum pwm_polarity polarity)
413{
414 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
415 bool invert = (polarity == PWM_POLARITY_NORMAL);
416
417 /* Inverted means normal in the hardware. */
418 pwm_samsung_set_invert(our_chip, pwm->hwpwm, invert);
419
420 return 0;
421}
422
423static int pwm_samsung_apply(struct pwm_chip *chip, struct pwm_device *pwm,
424 const struct pwm_state *state)
425{
426 int err, enabled = pwm->state.enabled;
427
428 if (state->polarity != pwm->state.polarity) {
429 if (enabled) {
430 pwm_samsung_disable(chip, pwm);
431 enabled = false;
432 }
433
434 err = pwm_samsung_set_polarity(chip, pwm, state->polarity);
435 if (err)
436 return err;
437 }
438
439 if (!state->enabled) {
440 if (enabled)
441 pwm_samsung_disable(chip, pwm);
442
443 return 0;
444 }
445
446 /*
447 * We currently avoid using 64bit arithmetic by using the
448 * fact that anything faster than 1Hz is easily representable
449 * by 32bits.
450 */
451 if (state->period > NSEC_PER_SEC)
452 return -ERANGE;
453
454 err = pwm_samsung_config(chip, pwm, state->duty_cycle, state->period);
455 if (err)
456 return err;
457
458 if (!pwm->state.enabled)
459 err = pwm_samsung_enable(chip, pwm);
460
461 return err;
462}
463
464static const struct pwm_ops pwm_samsung_ops = {
465 .request = pwm_samsung_request,
466 .apply = pwm_samsung_apply,
467};
468
469#ifdef CONFIG_OF
470static const struct samsung_pwm_variant s3c24xx_variant = {
471 .bits = 16,
472 .div_base = 1,
473 .has_tint_cstat = false,
474 .tclk_mask = BIT(4),
475};
476
477static const struct samsung_pwm_variant s3c64xx_variant = {
478 .bits = 32,
479 .div_base = 0,
480 .has_tint_cstat = true,
481 .tclk_mask = BIT(7) | BIT(6) | BIT(5),
482};
483
484static const struct samsung_pwm_variant s5p64x0_variant = {
485 .bits = 32,
486 .div_base = 0,
487 .has_tint_cstat = true,
488 .tclk_mask = 0,
489};
490
491static const struct samsung_pwm_variant s5pc100_variant = {
492 .bits = 32,
493 .div_base = 0,
494 .has_tint_cstat = true,
495 .tclk_mask = BIT(5),
496};
497
498static const struct of_device_id samsung_pwm_matches[] = {
499 { .compatible = "samsung,s3c2410-pwm", .data = &s3c24xx_variant },
500 { .compatible = "samsung,s3c6400-pwm", .data = &s3c64xx_variant },
501 { .compatible = "samsung,s5p6440-pwm", .data = &s5p64x0_variant },
502 { .compatible = "samsung,s5pc100-pwm", .data = &s5pc100_variant },
503 { .compatible = "samsung,exynos4210-pwm", .data = &s5p64x0_variant },
504 {},
505};
506MODULE_DEVICE_TABLE(of, samsung_pwm_matches);
507
508static int pwm_samsung_parse_dt(struct pwm_chip *chip)
509{
510 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
511 struct device_node *np = pwmchip_parent(chip)->of_node;
512 const struct of_device_id *match;
513 u32 val;
514
515 match = of_match_node(samsung_pwm_matches, np);
516 if (!match)
517 return -ENODEV;
518
519 memcpy(&our_chip->variant, match->data, sizeof(our_chip->variant));
520
521 of_property_for_each_u32(np, "samsung,pwm-outputs", val) {
522 if (val >= SAMSUNG_PWM_NUM) {
523 dev_err(pwmchip_parent(chip),
524 "%s: invalid channel index in samsung,pwm-outputs property\n",
525 __func__);
526 continue;
527 }
528 our_chip->variant.output_mask |= BIT(val);
529 }
530
531 return 0;
532}
533#else
534static int pwm_samsung_parse_dt(struct pwm_chip *chip)
535{
536 return -ENODEV;
537}
538#endif
539
540static int pwm_samsung_probe(struct platform_device *pdev)
541{
542 struct device *dev = &pdev->dev;
543 struct samsung_pwm_chip *our_chip;
544 struct pwm_chip *chip;
545 unsigned int chan;
546 int ret;
547
548 chip = devm_pwmchip_alloc(&pdev->dev, SAMSUNG_PWM_NUM, sizeof(*our_chip));
549 if (IS_ERR(chip))
550 return PTR_ERR(chip);
551 our_chip = to_samsung_pwm_chip(chip);
552
553 chip->ops = &pwm_samsung_ops;
554 our_chip->inverter_mask = BIT(SAMSUNG_PWM_NUM) - 1;
555
556 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
557 ret = pwm_samsung_parse_dt(chip);
558 if (ret)
559 return ret;
560 } else {
561 if (!pdev->dev.platform_data)
562 return dev_err_probe(&pdev->dev, -EINVAL,
563 "no platform data specified\n");
564
565 memcpy(&our_chip->variant, pdev->dev.platform_data,
566 sizeof(our_chip->variant));
567 }
568
569 our_chip->base = devm_platform_ioremap_resource(pdev, 0);
570 if (IS_ERR(our_chip->base))
571 return PTR_ERR(our_chip->base);
572
573 our_chip->base_clk = devm_clk_get_enabled(&pdev->dev, "timers");
574 if (IS_ERR(our_chip->base_clk))
575 return dev_err_probe(dev, PTR_ERR(our_chip->base_clk),
576 "failed to get timer base clk\n");
577
578 for (chan = 0; chan < SAMSUNG_PWM_NUM; ++chan)
579 if (our_chip->variant.output_mask & BIT(chan))
580 pwm_samsung_set_invert(our_chip, chan, true);
581
582 /* Following clocks are optional. */
583 our_chip->tclk0 = devm_clk_get(&pdev->dev, "pwm-tclk0");
584 our_chip->tclk1 = devm_clk_get(&pdev->dev, "pwm-tclk1");
585
586 platform_set_drvdata(pdev, chip);
587
588 ret = devm_pwmchip_add(&pdev->dev, chip);
589 if (ret < 0)
590 return dev_err_probe(dev, ret, "failed to register PWM chip\n");
591
592 dev_dbg(dev, "base_clk at %lu, tclk0 at %lu, tclk1 at %lu\n",
593 clk_get_rate(our_chip->base_clk),
594 !IS_ERR(our_chip->tclk0) ? clk_get_rate(our_chip->tclk0) : 0,
595 !IS_ERR(our_chip->tclk1) ? clk_get_rate(our_chip->tclk1) : 0);
596
597 return 0;
598}
599
600static int pwm_samsung_resume(struct device *dev)
601{
602 struct pwm_chip *chip = dev_get_drvdata(dev);
603 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
604 unsigned int i;
605
606 for (i = 0; i < SAMSUNG_PWM_NUM; i++) {
607 struct pwm_device *pwm = &chip->pwms[i];
608 struct samsung_pwm_channel *chan = &our_chip->channel[i];
609
610 if (!test_bit(PWMF_REQUESTED, &pwm->flags))
611 continue;
612
613 if (our_chip->variant.output_mask & BIT(i))
614 pwm_samsung_set_invert(our_chip, i,
615 our_chip->inverter_mask & BIT(i));
616
617 if (chan->period_ns) {
618 __pwm_samsung_config(chip, pwm, chan->duty_ns,
619 chan->period_ns, true);
620 /* needed to make PWM disable work on Odroid-XU3 */
621 pwm_samsung_manual_update(our_chip, pwm);
622 }
623
624 if (our_chip->disabled_mask & BIT(i))
625 pwm_samsung_disable(chip, pwm);
626 else
627 pwm_samsung_enable(chip, pwm);
628 }
629
630 return 0;
631}
632
633static DEFINE_SIMPLE_DEV_PM_OPS(pwm_samsung_pm_ops, NULL, pwm_samsung_resume);
634
635static struct platform_driver pwm_samsung_driver = {
636 .driver = {
637 .name = "samsung-pwm",
638 .pm = pm_ptr(&pwm_samsung_pm_ops),
639 .of_match_table = of_match_ptr(samsung_pwm_matches),
640 },
641 .probe = pwm_samsung_probe,
642};
643module_platform_driver(pwm_samsung_driver);
644
645MODULE_DESCRIPTION("Samsung Pulse Width Modulator driver");
646MODULE_LICENSE("GPL");
647MODULE_AUTHOR("Tomasz Figa <tomasz.figa@gmail.com>");
648MODULE_ALIAS("platform:samsung-pwm");
1/*
2 * Copyright (c) 2007 Ben Dooks
3 * Copyright (c) 2008 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org>
5 * Copyright (c) 2013 Tomasz Figa <tomasz.figa@gmail.com>
6 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
7 *
8 * PWM driver for Samsung SoCs
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License.
13 */
14
15#include <linux/bitops.h>
16#include <linux/clk.h>
17#include <linux/export.h>
18#include <linux/err.h>
19#include <linux/io.h>
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/of.h>
23#include <linux/platform_device.h>
24#include <linux/pwm.h>
25#include <linux/slab.h>
26#include <linux/spinlock.h>
27#include <linux/time.h>
28
29/* For struct samsung_timer_variant and samsung_pwm_lock. */
30#include <clocksource/samsung_pwm.h>
31
32#define REG_TCFG0 0x00
33#define REG_TCFG1 0x04
34#define REG_TCON 0x08
35
36#define REG_TCNTB(chan) (0x0c + ((chan) * 0xc))
37#define REG_TCMPB(chan) (0x10 + ((chan) * 0xc))
38
39#define TCFG0_PRESCALER_MASK 0xff
40#define TCFG0_PRESCALER1_SHIFT 8
41
42#define TCFG1_MUX_MASK 0xf
43#define TCFG1_SHIFT(chan) (4 * (chan))
44
45/*
46 * Each channel occupies 4 bits in TCON register, but there is a gap of 4
47 * bits (one channel) after channel 0, so channels have different numbering
48 * when accessing TCON register. See to_tcon_channel() function.
49 *
50 * In addition, the location of autoreload bit for channel 4 (TCON channel 5)
51 * in its set of bits is 2 as opposed to 3 for other channels.
52 */
53#define TCON_START(chan) BIT(4 * (chan) + 0)
54#define TCON_MANUALUPDATE(chan) BIT(4 * (chan) + 1)
55#define TCON_INVERT(chan) BIT(4 * (chan) + 2)
56#define _TCON_AUTORELOAD(chan) BIT(4 * (chan) + 3)
57#define _TCON_AUTORELOAD4(chan) BIT(4 * (chan) + 2)
58#define TCON_AUTORELOAD(chan) \
59 ((chan < 5) ? _TCON_AUTORELOAD(chan) : _TCON_AUTORELOAD4(chan))
60
61/**
62 * struct samsung_pwm_channel - private data of PWM channel
63 * @period_ns: current period in nanoseconds programmed to the hardware
64 * @duty_ns: current duty time in nanoseconds programmed to the hardware
65 * @tin_ns: time of one timer tick in nanoseconds with current timer rate
66 */
67struct samsung_pwm_channel {
68 u32 period_ns;
69 u32 duty_ns;
70 u32 tin_ns;
71};
72
73/**
74 * struct samsung_pwm_chip - private data of PWM chip
75 * @chip: generic PWM chip
76 * @variant: local copy of hardware variant data
77 * @inverter_mask: inverter status for all channels - one bit per channel
78 * @disabled_mask: disabled status for all channels - one bit per channel
79 * @base: base address of mapped PWM registers
80 * @base_clk: base clock used to drive the timers
81 * @tclk0: external clock 0 (can be ERR_PTR if not present)
82 * @tclk1: external clock 1 (can be ERR_PTR if not present)
83 */
84struct samsung_pwm_chip {
85 struct pwm_chip chip;
86 struct samsung_pwm_variant variant;
87 u8 inverter_mask;
88 u8 disabled_mask;
89
90 void __iomem *base;
91 struct clk *base_clk;
92 struct clk *tclk0;
93 struct clk *tclk1;
94};
95
96#ifndef CONFIG_CLKSRC_SAMSUNG_PWM
97/*
98 * PWM block is shared between pwm-samsung and samsung_pwm_timer drivers
99 * and some registers need access synchronization. If both drivers are
100 * compiled in, the spinlock is defined in the clocksource driver,
101 * otherwise following definition is used.
102 *
103 * Currently we do not need any more complex synchronization method
104 * because all the supported SoCs contain only one instance of the PWM
105 * IP. Should this change, both drivers will need to be modified to
106 * properly synchronize accesses to particular instances.
107 */
108static DEFINE_SPINLOCK(samsung_pwm_lock);
109#endif
110
111static inline
112struct samsung_pwm_chip *to_samsung_pwm_chip(struct pwm_chip *chip)
113{
114 return container_of(chip, struct samsung_pwm_chip, chip);
115}
116
117static inline unsigned int to_tcon_channel(unsigned int channel)
118{
119 /* TCON register has a gap of 4 bits (1 channel) after channel 0 */
120 return (channel == 0) ? 0 : (channel + 1);
121}
122
123static void pwm_samsung_set_divisor(struct samsung_pwm_chip *pwm,
124 unsigned int channel, u8 divisor)
125{
126 u8 shift = TCFG1_SHIFT(channel);
127 unsigned long flags;
128 u32 reg;
129 u8 bits;
130
131 bits = (fls(divisor) - 1) - pwm->variant.div_base;
132
133 spin_lock_irqsave(&samsung_pwm_lock, flags);
134
135 reg = readl(pwm->base + REG_TCFG1);
136 reg &= ~(TCFG1_MUX_MASK << shift);
137 reg |= bits << shift;
138 writel(reg, pwm->base + REG_TCFG1);
139
140 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
141}
142
143static int pwm_samsung_is_tdiv(struct samsung_pwm_chip *chip, unsigned int chan)
144{
145 struct samsung_pwm_variant *variant = &chip->variant;
146 u32 reg;
147
148 reg = readl(chip->base + REG_TCFG1);
149 reg >>= TCFG1_SHIFT(chan);
150 reg &= TCFG1_MUX_MASK;
151
152 return (BIT(reg) & variant->tclk_mask) == 0;
153}
154
155static unsigned long pwm_samsung_get_tin_rate(struct samsung_pwm_chip *chip,
156 unsigned int chan)
157{
158 unsigned long rate;
159 u32 reg;
160
161 rate = clk_get_rate(chip->base_clk);
162
163 reg = readl(chip->base + REG_TCFG0);
164 if (chan >= 2)
165 reg >>= TCFG0_PRESCALER1_SHIFT;
166 reg &= TCFG0_PRESCALER_MASK;
167
168 return rate / (reg + 1);
169}
170
171static unsigned long pwm_samsung_calc_tin(struct samsung_pwm_chip *chip,
172 unsigned int chan, unsigned long freq)
173{
174 struct samsung_pwm_variant *variant = &chip->variant;
175 unsigned long rate;
176 struct clk *clk;
177 u8 div;
178
179 if (!pwm_samsung_is_tdiv(chip, chan)) {
180 clk = (chan < 2) ? chip->tclk0 : chip->tclk1;
181 if (!IS_ERR(clk)) {
182 rate = clk_get_rate(clk);
183 if (rate)
184 return rate;
185 }
186
187 dev_warn(chip->chip.dev,
188 "tclk of PWM %d is inoperational, using tdiv\n", chan);
189 }
190
191 rate = pwm_samsung_get_tin_rate(chip, chan);
192 dev_dbg(chip->chip.dev, "tin parent at %lu\n", rate);
193
194 /*
195 * Compare minimum PWM frequency that can be achieved with possible
196 * divider settings and choose the lowest divisor that can generate
197 * frequencies lower than requested.
198 */
199 if (variant->bits < 32) {
200 /* Only for s3c24xx */
201 for (div = variant->div_base; div < 4; ++div)
202 if ((rate >> (variant->bits + div)) < freq)
203 break;
204 } else {
205 /*
206 * Other variants have enough counter bits to generate any
207 * requested rate, so no need to check higher divisors.
208 */
209 div = variant->div_base;
210 }
211
212 pwm_samsung_set_divisor(chip, chan, BIT(div));
213
214 return rate >> div;
215}
216
217static int pwm_samsung_request(struct pwm_chip *chip, struct pwm_device *pwm)
218{
219 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
220 struct samsung_pwm_channel *our_chan;
221
222 if (!(our_chip->variant.output_mask & BIT(pwm->hwpwm))) {
223 dev_warn(chip->dev,
224 "tried to request PWM channel %d without output\n",
225 pwm->hwpwm);
226 return -EINVAL;
227 }
228
229 our_chan = devm_kzalloc(chip->dev, sizeof(*our_chan), GFP_KERNEL);
230 if (!our_chan)
231 return -ENOMEM;
232
233 pwm_set_chip_data(pwm, our_chan);
234
235 return 0;
236}
237
238static void pwm_samsung_free(struct pwm_chip *chip, struct pwm_device *pwm)
239{
240 devm_kfree(chip->dev, pwm_get_chip_data(pwm));
241 pwm_set_chip_data(pwm, NULL);
242}
243
244static int pwm_samsung_enable(struct pwm_chip *chip, struct pwm_device *pwm)
245{
246 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
247 unsigned int tcon_chan = to_tcon_channel(pwm->hwpwm);
248 unsigned long flags;
249 u32 tcon;
250
251 spin_lock_irqsave(&samsung_pwm_lock, flags);
252
253 tcon = readl(our_chip->base + REG_TCON);
254
255 tcon &= ~TCON_START(tcon_chan);
256 tcon |= TCON_MANUALUPDATE(tcon_chan);
257 writel(tcon, our_chip->base + REG_TCON);
258
259 tcon &= ~TCON_MANUALUPDATE(tcon_chan);
260 tcon |= TCON_START(tcon_chan) | TCON_AUTORELOAD(tcon_chan);
261 writel(tcon, our_chip->base + REG_TCON);
262
263 our_chip->disabled_mask &= ~BIT(pwm->hwpwm);
264
265 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
266
267 return 0;
268}
269
270static void pwm_samsung_disable(struct pwm_chip *chip, struct pwm_device *pwm)
271{
272 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
273 unsigned int tcon_chan = to_tcon_channel(pwm->hwpwm);
274 unsigned long flags;
275 u32 tcon;
276
277 spin_lock_irqsave(&samsung_pwm_lock, flags);
278
279 tcon = readl(our_chip->base + REG_TCON);
280 tcon &= ~TCON_AUTORELOAD(tcon_chan);
281 writel(tcon, our_chip->base + REG_TCON);
282
283 our_chip->disabled_mask |= BIT(pwm->hwpwm);
284
285 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
286}
287
288static void pwm_samsung_manual_update(struct samsung_pwm_chip *chip,
289 struct pwm_device *pwm)
290{
291 unsigned int tcon_chan = to_tcon_channel(pwm->hwpwm);
292 u32 tcon;
293 unsigned long flags;
294
295 spin_lock_irqsave(&samsung_pwm_lock, flags);
296
297 tcon = readl(chip->base + REG_TCON);
298 tcon |= TCON_MANUALUPDATE(tcon_chan);
299 writel(tcon, chip->base + REG_TCON);
300
301 tcon &= ~TCON_MANUALUPDATE(tcon_chan);
302 writel(tcon, chip->base + REG_TCON);
303
304 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
305}
306
307static int __pwm_samsung_config(struct pwm_chip *chip, struct pwm_device *pwm,
308 int duty_ns, int period_ns, bool force_period)
309{
310 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
311 struct samsung_pwm_channel *chan = pwm_get_chip_data(pwm);
312 u32 tin_ns = chan->tin_ns, tcnt, tcmp, oldtcmp;
313
314 /*
315 * We currently avoid using 64bit arithmetic by using the
316 * fact that anything faster than 1Hz is easily representable
317 * by 32bits.
318 */
319 if (period_ns > NSEC_PER_SEC)
320 return -ERANGE;
321
322 tcnt = readl(our_chip->base + REG_TCNTB(pwm->hwpwm));
323 oldtcmp = readl(our_chip->base + REG_TCMPB(pwm->hwpwm));
324
325 /* We need tick count for calculation, not last tick. */
326 ++tcnt;
327
328 /* Check to see if we are changing the clock rate of the PWM. */
329 if (chan->period_ns != period_ns || force_period) {
330 unsigned long tin_rate;
331 u32 period;
332
333 period = NSEC_PER_SEC / period_ns;
334
335 dev_dbg(our_chip->chip.dev, "duty_ns=%d, period_ns=%d (%u)\n",
336 duty_ns, period_ns, period);
337
338 tin_rate = pwm_samsung_calc_tin(our_chip, pwm->hwpwm, period);
339
340 dev_dbg(our_chip->chip.dev, "tin_rate=%lu\n", tin_rate);
341
342 tin_ns = NSEC_PER_SEC / tin_rate;
343 tcnt = period_ns / tin_ns;
344 }
345
346 /* Period is too short. */
347 if (tcnt <= 1)
348 return -ERANGE;
349
350 /* Note that counters count down. */
351 tcmp = duty_ns / tin_ns;
352
353 /* 0% duty is not available */
354 if (!tcmp)
355 ++tcmp;
356
357 tcmp = tcnt - tcmp;
358
359 /* Decrement to get tick numbers, instead of tick counts. */
360 --tcnt;
361 /* -1UL will give 100% duty. */
362 --tcmp;
363
364 dev_dbg(our_chip->chip.dev,
365 "tin_ns=%u, tcmp=%u/%u\n", tin_ns, tcmp, tcnt);
366
367 /* Update PWM registers. */
368 writel(tcnt, our_chip->base + REG_TCNTB(pwm->hwpwm));
369 writel(tcmp, our_chip->base + REG_TCMPB(pwm->hwpwm));
370
371 /*
372 * In case the PWM is currently at 100% duty cycle, force a manual
373 * update to prevent the signal staying high if the PWM is disabled
374 * shortly afer this update (before it autoreloaded the new values).
375 */
376 if (oldtcmp == (u32) -1) {
377 dev_dbg(our_chip->chip.dev, "Forcing manual update");
378 pwm_samsung_manual_update(our_chip, pwm);
379 }
380
381 chan->period_ns = period_ns;
382 chan->tin_ns = tin_ns;
383 chan->duty_ns = duty_ns;
384
385 return 0;
386}
387
388static int pwm_samsung_config(struct pwm_chip *chip, struct pwm_device *pwm,
389 int duty_ns, int period_ns)
390{
391 return __pwm_samsung_config(chip, pwm, duty_ns, period_ns, false);
392}
393
394static void pwm_samsung_set_invert(struct samsung_pwm_chip *chip,
395 unsigned int channel, bool invert)
396{
397 unsigned int tcon_chan = to_tcon_channel(channel);
398 unsigned long flags;
399 u32 tcon;
400
401 spin_lock_irqsave(&samsung_pwm_lock, flags);
402
403 tcon = readl(chip->base + REG_TCON);
404
405 if (invert) {
406 chip->inverter_mask |= BIT(channel);
407 tcon |= TCON_INVERT(tcon_chan);
408 } else {
409 chip->inverter_mask &= ~BIT(channel);
410 tcon &= ~TCON_INVERT(tcon_chan);
411 }
412
413 writel(tcon, chip->base + REG_TCON);
414
415 spin_unlock_irqrestore(&samsung_pwm_lock, flags);
416}
417
418static int pwm_samsung_set_polarity(struct pwm_chip *chip,
419 struct pwm_device *pwm,
420 enum pwm_polarity polarity)
421{
422 struct samsung_pwm_chip *our_chip = to_samsung_pwm_chip(chip);
423 bool invert = (polarity == PWM_POLARITY_NORMAL);
424
425 /* Inverted means normal in the hardware. */
426 pwm_samsung_set_invert(our_chip, pwm->hwpwm, invert);
427
428 return 0;
429}
430
431static const struct pwm_ops pwm_samsung_ops = {
432 .request = pwm_samsung_request,
433 .free = pwm_samsung_free,
434 .enable = pwm_samsung_enable,
435 .disable = pwm_samsung_disable,
436 .config = pwm_samsung_config,
437 .set_polarity = pwm_samsung_set_polarity,
438 .owner = THIS_MODULE,
439};
440
441#ifdef CONFIG_OF
442static const struct samsung_pwm_variant s3c24xx_variant = {
443 .bits = 16,
444 .div_base = 1,
445 .has_tint_cstat = false,
446 .tclk_mask = BIT(4),
447};
448
449static const struct samsung_pwm_variant s3c64xx_variant = {
450 .bits = 32,
451 .div_base = 0,
452 .has_tint_cstat = true,
453 .tclk_mask = BIT(7) | BIT(6) | BIT(5),
454};
455
456static const struct samsung_pwm_variant s5p64x0_variant = {
457 .bits = 32,
458 .div_base = 0,
459 .has_tint_cstat = true,
460 .tclk_mask = 0,
461};
462
463static const struct samsung_pwm_variant s5pc100_variant = {
464 .bits = 32,
465 .div_base = 0,
466 .has_tint_cstat = true,
467 .tclk_mask = BIT(5),
468};
469
470static const struct of_device_id samsung_pwm_matches[] = {
471 { .compatible = "samsung,s3c2410-pwm", .data = &s3c24xx_variant },
472 { .compatible = "samsung,s3c6400-pwm", .data = &s3c64xx_variant },
473 { .compatible = "samsung,s5p6440-pwm", .data = &s5p64x0_variant },
474 { .compatible = "samsung,s5pc100-pwm", .data = &s5pc100_variant },
475 { .compatible = "samsung,exynos4210-pwm", .data = &s5p64x0_variant },
476 {},
477};
478MODULE_DEVICE_TABLE(of, samsung_pwm_matches);
479
480static int pwm_samsung_parse_dt(struct samsung_pwm_chip *chip)
481{
482 struct device_node *np = chip->chip.dev->of_node;
483 const struct of_device_id *match;
484 struct property *prop;
485 const __be32 *cur;
486 u32 val;
487
488 match = of_match_node(samsung_pwm_matches, np);
489 if (!match)
490 return -ENODEV;
491
492 memcpy(&chip->variant, match->data, sizeof(chip->variant));
493
494 of_property_for_each_u32(np, "samsung,pwm-outputs", prop, cur, val) {
495 if (val >= SAMSUNG_PWM_NUM) {
496 dev_err(chip->chip.dev,
497 "%s: invalid channel index in samsung,pwm-outputs property\n",
498 __func__);
499 continue;
500 }
501 chip->variant.output_mask |= BIT(val);
502 }
503
504 return 0;
505}
506#else
507static int pwm_samsung_parse_dt(struct samsung_pwm_chip *chip)
508{
509 return -ENODEV;
510}
511#endif
512
513static int pwm_samsung_probe(struct platform_device *pdev)
514{
515 struct device *dev = &pdev->dev;
516 struct samsung_pwm_chip *chip;
517 struct resource *res;
518 unsigned int chan;
519 int ret;
520
521 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
522 if (chip == NULL)
523 return -ENOMEM;
524
525 chip->chip.dev = &pdev->dev;
526 chip->chip.ops = &pwm_samsung_ops;
527 chip->chip.base = -1;
528 chip->chip.npwm = SAMSUNG_PWM_NUM;
529 chip->inverter_mask = BIT(SAMSUNG_PWM_NUM) - 1;
530
531 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) {
532 ret = pwm_samsung_parse_dt(chip);
533 if (ret)
534 return ret;
535
536 chip->chip.of_xlate = of_pwm_xlate_with_flags;
537 chip->chip.of_pwm_n_cells = 3;
538 } else {
539 if (!pdev->dev.platform_data) {
540 dev_err(&pdev->dev, "no platform data specified\n");
541 return -EINVAL;
542 }
543
544 memcpy(&chip->variant, pdev->dev.platform_data,
545 sizeof(chip->variant));
546 }
547
548 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
549 chip->base = devm_ioremap_resource(&pdev->dev, res);
550 if (IS_ERR(chip->base))
551 return PTR_ERR(chip->base);
552
553 chip->base_clk = devm_clk_get(&pdev->dev, "timers");
554 if (IS_ERR(chip->base_clk)) {
555 dev_err(dev, "failed to get timer base clk\n");
556 return PTR_ERR(chip->base_clk);
557 }
558
559 ret = clk_prepare_enable(chip->base_clk);
560 if (ret < 0) {
561 dev_err(dev, "failed to enable base clock\n");
562 return ret;
563 }
564
565 for (chan = 0; chan < SAMSUNG_PWM_NUM; ++chan)
566 if (chip->variant.output_mask & BIT(chan))
567 pwm_samsung_set_invert(chip, chan, true);
568
569 /* Following clocks are optional. */
570 chip->tclk0 = devm_clk_get(&pdev->dev, "pwm-tclk0");
571 chip->tclk1 = devm_clk_get(&pdev->dev, "pwm-tclk1");
572
573 platform_set_drvdata(pdev, chip);
574
575 ret = pwmchip_add(&chip->chip);
576 if (ret < 0) {
577 dev_err(dev, "failed to register PWM chip\n");
578 clk_disable_unprepare(chip->base_clk);
579 return ret;
580 }
581
582 dev_dbg(dev, "base_clk at %lu, tclk0 at %lu, tclk1 at %lu\n",
583 clk_get_rate(chip->base_clk),
584 !IS_ERR(chip->tclk0) ? clk_get_rate(chip->tclk0) : 0,
585 !IS_ERR(chip->tclk1) ? clk_get_rate(chip->tclk1) : 0);
586
587 return 0;
588}
589
590static int pwm_samsung_remove(struct platform_device *pdev)
591{
592 struct samsung_pwm_chip *chip = platform_get_drvdata(pdev);
593 int ret;
594
595 ret = pwmchip_remove(&chip->chip);
596 if (ret < 0)
597 return ret;
598
599 clk_disable_unprepare(chip->base_clk);
600
601 return 0;
602}
603
604#ifdef CONFIG_PM_SLEEP
605static int pwm_samsung_resume(struct device *dev)
606{
607 struct samsung_pwm_chip *our_chip = dev_get_drvdata(dev);
608 struct pwm_chip *chip = &our_chip->chip;
609 unsigned int i;
610
611 for (i = 0; i < SAMSUNG_PWM_NUM; i++) {
612 struct pwm_device *pwm = &chip->pwms[i];
613 struct samsung_pwm_channel *chan = pwm_get_chip_data(pwm);
614
615 if (!chan)
616 continue;
617
618 if (our_chip->variant.output_mask & BIT(i))
619 pwm_samsung_set_invert(our_chip, i,
620 our_chip->inverter_mask & BIT(i));
621
622 if (chan->period_ns) {
623 __pwm_samsung_config(chip, pwm, chan->duty_ns,
624 chan->period_ns, true);
625 /* needed to make PWM disable work on Odroid-XU3 */
626 pwm_samsung_manual_update(our_chip, pwm);
627 }
628
629 if (our_chip->disabled_mask & BIT(i))
630 pwm_samsung_disable(chip, pwm);
631 else
632 pwm_samsung_enable(chip, pwm);
633 }
634
635 return 0;
636}
637#endif
638
639static SIMPLE_DEV_PM_OPS(pwm_samsung_pm_ops, NULL, pwm_samsung_resume);
640
641static struct platform_driver pwm_samsung_driver = {
642 .driver = {
643 .name = "samsung-pwm",
644 .pm = &pwm_samsung_pm_ops,
645 .of_match_table = of_match_ptr(samsung_pwm_matches),
646 },
647 .probe = pwm_samsung_probe,
648 .remove = pwm_samsung_remove,
649};
650module_platform_driver(pwm_samsung_driver);
651
652MODULE_LICENSE("GPL");
653MODULE_AUTHOR("Tomasz Figa <tomasz.figa@gmail.com>");
654MODULE_ALIAS("platform:samsung-pwm");