1 // SPDX-License-Identifier: GPL-2.0
3 * STM32 Low-Power Timer PWM driver
5 * Copyright (C) STMicroelectronics 2017
7 * Author: Gerald Baeza <gerald.baeza@st.com>
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/pinctrl/consumer.h>
17 #include <linux/platform_device.h>
18 #include <linux/pwm.h>
23 struct regmap
*regmap
;
26 static inline struct stm32_pwm_lp
*to_stm32_pwm_lp(struct pwm_chip
*chip
)
28 return container_of(chip
, struct stm32_pwm_lp
, chip
);
31 /* STM32 Low-Power Timer is preceded by a configurable power-of-2 prescaler */
32 #define STM32_LPTIM_MAX_PRESCALER 128
34 static int stm32_pwm_lp_apply(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
35 const struct pwm_state
*state
)
37 struct stm32_pwm_lp
*priv
= to_stm32_pwm_lp(chip
);
38 unsigned long long prd
, div
, dty
;
39 struct pwm_state cstate
;
40 u32 val
, mask
, cfgr
, presc
= 0;
44 pwm_get_state(pwm
, &cstate
);
45 reenable
= !cstate
.enabled
;
47 if (!state
->enabled
) {
49 /* Disable LP timer */
50 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_CR
, 0);
53 /* disable clock to PWM counter */
54 clk_disable(priv
->clk
);
59 /* Calculate the period and prescaler value */
60 div
= (unsigned long long)clk_get_rate(priv
->clk
) * state
->period
;
61 do_div(div
, NSEC_PER_SEC
);
63 /* Clock is too slow to achieve requested period. */
64 dev_dbg(priv
->chip
.dev
, "Can't reach %llu ns\n", state
->period
);
69 while (div
> STM32_LPTIM_MAX_ARR
) {
71 if ((1 << presc
) > STM32_LPTIM_MAX_PRESCALER
) {
72 dev_err(priv
->chip
.dev
, "max prescaler exceeded\n");
79 /* Calculate the duty cycle */
80 dty
= prd
* state
->duty_cycle
;
81 do_div(dty
, state
->period
);
83 if (!cstate
.enabled
) {
84 /* enable clock to drive PWM counter */
85 ret
= clk_enable(priv
->clk
);
90 ret
= regmap_read(priv
->regmap
, STM32_LPTIM_CFGR
, &cfgr
);
94 if ((FIELD_GET(STM32_LPTIM_PRESC
, cfgr
) != presc
) ||
95 (FIELD_GET(STM32_LPTIM_WAVPOL
, cfgr
) != state
->polarity
)) {
96 val
= FIELD_PREP(STM32_LPTIM_PRESC
, presc
);
97 val
|= FIELD_PREP(STM32_LPTIM_WAVPOL
, state
->polarity
);
98 mask
= STM32_LPTIM_PRESC
| STM32_LPTIM_WAVPOL
;
100 /* Must disable LP timer to modify CFGR */
102 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_CR
, 0);
106 ret
= regmap_update_bits(priv
->regmap
, STM32_LPTIM_CFGR
, mask
,
113 /* Must (re)enable LP timer to modify CMP & ARR */
114 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_CR
,
120 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_ARR
, prd
- 1);
124 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_CMP
, prd
- (1 + dty
));
128 /* ensure CMP & ARR registers are properly written */
129 ret
= regmap_read_poll_timeout(priv
->regmap
, STM32_LPTIM_ISR
, val
,
130 (val
& STM32_LPTIM_CMPOK_ARROK
),
133 dev_err(priv
->chip
.dev
, "ARR/CMP registers write issue\n");
136 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_ICR
,
137 STM32_LPTIM_CMPOKCF_ARROKCF
);
142 /* Start LP timer in continuous mode */
143 ret
= regmap_update_bits(priv
->regmap
, STM32_LPTIM_CR
,
145 STM32_LPTIM_CNTSTRT
);
147 regmap_write(priv
->regmap
, STM32_LPTIM_CR
, 0);
155 clk_disable(priv
->clk
);
160 static void stm32_pwm_lp_get_state(struct pwm_chip
*chip
,
161 struct pwm_device
*pwm
,
162 struct pwm_state
*state
)
164 struct stm32_pwm_lp
*priv
= to_stm32_pwm_lp(chip
);
165 unsigned long rate
= clk_get_rate(priv
->clk
);
169 regmap_read(priv
->regmap
, STM32_LPTIM_CR
, &val
);
170 state
->enabled
= !!FIELD_GET(STM32_LPTIM_ENABLE
, val
);
171 /* Keep PWM counter clock refcount in sync with PWM initial state */
173 clk_enable(priv
->clk
);
175 regmap_read(priv
->regmap
, STM32_LPTIM_CFGR
, &val
);
176 presc
= FIELD_GET(STM32_LPTIM_PRESC
, val
);
177 state
->polarity
= FIELD_GET(STM32_LPTIM_WAVPOL
, val
);
179 regmap_read(priv
->regmap
, STM32_LPTIM_ARR
, &prd
);
181 tmp
= (tmp
<< presc
) * NSEC_PER_SEC
;
182 state
->period
= DIV_ROUND_CLOSEST_ULL(tmp
, rate
);
184 regmap_read(priv
->regmap
, STM32_LPTIM_CMP
, &val
);
186 tmp
= (tmp
<< presc
) * NSEC_PER_SEC
;
187 state
->duty_cycle
= DIV_ROUND_CLOSEST_ULL(tmp
, rate
);
190 static const struct pwm_ops stm32_pwm_lp_ops
= {
191 .owner
= THIS_MODULE
,
192 .apply
= stm32_pwm_lp_apply
,
193 .get_state
= stm32_pwm_lp_get_state
,
196 static int stm32_pwm_lp_probe(struct platform_device
*pdev
)
198 struct stm32_lptimer
*ddata
= dev_get_drvdata(pdev
->dev
.parent
);
199 struct stm32_pwm_lp
*priv
;
202 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
206 priv
->regmap
= ddata
->regmap
;
207 priv
->clk
= ddata
->clk
;
208 priv
->chip
.base
= -1;
209 priv
->chip
.dev
= &pdev
->dev
;
210 priv
->chip
.ops
= &stm32_pwm_lp_ops
;
212 priv
->chip
.of_xlate
= of_pwm_xlate_with_flags
;
213 priv
->chip
.of_pwm_n_cells
= 3;
215 ret
= pwmchip_add(&priv
->chip
);
219 platform_set_drvdata(pdev
, priv
);
224 static int stm32_pwm_lp_remove(struct platform_device
*pdev
)
226 struct stm32_pwm_lp
*priv
= platform_get_drvdata(pdev
);
228 pwm_disable(&priv
->chip
.pwms
[0]);
230 return pwmchip_remove(&priv
->chip
);
233 static int __maybe_unused
stm32_pwm_lp_suspend(struct device
*dev
)
235 struct stm32_pwm_lp
*priv
= dev_get_drvdata(dev
);
236 struct pwm_state state
;
238 pwm_get_state(&priv
->chip
.pwms
[0], &state
);
240 dev_err(dev
, "The consumer didn't stop us (%s)\n",
241 priv
->chip
.pwms
[0].label
);
245 return pinctrl_pm_select_sleep_state(dev
);
248 static int __maybe_unused
stm32_pwm_lp_resume(struct device
*dev
)
250 return pinctrl_pm_select_default_state(dev
);
253 static SIMPLE_DEV_PM_OPS(stm32_pwm_lp_pm_ops
, stm32_pwm_lp_suspend
,
254 stm32_pwm_lp_resume
);
256 static const struct of_device_id stm32_pwm_lp_of_match
[] = {
257 { .compatible
= "st,stm32-pwm-lp", },
260 MODULE_DEVICE_TABLE(of
, stm32_pwm_lp_of_match
);
262 static struct platform_driver stm32_pwm_lp_driver
= {
263 .probe
= stm32_pwm_lp_probe
,
264 .remove
= stm32_pwm_lp_remove
,
266 .name
= "stm32-pwm-lp",
267 .of_match_table
= of_match_ptr(stm32_pwm_lp_of_match
),
268 .pm
= &stm32_pwm_lp_pm_ops
,
271 module_platform_driver(stm32_pwm_lp_driver
);
273 MODULE_ALIAS("platform:stm32-pwm-lp");
274 MODULE_DESCRIPTION("STMicroelectronics STM32 PWM LP driver");
275 MODULE_LICENSE("GPL v2");