1 // SPDX-License-Identifier: GPL-2.0
3 * STM32 Low-Power Timer parent driver.
4 * Copyright (C) STMicroelectronics 2017
5 * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
6 * Inspired by Benjamin Gaignard's stm32-timers driver
9 #include <linux/mfd/stm32-lptimer.h>
10 #include <linux/module.h>
11 #include <linux/of_platform.h>
12 #include <linux/platform_device.h>
14 #define STM32_LPTIM_MAX_REGISTER 0x3fc
16 static const struct regmap_config stm32_lptimer_regmap_cfg
= {
19 .reg_stride
= sizeof(u32
),
20 .max_register
= STM32_LPTIM_MAX_REGISTER
,
24 static int stm32_lptimer_detect_encoder(struct stm32_lptimer
*ddata
)
30 * Quadrature encoder mode bit can only be written and read back when
31 * Low-Power Timer supports it.
33 ret
= regmap_update_bits(ddata
->regmap
, STM32_LPTIM_CFGR
,
34 STM32_LPTIM_ENC
, STM32_LPTIM_ENC
);
38 ret
= regmap_read(ddata
->regmap
, STM32_LPTIM_CFGR
, &val
);
42 ret
= regmap_update_bits(ddata
->regmap
, STM32_LPTIM_CFGR
,
47 ddata
->has_encoder
= !!(val
& STM32_LPTIM_ENC
);
52 static int stm32_lptimer_probe(struct platform_device
*pdev
)
54 struct device
*dev
= &pdev
->dev
;
55 struct stm32_lptimer
*ddata
;
59 ddata
= devm_kzalloc(dev
, sizeof(*ddata
), GFP_KERNEL
);
63 mmio
= devm_platform_get_and_ioremap_resource(pdev
, 0, NULL
);
67 ddata
->regmap
= devm_regmap_init_mmio_clk(dev
, "mux", mmio
,
68 &stm32_lptimer_regmap_cfg
);
69 if (IS_ERR(ddata
->regmap
))
70 return PTR_ERR(ddata
->regmap
);
72 ddata
->clk
= devm_clk_get(dev
, NULL
);
73 if (IS_ERR(ddata
->clk
))
74 return PTR_ERR(ddata
->clk
);
76 ret
= stm32_lptimer_detect_encoder(ddata
);
80 platform_set_drvdata(pdev
, ddata
);
82 return devm_of_platform_populate(&pdev
->dev
);
85 static const struct of_device_id stm32_lptimer_of_match
[] = {
86 { .compatible
= "st,stm32-lptimer", },
89 MODULE_DEVICE_TABLE(of
, stm32_lptimer_of_match
);
91 static struct platform_driver stm32_lptimer_driver
= {
92 .probe
= stm32_lptimer_probe
,
94 .name
= "stm32-lptimer",
95 .of_match_table
= stm32_lptimer_of_match
,
98 module_platform_driver(stm32_lptimer_driver
);
100 MODULE_AUTHOR("Fabrice Gasnier <fabrice.gasnier@st.com>");
101 MODULE_DESCRIPTION("STMicroelectronics STM32 Low-Power Timer");
102 MODULE_ALIAS("platform:stm32-lptimer");
103 MODULE_LICENSE("GPL v2");