1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Generic sigma delta modulator driver
4 *
5 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
6 * Author: Arnaud Pouliquen <arnaud.pouliquen@st.com>.
7 */
8
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>
17
18 static const struct iio_info iio_sd_mod_iio_info;
19
20 static const struct iio_chan_spec iio_sd_mod_ch = {
21 .type = IIO_VOLTAGE,
22 .indexed = 1,
23 .scan_type = {
24 .sign = 'u',
25 .realbits = 1,
26 .shift = 0,
27 },
28 };
29
30 struct iio_sd_backend_priv {
31 struct regulator *vref;
32 int vref_mv;
33 };
34
iio_sd_mod_enable(struct iio_backend * backend)35 static int iio_sd_mod_enable(struct iio_backend *backend)
36 {
37 struct iio_sd_backend_priv *priv = iio_backend_get_priv(backend);
38
39 if (priv->vref)
40 return regulator_enable(priv->vref);
41
42 return 0;
43 };
44
iio_sd_mod_disable(struct iio_backend * backend)45 static void iio_sd_mod_disable(struct iio_backend *backend)
46 {
47 struct iio_sd_backend_priv *priv = iio_backend_get_priv(backend);
48
49 if (priv->vref)
50 regulator_disable(priv->vref);
51 };
52
iio_sd_mod_read(struct iio_backend * backend,struct iio_chan_spec const * chan,int * val,int * val2,long mask)53 static int iio_sd_mod_read(struct iio_backend *backend, struct iio_chan_spec const *chan, int *val,
54 int *val2, long mask)
55 {
56 struct iio_sd_backend_priv *priv = iio_backend_get_priv(backend);
57
58 switch (mask) {
59 case IIO_CHAN_INFO_SCALE:
60 *val = priv->vref_mv;
61 return IIO_VAL_INT;
62
63 case IIO_CHAN_INFO_OFFSET:
64 *val = 0;
65 return IIO_VAL_INT;
66 }
67
68 return -EOPNOTSUPP;
69 };
70
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,
75 };
76
77 static const struct iio_backend_info sd_backend_info = {
78 .name = "sd-modulator",
79 .ops = &sd_backend_ops,
80 .caps = IIO_BACKEND_CAP_ENABLE,
81 };
82
iio_sd_mod_register(struct platform_device * pdev)83 static int iio_sd_mod_register(struct platform_device *pdev)
84 {
85 struct device *dev = &pdev->dev;
86 struct iio_dev *iio;
87
88 iio = devm_iio_device_alloc(dev, 0);
89 if (!iio)
90 return -ENOMEM;
91
92 iio->name = dev_name(dev);
93 iio->info = &iio_sd_mod_iio_info;
94 iio->modes = INDIO_BUFFER_HARDWARE;
95
96 iio->num_channels = 1;
97 iio->channels = &iio_sd_mod_ch;
98
99 platform_set_drvdata(pdev, iio);
100
101 return devm_iio_device_register(&pdev->dev, iio);
102 }
103
iio_sd_mod_probe(struct platform_device * pdev)104 static int iio_sd_mod_probe(struct platform_device *pdev)
105 {
106 struct device *dev = &pdev->dev;
107 struct regulator *vref;
108 struct iio_sd_backend_priv *priv;
109 int ret;
110
111 /* If sd modulator is not defined as an IIO backend device, fallback to legacy */
112 if (!device_property_present(dev, "#io-backend-cells"))
113 return iio_sd_mod_register(pdev);
114
115 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
116 if (!priv)
117 return -ENOMEM;
118
119 /*
120 * Get regulator reference if any, but don't enable regulator right now.
121 * Rely on enable and disable callbacks to manage regulator power.
122 */
123 vref = devm_regulator_get_optional(dev, "vref");
124 if (IS_ERR(vref)) {
125 if (PTR_ERR(vref) != -ENODEV)
126 return dev_err_probe(dev, PTR_ERR(vref), "Failed to get vref\n");
127 } else {
128 /*
129 * Retrieve voltage right now, as regulator_get_voltage() provides it whatever
130 * the state of the regulator.
131 */
132 ret = regulator_get_voltage(vref);
133 if (ret < 0)
134 return ret;
135
136 priv->vref = vref;
137 priv->vref_mv = ret / 1000;
138 }
139
140 return devm_iio_backend_register(&pdev->dev, &sd_backend_info, priv);
141 };
142
143 static const struct of_device_id sd_adc_of_match[] = {
144 { .compatible = "sd-modulator" },
145 { .compatible = "ads1201" },
146 { }
147 };
148 MODULE_DEVICE_TABLE(of, sd_adc_of_match);
149
150 static struct platform_driver iio_sd_mod_adc = {
151 .driver = {
152 .name = "iio_sd_adc_mod",
153 .of_match_table = sd_adc_of_match,
154 },
155 .probe = iio_sd_mod_probe,
156 };
157
158 module_platform_driver(iio_sd_mod_adc);
159
160 MODULE_DESCRIPTION("Basic sigma delta modulator");
161 MODULE_AUTHOR("Arnaud Pouliquen <arnaud.pouliquen@st.com>");
162 MODULE_LICENSE("GPL v2");
163 MODULE_IMPORT_NS("IIO_BACKEND");
164