2 * ltc2497.c - Driver for Analog Devices/Linear Technology LTC2497 ADC
4 * Copyright (C) 2017 Analog Devices Inc.
6 * Licensed under the GPL-2.
8 * Datasheet: http://cds.linear.com/docs/en/datasheet/2497fd.pdf
11 #include <linux/delay.h>
12 #include <linux/i2c.h>
13 #include <linux/iio/iio.h>
14 #include <linux/iio/driver.h>
15 #include <linux/iio/sysfs.h>
16 #include <linux/module.h>
18 #include <linux/regulator/consumer.h>
20 #define LTC2497_ENABLE 0xA0
21 #define LTC2497_SGL BIT(4)
22 #define LTC2497_DIFF 0
23 #define LTC2497_SIGN BIT(3)
24 #define LTC2497_CONFIG_DEFAULT LTC2497_ENABLE
25 #define LTC2497_CONVERSION_TIME_MS 150ULL
28 struct i2c_client
*client
;
29 struct regulator
*ref
;
33 * DMA (thus cache coherency maintenance) requires the
34 * transfer buffers to live in their own cache lines.
36 __be32 buf ____cacheline_aligned
;
39 static int ltc2497_wait_conv(struct ltc2497_st
*st
)
43 time_elapsed
= ktime_ms_delta(ktime_get(), st
->time_prev
);
45 if (time_elapsed
< LTC2497_CONVERSION_TIME_MS
) {
46 /* delay if conversion time not passed
47 * since last read or write
49 if (msleep_interruptible(
50 LTC2497_CONVERSION_TIME_MS
- time_elapsed
))
56 if (time_elapsed
- LTC2497_CONVERSION_TIME_MS
<= 0) {
57 /* We're in automatic mode -
58 * so the last reading is stil not outdated
66 static int ltc2497_read(struct ltc2497_st
*st
, u8 address
, int *val
)
68 struct i2c_client
*client
= st
->client
;
71 ret
= ltc2497_wait_conv(st
);
75 if (ret
|| st
->addr_prev
!= address
) {
76 ret
= i2c_smbus_write_byte(st
->client
,
77 LTC2497_ENABLE
| address
);
80 st
->addr_prev
= address
;
81 if (msleep_interruptible(LTC2497_CONVERSION_TIME_MS
))
84 ret
= i2c_master_recv(client
, (char *)&st
->buf
, 3);
86 dev_err(&client
->dev
, "i2c_master_recv failed\n");
89 st
->time_prev
= ktime_get();
91 /* convert and shift the result,
92 * and finally convert from offset binary to signed integer
94 *val
= (be32_to_cpu(st
->buf
) >> 14) - (1 << 17);
99 static int ltc2497_read_raw(struct iio_dev
*indio_dev
,
100 struct iio_chan_spec
const *chan
,
101 int *val
, int *val2
, long mask
)
103 struct ltc2497_st
*st
= iio_priv(indio_dev
);
107 case IIO_CHAN_INFO_RAW
:
108 mutex_lock(&indio_dev
->mlock
);
109 ret
= ltc2497_read(st
, chan
->address
, val
);
110 mutex_unlock(&indio_dev
->mlock
);
116 case IIO_CHAN_INFO_SCALE
:
117 ret
= regulator_get_voltage(st
->ref
);
124 return IIO_VAL_FRACTIONAL_LOG2
;
131 #define LTC2497_CHAN(_chan, _addr, _ds_name) { \
132 .type = IIO_VOLTAGE, \
134 .channel = (_chan), \
135 .address = (_addr | (_chan / 2) | ((_chan & 1) ? LTC2497_SIGN : 0)), \
136 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
137 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
138 .datasheet_name = (_ds_name), \
141 #define LTC2497_CHAN_DIFF(_chan, _addr) { \
142 .type = IIO_VOLTAGE, \
144 .channel = (_chan) * 2 + ((_addr) & LTC2497_SIGN ? 1 : 0), \
145 .channel2 = (_chan) * 2 + ((_addr) & LTC2497_SIGN ? 0 : 1),\
146 .address = (_addr | _chan), \
147 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
148 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
152 static const struct iio_chan_spec ltc2497_channel
[] = {
153 LTC2497_CHAN(0, LTC2497_SGL
, "CH0"),
154 LTC2497_CHAN(1, LTC2497_SGL
, "CH1"),
155 LTC2497_CHAN(2, LTC2497_SGL
, "CH2"),
156 LTC2497_CHAN(3, LTC2497_SGL
, "CH3"),
157 LTC2497_CHAN(4, LTC2497_SGL
, "CH4"),
158 LTC2497_CHAN(5, LTC2497_SGL
, "CH5"),
159 LTC2497_CHAN(6, LTC2497_SGL
, "CH6"),
160 LTC2497_CHAN(7, LTC2497_SGL
, "CH7"),
161 LTC2497_CHAN(8, LTC2497_SGL
, "CH8"),
162 LTC2497_CHAN(9, LTC2497_SGL
, "CH9"),
163 LTC2497_CHAN(10, LTC2497_SGL
, "CH10"),
164 LTC2497_CHAN(11, LTC2497_SGL
, "CH11"),
165 LTC2497_CHAN(12, LTC2497_SGL
, "CH12"),
166 LTC2497_CHAN(13, LTC2497_SGL
, "CH13"),
167 LTC2497_CHAN(14, LTC2497_SGL
, "CH14"),
168 LTC2497_CHAN(15, LTC2497_SGL
, "CH15"),
169 LTC2497_CHAN_DIFF(0, LTC2497_DIFF
),
170 LTC2497_CHAN_DIFF(1, LTC2497_DIFF
),
171 LTC2497_CHAN_DIFF(2, LTC2497_DIFF
),
172 LTC2497_CHAN_DIFF(3, LTC2497_DIFF
),
173 LTC2497_CHAN_DIFF(4, LTC2497_DIFF
),
174 LTC2497_CHAN_DIFF(5, LTC2497_DIFF
),
175 LTC2497_CHAN_DIFF(6, LTC2497_DIFF
),
176 LTC2497_CHAN_DIFF(7, LTC2497_DIFF
),
177 LTC2497_CHAN_DIFF(0, LTC2497_DIFF
| LTC2497_SIGN
),
178 LTC2497_CHAN_DIFF(1, LTC2497_DIFF
| LTC2497_SIGN
),
179 LTC2497_CHAN_DIFF(2, LTC2497_DIFF
| LTC2497_SIGN
),
180 LTC2497_CHAN_DIFF(3, LTC2497_DIFF
| LTC2497_SIGN
),
181 LTC2497_CHAN_DIFF(4, LTC2497_DIFF
| LTC2497_SIGN
),
182 LTC2497_CHAN_DIFF(5, LTC2497_DIFF
| LTC2497_SIGN
),
183 LTC2497_CHAN_DIFF(6, LTC2497_DIFF
| LTC2497_SIGN
),
184 LTC2497_CHAN_DIFF(7, LTC2497_DIFF
| LTC2497_SIGN
),
187 static const struct iio_info ltc2497_info
= {
188 .read_raw
= ltc2497_read_raw
,
191 static int ltc2497_probe(struct i2c_client
*client
,
192 const struct i2c_device_id
*id
)
194 struct iio_dev
*indio_dev
;
195 struct ltc2497_st
*st
;
196 struct iio_map
*plat_data
;
199 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
|
200 I2C_FUNC_SMBUS_WRITE_BYTE
))
203 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*st
));
207 st
= iio_priv(indio_dev
);
208 i2c_set_clientdata(client
, indio_dev
);
211 indio_dev
->dev
.parent
= &client
->dev
;
212 indio_dev
->name
= id
->name
;
213 indio_dev
->info
= <c2497_info
;
214 indio_dev
->modes
= INDIO_DIRECT_MODE
;
215 indio_dev
->channels
= ltc2497_channel
;
216 indio_dev
->num_channels
= ARRAY_SIZE(ltc2497_channel
);
218 st
->ref
= devm_regulator_get(&client
->dev
, "vref");
220 return PTR_ERR(st
->ref
);
222 ret
= regulator_enable(st
->ref
);
226 if (client
->dev
.platform_data
) {
227 plat_data
= ((struct iio_map
*)client
->dev
.platform_data
);
228 ret
= iio_map_array_register(indio_dev
, plat_data
);
230 dev_err(&indio_dev
->dev
, "iio map err: %d\n", ret
);
231 goto err_regulator_disable
;
235 ret
= i2c_smbus_write_byte(st
->client
, LTC2497_CONFIG_DEFAULT
);
237 goto err_array_unregister
;
239 st
->addr_prev
= LTC2497_CONFIG_DEFAULT
;
240 st
->time_prev
= ktime_get();
242 ret
= iio_device_register(indio_dev
);
244 goto err_array_unregister
;
248 err_array_unregister
:
249 iio_map_array_unregister(indio_dev
);
251 err_regulator_disable
:
252 regulator_disable(st
->ref
);
257 static int ltc2497_remove(struct i2c_client
*client
)
259 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
260 struct ltc2497_st
*st
= iio_priv(indio_dev
);
262 iio_map_array_unregister(indio_dev
);
263 iio_device_unregister(indio_dev
);
264 regulator_disable(st
->ref
);
269 static const struct i2c_device_id ltc2497_id
[] = {
273 MODULE_DEVICE_TABLE(i2c
, ltc2497_id
);
275 static const struct of_device_id ltc2497_of_match
[] = {
276 { .compatible
= "lltc,ltc2497", },
279 MODULE_DEVICE_TABLE(of
, ltc2497_of_match
);
281 static struct i2c_driver ltc2497_driver
= {
284 .of_match_table
= of_match_ptr(ltc2497_of_match
),
286 .probe
= ltc2497_probe
,
287 .remove
= ltc2497_remove
,
288 .id_table
= ltc2497_id
,
290 module_i2c_driver(ltc2497_driver
);
292 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
293 MODULE_DESCRIPTION("Linear Technology LTC2497 ADC driver");
294 MODULE_LICENSE("GPL v2");