1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * PWM device driver for ST SoCs
5 * Copyright (C) 2013-2016 STMicroelectronics (R&D) Limited
7 * Author: Ajit Pal Singh <ajitpal.singh@st.com>
8 * Lee Jones <lee.jones@linaro.org>
11 #include <linux/clk.h>
12 #include <linux/interrupt.h>
13 #include <linux/math64.h>
14 #include <linux/mfd/syscon.h>
15 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/pwm.h>
19 #include <linux/regmap.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/time.h>
23 #include <linux/wait.h>
25 #define PWM_OUT_VAL(x) (0x00 + (4 * (x))) /* Device's Duty Cycle register */
26 #define PWM_CPT_VAL(x) (0x10 + (4 * (x))) /* Capture value */
27 #define PWM_CPT_EDGE(x) (0x30 + (4 * (x))) /* Edge to capture on */
29 #define STI_PWM_CTRL 0x50 /* Control/Config register */
30 #define STI_INT_EN 0x54 /* Interrupt Enable/Disable register */
31 #define STI_INT_STA 0x58 /* Interrupt Status register */
32 #define PWM_INT_ACK 0x5c
33 #define PWM_PRESCALE_LOW_MASK 0x0f
34 #define PWM_PRESCALE_HIGH_MASK 0xf0
35 #define PWM_CPT_EDGE_MASK 0x03
36 #define PWM_INT_ACK_MASK 0x1ff
38 #define STI_MAX_CPT_DEVS 4
39 #define CPT_DC_MAX 0xff
59 * Each capture input can be programmed to detect rising-edge, falling-edge,
60 * either edge or neither egde.
69 struct sti_cpt_ddata {
73 wait_queue_head_t wait;
76 struct sti_pwm_compat_data {
77 const struct reg_field *reg_fields;
78 unsigned int pwm_num_devs;
79 unsigned int cpt_num_devs;
80 unsigned int max_pwm_cnt;
81 unsigned int max_prescale;
82 struct sti_cpt_ddata *ddata;
89 struct regmap *regmap;
90 struct sti_pwm_compat_data *cdata;
91 struct regmap_field *prescale_low;
92 struct regmap_field *prescale_high;
93 struct regmap_field *pwm_out_en;
94 struct regmap_field *pwm_cpt_en;
95 struct regmap_field *pwm_cpt_int_en;
96 struct regmap_field *pwm_cpt_int_stat;
98 struct pwm_device *cur;
99 unsigned long configured;
100 unsigned int en_count;
101 struct mutex sti_pwm_lock; /* To sync between enable/disable calls */
105 static const struct reg_field sti_pwm_regfields[MAX_REGFIELDS] = {
106 [PWMCLK_PRESCALE_LOW] = REG_FIELD(STI_PWM_CTRL, 0, 3),
107 [PWMCLK_PRESCALE_HIGH] = REG_FIELD(STI_PWM_CTRL, 11, 14),
108 [CPTCLK_PRESCALE] = REG_FIELD(STI_PWM_CTRL, 4, 8),
109 [PWM_OUT_EN] = REG_FIELD(STI_PWM_CTRL, 9, 9),
110 [PWM_CPT_EN] = REG_FIELD(STI_PWM_CTRL, 10, 10),
111 [PWM_CPT_INT_EN] = REG_FIELD(STI_INT_EN, 1, 4),
112 [PWM_CPT_INT_STAT] = REG_FIELD(STI_INT_STA, 1, 4),
115 static inline struct sti_pwm_chip *to_sti_pwmchip(struct pwm_chip *chip)
117 return container_of(chip, struct sti_pwm_chip, chip);
121 * Calculate the prescaler value corresponding to the period.
123 static int sti_pwm_get_prescale(struct sti_pwm_chip *pc, unsigned long period,
124 unsigned int *prescale)
126 struct sti_pwm_compat_data *cdata = pc->cdata;
127 unsigned long clk_rate;
131 clk_rate = clk_get_rate(pc->pwm_clk);
133 dev_err(pc->dev, "failed to get clock rate\n");
138 * prescale = ((period_ns * clk_rate) / (10^9 * (max_pwm_cnt + 1)) - 1
140 value = NSEC_PER_SEC / clk_rate;
141 value *= cdata->max_pwm_cnt + 1;
146 ps = period / value - 1;
147 if (ps > cdata->max_prescale)
156 * For STiH4xx PWM IP, the PWM period is fixed to 256 local clock cycles. The
157 * only way to change the period (apart from changing the PWM input clock) is
158 * to change the PWM clock prescaler.
160 * The prescaler is of 8 bits, so 256 prescaler values and hence 256 possible
161 * period values are supported (for a particular clock rate). The requested
162 * period will be applied only if it matches one of these 256 values.
164 static int sti_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
165 int duty_ns, int period_ns)
167 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
168 struct sti_pwm_compat_data *cdata = pc->cdata;
169 unsigned int ncfg, value, prescale = 0;
170 struct pwm_device *cur = pc->cur;
171 struct device *dev = pc->dev;
172 bool period_same = false;
175 ncfg = hweight_long(pc->configured);
177 period_same = (period_ns == pwm_get_period(cur));
180 * Allow configuration changes if one of the following conditions
182 * 1. No devices have been configured.
183 * 2. Only one device has been configured and the new request is for
185 * 3. Only one device has been configured and the new request is for
186 * a new device and period of the new device is same as the current
188 * 4. More than one devices are configured and period of the new
189 * requestis the same as the current period.
192 ((ncfg == 1) && (pwm->hwpwm == cur->hwpwm)) ||
193 ((ncfg == 1) && (pwm->hwpwm != cur->hwpwm) && period_same) ||
194 ((ncfg > 1) && period_same)) {
195 /* Enable clock before writing to PWM registers. */
196 ret = clk_enable(pc->pwm_clk);
200 ret = clk_enable(pc->cpt_clk);
205 ret = sti_pwm_get_prescale(pc, period_ns, &prescale);
209 value = prescale & PWM_PRESCALE_LOW_MASK;
211 ret = regmap_field_write(pc->prescale_low, value);
215 value = (prescale & PWM_PRESCALE_HIGH_MASK) >> 4;
217 ret = regmap_field_write(pc->prescale_high, value);
223 * When PWMVal == 0, PWM pulse = 1 local clock cycle.
224 * When PWMVal == max_pwm_count,
225 * PWM pulse = (max_pwm_count + 1) local cycles,
226 * that is continuous pulse: signal never goes low.
228 value = cdata->max_pwm_cnt * duty_ns / period_ns;
230 ret = regmap_write(pc->regmap, PWM_OUT_VAL(pwm->hwpwm), value);
234 ret = regmap_field_write(pc->pwm_cpt_int_en, 0);
236 set_bit(pwm->hwpwm, &pc->configured);
239 dev_dbg(dev, "prescale:%u, period:%i, duty:%i, value:%u\n",
240 prescale, period_ns, duty_ns, value);
246 clk_disable(pc->pwm_clk);
247 clk_disable(pc->cpt_clk);
251 static int sti_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
253 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
254 struct device *dev = pc->dev;
258 * Since we have a common enable for all PWM devices, do not enable if
261 mutex_lock(&pc->sti_pwm_lock);
264 ret = clk_enable(pc->pwm_clk);
268 ret = clk_enable(pc->cpt_clk);
272 ret = regmap_field_write(pc->pwm_out_en, 1);
274 dev_err(dev, "failed to enable PWM device %u: %d\n",
283 mutex_unlock(&pc->sti_pwm_lock);
287 static void sti_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
289 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
291 mutex_lock(&pc->sti_pwm_lock);
293 if (--pc->en_count) {
294 mutex_unlock(&pc->sti_pwm_lock);
298 regmap_field_write(pc->pwm_out_en, 0);
300 clk_disable(pc->pwm_clk);
301 clk_disable(pc->cpt_clk);
303 mutex_unlock(&pc->sti_pwm_lock);
306 static void sti_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
308 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
310 clear_bit(pwm->hwpwm, &pc->configured);
313 static int sti_pwm_capture(struct pwm_chip *chip, struct pwm_device *pwm,
314 struct pwm_capture *result, unsigned long timeout)
316 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
317 struct sti_pwm_compat_data *cdata = pc->cdata;
318 struct sti_cpt_ddata *ddata = &cdata->ddata[pwm->hwpwm];
319 struct device *dev = pc->dev;
320 unsigned int effective_ticks;
321 unsigned long long high, low;
324 if (pwm->hwpwm >= cdata->cpt_num_devs) {
325 dev_err(dev, "device %u is not valid\n", pwm->hwpwm);
329 mutex_lock(&ddata->lock);
332 /* Prepare capture measurement */
333 regmap_write(pc->regmap, PWM_CPT_EDGE(pwm->hwpwm), CPT_EDGE_RISING);
334 regmap_field_write(pc->pwm_cpt_int_en, BIT(pwm->hwpwm));
337 ret = regmap_field_write(pc->pwm_cpt_en, 1);
339 dev_err(dev, "failed to enable PWM capture %u: %d\n",
344 ret = wait_event_interruptible_timeout(ddata->wait, ddata->index > 1,
345 msecs_to_jiffies(timeout));
347 regmap_write(pc->regmap, PWM_CPT_EDGE(pwm->hwpwm), CPT_EDGE_DISABLED);
349 if (ret == -ERESTARTSYS)
352 switch (ddata->index) {
356 * Getting here could mean:
357 * - input signal is constant of less than 1 Hz
358 * - there is no input signal at all
360 * In such case the frequency is rounded down to 0
363 result->duty_cycle = 0;
368 /* We have everying we need */
369 high = ddata->snapshot[1] - ddata->snapshot[0];
370 low = ddata->snapshot[2] - ddata->snapshot[1];
372 effective_ticks = clk_get_rate(pc->cpt_clk);
374 result->period = (high + low) * NSEC_PER_SEC;
375 result->period /= effective_ticks;
377 result->duty_cycle = high * NSEC_PER_SEC;
378 result->duty_cycle /= effective_ticks;
383 dev_err(dev, "internal error\n");
388 /* Disable capture */
389 regmap_field_write(pc->pwm_cpt_en, 0);
391 mutex_unlock(&ddata->lock);
395 static int sti_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
396 const struct pwm_state *state)
400 if (state->polarity != PWM_POLARITY_NORMAL)
403 if (!state->enabled) {
404 if (pwm->state.enabled)
405 sti_pwm_disable(chip, pwm);
410 err = sti_pwm_config(pwm->chip, pwm, state->duty_cycle, state->period);
414 if (!pwm->state.enabled)
415 err = sti_pwm_enable(chip, pwm);
420 static const struct pwm_ops sti_pwm_ops = {
421 .capture = sti_pwm_capture,
422 .apply = sti_pwm_apply,
423 .free = sti_pwm_free,
424 .owner = THIS_MODULE,
427 static irqreturn_t sti_pwm_interrupt(int irq, void *data)
429 struct sti_pwm_chip *pc = data;
430 struct device *dev = pc->dev;
431 struct sti_cpt_ddata *ddata;
433 unsigned int cpt_int_stat;
437 ret = regmap_field_read(pc->pwm_cpt_int_stat, &cpt_int_stat);
441 while (cpt_int_stat) {
442 devicenum = ffs(cpt_int_stat) - 1;
444 ddata = &pc->cdata->ddata[devicenum];
450 * __| |_________________| |________
453 * Capture start by the first available rising edge. When a
454 * capture event occurs, capture value (CPT_VALx) is stored,
455 * index incremented, capture edge changed.
457 * After the capture, if the index > 1, we have collected the
458 * necessary data so we signal the thread waiting for it and
459 * disable the capture by setting capture edge to none
462 regmap_read(pc->regmap,
463 PWM_CPT_VAL(devicenum),
464 &ddata->snapshot[ddata->index]);
466 switch (ddata->index) {
469 regmap_read(pc->regmap, PWM_CPT_EDGE(devicenum), ®);
470 reg ^= PWM_CPT_EDGE_MASK;
471 regmap_write(pc->regmap, PWM_CPT_EDGE(devicenum), reg);
477 regmap_write(pc->regmap,
478 PWM_CPT_EDGE(devicenum),
480 wake_up(&ddata->wait);
484 dev_err(dev, "Internal error\n");
487 cpt_int_stat &= ~BIT_MASK(devicenum);
492 /* Just ACK everything */
493 regmap_write(pc->regmap, PWM_INT_ACK, PWM_INT_ACK_MASK);
498 static int sti_pwm_probe_dt(struct sti_pwm_chip *pc)
500 struct device *dev = pc->dev;
501 const struct reg_field *reg_fields;
502 struct device_node *np = dev->of_node;
503 struct sti_pwm_compat_data *cdata = pc->cdata;
507 ret = of_property_read_u32(np, "st,pwm-num-chan", &num_devs);
509 cdata->pwm_num_devs = num_devs;
511 ret = of_property_read_u32(np, "st,capture-num-chan", &num_devs);
513 cdata->cpt_num_devs = num_devs;
515 if (!cdata->pwm_num_devs && !cdata->cpt_num_devs) {
516 dev_err(dev, "No channels configured\n");
520 reg_fields = cdata->reg_fields;
522 pc->prescale_low = devm_regmap_field_alloc(dev, pc->regmap,
523 reg_fields[PWMCLK_PRESCALE_LOW]);
524 if (IS_ERR(pc->prescale_low))
525 return PTR_ERR(pc->prescale_low);
527 pc->prescale_high = devm_regmap_field_alloc(dev, pc->regmap,
528 reg_fields[PWMCLK_PRESCALE_HIGH]);
529 if (IS_ERR(pc->prescale_high))
530 return PTR_ERR(pc->prescale_high);
532 pc->pwm_out_en = devm_regmap_field_alloc(dev, pc->regmap,
533 reg_fields[PWM_OUT_EN]);
534 if (IS_ERR(pc->pwm_out_en))
535 return PTR_ERR(pc->pwm_out_en);
537 pc->pwm_cpt_en = devm_regmap_field_alloc(dev, pc->regmap,
538 reg_fields[PWM_CPT_EN]);
539 if (IS_ERR(pc->pwm_cpt_en))
540 return PTR_ERR(pc->pwm_cpt_en);
542 pc->pwm_cpt_int_en = devm_regmap_field_alloc(dev, pc->regmap,
543 reg_fields[PWM_CPT_INT_EN]);
544 if (IS_ERR(pc->pwm_cpt_int_en))
545 return PTR_ERR(pc->pwm_cpt_int_en);
547 pc->pwm_cpt_int_stat = devm_regmap_field_alloc(dev, pc->regmap,
548 reg_fields[PWM_CPT_INT_STAT]);
549 if (PTR_ERR_OR_ZERO(pc->pwm_cpt_int_stat))
550 return PTR_ERR(pc->pwm_cpt_int_stat);
555 static const struct regmap_config sti_pwm_regmap_config = {
561 static int sti_pwm_probe(struct platform_device *pdev)
563 struct device *dev = &pdev->dev;
564 struct sti_pwm_compat_data *cdata;
565 struct sti_pwm_chip *pc;
569 pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
573 cdata = devm_kzalloc(dev, sizeof(*cdata), GFP_KERNEL);
577 pc->mmio = devm_platform_ioremap_resource(pdev, 0);
578 if (IS_ERR(pc->mmio))
579 return PTR_ERR(pc->mmio);
581 pc->regmap = devm_regmap_init_mmio(dev, pc->mmio,
582 &sti_pwm_regmap_config);
583 if (IS_ERR(pc->regmap))
584 return PTR_ERR(pc->regmap);
586 irq = platform_get_irq(pdev, 0);
590 ret = devm_request_irq(&pdev->dev, irq, sti_pwm_interrupt, 0,
593 dev_err(&pdev->dev, "Failed to request IRQ\n");
598 * Setup PWM data with default values: some values could be replaced
599 * with specific ones provided from Device Tree.
601 cdata->reg_fields = sti_pwm_regfields;
602 cdata->max_prescale = 0xff;
603 cdata->max_pwm_cnt = 255;
604 cdata->pwm_num_devs = 0;
605 cdata->cpt_num_devs = 0;
610 mutex_init(&pc->sti_pwm_lock);
612 ret = sti_pwm_probe_dt(pc);
616 if (cdata->pwm_num_devs) {
617 pc->pwm_clk = of_clk_get_by_name(dev->of_node, "pwm");
618 if (IS_ERR(pc->pwm_clk)) {
619 dev_err(dev, "failed to get PWM clock\n");
620 return PTR_ERR(pc->pwm_clk);
623 ret = clk_prepare(pc->pwm_clk);
625 dev_err(dev, "failed to prepare clock\n");
630 if (cdata->cpt_num_devs) {
631 pc->cpt_clk = of_clk_get_by_name(dev->of_node, "capture");
632 if (IS_ERR(pc->cpt_clk)) {
633 dev_err(dev, "failed to get PWM capture clock\n");
634 return PTR_ERR(pc->cpt_clk);
637 ret = clk_prepare(pc->cpt_clk);
639 dev_err(dev, "failed to prepare clock\n");
643 cdata->ddata = devm_kzalloc(dev, cdata->cpt_num_devs * sizeof(*cdata->ddata), GFP_KERNEL);
649 pc->chip.ops = &sti_pwm_ops;
650 pc->chip.npwm = pc->cdata->pwm_num_devs;
652 for (i = 0; i < cdata->cpt_num_devs; i++) {
653 struct sti_cpt_ddata *ddata = &cdata->ddata[i];
655 init_waitqueue_head(&ddata->wait);
656 mutex_init(&ddata->lock);
659 ret = pwmchip_add(&pc->chip);
661 clk_unprepare(pc->pwm_clk);
662 clk_unprepare(pc->cpt_clk);
666 platform_set_drvdata(pdev, pc);
671 static void sti_pwm_remove(struct platform_device *pdev)
673 struct sti_pwm_chip *pc = platform_get_drvdata(pdev);
675 pwmchip_remove(&pc->chip);
677 clk_unprepare(pc->pwm_clk);
678 clk_unprepare(pc->cpt_clk);
681 static const struct of_device_id sti_pwm_of_match[] = {
682 { .compatible = "st,sti-pwm", },
685 MODULE_DEVICE_TABLE(of, sti_pwm_of_match);
687 static struct platform_driver sti_pwm_driver = {
690 .of_match_table = sti_pwm_of_match,
692 .probe = sti_pwm_probe,
693 .remove_new = sti_pwm_remove,
695 module_platform_driver(sti_pwm_driver);
697 MODULE_AUTHOR("Ajit Pal Singh <ajitpal.singh@st.com>");
698 MODULE_DESCRIPTION("STMicroelectronics ST PWM driver");
699 MODULE_LICENSE("GPL");