1 // SPDX-License-Identifier: GPL-2.0
3 * Generic sigma delta modulator driver
5 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
6 * Author: Arnaud Pouliquen <arnaud.pouliquen@st.com>.
9 #include <linux/iio/backend.h>
10 #include <linux/iio/iio.h>
11 #include <linux/iio/triggered_buffer.h>
12 #include <linux/module.h>
13 #include <linux/mod_devicetable.h>
14 #include <linux/platform_device.h>
15 #include <linux/property.h>
16 #include <linux/regulator/consumer.h>
18 static const struct iio_info iio_sd_mod_iio_info
;
20 static const struct iio_chan_spec iio_sd_mod_ch
= {
30 struct iio_sd_backend_priv
{
31 struct regulator
*vref
;
35 static int iio_sd_mod_enable(struct iio_backend
*backend
)
37 struct iio_sd_backend_priv
*priv
= iio_backend_get_priv(backend
);
40 return regulator_enable(priv
->vref
);
45 static void iio_sd_mod_disable(struct iio_backend
*backend
)
47 struct iio_sd_backend_priv
*priv
= iio_backend_get_priv(backend
);
50 regulator_disable(priv
->vref
);
53 static int iio_sd_mod_read(struct iio_backend
*backend
, struct iio_chan_spec
const *chan
, int *val
,
56 struct iio_sd_backend_priv
*priv
= iio_backend_get_priv(backend
);
59 case IIO_CHAN_INFO_SCALE
:
63 case IIO_CHAN_INFO_OFFSET
:
71 static const struct iio_backend_ops sd_backend_ops
= {
72 .enable
= iio_sd_mod_enable
,
73 .disable
= iio_sd_mod_disable
,
74 .read_raw
= iio_sd_mod_read
,
77 static const struct iio_backend_info sd_backend_info
= {
78 .name
= "sd-modulator",
79 .ops
= &sd_backend_ops
,
82 static int iio_sd_mod_register(struct platform_device
*pdev
)
84 struct device
*dev
= &pdev
->dev
;
87 iio
= devm_iio_device_alloc(dev
, 0);
91 iio
->name
= dev_name(dev
);
92 iio
->info
= &iio_sd_mod_iio_info
;
93 iio
->modes
= INDIO_BUFFER_HARDWARE
;
95 iio
->num_channels
= 1;
96 iio
->channels
= &iio_sd_mod_ch
;
98 platform_set_drvdata(pdev
, iio
);
100 return devm_iio_device_register(&pdev
->dev
, iio
);
103 static int iio_sd_mod_probe(struct platform_device
*pdev
)
105 struct device
*dev
= &pdev
->dev
;
106 struct regulator
*vref
;
107 struct iio_sd_backend_priv
*priv
;
110 /* If sd modulator is not defined as an IIO backend device, fallback to legacy */
111 if (!device_property_present(dev
, "#io-backend-cells"))
112 return iio_sd_mod_register(pdev
);
114 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
119 * Get regulator reference if any, but don't enable regulator right now.
120 * Rely on enable and disable callbacks to manage regulator power.
122 vref
= devm_regulator_get_optional(dev
, "vref");
124 if (PTR_ERR(vref
) != -ENODEV
)
125 return dev_err_probe(dev
, PTR_ERR(vref
), "Failed to get vref\n");
128 * Retrieve voltage right now, as regulator_get_voltage() provides it whatever
129 * the state of the regulator.
131 ret
= regulator_get_voltage(vref
);
136 priv
->vref_mv
= ret
/ 1000;
139 return devm_iio_backend_register(&pdev
->dev
, &sd_backend_info
, priv
);
142 static const struct of_device_id sd_adc_of_match
[] = {
143 { .compatible
= "sd-modulator" },
144 { .compatible
= "ads1201" },
147 MODULE_DEVICE_TABLE(of
, sd_adc_of_match
);
149 static struct platform_driver iio_sd_mod_adc
= {
151 .name
= "iio_sd_adc_mod",
152 .of_match_table
= sd_adc_of_match
,
154 .probe
= iio_sd_mod_probe
,
157 module_platform_driver(iio_sd_mod_adc
);
159 MODULE_DESCRIPTION("Basic sigma delta modulator");
160 MODULE_AUTHOR("Arnaud Pouliquen <arnaud.pouliquen@st.com>");
161 MODULE_LICENSE("GPL v2");
162 MODULE_IMPORT_NS("IIO_BACKEND");