2 * Freescale Vybrid vf610 DAC driver
4 * Copyright 2016 Toradex AG
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/clk.h>
18 #include <linux/err.h>
19 #include <linux/interrupt.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/platform_device.h>
24 #include <linux/regulator/consumer.h>
25 #include <linux/slab.h>
27 #include <linux/iio/iio.h>
28 #include <linux/iio/sysfs.h>
30 #define VF610_DACx_STATCTRL 0x20
32 #define VF610_DAC_DACEN BIT(15)
33 #define VF610_DAC_DACRFS BIT(14)
34 #define VF610_DAC_LPEN BIT(11)
36 #define VF610_DAC_DAT0(x) ((x) & 0xFFF)
38 enum vf610_conversion_mode_sel
{
39 VF610_DAC_CONV_HIGH_POWER
,
40 VF610_DAC_CONV_LOW_POWER
,
46 enum vf610_conversion_mode_sel conv_mode
;
50 static void vf610_dac_init(struct vf610_dac
*info
)
54 info
->conv_mode
= VF610_DAC_CONV_LOW_POWER
;
55 val
= VF610_DAC_DACEN
| VF610_DAC_DACRFS
|
57 writel(val
, info
->regs
+ VF610_DACx_STATCTRL
);
60 static void vf610_dac_exit(struct vf610_dac
*info
)
64 val
= readl(info
->regs
+ VF610_DACx_STATCTRL
);
65 val
&= ~VF610_DAC_DACEN
;
66 writel(val
, info
->regs
+ VF610_DACx_STATCTRL
);
69 static int vf610_set_conversion_mode(struct iio_dev
*indio_dev
,
70 const struct iio_chan_spec
*chan
,
73 struct vf610_dac
*info
= iio_priv(indio_dev
);
76 mutex_lock(&indio_dev
->mlock
);
77 info
->conv_mode
= mode
;
78 val
= readl(info
->regs
+ VF610_DACx_STATCTRL
);
80 val
|= VF610_DAC_LPEN
;
82 val
&= ~VF610_DAC_LPEN
;
83 writel(val
, info
->regs
+ VF610_DACx_STATCTRL
);
84 mutex_unlock(&indio_dev
->mlock
);
89 static int vf610_get_conversion_mode(struct iio_dev
*indio_dev
,
90 const struct iio_chan_spec
*chan
)
92 struct vf610_dac
*info
= iio_priv(indio_dev
);
94 return info
->conv_mode
;
97 static const char * const vf610_conv_modes
[] = { "high-power", "low-power" };
99 static const struct iio_enum vf610_conversion_mode
= {
100 .items
= vf610_conv_modes
,
101 .num_items
= ARRAY_SIZE(vf610_conv_modes
),
102 .get
= vf610_get_conversion_mode
,
103 .set
= vf610_set_conversion_mode
,
106 static const struct iio_chan_spec_ext_info vf610_ext_info
[] = {
107 IIO_ENUM("conversion_mode", IIO_SHARED_BY_DIR
,
108 &vf610_conversion_mode
),
112 #define VF610_DAC_CHAN(_chan_type) { \
113 .type = (_chan_type), \
115 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
116 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
117 .ext_info = vf610_ext_info, \
120 static const struct iio_chan_spec vf610_dac_iio_channels
[] = {
121 VF610_DAC_CHAN(IIO_VOLTAGE
),
124 static int vf610_read_raw(struct iio_dev
*indio_dev
,
125 struct iio_chan_spec
const *chan
,
129 struct vf610_dac
*info
= iio_priv(indio_dev
);
132 case IIO_CHAN_INFO_RAW
:
133 *val
= VF610_DAC_DAT0(readl(info
->regs
));
135 case IIO_CHAN_INFO_SCALE
:
137 * DACRFS is always 1 for valid reference and typical
138 * reference voltage as per Vybrid datasheet is 3.3V
139 * from section 9.1.2.1 of Vybrid datasheet
141 *val
= 3300 /* mV */;
143 return IIO_VAL_FRACTIONAL_LOG2
;
150 static int vf610_write_raw(struct iio_dev
*indio_dev
,
151 struct iio_chan_spec
const *chan
,
155 struct vf610_dac
*info
= iio_priv(indio_dev
);
158 case IIO_CHAN_INFO_RAW
:
159 mutex_lock(&indio_dev
->mlock
);
160 writel(VF610_DAC_DAT0(val
), info
->regs
);
161 mutex_unlock(&indio_dev
->mlock
);
169 static const struct iio_info vf610_dac_iio_info
= {
170 .read_raw
= &vf610_read_raw
,
171 .write_raw
= &vf610_write_raw
,
174 static const struct of_device_id vf610_dac_match
[] = {
175 { .compatible
= "fsl,vf610-dac", },
178 MODULE_DEVICE_TABLE(of
, vf610_dac_match
);
180 static int vf610_dac_probe(struct platform_device
*pdev
)
182 struct iio_dev
*indio_dev
;
183 struct vf610_dac
*info
;
184 struct resource
*mem
;
187 indio_dev
= devm_iio_device_alloc(&pdev
->dev
,
188 sizeof(struct vf610_dac
));
190 dev_err(&pdev
->dev
, "Failed allocating iio device\n");
194 info
= iio_priv(indio_dev
);
195 info
->dev
= &pdev
->dev
;
197 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
198 info
->regs
= devm_ioremap_resource(&pdev
->dev
, mem
);
199 if (IS_ERR(info
->regs
))
200 return PTR_ERR(info
->regs
);
202 info
->clk
= devm_clk_get(&pdev
->dev
, "dac");
203 if (IS_ERR(info
->clk
)) {
204 dev_err(&pdev
->dev
, "Failed getting clock, err = %ld\n",
206 return PTR_ERR(info
->clk
);
209 platform_set_drvdata(pdev
, indio_dev
);
211 indio_dev
->name
= dev_name(&pdev
->dev
);
212 indio_dev
->dev
.parent
= &pdev
->dev
;
213 indio_dev
->dev
.of_node
= pdev
->dev
.of_node
;
214 indio_dev
->info
= &vf610_dac_iio_info
;
215 indio_dev
->modes
= INDIO_DIRECT_MODE
;
216 indio_dev
->channels
= vf610_dac_iio_channels
;
217 indio_dev
->num_channels
= ARRAY_SIZE(vf610_dac_iio_channels
);
219 ret
= clk_prepare_enable(info
->clk
);
222 "Could not prepare or enable the clock\n");
226 vf610_dac_init(info
);
228 ret
= iio_device_register(indio_dev
);
230 dev_err(&pdev
->dev
, "Couldn't register the device\n");
231 goto error_iio_device_register
;
236 error_iio_device_register
:
237 clk_disable_unprepare(info
->clk
);
242 static int vf610_dac_remove(struct platform_device
*pdev
)
244 struct iio_dev
*indio_dev
= platform_get_drvdata(pdev
);
245 struct vf610_dac
*info
= iio_priv(indio_dev
);
247 iio_device_unregister(indio_dev
);
248 vf610_dac_exit(info
);
249 clk_disable_unprepare(info
->clk
);
254 #ifdef CONFIG_PM_SLEEP
255 static int vf610_dac_suspend(struct device
*dev
)
257 struct iio_dev
*indio_dev
= dev_get_drvdata(dev
);
258 struct vf610_dac
*info
= iio_priv(indio_dev
);
260 vf610_dac_exit(info
);
261 clk_disable_unprepare(info
->clk
);
266 static int vf610_dac_resume(struct device
*dev
)
268 struct iio_dev
*indio_dev
= dev_get_drvdata(dev
);
269 struct vf610_dac
*info
= iio_priv(indio_dev
);
272 ret
= clk_prepare_enable(info
->clk
);
276 vf610_dac_init(info
);
282 static SIMPLE_DEV_PM_OPS(vf610_dac_pm_ops
, vf610_dac_suspend
, vf610_dac_resume
);
284 static struct platform_driver vf610_dac_driver
= {
285 .probe
= vf610_dac_probe
,
286 .remove
= vf610_dac_remove
,
289 .of_match_table
= vf610_dac_match
,
290 .pm
= &vf610_dac_pm_ops
,
293 module_platform_driver(vf610_dac_driver
);
295 MODULE_AUTHOR("Sanchayan Maity <sanchayan.maity@toradex.com>");
296 MODULE_DESCRIPTION("Freescale VF610 DAC driver");
297 MODULE_LICENSE("GPL v2");