1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * AD7291 8-Channel, I2C, 12-Bit SAR ADC with Temperature Sensor
5 * Copyright 2010-2011 Analog Devices Inc.
8 #include <linux/device.h>
10 #include <linux/i2c.h>
11 #include <linux/interrupt.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/mutex.h>
15 #include <linux/regulator/consumer.h>
16 #include <linux/slab.h>
17 #include <linux/sysfs.h>
19 #include <linux/iio/iio.h>
20 #include <linux/iio/sysfs.h>
21 #include <linux/iio/events.h>
26 * If no events enabled - single polled channel read
27 * If event enabled direct reads disable unless channel
28 * is in the read mask.
30 * The noise-delayed bit as per datasheet suggestion is always enabled.
34 * AD7291 registers definition
36 #define AD7291_COMMAND 0x00
37 #define AD7291_VOLTAGE 0x01
38 #define AD7291_T_SENSE 0x02
39 #define AD7291_T_AVERAGE 0x03
40 #define AD7291_DATA_HIGH(x) ((x) * 3 + 0x4)
41 #define AD7291_DATA_LOW(x) ((x) * 3 + 0x5)
42 #define AD7291_HYST(x) ((x) * 3 + 0x6)
43 #define AD7291_VOLTAGE_ALERT_STATUS 0x1F
44 #define AD7291_T_ALERT_STATUS 0x20
46 #define AD7291_BITS 12
47 #define AD7291_VOLTAGE_LIMIT_COUNT 8
53 #define AD7291_AUTOCYCLE BIT(0)
54 #define AD7291_RESET BIT(1)
55 #define AD7291_ALERT_CLEAR BIT(2)
56 #define AD7291_ALERT_POLARITY BIT(3)
57 #define AD7291_EXT_REF BIT(4)
58 #define AD7291_NOISE_DELAY BIT(5)
59 #define AD7291_T_SENSE_MASK BIT(7)
60 #define AD7291_VOLTAGE_MASK GENMASK(15, 8)
61 #define AD7291_VOLTAGE_OFFSET 8
66 #define AD7291_VALUE_MASK GENMASK(11, 0)
69 * AD7291 alert register bits
71 #define AD7291_T_LOW BIT(0)
72 #define AD7291_T_HIGH BIT(1)
73 #define AD7291_T_AVG_LOW BIT(2)
74 #define AD7291_T_AVG_HIGH BIT(3)
75 #define AD7291_V_LOW(x) BIT((x) * 2)
76 #define AD7291_V_HIGH(x) BIT((x) * 2 + 1)
79 struct ad7291_chip_info
{
80 struct i2c_client
*client
;
81 struct regulator
*reg
;
83 u16 c_mask
; /* Active voltage channels for events */
84 struct mutex state_lock
;
87 static int ad7291_i2c_read(struct ad7291_chip_info
*chip
, u8 reg
, u16
*data
)
89 struct i2c_client
*client
= chip
->client
;
92 ret
= i2c_smbus_read_word_swapped(client
, reg
);
94 dev_err(&client
->dev
, "I2C read error\n");
103 static int ad7291_i2c_write(struct ad7291_chip_info
*chip
, u8 reg
, u16 data
)
105 return i2c_smbus_write_word_swapped(chip
->client
, reg
, data
);
108 static irqreturn_t
ad7291_event_handler(int irq
, void *private)
110 struct iio_dev
*indio_dev
= private;
111 struct ad7291_chip_info
*chip
= iio_priv(private);
112 u16 t_status
, v_status
;
115 s64 timestamp
= iio_get_time_ns(indio_dev
);
117 if (ad7291_i2c_read(chip
, AD7291_T_ALERT_STATUS
, &t_status
))
120 if (ad7291_i2c_read(chip
, AD7291_VOLTAGE_ALERT_STATUS
, &v_status
))
123 if (!(t_status
|| v_status
))
126 command
= chip
->command
| AD7291_ALERT_CLEAR
;
127 ad7291_i2c_write(chip
, AD7291_COMMAND
, command
);
129 command
= chip
->command
& ~AD7291_ALERT_CLEAR
;
130 ad7291_i2c_write(chip
, AD7291_COMMAND
, command
);
132 /* For now treat t_sense and t_sense_average the same */
133 if ((t_status
& AD7291_T_LOW
) || (t_status
& AD7291_T_AVG_LOW
))
134 iio_push_event(indio_dev
,
135 IIO_UNMOD_EVENT_CODE(IIO_TEMP
,
140 if ((t_status
& AD7291_T_HIGH
) || (t_status
& AD7291_T_AVG_HIGH
))
141 iio_push_event(indio_dev
,
142 IIO_UNMOD_EVENT_CODE(IIO_TEMP
,
148 for (i
= 0; i
< AD7291_VOLTAGE_LIMIT_COUNT
; i
++) {
149 if (v_status
& AD7291_V_LOW(i
))
150 iio_push_event(indio_dev
,
151 IIO_UNMOD_EVENT_CODE(IIO_VOLTAGE
,
156 if (v_status
& AD7291_V_HIGH(i
))
157 iio_push_event(indio_dev
,
158 IIO_UNMOD_EVENT_CODE(IIO_VOLTAGE
,
168 static unsigned int ad7291_threshold_reg(const struct iio_chan_spec
*chan
,
169 enum iio_event_direction dir
,
170 enum iio_event_info info
)
174 switch (chan
->type
) {
176 offset
= chan
->channel
;
179 offset
= AD7291_VOLTAGE_OFFSET
;
186 case IIO_EV_INFO_VALUE
:
187 if (dir
== IIO_EV_DIR_FALLING
)
188 return AD7291_DATA_HIGH(offset
);
190 return AD7291_DATA_LOW(offset
);
191 case IIO_EV_INFO_HYSTERESIS
:
192 return AD7291_HYST(offset
);
199 static int ad7291_read_event_value(struct iio_dev
*indio_dev
,
200 const struct iio_chan_spec
*chan
,
201 enum iio_event_type type
,
202 enum iio_event_direction dir
,
203 enum iio_event_info info
,
206 struct ad7291_chip_info
*chip
= iio_priv(indio_dev
);
210 ret
= ad7291_i2c_read(chip
, ad7291_threshold_reg(chan
, dir
, info
),
215 if (info
== IIO_EV_INFO_HYSTERESIS
|| chan
->type
== IIO_VOLTAGE
)
216 *val
= uval
& AD7291_VALUE_MASK
;
219 *val
= sign_extend32(uval
, 11);
224 static int ad7291_write_event_value(struct iio_dev
*indio_dev
,
225 const struct iio_chan_spec
*chan
,
226 enum iio_event_type type
,
227 enum iio_event_direction dir
,
228 enum iio_event_info info
,
231 struct ad7291_chip_info
*chip
= iio_priv(indio_dev
);
233 if (info
== IIO_EV_INFO_HYSTERESIS
|| chan
->type
== IIO_VOLTAGE
) {
234 if (val
> AD7291_VALUE_MASK
|| val
< 0)
237 if (val
> 2047 || val
< -2048)
241 return ad7291_i2c_write(chip
, ad7291_threshold_reg(chan
, dir
, info
),
245 static int ad7291_read_event_config(struct iio_dev
*indio_dev
,
246 const struct iio_chan_spec
*chan
,
247 enum iio_event_type type
,
248 enum iio_event_direction dir
)
250 struct ad7291_chip_info
*chip
= iio_priv(indio_dev
);
252 * To be enabled the channel must simply be on. If any are enabled
253 * we are in continuous sampling mode
256 switch (chan
->type
) {
258 return !!(chip
->c_mask
& BIT(15 - chan
->channel
));
268 static int ad7291_write_event_config(struct iio_dev
*indio_dev
,
269 const struct iio_chan_spec
*chan
,
270 enum iio_event_type type
,
271 enum iio_event_direction dir
,
275 struct ad7291_chip_info
*chip
= iio_priv(indio_dev
);
279 mutex_lock(&chip
->state_lock
);
280 regval
= chip
->command
;
282 * To be enabled the channel must simply be on. If any are enabled
283 * use continuous sampling mode.
284 * Possible to disable temp as well but that makes single read tricky.
287 mask
= BIT(15 - chan
->channel
);
289 switch (chan
->type
) {
291 if ((!state
) && (chip
->c_mask
& mask
))
292 chip
->c_mask
&= ~mask
;
293 else if (state
&& (!(chip
->c_mask
& mask
)))
294 chip
->c_mask
|= mask
;
298 regval
&= ~AD7291_AUTOCYCLE
;
299 regval
|= chip
->c_mask
;
300 if (chip
->c_mask
) /* Enable autocycle? */
301 regval
|= AD7291_AUTOCYCLE
;
303 ret
= ad7291_i2c_write(chip
, AD7291_COMMAND
, regval
);
307 chip
->command
= regval
;
314 mutex_unlock(&chip
->state_lock
);
318 static int ad7291_read_raw(struct iio_dev
*indio_dev
,
319 struct iio_chan_spec
const *chan
,
325 struct ad7291_chip_info
*chip
= iio_priv(indio_dev
);
329 case IIO_CHAN_INFO_RAW
:
330 switch (chan
->type
) {
332 mutex_lock(&chip
->state_lock
);
333 /* If in autocycle mode drop through */
334 if (chip
->command
& AD7291_AUTOCYCLE
) {
335 mutex_unlock(&chip
->state_lock
);
338 /* Enable this channel alone */
339 regval
= chip
->command
& (~AD7291_VOLTAGE_MASK
);
340 regval
|= BIT(15 - chan
->channel
);
341 ret
= ad7291_i2c_write(chip
, AD7291_COMMAND
, regval
);
343 mutex_unlock(&chip
->state_lock
);
347 ret
= i2c_smbus_read_word_swapped(chip
->client
,
350 mutex_unlock(&chip
->state_lock
);
353 *val
= ret
& AD7291_VALUE_MASK
;
354 mutex_unlock(&chip
->state_lock
);
357 /* Assumes tsense bit of command register always set */
358 ret
= i2c_smbus_read_word_swapped(chip
->client
,
362 *val
= sign_extend32(ret
, 11);
367 case IIO_CHAN_INFO_AVERAGE_RAW
:
368 ret
= i2c_smbus_read_word_swapped(chip
->client
,
372 *val
= sign_extend32(ret
, 11);
374 case IIO_CHAN_INFO_SCALE
:
375 switch (chan
->type
) {
380 vref
= regulator_get_voltage(chip
->reg
);
388 return IIO_VAL_FRACTIONAL_LOG2
;
391 * One LSB of the ADC corresponds to 0.25 deg C.
392 * The temperature reading is in 12-bit twos
405 static const struct iio_event_spec ad7291_events
[] = {
407 .type
= IIO_EV_TYPE_THRESH
,
408 .dir
= IIO_EV_DIR_RISING
,
409 .mask_separate
= BIT(IIO_EV_INFO_VALUE
) |
410 BIT(IIO_EV_INFO_ENABLE
),
412 .type
= IIO_EV_TYPE_THRESH
,
413 .dir
= IIO_EV_DIR_FALLING
,
414 .mask_separate
= BIT(IIO_EV_INFO_VALUE
) |
415 BIT(IIO_EV_INFO_ENABLE
),
417 .type
= IIO_EV_TYPE_THRESH
,
418 .dir
= IIO_EV_DIR_EITHER
,
419 .mask_separate
= BIT(IIO_EV_INFO_HYSTERESIS
),
423 #define AD7291_VOLTAGE_CHAN(_chan) \
425 .type = IIO_VOLTAGE, \
426 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
427 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
430 .event_spec = ad7291_events, \
431 .num_event_specs = ARRAY_SIZE(ad7291_events), \
434 static const struct iio_chan_spec ad7291_channels
[] = {
435 AD7291_VOLTAGE_CHAN(0),
436 AD7291_VOLTAGE_CHAN(1),
437 AD7291_VOLTAGE_CHAN(2),
438 AD7291_VOLTAGE_CHAN(3),
439 AD7291_VOLTAGE_CHAN(4),
440 AD7291_VOLTAGE_CHAN(5),
441 AD7291_VOLTAGE_CHAN(6),
442 AD7291_VOLTAGE_CHAN(7),
445 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
446 BIT(IIO_CHAN_INFO_AVERAGE_RAW
) |
447 BIT(IIO_CHAN_INFO_SCALE
),
450 .event_spec
= ad7291_events
,
451 .num_event_specs
= ARRAY_SIZE(ad7291_events
),
455 static const struct iio_info ad7291_info
= {
456 .read_raw
= &ad7291_read_raw
,
457 .read_event_config
= &ad7291_read_event_config
,
458 .write_event_config
= &ad7291_write_event_config
,
459 .read_event_value
= &ad7291_read_event_value
,
460 .write_event_value
= &ad7291_write_event_value
,
463 static void ad7291_reg_disable(void *reg
)
465 regulator_disable(reg
);
468 static int ad7291_probe(struct i2c_client
*client
)
470 const struct i2c_device_id
*id
= i2c_client_get_device_id(client
);
471 struct ad7291_chip_info
*chip
;
472 struct iio_dev
*indio_dev
;
475 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*chip
));
478 chip
= iio_priv(indio_dev
);
480 mutex_init(&chip
->state_lock
);
482 chip
->client
= client
;
484 chip
->command
= AD7291_NOISE_DELAY
|
485 AD7291_T_SENSE_MASK
| /* Tsense always enabled */
486 AD7291_ALERT_POLARITY
; /* set irq polarity low level */
488 chip
->reg
= devm_regulator_get_optional(&client
->dev
, "vref");
489 if (IS_ERR(chip
->reg
)) {
490 if (PTR_ERR(chip
->reg
) != -ENODEV
)
491 return PTR_ERR(chip
->reg
);
497 ret
= regulator_enable(chip
->reg
);
501 ret
= devm_add_action_or_reset(&client
->dev
, ad7291_reg_disable
,
506 chip
->command
|= AD7291_EXT_REF
;
509 indio_dev
->name
= id
->name
;
510 indio_dev
->channels
= ad7291_channels
;
511 indio_dev
->num_channels
= ARRAY_SIZE(ad7291_channels
);
513 indio_dev
->info
= &ad7291_info
;
514 indio_dev
->modes
= INDIO_DIRECT_MODE
;
516 ret
= ad7291_i2c_write(chip
, AD7291_COMMAND
, AD7291_RESET
);
520 ret
= ad7291_i2c_write(chip
, AD7291_COMMAND
, chip
->command
);
524 if (client
->irq
> 0) {
525 ret
= devm_request_threaded_irq(&client
->dev
, client
->irq
,
527 &ad7291_event_handler
,
528 IRQF_TRIGGER_LOW
| IRQF_ONESHOT
,
535 return devm_iio_device_register(&client
->dev
, indio_dev
);
538 static const struct i2c_device_id ad7291_id
[] = {
543 MODULE_DEVICE_TABLE(i2c
, ad7291_id
);
545 static const struct of_device_id ad7291_of_match
[] = {
546 { .compatible
= "adi,ad7291" },
549 MODULE_DEVICE_TABLE(of
, ad7291_of_match
);
551 static struct i2c_driver ad7291_driver
= {
553 .name
= KBUILD_MODNAME
,
554 .of_match_table
= ad7291_of_match
,
556 .probe
= ad7291_probe
,
557 .id_table
= ad7291_id
,
559 module_i2c_driver(ad7291_driver
);
561 MODULE_AUTHOR("Sonic Zhang <sonic.zhang@analog.com>");
562 MODULE_DESCRIPTION("Analog Devices AD7291 ADC driver");
563 MODULE_LICENSE("GPL v2");