1 // SPDX-License-Identifier: GPL-2.0
3 * STM32 Low-Power Timer PWM driver
5 * Copyright (C) STMicroelectronics 2017
9 * Inspired by Gerald Baeza's pwm-stm32 driver
12 #include <linux/bitfield.h>
13 #include <linux/mfd/stm32-lptimer.h>
14 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/pwm.h>
22 struct regmap *regmap;
25 static inline struct stm32_pwm_lp *to_stm32_pwm_lp(struct pwm_chip *chip)
27 return container_of(chip, struct stm32_pwm_lp, chip);
30 /* STM32 Low-Power Timer is preceded by a configurable power-of-2 prescaler */
31 #define STM32_LPTIM_MAX_PRESCALER 128
33 static int stm32_pwm_lp_apply(struct pwm_chip *chip, struct pwm_device *pwm,
34 struct pwm_state *state)
36 struct stm32_pwm_lp *priv = to_stm32_pwm_lp(chip);
37 unsigned long long prd, div, dty;
38 struct pwm_state cstate;
39 u32 val, mask, cfgr, presc = 0;
43 pwm_get_state(pwm, &cstate);
44 reenable = !cstate.enabled;
46 if (!state->enabled) {
48 /* Disable LP timer */
49 ret = regmap_write(priv->regmap, STM32_LPTIM_CR, 0);
52 /* disable clock to PWM counter */
53 clk_disable(priv->clk);
58 /* Calculate the period and prescaler value */
59 div = (unsigned long long)clk_get_rate(priv->clk) * state->period;
60 do_div(div, NSEC_PER_SEC);
62 while (div > STM32_LPTIM_MAX_ARR) {
64 if ((1 << presc) > STM32_LPTIM_MAX_PRESCALER) {
65 dev_err(priv->chip.dev, "max prescaler exceeded\n");
72 /* Calculate the duty cycle */
73 dty = prd * state->duty_cycle;
74 do_div(dty, state->period);
76 if (!cstate.enabled) {
77 /* enable clock to drive PWM counter */
78 ret = clk_enable(priv->clk);
83 ret = regmap_read(priv->regmap, STM32_LPTIM_CFGR, &cfgr);
87 if ((FIELD_GET(STM32_LPTIM_PRESC, cfgr) != presc) ||
88 (FIELD_GET(STM32_LPTIM_WAVPOL, cfgr) != state->polarity)) {
89 val = FIELD_PREP(STM32_LPTIM_PRESC, presc);
90 val |= FIELD_PREP(STM32_LPTIM_WAVPOL, state->polarity);
91 mask = STM32_LPTIM_PRESC | STM32_LPTIM_WAVPOL;
93 /* Must disable LP timer to modify CFGR */
95 ret = regmap_write(priv->regmap, STM32_LPTIM_CR, 0);
99 ret = regmap_update_bits(priv->regmap, STM32_LPTIM_CFGR, mask,
106 /* Must (re)enable LP timer to modify CMP & ARR */
107 ret = regmap_write(priv->regmap, STM32_LPTIM_CR,
113 ret = regmap_write(priv->regmap, STM32_LPTIM_ARR, prd - 1);
117 ret = regmap_write(priv->regmap, STM32_LPTIM_CMP, prd - (1 + dty));
121 /* ensure CMP & ARR registers are properly written */
122 ret = regmap_read_poll_timeout(priv->regmap, STM32_LPTIM_ISR, val,
123 (val & STM32_LPTIM_CMPOK_ARROK),
126 dev_err(priv->chip.dev, "ARR/CMP registers write issue\n");
129 ret = regmap_write(priv->regmap, STM32_LPTIM_ICR,
130 STM32_LPTIM_CMPOKCF_ARROKCF);
135 /* Start LP timer in continuous mode */
136 ret = regmap_update_bits(priv->regmap, STM32_LPTIM_CR,
138 STM32_LPTIM_CNTSTRT);
140 regmap_write(priv->regmap, STM32_LPTIM_CR, 0);
148 clk_disable(priv->clk);
153 static void stm32_pwm_lp_get_state(struct pwm_chip *chip,
154 struct pwm_device *pwm,
155 struct pwm_state *state)
157 struct stm32_pwm_lp *priv = to_stm32_pwm_lp(chip);
158 unsigned long rate = clk_get_rate(priv->clk);
162 regmap_read(priv->regmap, STM32_LPTIM_CR, &val);
163 state->enabled = !!FIELD_GET(STM32_LPTIM_ENABLE, val);
164 /* Keep PWM counter clock refcount in sync with PWM initial state */
166 clk_enable(priv->clk);
168 regmap_read(priv->regmap, STM32_LPTIM_CFGR, &val);
169 presc = FIELD_GET(STM32_LPTIM_PRESC, val);
170 state->polarity = FIELD_GET(STM32_LPTIM_WAVPOL, val);
172 regmap_read(priv->regmap, STM32_LPTIM_ARR, &prd);
174 tmp = (tmp << presc) * NSEC_PER_SEC;
175 state->period = DIV_ROUND_CLOSEST_ULL(tmp, rate);
177 regmap_read(priv->regmap, STM32_LPTIM_CMP, &val);
179 tmp = (tmp << presc) * NSEC_PER_SEC;
180 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, rate);
183 static const struct pwm_ops stm32_pwm_lp_ops = {
184 .owner = THIS_MODULE,
185 .apply = stm32_pwm_lp_apply,
186 .get_state = stm32_pwm_lp_get_state,
189 static int stm32_pwm_lp_probe(struct platform_device *pdev)
191 struct stm32_lptimer *ddata = dev_get_drvdata(pdev->dev.parent);
192 struct stm32_pwm_lp *priv;
195 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
199 priv->regmap = ddata->regmap;
200 priv->clk = ddata->clk;
201 priv->chip.base = -1;
202 priv->chip.dev = &pdev->dev;
203 priv->chip.ops = &stm32_pwm_lp_ops;
205 priv->chip.of_xlate = of_pwm_xlate_with_flags;
206 priv->chip.of_pwm_n_cells = 3;
208 ret = pwmchip_add(&priv->chip);
212 platform_set_drvdata(pdev, priv);
217 static int stm32_pwm_lp_remove(struct platform_device *pdev)
219 struct stm32_pwm_lp *priv = platform_get_drvdata(pdev);
222 for (i = 0; i < priv->chip.npwm; i++)
223 pwm_disable(&priv->chip.pwms[i]);
225 return pwmchip_remove(&priv->chip);
228 static const struct of_device_id stm32_pwm_lp_of_match[] = {
229 { .compatible = "st,stm32-pwm-lp", },
232 MODULE_DEVICE_TABLE(of, stm32_pwm_lp_of_match);
234 static struct platform_driver stm32_pwm_lp_driver = {
235 .probe = stm32_pwm_lp_probe,
236 .remove = stm32_pwm_lp_remove,
238 .name = "stm32-pwm-lp",
239 .of_match_table = of_match_ptr(stm32_pwm_lp_of_match),
242 module_platform_driver(stm32_pwm_lp_driver);
244 MODULE_ALIAS("platform:stm32-pwm-lp");
245 MODULE_DESCRIPTION("STMicroelectronics STM32 PWM LP driver");
246 MODULE_LICENSE("GPL v2");