1 // SPDX-License-Identifier: GPL-2.0
3 * STM32 Low-Power Timer Encoder and Counter driver
5 * Copyright (C) STMicroelectronics 2017
7 * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
9 * Inspired by 104-quad-8 and stm32-timer-trigger drivers.
13 #include <linux/bitfield.h>
14 #include <linux/counter.h>
15 #include <linux/mfd/stm32-lptimer.h>
16 #include <linux/mod_devicetable.h>
17 #include <linux/module.h>
18 #include <linux/pinctrl/consumer.h>
19 #include <linux/platform_device.h>
20 #include <linux/types.h>
22 struct stm32_lptim_cnt {
24 struct regmap *regmap;
32 static int stm32_lptim_is_enabled(struct stm32_lptim_cnt *priv)
37 ret = regmap_read(priv->regmap, STM32_LPTIM_CR, &val);
41 return FIELD_GET(STM32_LPTIM_ENABLE, val);
44 static int stm32_lptim_set_enable_state(struct stm32_lptim_cnt *priv,
50 val = FIELD_PREP(STM32_LPTIM_ENABLE, enable);
51 ret = regmap_write(priv->regmap, STM32_LPTIM_CR, val);
56 clk_disable(priv->clk);
57 priv->enabled = false;
61 /* LP timer must be enabled before writing CMP & ARR */
62 ret = regmap_write(priv->regmap, STM32_LPTIM_ARR, priv->ceiling);
66 ret = regmap_write(priv->regmap, STM32_LPTIM_CMP, 0);
70 /* ensure CMP & ARR registers are properly written */
71 ret = regmap_read_poll_timeout(priv->regmap, STM32_LPTIM_ISR, val,
72 (val & STM32_LPTIM_CMPOK_ARROK) == STM32_LPTIM_CMPOK_ARROK,
77 ret = regmap_write(priv->regmap, STM32_LPTIM_ICR,
78 STM32_LPTIM_CMPOKCF_ARROKCF);
82 ret = clk_enable(priv->clk);
84 regmap_write(priv->regmap, STM32_LPTIM_CR, 0);
89 /* Start LP timer in continuous mode */
90 return regmap_update_bits(priv->regmap, STM32_LPTIM_CR,
91 STM32_LPTIM_CNTSTRT, STM32_LPTIM_CNTSTRT);
94 static int stm32_lptim_setup(struct stm32_lptim_cnt *priv, int enable)
96 u32 mask = STM32_LPTIM_ENC | STM32_LPTIM_COUNTMODE |
97 STM32_LPTIM_CKPOL | STM32_LPTIM_PRESC;
100 /* Setup LP timer encoder/counter and polarity, without prescaler */
101 if (priv->quadrature_mode)
102 val = enable ? STM32_LPTIM_ENC : 0;
104 val = enable ? STM32_LPTIM_COUNTMODE : 0;
105 val |= FIELD_PREP(STM32_LPTIM_CKPOL, enable ? priv->polarity : 0);
107 return regmap_update_bits(priv->regmap, STM32_LPTIM_CFGR, mask, val);
111 * In non-quadrature mode, device counts up on active edge.
112 * In quadrature mode, encoder counting scenarios are as follows:
113 * +---------+----------+--------------------+--------------------+
114 * | Active | Level on | IN1 signal | IN2 signal |
115 * | edge | opposite +----------+---------+----------+---------+
116 * | | signal | Rising | Falling | Rising | Falling |
117 * +---------+----------+----------+---------+----------+---------+
118 * | Rising | High -> | Down | - | Up | - |
119 * | edge | Low -> | Up | - | Down | - |
120 * +---------+----------+----------+---------+----------+---------+
121 * | Falling | High -> | - | Up | - | Down |
122 * | edge | Low -> | - | Down | - | Up |
123 * +---------+----------+----------+---------+----------+---------+
124 * | Both | High -> | Down | Up | Up | Down |
125 * | edges | Low -> | Up | Down | Down | Up |
126 * +---------+----------+----------+---------+----------+---------+
128 static const enum counter_function stm32_lptim_cnt_functions[] = {
129 COUNTER_FUNCTION_INCREASE,
130 COUNTER_FUNCTION_QUADRATURE_X4,
133 static const enum counter_synapse_action stm32_lptim_cnt_synapse_actions[] = {
134 COUNTER_SYNAPSE_ACTION_RISING_EDGE,
135 COUNTER_SYNAPSE_ACTION_FALLING_EDGE,
136 COUNTER_SYNAPSE_ACTION_BOTH_EDGES,
137 COUNTER_SYNAPSE_ACTION_NONE,
140 static int stm32_lptim_cnt_read(struct counter_device *counter,
141 struct counter_count *count, u64 *val)
143 struct stm32_lptim_cnt *const priv = counter_priv(counter);
147 ret = regmap_read(priv->regmap, STM32_LPTIM_CNT, &cnt);
156 static int stm32_lptim_cnt_function_read(struct counter_device *counter,
157 struct counter_count *count,
158 enum counter_function *function)
160 struct stm32_lptim_cnt *const priv = counter_priv(counter);
162 if (!priv->quadrature_mode) {
163 *function = COUNTER_FUNCTION_INCREASE;
167 if (priv->polarity == STM32_LPTIM_CKPOL_BOTH_EDGES) {
168 *function = COUNTER_FUNCTION_QUADRATURE_X4;
175 static int stm32_lptim_cnt_function_write(struct counter_device *counter,
176 struct counter_count *count,
177 enum counter_function function)
179 struct stm32_lptim_cnt *const priv = counter_priv(counter);
181 if (stm32_lptim_is_enabled(priv))
185 case COUNTER_FUNCTION_INCREASE:
186 priv->quadrature_mode = 0;
188 case COUNTER_FUNCTION_QUADRATURE_X4:
189 priv->quadrature_mode = 1;
190 priv->polarity = STM32_LPTIM_CKPOL_BOTH_EDGES;
193 /* should never reach this path */
198 static int stm32_lptim_cnt_enable_read(struct counter_device *counter,
199 struct counter_count *count,
202 struct stm32_lptim_cnt *const priv = counter_priv(counter);
205 ret = stm32_lptim_is_enabled(priv);
214 static int stm32_lptim_cnt_enable_write(struct counter_device *counter,
215 struct counter_count *count,
218 struct stm32_lptim_cnt *const priv = counter_priv(counter);
221 /* Check nobody uses the timer, or already disabled/enabled */
222 ret = stm32_lptim_is_enabled(priv);
223 if ((ret < 0) || (!ret && !enable))
228 ret = stm32_lptim_setup(priv, enable);
232 ret = stm32_lptim_set_enable_state(priv, enable);
239 static int stm32_lptim_cnt_ceiling_read(struct counter_device *counter,
240 struct counter_count *count,
243 struct stm32_lptim_cnt *const priv = counter_priv(counter);
245 *ceiling = priv->ceiling;
250 static int stm32_lptim_cnt_ceiling_write(struct counter_device *counter,
251 struct counter_count *count,
254 struct stm32_lptim_cnt *const priv = counter_priv(counter);
256 if (stm32_lptim_is_enabled(priv))
259 if (ceiling > STM32_LPTIM_MAX_ARR)
262 priv->ceiling = ceiling;
267 static struct counter_comp stm32_lptim_cnt_ext[] = {
268 COUNTER_COMP_ENABLE(stm32_lptim_cnt_enable_read,
269 stm32_lptim_cnt_enable_write),
270 COUNTER_COMP_CEILING(stm32_lptim_cnt_ceiling_read,
271 stm32_lptim_cnt_ceiling_write),
274 static int stm32_lptim_cnt_action_read(struct counter_device *counter,
275 struct counter_count *count,
276 struct counter_synapse *synapse,
277 enum counter_synapse_action *action)
279 struct stm32_lptim_cnt *const priv = counter_priv(counter);
280 enum counter_function function;
283 err = stm32_lptim_cnt_function_read(counter, count, &function);
288 case COUNTER_FUNCTION_INCREASE:
289 /* LP Timer acts as up-counter on input 1 */
290 if (synapse->signal->id != count->synapses[0].signal->id) {
291 *action = COUNTER_SYNAPSE_ACTION_NONE;
295 switch (priv->polarity) {
296 case STM32_LPTIM_CKPOL_RISING_EDGE:
297 *action = COUNTER_SYNAPSE_ACTION_RISING_EDGE;
299 case STM32_LPTIM_CKPOL_FALLING_EDGE:
300 *action = COUNTER_SYNAPSE_ACTION_FALLING_EDGE;
302 case STM32_LPTIM_CKPOL_BOTH_EDGES:
303 *action = COUNTER_SYNAPSE_ACTION_BOTH_EDGES;
306 /* should never reach this path */
309 case COUNTER_FUNCTION_QUADRATURE_X4:
310 *action = COUNTER_SYNAPSE_ACTION_BOTH_EDGES;
313 /* should never reach this path */
318 static int stm32_lptim_cnt_action_write(struct counter_device *counter,
319 struct counter_count *count,
320 struct counter_synapse *synapse,
321 enum counter_synapse_action action)
323 struct stm32_lptim_cnt *const priv = counter_priv(counter);
324 enum counter_function function;
327 if (stm32_lptim_is_enabled(priv))
330 err = stm32_lptim_cnt_function_read(counter, count, &function);
334 /* only set polarity when in counter mode (on input 1) */
335 if (function != COUNTER_FUNCTION_INCREASE
336 || synapse->signal->id != count->synapses[0].signal->id)
340 case COUNTER_SYNAPSE_ACTION_RISING_EDGE:
341 priv->polarity = STM32_LPTIM_CKPOL_RISING_EDGE;
343 case COUNTER_SYNAPSE_ACTION_FALLING_EDGE:
344 priv->polarity = STM32_LPTIM_CKPOL_FALLING_EDGE;
346 case COUNTER_SYNAPSE_ACTION_BOTH_EDGES:
347 priv->polarity = STM32_LPTIM_CKPOL_BOTH_EDGES;
354 static const struct counter_ops stm32_lptim_cnt_ops = {
355 .count_read = stm32_lptim_cnt_read,
356 .function_read = stm32_lptim_cnt_function_read,
357 .function_write = stm32_lptim_cnt_function_write,
358 .action_read = stm32_lptim_cnt_action_read,
359 .action_write = stm32_lptim_cnt_action_write,
362 static struct counter_signal stm32_lptim_cnt_signals[] = {
365 .name = "Channel 1 Quadrature A"
369 .name = "Channel 1 Quadrature B"
373 static struct counter_synapse stm32_lptim_cnt_synapses[] = {
375 .actions_list = stm32_lptim_cnt_synapse_actions,
376 .num_actions = ARRAY_SIZE(stm32_lptim_cnt_synapse_actions),
377 .signal = &stm32_lptim_cnt_signals[0]
380 .actions_list = stm32_lptim_cnt_synapse_actions,
381 .num_actions = ARRAY_SIZE(stm32_lptim_cnt_synapse_actions),
382 .signal = &stm32_lptim_cnt_signals[1]
386 /* LP timer with encoder */
387 static struct counter_count stm32_lptim_enc_counts = {
389 .name = "LPTimer Count",
390 .functions_list = stm32_lptim_cnt_functions,
391 .num_functions = ARRAY_SIZE(stm32_lptim_cnt_functions),
392 .synapses = stm32_lptim_cnt_synapses,
393 .num_synapses = ARRAY_SIZE(stm32_lptim_cnt_synapses),
394 .ext = stm32_lptim_cnt_ext,
395 .num_ext = ARRAY_SIZE(stm32_lptim_cnt_ext)
398 /* LP timer without encoder (counter only) */
399 static struct counter_count stm32_lptim_in1_counts = {
401 .name = "LPTimer Count",
402 .functions_list = stm32_lptim_cnt_functions,
404 .synapses = stm32_lptim_cnt_synapses,
406 .ext = stm32_lptim_cnt_ext,
407 .num_ext = ARRAY_SIZE(stm32_lptim_cnt_ext)
410 static int stm32_lptim_cnt_probe(struct platform_device *pdev)
412 struct stm32_lptimer *ddata = dev_get_drvdata(pdev->dev.parent);
413 struct counter_device *counter;
414 struct stm32_lptim_cnt *priv;
417 if (IS_ERR_OR_NULL(ddata))
420 counter = devm_counter_alloc(&pdev->dev, sizeof(*priv));
423 priv = counter_priv(counter);
425 priv->dev = &pdev->dev;
426 priv->regmap = ddata->regmap;
427 priv->clk = ddata->clk;
428 priv->ceiling = STM32_LPTIM_MAX_ARR;
430 /* Initialize Counter device */
431 counter->name = dev_name(&pdev->dev);
432 counter->parent = &pdev->dev;
433 counter->ops = &stm32_lptim_cnt_ops;
434 if (ddata->has_encoder) {
435 counter->counts = &stm32_lptim_enc_counts;
436 counter->num_signals = ARRAY_SIZE(stm32_lptim_cnt_signals);
438 counter->counts = &stm32_lptim_in1_counts;
439 counter->num_signals = 1;
441 counter->num_counts = 1;
442 counter->signals = stm32_lptim_cnt_signals;
444 platform_set_drvdata(pdev, priv);
446 ret = devm_counter_add(&pdev->dev, counter);
448 return dev_err_probe(&pdev->dev, ret, "Failed to add counter\n");
453 #ifdef CONFIG_PM_SLEEP
454 static int stm32_lptim_cnt_suspend(struct device *dev)
456 struct stm32_lptim_cnt *priv = dev_get_drvdata(dev);
459 /* Only take care of enabled counter: don't disturb other MFD child */
461 ret = stm32_lptim_setup(priv, 0);
465 ret = stm32_lptim_set_enable_state(priv, 0);
469 /* Force enable state for later resume */
470 priv->enabled = true;
473 return pinctrl_pm_select_sleep_state(dev);
476 static int stm32_lptim_cnt_resume(struct device *dev)
478 struct stm32_lptim_cnt *priv = dev_get_drvdata(dev);
481 ret = pinctrl_pm_select_default_state(dev);
486 priv->enabled = false;
487 ret = stm32_lptim_setup(priv, 1);
491 ret = stm32_lptim_set_enable_state(priv, 1);
500 static SIMPLE_DEV_PM_OPS(stm32_lptim_cnt_pm_ops, stm32_lptim_cnt_suspend,
501 stm32_lptim_cnt_resume);
503 static const struct of_device_id stm32_lptim_cnt_of_match[] = {
504 { .compatible = "st,stm32-lptimer-counter", },
507 MODULE_DEVICE_TABLE(of, stm32_lptim_cnt_of_match);
509 static struct platform_driver stm32_lptim_cnt_driver = {
510 .probe = stm32_lptim_cnt_probe,
512 .name = "stm32-lptimer-counter",
513 .of_match_table = stm32_lptim_cnt_of_match,
514 .pm = &stm32_lptim_cnt_pm_ops,
517 module_platform_driver(stm32_lptim_cnt_driver);
519 MODULE_AUTHOR("Fabrice Gasnier <fabrice.gasnier@st.com>");
520 MODULE_ALIAS("platform:stm32-lptimer-counter");
521 MODULE_DESCRIPTION("STMicroelectronics STM32 LPTIM counter driver");
522 MODULE_LICENSE("GPL v2");
523 MODULE_IMPORT_NS(COUNTER);