1 // SPDX-License-Identifier: GPL-2.0
3 * This file is part of STM32 DAC driver
5 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
6 * Author: Fabrice Gasnier <fabrice.gasnier@st.com>.
10 #include <linux/clk.h>
11 #include <linux/delay.h>
12 #include <linux/module.h>
13 #include <linux/of_platform.h>
14 #include <linux/pm_runtime.h>
15 #include <linux/regulator/consumer.h>
16 #include <linux/reset.h>
18 #include "stm32-dac-core.h"
21 * struct stm32_dac_priv - stm32 DAC core private data
22 * @pclk: peripheral clock common for all DACs
23 * @vref: regulator reference
24 * @common: Common data for all DAC instances
26 struct stm32_dac_priv
{
28 struct regulator
*vref
;
29 struct stm32_dac_common common
;
33 * struct stm32_dac_cfg - DAC configuration
34 * @has_hfsel: DAC has high frequency control
36 struct stm32_dac_cfg
{
40 static struct stm32_dac_priv
*to_stm32_dac_priv(struct stm32_dac_common
*com
)
42 return container_of(com
, struct stm32_dac_priv
, common
);
45 static const struct regmap_config stm32_dac_regmap_cfg
= {
48 .reg_stride
= sizeof(u32
),
49 .max_register
= 0x3fc,
52 static int stm32_dac_core_hw_start(struct device
*dev
)
54 struct stm32_dac_common
*common
= dev_get_drvdata(dev
);
55 struct stm32_dac_priv
*priv
= to_stm32_dac_priv(common
);
58 ret
= regulator_enable(priv
->vref
);
60 dev_err(dev
, "vref enable failed: %d\n", ret
);
64 ret
= clk_prepare_enable(priv
->pclk
);
66 dev_err(dev
, "pclk enable failed: %d\n", ret
);
67 goto err_regulator_disable
;
72 err_regulator_disable
:
73 regulator_disable(priv
->vref
);
78 static void stm32_dac_core_hw_stop(struct device
*dev
)
80 struct stm32_dac_common
*common
= dev_get_drvdata(dev
);
81 struct stm32_dac_priv
*priv
= to_stm32_dac_priv(common
);
83 clk_disable_unprepare(priv
->pclk
);
84 regulator_disable(priv
->vref
);
87 static int stm32_dac_probe(struct platform_device
*pdev
)
89 struct device
*dev
= &pdev
->dev
;
90 const struct stm32_dac_cfg
*cfg
;
91 struct stm32_dac_priv
*priv
;
92 struct regmap
*regmap
;
95 struct reset_control
*rst
;
101 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
104 platform_set_drvdata(pdev
, &priv
->common
);
106 cfg
= (const struct stm32_dac_cfg
*)
107 of_match_device(dev
->driver
->of_match_table
, dev
)->data
;
109 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
110 mmio
= devm_ioremap_resource(dev
, res
);
112 return PTR_ERR(mmio
);
114 regmap
= devm_regmap_init_mmio_clk(dev
, "pclk", mmio
,
115 &stm32_dac_regmap_cfg
);
117 return PTR_ERR(regmap
);
118 priv
->common
.regmap
= regmap
;
120 priv
->pclk
= devm_clk_get(dev
, "pclk");
121 if (IS_ERR(priv
->pclk
)) {
122 ret
= PTR_ERR(priv
->pclk
);
123 dev_err(dev
, "pclk get failed\n");
127 priv
->vref
= devm_regulator_get(dev
, "vref");
128 if (IS_ERR(priv
->vref
)) {
129 ret
= PTR_ERR(priv
->vref
);
130 dev_err(dev
, "vref get failed, %d\n", ret
);
134 pm_runtime_get_noresume(dev
);
135 pm_runtime_set_active(dev
);
136 pm_runtime_enable(dev
);
138 ret
= stm32_dac_core_hw_start(dev
);
142 ret
= regulator_get_voltage(priv
->vref
);
144 dev_err(dev
, "vref get voltage failed, %d\n", ret
);
147 priv
->common
.vref_mv
= ret
/ 1000;
148 dev_dbg(dev
, "vref+=%dmV\n", priv
->common
.vref_mv
);
150 rst
= devm_reset_control_get_optional_exclusive(dev
, NULL
);
153 ret
= dev_err_probe(dev
, PTR_ERR(rst
), "reset get failed\n");
157 reset_control_assert(rst
);
159 reset_control_deassert(rst
);
162 if (cfg
&& cfg
->has_hfsel
) {
163 /* When clock speed is higher than 80MHz, set HFSEL */
164 priv
->common
.hfsel
= (clk_get_rate(priv
->pclk
) > 80000000UL);
165 ret
= regmap_update_bits(regmap
, STM32_DAC_CR
,
166 STM32H7_DAC_CR_HFSEL
,
168 STM32H7_DAC_CR_HFSEL
: 0);
174 ret
= of_platform_populate(pdev
->dev
.of_node
, NULL
, NULL
, dev
);
176 dev_err(dev
, "failed to populate DT children\n");
185 stm32_dac_core_hw_stop(dev
);
187 pm_runtime_disable(dev
);
188 pm_runtime_set_suspended(dev
);
189 pm_runtime_put_noidle(dev
);
194 static int stm32_dac_remove(struct platform_device
*pdev
)
196 pm_runtime_get_sync(&pdev
->dev
);
197 of_platform_depopulate(&pdev
->dev
);
198 stm32_dac_core_hw_stop(&pdev
->dev
);
199 pm_runtime_disable(&pdev
->dev
);
200 pm_runtime_set_suspended(&pdev
->dev
);
201 pm_runtime_put_noidle(&pdev
->dev
);
206 static int __maybe_unused
stm32_dac_core_resume(struct device
*dev
)
208 struct stm32_dac_common
*common
= dev_get_drvdata(dev
);
209 struct stm32_dac_priv
*priv
= to_stm32_dac_priv(common
);
212 if (priv
->common
.hfsel
) {
213 /* restore hfsel (maybe lost under low power state) */
214 ret
= regmap_update_bits(priv
->common
.regmap
, STM32_DAC_CR
,
215 STM32H7_DAC_CR_HFSEL
,
216 STM32H7_DAC_CR_HFSEL
);
221 return pm_runtime_force_resume(dev
);
224 static int __maybe_unused
stm32_dac_core_runtime_suspend(struct device
*dev
)
226 stm32_dac_core_hw_stop(dev
);
231 static int __maybe_unused
stm32_dac_core_runtime_resume(struct device
*dev
)
233 return stm32_dac_core_hw_start(dev
);
236 static const struct dev_pm_ops stm32_dac_core_pm_ops
= {
237 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
, stm32_dac_core_resume
)
238 SET_RUNTIME_PM_OPS(stm32_dac_core_runtime_suspend
,
239 stm32_dac_core_runtime_resume
,
243 static const struct stm32_dac_cfg stm32h7_dac_cfg
= {
247 static const struct of_device_id stm32_dac_of_match
[] = {
249 .compatible
= "st,stm32f4-dac-core",
251 .compatible
= "st,stm32h7-dac-core",
252 .data
= (void *)&stm32h7_dac_cfg
,
256 MODULE_DEVICE_TABLE(of
, stm32_dac_of_match
);
258 static struct platform_driver stm32_dac_driver
= {
259 .probe
= stm32_dac_probe
,
260 .remove
= stm32_dac_remove
,
262 .name
= "stm32-dac-core",
263 .of_match_table
= stm32_dac_of_match
,
264 .pm
= &stm32_dac_core_pm_ops
,
267 module_platform_driver(stm32_dac_driver
);
269 MODULE_AUTHOR("Fabrice Gasnier <fabrice.gasnier@st.com>");
270 MODULE_DESCRIPTION("STMicroelectronics STM32 DAC core driver");
271 MODULE_LICENSE("GPL v2");
272 MODULE_ALIAS("platform:stm32-dac-core");