blob: 9fd032d9f402fbd57e58d77f186ca66410148d78 [file] [log] [blame]
Thierry Redingbc0a4092012-11-23 15:13:00 +00001/*
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +03002 * TI ADC081C/ADC101C/ADC121C 8/10/12-bit ADC driver
3 *
Thierry Redingbc0a4092012-11-23 15:13:00 +00004 * Copyright (C) 2012 Avionic Design GmbH
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +03005 * Copyright (C) 2016 Intel
Thierry Redingbc0a4092012-11-23 15:13:00 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +030010 *
11 * Datasheets:
12 * http://www.ti.com/lit/ds/symlink/adc081c021.pdf
13 * http://www.ti.com/lit/ds/symlink/adc101c021.pdf
14 * http://www.ti.com/lit/ds/symlink/adc121c021.pdf
15 *
16 * The devices have a very similar interface and differ mostly in the number of
17 * bits handled. For the 8-bit and 10-bit models the least-significant 4 or 2
18 * bits of value registers are reserved.
Thierry Redingbc0a4092012-11-23 15:13:00 +000019 */
20
21#include <linux/err.h>
22#include <linux/i2c.h>
23#include <linux/module.h>
Sachin Kamat1f100e82013-10-18 13:04:00 +010024#include <linux/of.h>
Thierry Redingbc0a4092012-11-23 15:13:00 +000025
26#include <linux/iio/iio.h>
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +030027#include <linux/iio/buffer.h>
28#include <linux/iio/trigger_consumer.h>
29#include <linux/iio/triggered_buffer.h>
Thierry Redingbc0a4092012-11-23 15:13:00 +000030#include <linux/regulator/consumer.h>
31
32struct adc081c {
33 struct i2c_client *i2c;
34 struct regulator *ref;
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +030035
36 /* 8, 10 or 12 */
37 int bits;
Thierry Redingbc0a4092012-11-23 15:13:00 +000038};
39
40#define REG_CONV_RES 0x00
41
42static int adc081c_read_raw(struct iio_dev *iio,
43 struct iio_chan_spec const *channel, int *value,
44 int *shift, long mask)
45{
46 struct adc081c *adc = iio_priv(iio);
47 int err;
48
49 switch (mask) {
50 case IIO_CHAN_INFO_RAW:
51 err = i2c_smbus_read_word_swapped(adc->i2c, REG_CONV_RES);
52 if (err < 0)
53 return err;
54
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +030055 *value = (err & 0xFFF) >> (12 - adc->bits);
Thierry Redingbc0a4092012-11-23 15:13:00 +000056 return IIO_VAL_INT;
57
58 case IIO_CHAN_INFO_SCALE:
59 err = regulator_get_voltage(adc->ref);
60 if (err < 0)
61 return err;
62
63 *value = err / 1000;
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +030064 *shift = adc->bits;
Thierry Redingbc0a4092012-11-23 15:13:00 +000065
66 return IIO_VAL_FRACTIONAL_LOG2;
67
68 default:
69 break;
70 }
71
72 return -EINVAL;
73}
74
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +030075#define ADCxx1C_CHAN(_bits) { \
76 .type = IIO_VOLTAGE, \
77 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
78 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
79 .scan_type = { \
80 .sign = 'u', \
81 .realbits = (_bits), \
82 .storagebits = 16, \
83 .shift = 12 - (_bits), \
84 .endianness = IIO_CPU, \
85 }, \
86}
87
88#define DEFINE_ADCxx1C_CHANNELS(_name, _bits) \
89 static const struct iio_chan_spec _name ## _channels[] = { \
90 ADCxx1C_CHAN((_bits)), \
91 IIO_CHAN_SOFT_TIMESTAMP(1), \
92 }; \
93
94#define ADC081C_NUM_CHANNELS 2
Thierry Redingbc0a4092012-11-23 15:13:00 +000095
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +030096struct adcxx1c_model {
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +030097 const struct iio_chan_spec* channels;
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +030098 int bits;
99};
100
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300101#define ADCxx1C_MODEL(_name, _bits) \
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300102 { \
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300103 .channels = _name ## _channels, \
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300104 .bits = (_bits), \
105 }
106
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300107DEFINE_ADCxx1C_CHANNELS(adc081c, 8);
108DEFINE_ADCxx1C_CHANNELS(adc101c, 10);
109DEFINE_ADCxx1C_CHANNELS(adc121c, 12);
110
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300111/* Model ids are indexes in _models array */
112enum adcxx1c_model_id {
113 ADC081C = 0,
114 ADC101C = 1,
115 ADC121C = 2,
116};
117
118static struct adcxx1c_model adcxx1c_models[] = {
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300119 ADCxx1C_MODEL(adc081c, 8),
120 ADCxx1C_MODEL(adc101c, 10),
121 ADCxx1C_MODEL(adc121c, 12),
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300122};
123
Thierry Redingbc0a4092012-11-23 15:13:00 +0000124static const struct iio_info adc081c_info = {
125 .read_raw = adc081c_read_raw,
126 .driver_module = THIS_MODULE,
127};
128
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300129static irqreturn_t adc081c_trigger_handler(int irq, void *p)
130{
131 struct iio_poll_func *pf = p;
132 struct iio_dev *indio_dev = pf->indio_dev;
133 struct adc081c *data = iio_priv(indio_dev);
134 u16 buf[8]; /* 2 bytes data + 6 bytes padding + 8 bytes timestamp */
135 int ret;
136
137 ret = i2c_smbus_read_word_swapped(data->i2c, REG_CONV_RES);
138 if (ret < 0)
139 goto out;
140 buf[0] = ret;
141 iio_push_to_buffers_with_timestamp(indio_dev, buf, iio_get_time_ns());
142out:
143 iio_trigger_notify_done(indio_dev->trig);
144 return IRQ_HANDLED;
145}
146
Thierry Redingbc0a4092012-11-23 15:13:00 +0000147static int adc081c_probe(struct i2c_client *client,
148 const struct i2c_device_id *id)
149{
150 struct iio_dev *iio;
151 struct adc081c *adc;
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300152 struct adcxx1c_model *model = &adcxx1c_models[id->driver_data];
Thierry Redingbc0a4092012-11-23 15:13:00 +0000153 int err;
154
155 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_WORD_DATA))
Matt Ranostayf8d9d3b2016-02-26 22:13:49 -0800156 return -EOPNOTSUPP;
Thierry Redingbc0a4092012-11-23 15:13:00 +0000157
Sachin Kamat99e94b62013-07-23 09:58:00 +0100158 iio = devm_iio_device_alloc(&client->dev, sizeof(*adc));
Thierry Redingbc0a4092012-11-23 15:13:00 +0000159 if (!iio)
160 return -ENOMEM;
161
162 adc = iio_priv(iio);
163 adc->i2c = client;
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300164 adc->bits = model->bits;
Thierry Redingbc0a4092012-11-23 15:13:00 +0000165
Sachin Kamat99e94b62013-07-23 09:58:00 +0100166 adc->ref = devm_regulator_get(&client->dev, "vref");
167 if (IS_ERR(adc->ref))
168 return PTR_ERR(adc->ref);
Thierry Redingbc0a4092012-11-23 15:13:00 +0000169
170 err = regulator_enable(adc->ref);
171 if (err < 0)
Sachin Kamat99e94b62013-07-23 09:58:00 +0100172 return err;
Thierry Redingbc0a4092012-11-23 15:13:00 +0000173
174 iio->dev.parent = &client->dev;
175 iio->name = dev_name(&client->dev);
176 iio->modes = INDIO_DIRECT_MODE;
177 iio->info = &adc081c_info;
178
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300179 iio->channels = model->channels;
180 iio->num_channels = ADC081C_NUM_CHANNELS;
181
182 err = iio_triggered_buffer_setup(iio, NULL, adc081c_trigger_handler, NULL);
183 if (err < 0) {
184 dev_err(&client->dev, "iio triggered buffer setup failed\n");
185 goto err_regulator_disable;
186 }
Thierry Redingbc0a4092012-11-23 15:13:00 +0000187
188 err = iio_device_register(iio);
189 if (err < 0)
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300190 goto err_buffer_cleanup;
Thierry Redingbc0a4092012-11-23 15:13:00 +0000191
192 i2c_set_clientdata(client, iio);
193
194 return 0;
195
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300196err_buffer_cleanup:
197 iio_triggered_buffer_cleanup(iio);
198err_regulator_disable:
Thierry Redingbc0a4092012-11-23 15:13:00 +0000199 regulator_disable(adc->ref);
Thierry Redingbc0a4092012-11-23 15:13:00 +0000200
201 return err;
202}
203
204static int adc081c_remove(struct i2c_client *client)
205{
206 struct iio_dev *iio = i2c_get_clientdata(client);
207 struct adc081c *adc = iio_priv(iio);
208
209 iio_device_unregister(iio);
Crestez Dan Leonard08e05d12016-04-11 17:24:27 +0300210 iio_triggered_buffer_cleanup(iio);
Thierry Redingbc0a4092012-11-23 15:13:00 +0000211 regulator_disable(adc->ref);
Thierry Redingbc0a4092012-11-23 15:13:00 +0000212
213 return 0;
214}
215
216static const struct i2c_device_id adc081c_id[] = {
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300217 { "adc081c", ADC081C },
218 { "adc101c", ADC101C },
219 { "adc121c", ADC121C },
Thierry Redingbc0a4092012-11-23 15:13:00 +0000220 { }
221};
222MODULE_DEVICE_TABLE(i2c, adc081c_id);
223
224#ifdef CONFIG_OF
225static const struct of_device_id adc081c_of_match[] = {
226 { .compatible = "ti,adc081c" },
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300227 { .compatible = "ti,adc101c" },
228 { .compatible = "ti,adc121c" },
Thierry Redingbc0a4092012-11-23 15:13:00 +0000229 { }
230};
231MODULE_DEVICE_TABLE(of, adc081c_of_match);
232#endif
233
234static struct i2c_driver adc081c_driver = {
235 .driver = {
236 .name = "adc081c",
Thierry Redingbc0a4092012-11-23 15:13:00 +0000237 .of_match_table = of_match_ptr(adc081c_of_match),
238 },
239 .probe = adc081c_probe,
240 .remove = adc081c_remove,
241 .id_table = adc081c_id,
242};
243module_i2c_driver(adc081c_driver);
244
245MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
Crestez Dan Leonarda6b5ec82016-04-11 17:24:26 +0300246MODULE_DESCRIPTION("Texas Instruments ADC081C/ADC101C/ADC121C driver");
Thierry Redingbc0a4092012-11-23 15:13:00 +0000247MODULE_LICENSE("GPL v2");