1 // SPDX-License-Identifier: GPL-2.0-only
3 * ADS1015 - Texas Instruments Analog-to-Digital Converter
5 * Copyright (c) 2016, Intel Corporation.
7 * IIO driver for ADS1015 ADC 7-bit I2C slave address:
8 * * 0x48 - ADDR connected to Ground
9 * * 0x49 - ADDR connected to Vdd
10 * * 0x4A - ADDR connected to SDA
11 * * 0x4B - ADDR connected to SCL
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/irq.h>
17 #include <linux/i2c.h>
18 #include <linux/property.h>
19 #include <linux/regmap.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/mutex.h>
22 #include <linux/delay.h>
24 #include <linux/iio/iio.h>
25 #include <linux/iio/types.h>
26 #include <linux/iio/sysfs.h>
27 #include <linux/iio/events.h>
28 #include <linux/iio/buffer.h>
29 #include <linux/iio/triggered_buffer.h>
30 #include <linux/iio/trigger_consumer.h>
32 #define ADS1015_DRV_NAME "ads1015"
34 #define ADS1015_CHANNELS 8
36 #define ADS1015_CONV_REG 0x00
37 #define ADS1015_CFG_REG 0x01
38 #define ADS1015_LO_THRESH_REG 0x02
39 #define ADS1015_HI_THRESH_REG 0x03
41 #define ADS1015_CFG_COMP_QUE_SHIFT 0
42 #define ADS1015_CFG_COMP_LAT_SHIFT 2
43 #define ADS1015_CFG_COMP_POL_SHIFT 3
44 #define ADS1015_CFG_COMP_MODE_SHIFT 4
45 #define ADS1015_CFG_DR_SHIFT 5
46 #define ADS1015_CFG_MOD_SHIFT 8
47 #define ADS1015_CFG_PGA_SHIFT 9
48 #define ADS1015_CFG_MUX_SHIFT 12
50 #define ADS1015_CFG_COMP_QUE_MASK GENMASK(1, 0)
51 #define ADS1015_CFG_COMP_LAT_MASK BIT(2)
52 #define ADS1015_CFG_COMP_POL_MASK BIT(3)
53 #define ADS1015_CFG_COMP_MODE_MASK BIT(4)
54 #define ADS1015_CFG_DR_MASK GENMASK(7, 5)
55 #define ADS1015_CFG_MOD_MASK BIT(8)
56 #define ADS1015_CFG_PGA_MASK GENMASK(11, 9)
57 #define ADS1015_CFG_MUX_MASK GENMASK(14, 12)
59 /* Comparator queue and disable field */
60 #define ADS1015_CFG_COMP_DISABLE 3
62 /* Comparator polarity field */
63 #define ADS1015_CFG_COMP_POL_LOW 0
64 #define ADS1015_CFG_COMP_POL_HIGH 1
66 /* Comparator mode field */
67 #define ADS1015_CFG_COMP_MODE_TRAD 0
68 #define ADS1015_CFG_COMP_MODE_WINDOW 1
70 /* device operating modes */
71 #define ADS1015_CONTINUOUS 0
72 #define ADS1015_SINGLESHOT 1
74 #define ADS1015_SLEEP_DELAY_MS 2000
75 #define ADS1015_DEFAULT_PGA 2
76 #define ADS1015_DEFAULT_DATA_RATE 4
77 #define ADS1015_DEFAULT_CHAN 0
85 enum ads1015_channels
{
86 ADS1015_AIN0_AIN1
= 0,
97 static const unsigned int ads1015_data_rate
[] = {
98 128, 250, 490, 920, 1600, 2400, 3300, 3300
101 static const unsigned int ads1115_data_rate
[] = {
102 8, 16, 32, 64, 128, 250, 475, 860
106 * Translation from PGA bits to full-scale positive and negative input voltage
109 static int ads1015_fullscale_range
[] = {
110 6144, 4096, 2048, 1024, 512, 256, 256, 256
114 * Translation from COMP_QUE field value to the number of successive readings
115 * exceed the threshold values before an interrupt is generated
117 static const int ads1015_comp_queue
[] = { 1, 2, 4 };
119 static const struct iio_event_spec ads1015_events
[] = {
121 .type
= IIO_EV_TYPE_THRESH
,
122 .dir
= IIO_EV_DIR_RISING
,
123 .mask_separate
= BIT(IIO_EV_INFO_VALUE
) |
124 BIT(IIO_EV_INFO_ENABLE
),
126 .type
= IIO_EV_TYPE_THRESH
,
127 .dir
= IIO_EV_DIR_FALLING
,
128 .mask_separate
= BIT(IIO_EV_INFO_VALUE
),
130 .type
= IIO_EV_TYPE_THRESH
,
131 .dir
= IIO_EV_DIR_EITHER
,
132 .mask_separate
= BIT(IIO_EV_INFO_ENABLE
) |
133 BIT(IIO_EV_INFO_PERIOD
),
137 #define ADS1015_V_CHAN(_chan, _addr) { \
138 .type = IIO_VOLTAGE, \
142 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
143 BIT(IIO_CHAN_INFO_SCALE) | \
144 BIT(IIO_CHAN_INFO_SAMP_FREQ), \
145 .scan_index = _addr, \
151 .endianness = IIO_CPU, \
153 .event_spec = ads1015_events, \
154 .num_event_specs = ARRAY_SIZE(ads1015_events), \
155 .datasheet_name = "AIN"#_chan, \
158 #define ADS1015_V_DIFF_CHAN(_chan, _chan2, _addr) { \
159 .type = IIO_VOLTAGE, \
164 .channel2 = _chan2, \
165 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
166 BIT(IIO_CHAN_INFO_SCALE) | \
167 BIT(IIO_CHAN_INFO_SAMP_FREQ), \
168 .scan_index = _addr, \
174 .endianness = IIO_CPU, \
176 .event_spec = ads1015_events, \
177 .num_event_specs = ARRAY_SIZE(ads1015_events), \
178 .datasheet_name = "AIN"#_chan"-AIN"#_chan2, \
181 #define ADS1115_V_CHAN(_chan, _addr) { \
182 .type = IIO_VOLTAGE, \
186 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
187 BIT(IIO_CHAN_INFO_SCALE) | \
188 BIT(IIO_CHAN_INFO_SAMP_FREQ), \
189 .scan_index = _addr, \
194 .endianness = IIO_CPU, \
196 .event_spec = ads1015_events, \
197 .num_event_specs = ARRAY_SIZE(ads1015_events), \
198 .datasheet_name = "AIN"#_chan, \
201 #define ADS1115_V_DIFF_CHAN(_chan, _chan2, _addr) { \
202 .type = IIO_VOLTAGE, \
207 .channel2 = _chan2, \
208 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
209 BIT(IIO_CHAN_INFO_SCALE) | \
210 BIT(IIO_CHAN_INFO_SAMP_FREQ), \
211 .scan_index = _addr, \
216 .endianness = IIO_CPU, \
218 .event_spec = ads1015_events, \
219 .num_event_specs = ARRAY_SIZE(ads1015_events), \
220 .datasheet_name = "AIN"#_chan"-AIN"#_chan2, \
223 struct ads1015_channel_data
{
226 unsigned int data_rate
;
229 struct ads1015_thresh_data
{
230 unsigned int comp_queue
;
235 struct ads1015_data
{
236 struct regmap
*regmap
;
238 * Protects ADC ops, e.g: concurrent sysfs/buffered
239 * data reads, configuration updates
242 struct ads1015_channel_data channel_data
[ADS1015_CHANNELS
];
244 unsigned int event_channel
;
245 unsigned int comp_mode
;
246 struct ads1015_thresh_data thresh_data
[ADS1015_CHANNELS
];
248 unsigned int *data_rate
;
250 * Set to true when the ADC is switched to the continuous-conversion
251 * mode and exits from a power-down state. This flag is used to avoid
252 * getting the stale result from the conversion register.
257 static bool ads1015_event_channel_enabled(struct ads1015_data
*data
)
259 return (data
->event_channel
!= ADS1015_CHANNELS
);
262 static void ads1015_event_channel_enable(struct ads1015_data
*data
, int chan
,
265 WARN_ON(ads1015_event_channel_enabled(data
));
267 data
->event_channel
= chan
;
268 data
->comp_mode
= comp_mode
;
271 static void ads1015_event_channel_disable(struct ads1015_data
*data
, int chan
)
273 data
->event_channel
= ADS1015_CHANNELS
;
276 static bool ads1015_is_writeable_reg(struct device
*dev
, unsigned int reg
)
279 case ADS1015_CFG_REG
:
280 case ADS1015_LO_THRESH_REG
:
281 case ADS1015_HI_THRESH_REG
:
288 static const struct regmap_config ads1015_regmap_config
= {
291 .max_register
= ADS1015_HI_THRESH_REG
,
292 .writeable_reg
= ads1015_is_writeable_reg
,
295 static const struct iio_chan_spec ads1015_channels
[] = {
296 ADS1015_V_DIFF_CHAN(0, 1, ADS1015_AIN0_AIN1
),
297 ADS1015_V_DIFF_CHAN(0, 3, ADS1015_AIN0_AIN3
),
298 ADS1015_V_DIFF_CHAN(1, 3, ADS1015_AIN1_AIN3
),
299 ADS1015_V_DIFF_CHAN(2, 3, ADS1015_AIN2_AIN3
),
300 ADS1015_V_CHAN(0, ADS1015_AIN0
),
301 ADS1015_V_CHAN(1, ADS1015_AIN1
),
302 ADS1015_V_CHAN(2, ADS1015_AIN2
),
303 ADS1015_V_CHAN(3, ADS1015_AIN3
),
304 IIO_CHAN_SOFT_TIMESTAMP(ADS1015_TIMESTAMP
),
307 static const struct iio_chan_spec ads1115_channels
[] = {
308 ADS1115_V_DIFF_CHAN(0, 1, ADS1015_AIN0_AIN1
),
309 ADS1115_V_DIFF_CHAN(0, 3, ADS1015_AIN0_AIN3
),
310 ADS1115_V_DIFF_CHAN(1, 3, ADS1015_AIN1_AIN3
),
311 ADS1115_V_DIFF_CHAN(2, 3, ADS1015_AIN2_AIN3
),
312 ADS1115_V_CHAN(0, ADS1015_AIN0
),
313 ADS1115_V_CHAN(1, ADS1015_AIN1
),
314 ADS1115_V_CHAN(2, ADS1015_AIN2
),
315 ADS1115_V_CHAN(3, ADS1015_AIN3
),
316 IIO_CHAN_SOFT_TIMESTAMP(ADS1015_TIMESTAMP
),
320 static int ads1015_set_power_state(struct ads1015_data
*data
, bool on
)
323 struct device
*dev
= regmap_get_device(data
->regmap
);
326 ret
= pm_runtime_get_sync(dev
);
328 pm_runtime_put_noidle(dev
);
330 pm_runtime_mark_last_busy(dev
);
331 ret
= pm_runtime_put_autosuspend(dev
);
334 return ret
< 0 ? ret
: 0;
337 #else /* !CONFIG_PM */
339 static int ads1015_set_power_state(struct ads1015_data
*data
, bool on
)
344 #endif /* !CONFIG_PM */
347 int ads1015_get_adc_result(struct ads1015_data
*data
, int chan
, int *val
)
349 int ret
, pga
, dr
, dr_old
, conv_time
;
350 unsigned int old
, mask
, cfg
;
352 if (chan
< 0 || chan
>= ADS1015_CHANNELS
)
355 ret
= regmap_read(data
->regmap
, ADS1015_CFG_REG
, &old
);
359 pga
= data
->channel_data
[chan
].pga
;
360 dr
= data
->channel_data
[chan
].data_rate
;
361 mask
= ADS1015_CFG_MUX_MASK
| ADS1015_CFG_PGA_MASK
|
363 cfg
= chan
<< ADS1015_CFG_MUX_SHIFT
| pga
<< ADS1015_CFG_PGA_SHIFT
|
364 dr
<< ADS1015_CFG_DR_SHIFT
;
366 if (ads1015_event_channel_enabled(data
)) {
367 mask
|= ADS1015_CFG_COMP_QUE_MASK
| ADS1015_CFG_COMP_MODE_MASK
;
368 cfg
|= data
->thresh_data
[chan
].comp_queue
<<
369 ADS1015_CFG_COMP_QUE_SHIFT
|
371 ADS1015_CFG_COMP_MODE_SHIFT
;
374 cfg
= (old
& ~mask
) | (cfg
& mask
);
376 ret
= regmap_write(data
->regmap
, ADS1015_CFG_REG
, cfg
);
379 data
->conv_invalid
= true;
381 if (data
->conv_invalid
) {
382 dr_old
= (old
& ADS1015_CFG_DR_MASK
) >> ADS1015_CFG_DR_SHIFT
;
383 conv_time
= DIV_ROUND_UP(USEC_PER_SEC
, data
->data_rate
[dr_old
]);
384 conv_time
+= DIV_ROUND_UP(USEC_PER_SEC
, data
->data_rate
[dr
]);
385 conv_time
+= conv_time
/ 10; /* 10% internal clock inaccuracy */
386 usleep_range(conv_time
, conv_time
+ 1);
387 data
->conv_invalid
= false;
390 return regmap_read(data
->regmap
, ADS1015_CONV_REG
, val
);
393 static irqreturn_t
ads1015_trigger_handler(int irq
, void *p
)
395 struct iio_poll_func
*pf
= p
;
396 struct iio_dev
*indio_dev
= pf
->indio_dev
;
397 struct ads1015_data
*data
= iio_priv(indio_dev
);
398 s16 buf
[8]; /* 1x s16 ADC val + 3x s16 padding + 4x s16 timestamp */
401 memset(buf
, 0, sizeof(buf
));
403 mutex_lock(&data
->lock
);
404 chan
= find_first_bit(indio_dev
->active_scan_mask
,
405 indio_dev
->masklength
);
406 ret
= ads1015_get_adc_result(data
, chan
, &res
);
408 mutex_unlock(&data
->lock
);
413 mutex_unlock(&data
->lock
);
415 iio_push_to_buffers_with_timestamp(indio_dev
, buf
,
416 iio_get_time_ns(indio_dev
));
419 iio_trigger_notify_done(indio_dev
->trig
);
424 static int ads1015_set_scale(struct ads1015_data
*data
,
425 struct iio_chan_spec
const *chan
,
426 int scale
, int uscale
)
429 int fullscale
= div_s64((scale
* 1000000LL + uscale
) <<
430 (chan
->scan_type
.realbits
- 1), 1000000);
432 for (i
= 0; i
< ARRAY_SIZE(ads1015_fullscale_range
); i
++) {
433 if (ads1015_fullscale_range
[i
] == fullscale
) {
434 data
->channel_data
[chan
->address
].pga
= i
;
442 static int ads1015_set_data_rate(struct ads1015_data
*data
, int chan
, int rate
)
446 for (i
= 0; i
< ARRAY_SIZE(ads1015_data_rate
); i
++) {
447 if (data
->data_rate
[i
] == rate
) {
448 data
->channel_data
[chan
].data_rate
= i
;
456 static int ads1015_read_raw(struct iio_dev
*indio_dev
,
457 struct iio_chan_spec
const *chan
, int *val
,
458 int *val2
, long mask
)
461 struct ads1015_data
*data
= iio_priv(indio_dev
);
463 mutex_lock(&data
->lock
);
465 case IIO_CHAN_INFO_RAW
: {
466 int shift
= chan
->scan_type
.shift
;
468 ret
= iio_device_claim_direct_mode(indio_dev
);
472 if (ads1015_event_channel_enabled(data
) &&
473 data
->event_channel
!= chan
->address
) {
478 ret
= ads1015_set_power_state(data
, true);
482 ret
= ads1015_get_adc_result(data
, chan
->address
, val
);
484 ads1015_set_power_state(data
, false);
488 *val
= sign_extend32(*val
>> shift
, 15 - shift
);
490 ret
= ads1015_set_power_state(data
, false);
496 iio_device_release_direct_mode(indio_dev
);
499 case IIO_CHAN_INFO_SCALE
:
500 idx
= data
->channel_data
[chan
->address
].pga
;
501 *val
= ads1015_fullscale_range
[idx
];
502 *val2
= chan
->scan_type
.realbits
- 1;
503 ret
= IIO_VAL_FRACTIONAL_LOG2
;
505 case IIO_CHAN_INFO_SAMP_FREQ
:
506 idx
= data
->channel_data
[chan
->address
].data_rate
;
507 *val
= data
->data_rate
[idx
];
514 mutex_unlock(&data
->lock
);
519 static int ads1015_write_raw(struct iio_dev
*indio_dev
,
520 struct iio_chan_spec
const *chan
, int val
,
523 struct ads1015_data
*data
= iio_priv(indio_dev
);
526 mutex_lock(&data
->lock
);
528 case IIO_CHAN_INFO_SCALE
:
529 ret
= ads1015_set_scale(data
, chan
, val
, val2
);
531 case IIO_CHAN_INFO_SAMP_FREQ
:
532 ret
= ads1015_set_data_rate(data
, chan
->address
, val
);
538 mutex_unlock(&data
->lock
);
543 static int ads1015_read_event(struct iio_dev
*indio_dev
,
544 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
545 enum iio_event_direction dir
, enum iio_event_info info
, int *val
,
548 struct ads1015_data
*data
= iio_priv(indio_dev
);
550 unsigned int comp_queue
;
554 mutex_lock(&data
->lock
);
557 case IIO_EV_INFO_VALUE
:
558 *val
= (dir
== IIO_EV_DIR_RISING
) ?
559 data
->thresh_data
[chan
->address
].high_thresh
:
560 data
->thresh_data
[chan
->address
].low_thresh
;
563 case IIO_EV_INFO_PERIOD
:
564 dr
= data
->channel_data
[chan
->address
].data_rate
;
565 comp_queue
= data
->thresh_data
[chan
->address
].comp_queue
;
566 period
= ads1015_comp_queue
[comp_queue
] *
567 USEC_PER_SEC
/ data
->data_rate
[dr
];
569 *val
= period
/ USEC_PER_SEC
;
570 *val2
= period
% USEC_PER_SEC
;
571 ret
= IIO_VAL_INT_PLUS_MICRO
;
578 mutex_unlock(&data
->lock
);
583 static int ads1015_write_event(struct iio_dev
*indio_dev
,
584 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
585 enum iio_event_direction dir
, enum iio_event_info info
, int val
,
588 struct ads1015_data
*data
= iio_priv(indio_dev
);
589 int realbits
= chan
->scan_type
.realbits
;
595 mutex_lock(&data
->lock
);
598 case IIO_EV_INFO_VALUE
:
599 if (val
>= 1 << (realbits
- 1) || val
< -1 << (realbits
- 1)) {
603 if (dir
== IIO_EV_DIR_RISING
)
604 data
->thresh_data
[chan
->address
].high_thresh
= val
;
606 data
->thresh_data
[chan
->address
].low_thresh
= val
;
608 case IIO_EV_INFO_PERIOD
:
609 dr
= data
->channel_data
[chan
->address
].data_rate
;
610 period
= val
* USEC_PER_SEC
+ val2
;
612 for (i
= 0; i
< ARRAY_SIZE(ads1015_comp_queue
) - 1; i
++) {
613 if (period
<= ads1015_comp_queue
[i
] *
614 USEC_PER_SEC
/ data
->data_rate
[dr
])
617 data
->thresh_data
[chan
->address
].comp_queue
= i
;
624 mutex_unlock(&data
->lock
);
629 static int ads1015_read_event_config(struct iio_dev
*indio_dev
,
630 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
631 enum iio_event_direction dir
)
633 struct ads1015_data
*data
= iio_priv(indio_dev
);
636 mutex_lock(&data
->lock
);
637 if (data
->event_channel
== chan
->address
) {
639 case IIO_EV_DIR_RISING
:
642 case IIO_EV_DIR_EITHER
:
643 ret
= (data
->comp_mode
== ADS1015_CFG_COMP_MODE_WINDOW
);
650 mutex_unlock(&data
->lock
);
655 static int ads1015_enable_event_config(struct ads1015_data
*data
,
656 const struct iio_chan_spec
*chan
, int comp_mode
)
658 int low_thresh
= data
->thresh_data
[chan
->address
].low_thresh
;
659 int high_thresh
= data
->thresh_data
[chan
->address
].high_thresh
;
663 if (ads1015_event_channel_enabled(data
)) {
664 if (data
->event_channel
!= chan
->address
||
665 (data
->comp_mode
== ADS1015_CFG_COMP_MODE_TRAD
&&
666 comp_mode
== ADS1015_CFG_COMP_MODE_WINDOW
))
672 if (comp_mode
== ADS1015_CFG_COMP_MODE_TRAD
) {
673 low_thresh
= max(-1 << (chan
->scan_type
.realbits
- 1),
676 ret
= regmap_write(data
->regmap
, ADS1015_LO_THRESH_REG
,
677 low_thresh
<< chan
->scan_type
.shift
);
681 ret
= regmap_write(data
->regmap
, ADS1015_HI_THRESH_REG
,
682 high_thresh
<< chan
->scan_type
.shift
);
686 ret
= ads1015_set_power_state(data
, true);
690 ads1015_event_channel_enable(data
, chan
->address
, comp_mode
);
692 ret
= ads1015_get_adc_result(data
, chan
->address
, &val
);
694 ads1015_event_channel_disable(data
, chan
->address
);
695 ads1015_set_power_state(data
, false);
701 static int ads1015_disable_event_config(struct ads1015_data
*data
,
702 const struct iio_chan_spec
*chan
, int comp_mode
)
706 if (!ads1015_event_channel_enabled(data
))
709 if (data
->event_channel
!= chan
->address
)
712 if (data
->comp_mode
== ADS1015_CFG_COMP_MODE_TRAD
&&
713 comp_mode
== ADS1015_CFG_COMP_MODE_WINDOW
)
716 ret
= regmap_update_bits(data
->regmap
, ADS1015_CFG_REG
,
717 ADS1015_CFG_COMP_QUE_MASK
,
718 ADS1015_CFG_COMP_DISABLE
<<
719 ADS1015_CFG_COMP_QUE_SHIFT
);
723 ads1015_event_channel_disable(data
, chan
->address
);
725 return ads1015_set_power_state(data
, false);
728 static int ads1015_write_event_config(struct iio_dev
*indio_dev
,
729 const struct iio_chan_spec
*chan
, enum iio_event_type type
,
730 enum iio_event_direction dir
, int state
)
732 struct ads1015_data
*data
= iio_priv(indio_dev
);
734 int comp_mode
= (dir
== IIO_EV_DIR_EITHER
) ?
735 ADS1015_CFG_COMP_MODE_WINDOW
: ADS1015_CFG_COMP_MODE_TRAD
;
737 mutex_lock(&data
->lock
);
739 /* Prevent from enabling both buffer and event at a time */
740 ret
= iio_device_claim_direct_mode(indio_dev
);
742 mutex_unlock(&data
->lock
);
747 ret
= ads1015_enable_event_config(data
, chan
, comp_mode
);
749 ret
= ads1015_disable_event_config(data
, chan
, comp_mode
);
751 iio_device_release_direct_mode(indio_dev
);
752 mutex_unlock(&data
->lock
);
757 static irqreturn_t
ads1015_event_handler(int irq
, void *priv
)
759 struct iio_dev
*indio_dev
= priv
;
760 struct ads1015_data
*data
= iio_priv(indio_dev
);
764 /* Clear the latched ALERT/RDY pin */
765 ret
= regmap_read(data
->regmap
, ADS1015_CONV_REG
, &val
);
769 if (ads1015_event_channel_enabled(data
)) {
770 enum iio_event_direction dir
;
773 dir
= data
->comp_mode
== ADS1015_CFG_COMP_MODE_TRAD
?
774 IIO_EV_DIR_RISING
: IIO_EV_DIR_EITHER
;
775 code
= IIO_UNMOD_EVENT_CODE(IIO_VOLTAGE
, data
->event_channel
,
776 IIO_EV_TYPE_THRESH
, dir
);
777 iio_push_event(indio_dev
, code
, iio_get_time_ns(indio_dev
));
783 static int ads1015_buffer_preenable(struct iio_dev
*indio_dev
)
785 struct ads1015_data
*data
= iio_priv(indio_dev
);
787 /* Prevent from enabling both buffer and event at a time */
788 if (ads1015_event_channel_enabled(data
))
791 return ads1015_set_power_state(iio_priv(indio_dev
), true);
794 static int ads1015_buffer_postdisable(struct iio_dev
*indio_dev
)
796 return ads1015_set_power_state(iio_priv(indio_dev
), false);
799 static const struct iio_buffer_setup_ops ads1015_buffer_setup_ops
= {
800 .preenable
= ads1015_buffer_preenable
,
801 .postdisable
= ads1015_buffer_postdisable
,
802 .validate_scan_mask
= &iio_validate_scan_mask_onehot
,
805 static IIO_CONST_ATTR_NAMED(ads1015_scale_available
, scale_available
,
806 "3 2 1 0.5 0.25 0.125");
807 static IIO_CONST_ATTR_NAMED(ads1115_scale_available
, scale_available
,
808 "0.1875 0.125 0.0625 0.03125 0.015625 0.007813");
810 static IIO_CONST_ATTR_NAMED(ads1015_sampling_frequency_available
,
811 sampling_frequency_available
, "128 250 490 920 1600 2400 3300");
812 static IIO_CONST_ATTR_NAMED(ads1115_sampling_frequency_available
,
813 sampling_frequency_available
, "8 16 32 64 128 250 475 860");
815 static struct attribute
*ads1015_attributes
[] = {
816 &iio_const_attr_ads1015_scale_available
.dev_attr
.attr
,
817 &iio_const_attr_ads1015_sampling_frequency_available
.dev_attr
.attr
,
821 static const struct attribute_group ads1015_attribute_group
= {
822 .attrs
= ads1015_attributes
,
825 static struct attribute
*ads1115_attributes
[] = {
826 &iio_const_attr_ads1115_scale_available
.dev_attr
.attr
,
827 &iio_const_attr_ads1115_sampling_frequency_available
.dev_attr
.attr
,
831 static const struct attribute_group ads1115_attribute_group
= {
832 .attrs
= ads1115_attributes
,
835 static const struct iio_info ads1015_info
= {
836 .read_raw
= ads1015_read_raw
,
837 .write_raw
= ads1015_write_raw
,
838 .read_event_value
= ads1015_read_event
,
839 .write_event_value
= ads1015_write_event
,
840 .read_event_config
= ads1015_read_event_config
,
841 .write_event_config
= ads1015_write_event_config
,
842 .attrs
= &ads1015_attribute_group
,
845 static const struct iio_info ads1115_info
= {
846 .read_raw
= ads1015_read_raw
,
847 .write_raw
= ads1015_write_raw
,
848 .read_event_value
= ads1015_read_event
,
849 .write_event_value
= ads1015_write_event
,
850 .read_event_config
= ads1015_read_event_config
,
851 .write_event_config
= ads1015_write_event_config
,
852 .attrs
= &ads1115_attribute_group
,
855 static int ads1015_client_get_channels_config(struct i2c_client
*client
)
857 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
858 struct ads1015_data
*data
= iio_priv(indio_dev
);
859 struct device
*dev
= &client
->dev
;
860 struct fwnode_handle
*node
;
863 device_for_each_child_node(dev
, node
) {
865 unsigned int channel
;
866 unsigned int pga
= ADS1015_DEFAULT_PGA
;
867 unsigned int data_rate
= ADS1015_DEFAULT_DATA_RATE
;
869 if (fwnode_property_read_u32(node
, "reg", &pval
)) {
870 dev_err(dev
, "invalid reg on %pfw\n", node
);
875 if (channel
>= ADS1015_CHANNELS
) {
876 dev_err(dev
, "invalid channel index %d on %pfw\n",
881 if (!fwnode_property_read_u32(node
, "ti,gain", &pval
)) {
884 dev_err(dev
, "invalid gain on %pfw\n", node
);
885 fwnode_handle_put(node
);
890 if (!fwnode_property_read_u32(node
, "ti,datarate", &pval
)) {
893 dev_err(dev
, "invalid data_rate on %pfw\n", node
);
894 fwnode_handle_put(node
);
899 data
->channel_data
[channel
].pga
= pga
;
900 data
->channel_data
[channel
].data_rate
= data_rate
;
905 return i
< 0 ? -EINVAL
: 0;
908 static void ads1015_get_channels_config(struct i2c_client
*client
)
912 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
913 struct ads1015_data
*data
= iio_priv(indio_dev
);
915 if (!ads1015_client_get_channels_config(client
))
918 /* fallback on default configuration */
919 for (k
= 0; k
< ADS1015_CHANNELS
; ++k
) {
920 data
->channel_data
[k
].pga
= ADS1015_DEFAULT_PGA
;
921 data
->channel_data
[k
].data_rate
= ADS1015_DEFAULT_DATA_RATE
;
925 static int ads1015_set_conv_mode(struct ads1015_data
*data
, int mode
)
927 return regmap_update_bits(data
->regmap
, ADS1015_CFG_REG
,
928 ADS1015_CFG_MOD_MASK
,
929 mode
<< ADS1015_CFG_MOD_SHIFT
);
932 static int ads1015_probe(struct i2c_client
*client
,
933 const struct i2c_device_id
*id
)
935 struct iio_dev
*indio_dev
;
936 struct ads1015_data
*data
;
941 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*data
));
945 data
= iio_priv(indio_dev
);
946 i2c_set_clientdata(client
, indio_dev
);
948 mutex_init(&data
->lock
);
950 indio_dev
->name
= ADS1015_DRV_NAME
;
951 indio_dev
->modes
= INDIO_DIRECT_MODE
;
953 chip
= (enum chip_ids
)device_get_match_data(&client
->dev
);
955 chip
= id
->driver_data
;
958 indio_dev
->channels
= ads1015_channels
;
959 indio_dev
->num_channels
= ARRAY_SIZE(ads1015_channels
);
960 indio_dev
->info
= &ads1015_info
;
961 data
->data_rate
= (unsigned int *) &ads1015_data_rate
;
964 indio_dev
->channels
= ads1115_channels
;
965 indio_dev
->num_channels
= ARRAY_SIZE(ads1115_channels
);
966 indio_dev
->info
= &ads1115_info
;
967 data
->data_rate
= (unsigned int *) &ads1115_data_rate
;
970 dev_err(&client
->dev
, "Unknown chip %d\n", chip
);
974 data
->event_channel
= ADS1015_CHANNELS
;
976 * Set default lower and upper threshold to min and max value
979 for (i
= 0; i
< ADS1015_CHANNELS
; i
++) {
980 int realbits
= indio_dev
->channels
[i
].scan_type
.realbits
;
982 data
->thresh_data
[i
].low_thresh
= -1 << (realbits
- 1);
983 data
->thresh_data
[i
].high_thresh
= (1 << (realbits
- 1)) - 1;
986 /* we need to keep this ABI the same as used by hwmon ADS1015 driver */
987 ads1015_get_channels_config(client
);
989 data
->regmap
= devm_regmap_init_i2c(client
, &ads1015_regmap_config
);
990 if (IS_ERR(data
->regmap
)) {
991 dev_err(&client
->dev
, "Failed to allocate register map\n");
992 return PTR_ERR(data
->regmap
);
995 ret
= devm_iio_triggered_buffer_setup(&client
->dev
, indio_dev
, NULL
,
996 ads1015_trigger_handler
,
997 &ads1015_buffer_setup_ops
);
999 dev_err(&client
->dev
, "iio triggered buffer setup failed\n");
1004 unsigned long irq_trig
=
1005 irqd_get_trigger_type(irq_get_irq_data(client
->irq
));
1006 unsigned int cfg_comp_mask
= ADS1015_CFG_COMP_QUE_MASK
|
1007 ADS1015_CFG_COMP_LAT_MASK
| ADS1015_CFG_COMP_POL_MASK
;
1008 unsigned int cfg_comp
=
1009 ADS1015_CFG_COMP_DISABLE
<< ADS1015_CFG_COMP_QUE_SHIFT
|
1010 1 << ADS1015_CFG_COMP_LAT_SHIFT
;
1013 case IRQF_TRIGGER_LOW
:
1014 cfg_comp
|= ADS1015_CFG_COMP_POL_LOW
<<
1015 ADS1015_CFG_COMP_POL_SHIFT
;
1017 case IRQF_TRIGGER_HIGH
:
1018 cfg_comp
|= ADS1015_CFG_COMP_POL_HIGH
<<
1019 ADS1015_CFG_COMP_POL_SHIFT
;
1025 ret
= regmap_update_bits(data
->regmap
, ADS1015_CFG_REG
,
1026 cfg_comp_mask
, cfg_comp
);
1030 ret
= devm_request_threaded_irq(&client
->dev
, client
->irq
,
1031 NULL
, ads1015_event_handler
,
1032 irq_trig
| IRQF_ONESHOT
,
1033 client
->name
, indio_dev
);
1038 ret
= ads1015_set_conv_mode(data
, ADS1015_CONTINUOUS
);
1042 data
->conv_invalid
= true;
1044 ret
= pm_runtime_set_active(&client
->dev
);
1047 pm_runtime_set_autosuspend_delay(&client
->dev
, ADS1015_SLEEP_DELAY_MS
);
1048 pm_runtime_use_autosuspend(&client
->dev
);
1049 pm_runtime_enable(&client
->dev
);
1051 ret
= iio_device_register(indio_dev
);
1053 dev_err(&client
->dev
, "Failed to register IIO device\n");
1060 static int ads1015_remove(struct i2c_client
*client
)
1062 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
1063 struct ads1015_data
*data
= iio_priv(indio_dev
);
1065 iio_device_unregister(indio_dev
);
1067 pm_runtime_disable(&client
->dev
);
1068 pm_runtime_set_suspended(&client
->dev
);
1069 pm_runtime_put_noidle(&client
->dev
);
1071 /* power down single shot mode */
1072 return ads1015_set_conv_mode(data
, ADS1015_SINGLESHOT
);
1076 static int ads1015_runtime_suspend(struct device
*dev
)
1078 struct iio_dev
*indio_dev
= i2c_get_clientdata(to_i2c_client(dev
));
1079 struct ads1015_data
*data
= iio_priv(indio_dev
);
1081 return ads1015_set_conv_mode(data
, ADS1015_SINGLESHOT
);
1084 static int ads1015_runtime_resume(struct device
*dev
)
1086 struct iio_dev
*indio_dev
= i2c_get_clientdata(to_i2c_client(dev
));
1087 struct ads1015_data
*data
= iio_priv(indio_dev
);
1090 ret
= ads1015_set_conv_mode(data
, ADS1015_CONTINUOUS
);
1092 data
->conv_invalid
= true;
1098 static const struct dev_pm_ops ads1015_pm_ops
= {
1099 SET_RUNTIME_PM_OPS(ads1015_runtime_suspend
,
1100 ads1015_runtime_resume
, NULL
)
1103 static const struct i2c_device_id ads1015_id
[] = {
1104 {"ads1015", ADS1015
},
1105 {"ads1115", ADS1115
},
1108 MODULE_DEVICE_TABLE(i2c
, ads1015_id
);
1110 static const struct of_device_id ads1015_of_match
[] = {
1112 .compatible
= "ti,ads1015",
1113 .data
= (void *)ADS1015
1116 .compatible
= "ti,ads1115",
1117 .data
= (void *)ADS1115
1121 MODULE_DEVICE_TABLE(of
, ads1015_of_match
);
1123 static struct i2c_driver ads1015_driver
= {
1125 .name
= ADS1015_DRV_NAME
,
1126 .of_match_table
= ads1015_of_match
,
1127 .pm
= &ads1015_pm_ops
,
1129 .probe
= ads1015_probe
,
1130 .remove
= ads1015_remove
,
1131 .id_table
= ads1015_id
,
1134 module_i2c_driver(ads1015_driver
);
1136 MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com>");
1137 MODULE_DESCRIPTION("Texas Instruments ADS1015 ADC driver");
1138 MODULE_LICENSE("GPL v2");