2 * STM32 Low-Power Timer parent driver.
4 * Copyright (C) STMicroelectronics 2017
6 * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
8 * Inspired by Benjamin Gaignard's stm32-timers driver
10 * License terms: GNU General Public License (GPL), version 2
13 #include <linux/mfd/stm32-lptimer.h>
14 #include <linux/module.h>
15 #include <linux/of_platform.h>
17 #define STM32_LPTIM_MAX_REGISTER 0x3fc
19 static const struct regmap_config stm32_lptimer_regmap_cfg
= {
22 .reg_stride
= sizeof(u32
),
23 .max_register
= STM32_LPTIM_MAX_REGISTER
,
26 static int stm32_lptimer_detect_encoder(struct stm32_lptimer
*ddata
)
32 * Quadrature encoder mode bit can only be written and read back when
33 * Low-Power Timer supports it.
35 ret
= regmap_update_bits(ddata
->regmap
, STM32_LPTIM_CFGR
,
36 STM32_LPTIM_ENC
, STM32_LPTIM_ENC
);
40 ret
= regmap_read(ddata
->regmap
, STM32_LPTIM_CFGR
, &val
);
44 ret
= regmap_update_bits(ddata
->regmap
, STM32_LPTIM_CFGR
,
49 ddata
->has_encoder
= !!(val
& STM32_LPTIM_ENC
);
54 static int stm32_lptimer_probe(struct platform_device
*pdev
)
56 struct device
*dev
= &pdev
->dev
;
57 struct stm32_lptimer
*ddata
;
62 ddata
= devm_kzalloc(dev
, sizeof(*ddata
), GFP_KERNEL
);
66 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
67 mmio
= devm_ioremap_resource(dev
, res
);
71 ddata
->regmap
= devm_regmap_init_mmio_clk(dev
, "mux", mmio
,
72 &stm32_lptimer_regmap_cfg
);
73 if (IS_ERR(ddata
->regmap
))
74 return PTR_ERR(ddata
->regmap
);
76 ddata
->clk
= devm_clk_get(dev
, NULL
);
77 if (IS_ERR(ddata
->clk
))
78 return PTR_ERR(ddata
->clk
);
80 ret
= stm32_lptimer_detect_encoder(ddata
);
84 platform_set_drvdata(pdev
, ddata
);
86 return devm_of_platform_populate(&pdev
->dev
);
89 static const struct of_device_id stm32_lptimer_of_match
[] = {
90 { .compatible
= "st,stm32-lptimer", },
93 MODULE_DEVICE_TABLE(of
, stm32_lptimer_of_match
);
95 static struct platform_driver stm32_lptimer_driver
= {
96 .probe
= stm32_lptimer_probe
,
98 .name
= "stm32-lptimer",
99 .of_match_table
= stm32_lptimer_of_match
,
102 module_platform_driver(stm32_lptimer_driver
);
104 MODULE_AUTHOR("Fabrice Gasnier <fabrice.gasnier@st.com>");
105 MODULE_DESCRIPTION("STMicroelectronics STM32 Low-Power Timer");
106 MODULE_ALIAS("platform:stm32-lptimer");
107 MODULE_LICENSE("GPL v2");