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/iio/iio.h>
15 #include <linux/mfd/stm32-lptimer.h>
16 #include <linux/module.h>
17 #include <linux/platform_device.h>
19 struct stm32_lptim_cnt
{
21 struct regmap
*regmap
;
28 static int stm32_lptim_is_enabled(struct stm32_lptim_cnt
*priv
)
33 ret
= regmap_read(priv
->regmap
, STM32_LPTIM_CR
, &val
);
37 return FIELD_GET(STM32_LPTIM_ENABLE
, val
);
40 static int stm32_lptim_set_enable_state(struct stm32_lptim_cnt
*priv
,
46 val
= FIELD_PREP(STM32_LPTIM_ENABLE
, enable
);
47 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_CR
, val
);
52 clk_disable(priv
->clk
);
56 /* LP timer must be enabled before writing CMP & ARR */
57 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_ARR
, priv
->preset
);
61 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_CMP
, 0);
65 /* ensure CMP & ARR registers are properly written */
66 ret
= regmap_read_poll_timeout(priv
->regmap
, STM32_LPTIM_ISR
, val
,
67 (val
& STM32_LPTIM_CMPOK_ARROK
),
72 ret
= regmap_write(priv
->regmap
, STM32_LPTIM_ICR
,
73 STM32_LPTIM_CMPOKCF_ARROKCF
);
77 ret
= clk_enable(priv
->clk
);
79 regmap_write(priv
->regmap
, STM32_LPTIM_CR
, 0);
83 /* Start LP timer in continuous mode */
84 return regmap_update_bits(priv
->regmap
, STM32_LPTIM_CR
,
85 STM32_LPTIM_CNTSTRT
, STM32_LPTIM_CNTSTRT
);
88 static int stm32_lptim_setup(struct stm32_lptim_cnt
*priv
, int enable
)
90 u32 mask
= STM32_LPTIM_ENC
| STM32_LPTIM_COUNTMODE
|
91 STM32_LPTIM_CKPOL
| STM32_LPTIM_PRESC
;
94 /* Setup LP timer encoder/counter and polarity, without prescaler */
95 if (priv
->quadrature_mode
)
96 val
= enable
? STM32_LPTIM_ENC
: 0;
98 val
= enable
? STM32_LPTIM_COUNTMODE
: 0;
99 val
|= FIELD_PREP(STM32_LPTIM_CKPOL
, enable
? priv
->polarity
: 0);
101 return regmap_update_bits(priv
->regmap
, STM32_LPTIM_CFGR
, mask
, val
);
104 static int stm32_lptim_write_raw(struct iio_dev
*indio_dev
,
105 struct iio_chan_spec
const *chan
,
106 int val
, int val2
, long mask
)
108 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
112 case IIO_CHAN_INFO_ENABLE
:
113 if (val
< 0 || val
> 1)
116 /* Check nobody uses the timer, or already disabled/enabled */
117 ret
= stm32_lptim_is_enabled(priv
);
118 if ((ret
< 0) || (!ret
&& !val
))
123 ret
= stm32_lptim_setup(priv
, val
);
126 return stm32_lptim_set_enable_state(priv
, val
);
133 static int stm32_lptim_read_raw(struct iio_dev
*indio_dev
,
134 struct iio_chan_spec
const *chan
,
135 int *val
, int *val2
, long mask
)
137 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
142 case IIO_CHAN_INFO_RAW
:
143 ret
= regmap_read(priv
->regmap
, STM32_LPTIM_CNT
, &dat
);
149 case IIO_CHAN_INFO_ENABLE
:
150 ret
= stm32_lptim_is_enabled(priv
);
156 case IIO_CHAN_INFO_SCALE
:
157 /* Non-quadrature mode: scale = 1 */
160 if (priv
->quadrature_mode
) {
162 * Quadrature encoder mode:
163 * - both edges, quarter cycle, scale is 0.25
164 * - either rising/falling edge scale is 0.5
166 if (priv
->polarity
> 1)
171 return IIO_VAL_FRACTIONAL_LOG2
;
178 static const struct iio_info stm32_lptim_cnt_iio_info
= {
179 .read_raw
= stm32_lptim_read_raw
,
180 .write_raw
= stm32_lptim_write_raw
,
183 static const char *const stm32_lptim_quadrature_modes
[] = {
188 static int stm32_lptim_get_quadrature_mode(struct iio_dev
*indio_dev
,
189 const struct iio_chan_spec
*chan
)
191 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
193 return priv
->quadrature_mode
;
196 static int stm32_lptim_set_quadrature_mode(struct iio_dev
*indio_dev
,
197 const struct iio_chan_spec
*chan
,
200 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
202 if (stm32_lptim_is_enabled(priv
))
205 priv
->quadrature_mode
= type
;
210 static const struct iio_enum stm32_lptim_quadrature_mode_en
= {
211 .items
= stm32_lptim_quadrature_modes
,
212 .num_items
= ARRAY_SIZE(stm32_lptim_quadrature_modes
),
213 .get
= stm32_lptim_get_quadrature_mode
,
214 .set
= stm32_lptim_set_quadrature_mode
,
217 static const char * const stm32_lptim_cnt_polarity
[] = {
218 "rising-edge", "falling-edge", "both-edges",
221 static int stm32_lptim_cnt_get_polarity(struct iio_dev
*indio_dev
,
222 const struct iio_chan_spec
*chan
)
224 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
226 return priv
->polarity
;
229 static int stm32_lptim_cnt_set_polarity(struct iio_dev
*indio_dev
,
230 const struct iio_chan_spec
*chan
,
233 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
235 if (stm32_lptim_is_enabled(priv
))
238 priv
->polarity
= type
;
243 static const struct iio_enum stm32_lptim_cnt_polarity_en
= {
244 .items
= stm32_lptim_cnt_polarity
,
245 .num_items
= ARRAY_SIZE(stm32_lptim_cnt_polarity
),
246 .get
= stm32_lptim_cnt_get_polarity
,
247 .set
= stm32_lptim_cnt_set_polarity
,
250 static ssize_t
stm32_lptim_cnt_get_preset(struct iio_dev
*indio_dev
,
252 const struct iio_chan_spec
*chan
,
255 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
257 return snprintf(buf
, PAGE_SIZE
, "%u\n", priv
->preset
);
260 static ssize_t
stm32_lptim_cnt_set_preset(struct iio_dev
*indio_dev
,
262 const struct iio_chan_spec
*chan
,
263 const char *buf
, size_t len
)
265 struct stm32_lptim_cnt
*priv
= iio_priv(indio_dev
);
268 if (stm32_lptim_is_enabled(priv
))
271 ret
= kstrtouint(buf
, 0, &priv
->preset
);
275 if (priv
->preset
> STM32_LPTIM_MAX_ARR
)
281 /* LP timer with encoder */
282 static const struct iio_chan_spec_ext_info stm32_lptim_enc_ext_info
[] = {
285 .shared
= IIO_SEPARATE
,
286 .read
= stm32_lptim_cnt_get_preset
,
287 .write
= stm32_lptim_cnt_set_preset
,
289 IIO_ENUM("polarity", IIO_SEPARATE
, &stm32_lptim_cnt_polarity_en
),
290 IIO_ENUM_AVAILABLE("polarity", &stm32_lptim_cnt_polarity_en
),
291 IIO_ENUM("quadrature_mode", IIO_SEPARATE
,
292 &stm32_lptim_quadrature_mode_en
),
293 IIO_ENUM_AVAILABLE("quadrature_mode", &stm32_lptim_quadrature_mode_en
),
297 static const struct iio_chan_spec stm32_lptim_enc_channels
= {
300 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
301 BIT(IIO_CHAN_INFO_ENABLE
) |
302 BIT(IIO_CHAN_INFO_SCALE
),
303 .ext_info
= stm32_lptim_enc_ext_info
,
307 /* LP timer without encoder (counter only) */
308 static const struct iio_chan_spec_ext_info stm32_lptim_cnt_ext_info
[] = {
311 .shared
= IIO_SEPARATE
,
312 .read
= stm32_lptim_cnt_get_preset
,
313 .write
= stm32_lptim_cnt_set_preset
,
315 IIO_ENUM("polarity", IIO_SEPARATE
, &stm32_lptim_cnt_polarity_en
),
316 IIO_ENUM_AVAILABLE("polarity", &stm32_lptim_cnt_polarity_en
),
320 static const struct iio_chan_spec stm32_lptim_cnt_channels
= {
323 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
324 BIT(IIO_CHAN_INFO_ENABLE
) |
325 BIT(IIO_CHAN_INFO_SCALE
),
326 .ext_info
= stm32_lptim_cnt_ext_info
,
330 static int stm32_lptim_cnt_probe(struct platform_device
*pdev
)
332 struct stm32_lptimer
*ddata
= dev_get_drvdata(pdev
->dev
.parent
);
333 struct stm32_lptim_cnt
*priv
;
334 struct iio_dev
*indio_dev
;
336 if (IS_ERR_OR_NULL(ddata
))
339 indio_dev
= devm_iio_device_alloc(&pdev
->dev
, sizeof(*priv
));
343 priv
= iio_priv(indio_dev
);
344 priv
->dev
= &pdev
->dev
;
345 priv
->regmap
= ddata
->regmap
;
346 priv
->clk
= ddata
->clk
;
347 priv
->preset
= STM32_LPTIM_MAX_ARR
;
349 indio_dev
->name
= dev_name(&pdev
->dev
);
350 indio_dev
->dev
.parent
= &pdev
->dev
;
351 indio_dev
->dev
.of_node
= pdev
->dev
.of_node
;
352 indio_dev
->info
= &stm32_lptim_cnt_iio_info
;
353 if (ddata
->has_encoder
)
354 indio_dev
->channels
= &stm32_lptim_enc_channels
;
356 indio_dev
->channels
= &stm32_lptim_cnt_channels
;
357 indio_dev
->num_channels
= 1;
359 platform_set_drvdata(pdev
, priv
);
361 return devm_iio_device_register(&pdev
->dev
, indio_dev
);
364 static const struct of_device_id stm32_lptim_cnt_of_match
[] = {
365 { .compatible
= "st,stm32-lptimer-counter", },
368 MODULE_DEVICE_TABLE(of
, stm32_lptim_cnt_of_match
);
370 static struct platform_driver stm32_lptim_cnt_driver
= {
371 .probe
= stm32_lptim_cnt_probe
,
373 .name
= "stm32-lptimer-counter",
374 .of_match_table
= stm32_lptim_cnt_of_match
,
377 module_platform_driver(stm32_lptim_cnt_driver
);
379 MODULE_AUTHOR("Fabrice Gasnier <fabrice.gasnier@st.com>");
380 MODULE_ALIAS("platform:stm32-lptimer-counter");
381 MODULE_DESCRIPTION("STMicroelectronics STM32 LPTIM counter driver");
382 MODULE_LICENSE("GPL v2");