2 * INA2XX Current and Power Monitors
4 * Copyright 2015 Baylibre SAS.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Based on linux/drivers/iio/adc/ad7291.c
11 * Copyright 2010-2011 Analog Devices Inc.
13 * Based on linux/drivers/hwmon/ina2xx.c
14 * Copyright 2012 Lothar Felten <l-felten@ti.com>
16 * Licensed under the GPL-2 or later.
18 * IIO driver for INA219-220-226-230-231
20 * Configurable 7-bit I2C slave address from 0x40 to 0x4F
23 #include <linux/delay.h>
24 #include <linux/i2c.h>
25 #include <linux/iio/iio.h>
26 #include <linux/iio/buffer.h>
27 #include <linux/iio/kfifo_buf.h>
28 #include <linux/iio/sysfs.h>
29 #include <linux/kthread.h>
30 #include <linux/module.h>
31 #include <linux/of_device.h>
32 #include <linux/regmap.h>
33 #include <linux/sched/task.h>
34 #include <linux/util_macros.h>
36 #include <linux/platform_data/ina2xx.h>
38 /* INA2XX registers definition */
39 #define INA2XX_CONFIG 0x00
40 #define INA2XX_SHUNT_VOLTAGE 0x01 /* readonly */
41 #define INA2XX_BUS_VOLTAGE 0x02 /* readonly */
42 #define INA2XX_POWER 0x03 /* readonly */
43 #define INA2XX_CURRENT 0x04 /* readonly */
44 #define INA2XX_CALIBRATION 0x05
46 #define INA226_MASK_ENABLE 0x06
47 #define INA226_CVRF BIT(3)
49 #define INA2XX_MAX_REGISTERS 8
51 /* settings - depend on use case */
52 #define INA219_CONFIG_DEFAULT 0x399F /* PGA=1/8, BRNG=32V */
53 #define INA219_DEFAULT_IT 532
54 #define INA219_DEFAULT_BRNG 1 /* 32V */
55 #define INA219_DEFAULT_PGA 125 /* 1000/8 */
56 #define INA226_CONFIG_DEFAULT 0x4327
57 #define INA226_DEFAULT_AVG 4
58 #define INA226_DEFAULT_IT 1110
60 #define INA2XX_RSHUNT_DEFAULT 10000
63 * bit masks for reading the settings in the configuration register
64 * FIXME: use regmap_fields.
66 #define INA2XX_MODE_MASK GENMASK(3, 0)
68 /* Gain for VShunt: 1/8 (default), 1/4, 1/2, 1 */
69 #define INA219_PGA_MASK GENMASK(12, 11)
70 #define INA219_SHIFT_PGA(val) ((val) << 11)
72 /* VBus range: 32V (default), 16V */
73 #define INA219_BRNG_MASK BIT(13)
74 #define INA219_SHIFT_BRNG(val) ((val) << 13)
76 /* Averaging for VBus/VShunt/Power */
77 #define INA226_AVG_MASK GENMASK(11, 9)
78 #define INA226_SHIFT_AVG(val) ((val) << 9)
80 /* Integration time for VBus */
81 #define INA219_ITB_MASK GENMASK(10, 7)
82 #define INA219_SHIFT_ITB(val) ((val) << 7)
83 #define INA226_ITB_MASK GENMASK(8, 6)
84 #define INA226_SHIFT_ITB(val) ((val) << 6)
86 /* Integration time for VShunt */
87 #define INA219_ITS_MASK GENMASK(6, 3)
88 #define INA219_SHIFT_ITS(val) ((val) << 3)
89 #define INA226_ITS_MASK GENMASK(5, 3)
90 #define INA226_SHIFT_ITS(val) ((val) << 3)
92 /* INA219 Bus voltage register, low bits are flags */
93 #define INA219_OVF BIT(0)
94 #define INA219_CNVR BIT(1)
95 #define INA219_BUS_VOLTAGE_SHIFT 3
97 /* Cosmetic macro giving the sampling period for a full P=UxI cycle */
98 #define SAMPLING_PERIOD(c) ((c->int_time_vbus + c->int_time_vshunt) \
101 static bool ina2xx_is_writeable_reg(struct device
*dev
, unsigned int reg
)
103 return (reg
== INA2XX_CONFIG
) || (reg
> INA2XX_CURRENT
);
106 static bool ina2xx_is_volatile_reg(struct device
*dev
, unsigned int reg
)
108 return (reg
!= INA2XX_CONFIG
);
111 static inline bool is_signed_reg(unsigned int reg
)
113 return (reg
== INA2XX_SHUNT_VOLTAGE
) || (reg
== INA2XX_CURRENT
);
116 static const struct regmap_config ina2xx_regmap_config
= {
119 .max_register
= INA2XX_MAX_REGISTERS
,
120 .writeable_reg
= ina2xx_is_writeable_reg
,
121 .volatile_reg
= ina2xx_is_volatile_reg
,
124 enum ina2xx_ids
{ ina219
, ina226
};
126 struct ina2xx_config
{
128 int calibration_value
;
129 int shunt_voltage_lsb
; /* nV */
130 int bus_voltage_shift
; /* position of lsb */
131 int bus_voltage_lsb
; /* uV */
132 /* fixed relation between current and power lsb, uW/uA */
133 int power_lsb_factor
;
134 enum ina2xx_ids chip_id
;
137 struct ina2xx_chip_info
{
138 struct regmap
*regmap
;
139 struct task_struct
*task
;
140 const struct ina2xx_config
*config
;
141 struct mutex state_lock
;
142 unsigned int shunt_resistor_uohm
;
144 int int_time_vbus
; /* Bus voltage integration time uS */
145 int int_time_vshunt
; /* Shunt voltage integration time uS */
146 int range_vbus
; /* Bus voltage maximum in V */
147 int pga_gain_vshunt
; /* Shunt voltage PGA gain */
148 bool allow_async_readout
;
151 static const struct ina2xx_config ina2xx_config
[] = {
153 .config_default
= INA219_CONFIG_DEFAULT
,
154 .calibration_value
= 4096,
155 .shunt_voltage_lsb
= 10000,
156 .bus_voltage_shift
= INA219_BUS_VOLTAGE_SHIFT
,
157 .bus_voltage_lsb
= 4000,
158 .power_lsb_factor
= 20,
162 .config_default
= INA226_CONFIG_DEFAULT
,
163 .calibration_value
= 2048,
164 .shunt_voltage_lsb
= 2500,
165 .bus_voltage_shift
= 0,
166 .bus_voltage_lsb
= 1250,
167 .power_lsb_factor
= 25,
172 static int ina2xx_read_raw(struct iio_dev
*indio_dev
,
173 struct iio_chan_spec
const *chan
,
174 int *val
, int *val2
, long mask
)
177 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
181 case IIO_CHAN_INFO_RAW
:
182 ret
= regmap_read(chip
->regmap
, chan
->address
, ®val
);
186 if (is_signed_reg(chan
->address
))
191 if (chan
->address
== INA2XX_BUS_VOLTAGE
)
192 *val
>>= chip
->config
->bus_voltage_shift
;
196 case IIO_CHAN_INFO_OVERSAMPLING_RATIO
:
200 case IIO_CHAN_INFO_INT_TIME
:
202 if (chan
->address
== INA2XX_SHUNT_VOLTAGE
)
203 *val2
= chip
->int_time_vshunt
;
205 *val2
= chip
->int_time_vbus
;
207 return IIO_VAL_INT_PLUS_MICRO
;
209 case IIO_CHAN_INFO_SAMP_FREQ
:
211 * Sample freq is read only, it is a consequence of
212 * 1/AVG*(CT_bus+CT_shunt).
214 *val
= DIV_ROUND_CLOSEST(1000000, SAMPLING_PERIOD(chip
));
218 case IIO_CHAN_INFO_SCALE
:
219 switch (chan
->address
) {
220 case INA2XX_SHUNT_VOLTAGE
:
221 /* processed (mV) = raw * lsb(nV) / 1000000 */
222 *val
= chip
->config
->shunt_voltage_lsb
;
224 return IIO_VAL_FRACTIONAL
;
226 case INA2XX_BUS_VOLTAGE
:
227 /* processed (mV) = raw * lsb (uV) / 1000 */
228 *val
= chip
->config
->bus_voltage_lsb
;
230 return IIO_VAL_FRACTIONAL
;
234 * processed (mA) = raw * current_lsb (mA)
235 * current_lsb (mA) = shunt_voltage_lsb (nV) /
236 * shunt_resistor (uOhm)
238 *val
= chip
->config
->shunt_voltage_lsb
;
239 *val2
= chip
->shunt_resistor_uohm
;
240 return IIO_VAL_FRACTIONAL
;
244 * processed (mW) = raw * power_lsb (mW)
245 * power_lsb (mW) = power_lsb_factor (mW/mA) *
248 *val
= chip
->config
->power_lsb_factor
*
249 chip
->config
->shunt_voltage_lsb
;
250 *val2
= chip
->shunt_resistor_uohm
;
251 return IIO_VAL_FRACTIONAL
;
254 case IIO_CHAN_INFO_HARDWAREGAIN
:
255 switch (chan
->address
) {
256 case INA2XX_SHUNT_VOLTAGE
:
257 *val
= chip
->pga_gain_vshunt
;
259 return IIO_VAL_FRACTIONAL
;
261 case INA2XX_BUS_VOLTAGE
:
262 *val
= chip
->range_vbus
== 32 ? 1 : 2;
271 * Available averaging rates for ina226. The indices correspond with
272 * the bit values expected by the chip (according to the ina226 datasheet,
273 * table 3 AVG bit settings, found at
274 * http://www.ti.com/lit/ds/symlink/ina226.pdf.
276 static const int ina226_avg_tab
[] = { 1, 4, 16, 64, 128, 256, 512, 1024 };
278 static int ina226_set_average(struct ina2xx_chip_info
*chip
, unsigned int val
,
279 unsigned int *config
)
283 if (val
> 1024 || val
< 1)
286 bits
= find_closest(val
, ina226_avg_tab
,
287 ARRAY_SIZE(ina226_avg_tab
));
289 chip
->avg
= ina226_avg_tab
[bits
];
291 *config
&= ~INA226_AVG_MASK
;
292 *config
|= INA226_SHIFT_AVG(bits
) & INA226_AVG_MASK
;
297 /* Conversion times in uS */
298 static const int ina226_conv_time_tab
[] = { 140, 204, 332, 588, 1100,
301 static int ina226_set_int_time_vbus(struct ina2xx_chip_info
*chip
,
302 unsigned int val_us
, unsigned int *config
)
306 if (val_us
> 8244 || val_us
< 140)
309 bits
= find_closest(val_us
, ina226_conv_time_tab
,
310 ARRAY_SIZE(ina226_conv_time_tab
));
312 chip
->int_time_vbus
= ina226_conv_time_tab
[bits
];
314 *config
&= ~INA226_ITB_MASK
;
315 *config
|= INA226_SHIFT_ITB(bits
) & INA226_ITB_MASK
;
320 static int ina226_set_int_time_vshunt(struct ina2xx_chip_info
*chip
,
321 unsigned int val_us
, unsigned int *config
)
325 if (val_us
> 8244 || val_us
< 140)
328 bits
= find_closest(val_us
, ina226_conv_time_tab
,
329 ARRAY_SIZE(ina226_conv_time_tab
));
331 chip
->int_time_vshunt
= ina226_conv_time_tab
[bits
];
333 *config
&= ~INA226_ITS_MASK
;
334 *config
|= INA226_SHIFT_ITS(bits
) & INA226_ITS_MASK
;
339 /* Conversion times in uS. */
340 static const int ina219_conv_time_tab_subsample
[] = { 84, 148, 276, 532 };
341 static const int ina219_conv_time_tab_average
[] = { 532, 1060, 2130, 4260,
342 8510, 17020, 34050, 68100};
344 static int ina219_lookup_int_time(unsigned int *val_us
, int *bits
)
346 if (*val_us
> 68100 || *val_us
< 84)
349 if (*val_us
<= 532) {
350 *bits
= find_closest(*val_us
, ina219_conv_time_tab_subsample
,
351 ARRAY_SIZE(ina219_conv_time_tab_subsample
));
352 *val_us
= ina219_conv_time_tab_subsample
[*bits
];
354 *bits
= find_closest(*val_us
, ina219_conv_time_tab_average
,
355 ARRAY_SIZE(ina219_conv_time_tab_average
));
356 *val_us
= ina219_conv_time_tab_average
[*bits
];
363 static int ina219_set_int_time_vbus(struct ina2xx_chip_info
*chip
,
364 unsigned int val_us
, unsigned int *config
)
367 unsigned int val_us_best
= val_us
;
369 ret
= ina219_lookup_int_time(&val_us_best
, &bits
);
373 chip
->int_time_vbus
= val_us_best
;
375 *config
&= ~INA219_ITB_MASK
;
376 *config
|= INA219_SHIFT_ITB(bits
) & INA219_ITB_MASK
;
381 static int ina219_set_int_time_vshunt(struct ina2xx_chip_info
*chip
,
382 unsigned int val_us
, unsigned int *config
)
385 unsigned int val_us_best
= val_us
;
387 ret
= ina219_lookup_int_time(&val_us_best
, &bits
);
391 chip
->int_time_vshunt
= val_us_best
;
393 *config
&= ~INA219_ITS_MASK
;
394 *config
|= INA219_SHIFT_ITS(bits
) & INA219_ITS_MASK
;
399 static const int ina219_vbus_range_tab
[] = { 1, 2 };
400 static int ina219_set_vbus_range_denom(struct ina2xx_chip_info
*chip
,
402 unsigned int *config
)
405 chip
->range_vbus
= 32;
407 chip
->range_vbus
= 16;
411 *config
&= ~INA219_BRNG_MASK
;
412 *config
|= INA219_SHIFT_BRNG(range
== 1 ? 1 : 0) & INA219_BRNG_MASK
;
417 static const int ina219_vshunt_gain_tab
[] = { 125, 250, 500, 1000 };
418 static const int ina219_vshunt_gain_frac
[] = {
419 125, 1000, 250, 1000, 500, 1000, 1000, 1000 };
421 static int ina219_set_vshunt_pga_gain(struct ina2xx_chip_info
*chip
,
423 unsigned int *config
)
427 if (gain
< 125 || gain
> 1000)
430 bits
= find_closest(gain
, ina219_vshunt_gain_tab
,
431 ARRAY_SIZE(ina219_vshunt_gain_tab
));
433 chip
->pga_gain_vshunt
= ina219_vshunt_gain_tab
[bits
];
436 *config
&= ~INA219_PGA_MASK
;
437 *config
|= INA219_SHIFT_PGA(bits
) & INA219_PGA_MASK
;
442 static int ina2xx_read_avail(struct iio_dev
*indio_dev
,
443 struct iio_chan_spec
const *chan
,
444 const int **vals
, int *type
, int *length
,
448 case IIO_CHAN_INFO_HARDWAREGAIN
:
449 switch (chan
->address
) {
450 case INA2XX_SHUNT_VOLTAGE
:
451 *type
= IIO_VAL_FRACTIONAL
;
452 *length
= sizeof(ina219_vshunt_gain_frac
) / sizeof(int);
453 *vals
= ina219_vshunt_gain_frac
;
454 return IIO_AVAIL_LIST
;
456 case INA2XX_BUS_VOLTAGE
:
458 *length
= sizeof(ina219_vbus_range_tab
) / sizeof(int);
459 *vals
= ina219_vbus_range_tab
;
460 return IIO_AVAIL_LIST
;
467 static int ina2xx_write_raw(struct iio_dev
*indio_dev
,
468 struct iio_chan_spec
const *chan
,
469 int val
, int val2
, long mask
)
471 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
472 unsigned int config
, tmp
;
475 if (iio_buffer_enabled(indio_dev
))
478 mutex_lock(&chip
->state_lock
);
480 ret
= regmap_read(chip
->regmap
, INA2XX_CONFIG
, &config
);
487 case IIO_CHAN_INFO_OVERSAMPLING_RATIO
:
488 ret
= ina226_set_average(chip
, val
, &tmp
);
491 case IIO_CHAN_INFO_INT_TIME
:
492 if (chip
->config
->chip_id
== ina226
) {
493 if (chan
->address
== INA2XX_SHUNT_VOLTAGE
)
494 ret
= ina226_set_int_time_vshunt(chip
, val2
,
497 ret
= ina226_set_int_time_vbus(chip
, val2
,
500 if (chan
->address
== INA2XX_SHUNT_VOLTAGE
)
501 ret
= ina219_set_int_time_vshunt(chip
, val2
,
504 ret
= ina219_set_int_time_vbus(chip
, val2
,
509 case IIO_CHAN_INFO_HARDWAREGAIN
:
510 if (chan
->address
== INA2XX_SHUNT_VOLTAGE
)
511 ret
= ina219_set_vshunt_pga_gain(chip
, val
* 1000 +
514 ret
= ina219_set_vbus_range_denom(chip
, val
, &tmp
);
521 if (!ret
&& (tmp
!= config
))
522 ret
= regmap_write(chip
->regmap
, INA2XX_CONFIG
, tmp
);
524 mutex_unlock(&chip
->state_lock
);
529 static ssize_t
ina2xx_allow_async_readout_show(struct device
*dev
,
530 struct device_attribute
*attr
,
533 struct ina2xx_chip_info
*chip
= iio_priv(dev_to_iio_dev(dev
));
535 return sprintf(buf
, "%d\n", chip
->allow_async_readout
);
538 static ssize_t
ina2xx_allow_async_readout_store(struct device
*dev
,
539 struct device_attribute
*attr
,
540 const char *buf
, size_t len
)
542 struct ina2xx_chip_info
*chip
= iio_priv(dev_to_iio_dev(dev
));
546 ret
= strtobool((const char *) buf
, &val
);
550 chip
->allow_async_readout
= val
;
556 * Calibration register is set to the best value, which eliminates
557 * truncation errors on calculating current register in hardware.
558 * According to datasheet (INA 226: eq. 3, INA219: eq. 4) the best values
559 * are 2048 for ina226 and 4096 for ina219. They are hardcoded as
562 static int ina2xx_set_calibration(struct ina2xx_chip_info
*chip
)
564 return regmap_write(chip
->regmap
, INA2XX_CALIBRATION
,
565 chip
->config
->calibration_value
);
568 static int set_shunt_resistor(struct ina2xx_chip_info
*chip
, unsigned int val
)
570 if (val
== 0 || val
> INT_MAX
)
573 chip
->shunt_resistor_uohm
= val
;
578 static ssize_t
ina2xx_shunt_resistor_show(struct device
*dev
,
579 struct device_attribute
*attr
,
582 struct ina2xx_chip_info
*chip
= iio_priv(dev_to_iio_dev(dev
));
583 int vals
[2] = { chip
->shunt_resistor_uohm
, 1000000 };
585 return iio_format_value(buf
, IIO_VAL_FRACTIONAL
, 1, vals
);
588 static ssize_t
ina2xx_shunt_resistor_store(struct device
*dev
,
589 struct device_attribute
*attr
,
590 const char *buf
, size_t len
)
592 struct ina2xx_chip_info
*chip
= iio_priv(dev_to_iio_dev(dev
));
593 int val
, val_fract
, ret
;
595 ret
= iio_str_to_fixpoint(buf
, 100000, &val
, &val_fract
);
599 ret
= set_shunt_resistor(chip
, val
* 1000000 + val_fract
);
606 #define INA219_CHAN(_type, _index, _address) { \
608 .address = (_address), \
610 .channel = (_index), \
611 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
612 BIT(IIO_CHAN_INFO_SCALE), \
613 .info_mask_shared_by_dir = BIT(IIO_CHAN_INFO_SAMP_FREQ), \
614 .scan_index = (_index), \
619 .endianness = IIO_CPU, \
623 #define INA226_CHAN(_type, _index, _address) { \
625 .address = (_address), \
627 .channel = (_index), \
628 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
629 BIT(IIO_CHAN_INFO_SCALE), \
630 .info_mask_shared_by_dir = BIT(IIO_CHAN_INFO_SAMP_FREQ) | \
631 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
632 .scan_index = (_index), \
637 .endianness = IIO_CPU, \
642 * Sampling Freq is a consequence of the integration times of
643 * the Voltage channels.
645 #define INA219_CHAN_VOLTAGE(_index, _address, _shift) { \
646 .type = IIO_VOLTAGE, \
647 .address = (_address), \
649 .channel = (_index), \
650 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
651 BIT(IIO_CHAN_INFO_SCALE) | \
652 BIT(IIO_CHAN_INFO_INT_TIME) | \
653 BIT(IIO_CHAN_INFO_HARDWAREGAIN), \
654 .info_mask_separate_available = \
655 BIT(IIO_CHAN_INFO_HARDWAREGAIN), \
656 .info_mask_shared_by_dir = BIT(IIO_CHAN_INFO_SAMP_FREQ), \
657 .scan_index = (_index), \
661 .realbits = 16 - _shift, \
663 .endianness = IIO_LE, \
667 #define INA226_CHAN_VOLTAGE(_index, _address) { \
668 .type = IIO_VOLTAGE, \
669 .address = (_address), \
671 .channel = (_index), \
672 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
673 BIT(IIO_CHAN_INFO_SCALE) | \
674 BIT(IIO_CHAN_INFO_INT_TIME), \
675 .info_mask_shared_by_dir = BIT(IIO_CHAN_INFO_SAMP_FREQ) | \
676 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), \
677 .scan_index = (_index), \
682 .endianness = IIO_LE, \
687 static const struct iio_chan_spec ina226_channels
[] = {
688 INA226_CHAN_VOLTAGE(0, INA2XX_SHUNT_VOLTAGE
),
689 INA226_CHAN_VOLTAGE(1, INA2XX_BUS_VOLTAGE
),
690 INA226_CHAN(IIO_POWER
, 2, INA2XX_POWER
),
691 INA226_CHAN(IIO_CURRENT
, 3, INA2XX_CURRENT
),
692 IIO_CHAN_SOFT_TIMESTAMP(4),
695 static const struct iio_chan_spec ina219_channels
[] = {
696 INA219_CHAN_VOLTAGE(0, INA2XX_SHUNT_VOLTAGE
, 0),
697 INA219_CHAN_VOLTAGE(1, INA2XX_BUS_VOLTAGE
, INA219_BUS_VOLTAGE_SHIFT
),
698 INA219_CHAN(IIO_POWER
, 2, INA2XX_POWER
),
699 INA219_CHAN(IIO_CURRENT
, 3, INA2XX_CURRENT
),
700 IIO_CHAN_SOFT_TIMESTAMP(4),
703 static int ina2xx_conversion_ready(struct iio_dev
*indio_dev
)
705 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
710 * Because the timer thread and the chip conversion clock
711 * are asynchronous, the period difference will eventually
712 * result in reading V[k-1] again, or skip V[k] at time Tk.
713 * In order to resync the timer with the conversion process
714 * we check the ConVersionReadyFlag.
715 * On hardware that supports using the ALERT pin to toggle a
716 * GPIO a triggered buffer could be used instead.
717 * For now, we do an extra read of the MASK_ENABLE register (INA226)
718 * resp. the BUS_VOLTAGE register (INA219).
720 if (chip
->config
->chip_id
== ina226
) {
721 ret
= regmap_read(chip
->regmap
,
722 INA226_MASK_ENABLE
, &alert
);
723 alert
&= INA226_CVRF
;
725 ret
= regmap_read(chip
->regmap
,
726 INA2XX_BUS_VOLTAGE
, &alert
);
727 alert
&= INA219_CNVR
;
736 static int ina2xx_work_buffer(struct iio_dev
*indio_dev
)
738 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
739 /* data buffer needs space for channel data and timestap */
740 unsigned short data
[4 + sizeof(s64
)/sizeof(short)];
744 time
= iio_get_time_ns(indio_dev
);
747 * Single register reads: bulk_read will not work with ina226/219
748 * as there is no auto-increment of the register pointer.
750 for_each_set_bit(bit
, indio_dev
->active_scan_mask
,
751 indio_dev
->masklength
) {
754 ret
= regmap_read(chip
->regmap
,
755 INA2XX_SHUNT_VOLTAGE
+ bit
, &val
);
762 iio_push_to_buffers_with_timestamp(indio_dev
, data
, time
);
767 static int ina2xx_capture_thread(void *data
)
769 struct iio_dev
*indio_dev
= data
;
770 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
771 int sampling_us
= SAMPLING_PERIOD(chip
);
773 struct timespec64 next
, now
, delta
;
777 * Poll a bit faster than the chip internal Fs, in case
778 * we wish to sync with the conversion ready flag.
780 if (!chip
->allow_async_readout
)
783 ktime_get_ts64(&next
);
786 while (!chip
->allow_async_readout
) {
787 ret
= ina2xx_conversion_ready(indio_dev
);
792 * If the conversion was not yet finished,
793 * reset the reference timestamp.
796 ktime_get_ts64(&next
);
801 ret
= ina2xx_work_buffer(indio_dev
);
805 ktime_get_ts64(&now
);
808 * Advance the timestamp for the next poll by one sampling
809 * interval, and sleep for the remainder (next - now)
810 * In case "next" has already passed, the interval is added
811 * multiple times, i.e. samples are dropped.
814 timespec64_add_ns(&next
, 1000 * sampling_us
);
815 delta
= timespec64_sub(next
, now
);
816 delay_us
= div_s64(timespec64_to_ns(&delta
), 1000);
817 } while (delay_us
<= 0);
819 usleep_range(delay_us
, (delay_us
* 3) >> 1);
821 } while (!kthread_should_stop());
826 static int ina2xx_buffer_enable(struct iio_dev
*indio_dev
)
828 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
829 unsigned int sampling_us
= SAMPLING_PERIOD(chip
);
830 struct task_struct
*task
;
832 dev_dbg(&indio_dev
->dev
, "Enabling buffer w/ scan_mask %02x, freq = %d, avg =%u\n",
833 (unsigned int)(*indio_dev
->active_scan_mask
),
834 1000000 / sampling_us
, chip
->avg
);
836 dev_dbg(&indio_dev
->dev
, "Expected work period: %u us\n", sampling_us
);
837 dev_dbg(&indio_dev
->dev
, "Async readout mode: %d\n",
838 chip
->allow_async_readout
);
840 task
= kthread_create(ina2xx_capture_thread
, (void *)indio_dev
,
841 "%s:%d-%uus", indio_dev
->name
, indio_dev
->id
,
844 return PTR_ERR(task
);
846 get_task_struct(task
);
847 wake_up_process(task
);
853 static int ina2xx_buffer_disable(struct iio_dev
*indio_dev
)
855 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
858 kthread_stop(chip
->task
);
859 put_task_struct(chip
->task
);
866 static const struct iio_buffer_setup_ops ina2xx_setup_ops
= {
867 .postenable
= &ina2xx_buffer_enable
,
868 .predisable
= &ina2xx_buffer_disable
,
871 static int ina2xx_debug_reg(struct iio_dev
*indio_dev
,
872 unsigned reg
, unsigned writeval
, unsigned *readval
)
874 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
877 return regmap_write(chip
->regmap
, reg
, writeval
);
879 return regmap_read(chip
->regmap
, reg
, readval
);
882 /* Possible integration times for vshunt and vbus */
883 static IIO_CONST_ATTR_NAMED(ina219_integration_time_available
,
884 integration_time_available
,
885 "0.000084 0.000148 0.000276 0.000532 0.001060 0.002130 0.004260 0.008510 0.017020 0.034050 0.068100");
887 static IIO_CONST_ATTR_NAMED(ina226_integration_time_available
,
888 integration_time_available
,
889 "0.000140 0.000204 0.000332 0.000588 0.001100 0.002116 0.004156 0.008244");
891 static IIO_DEVICE_ATTR(in_allow_async_readout
, S_IRUGO
| S_IWUSR
,
892 ina2xx_allow_async_readout_show
,
893 ina2xx_allow_async_readout_store
, 0);
895 static IIO_DEVICE_ATTR(in_shunt_resistor
, S_IRUGO
| S_IWUSR
,
896 ina2xx_shunt_resistor_show
,
897 ina2xx_shunt_resistor_store
, 0);
899 static struct attribute
*ina219_attributes
[] = {
900 &iio_dev_attr_in_allow_async_readout
.dev_attr
.attr
,
901 &iio_const_attr_ina219_integration_time_available
.dev_attr
.attr
,
902 &iio_dev_attr_in_shunt_resistor
.dev_attr
.attr
,
906 static struct attribute
*ina226_attributes
[] = {
907 &iio_dev_attr_in_allow_async_readout
.dev_attr
.attr
,
908 &iio_const_attr_ina226_integration_time_available
.dev_attr
.attr
,
909 &iio_dev_attr_in_shunt_resistor
.dev_attr
.attr
,
913 static const struct attribute_group ina219_attribute_group
= {
914 .attrs
= ina219_attributes
,
917 static const struct attribute_group ina226_attribute_group
= {
918 .attrs
= ina226_attributes
,
921 static const struct iio_info ina219_info
= {
922 .attrs
= &ina219_attribute_group
,
923 .read_raw
= ina2xx_read_raw
,
924 .read_avail
= ina2xx_read_avail
,
925 .write_raw
= ina2xx_write_raw
,
926 .debugfs_reg_access
= ina2xx_debug_reg
,
929 static const struct iio_info ina226_info
= {
930 .attrs
= &ina226_attribute_group
,
931 .read_raw
= ina2xx_read_raw
,
932 .write_raw
= ina2xx_write_raw
,
933 .debugfs_reg_access
= ina2xx_debug_reg
,
936 /* Initialize the configuration and calibration registers. */
937 static int ina2xx_init(struct ina2xx_chip_info
*chip
, unsigned int config
)
939 int ret
= regmap_write(chip
->regmap
, INA2XX_CONFIG
, config
);
943 return ina2xx_set_calibration(chip
);
946 static int ina2xx_probe(struct i2c_client
*client
,
947 const struct i2c_device_id
*id
)
949 struct ina2xx_chip_info
*chip
;
950 struct iio_dev
*indio_dev
;
951 struct iio_buffer
*buffer
;
953 enum ina2xx_ids type
;
956 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*chip
));
960 chip
= iio_priv(indio_dev
);
962 /* This is only used for device removal purposes. */
963 i2c_set_clientdata(client
, indio_dev
);
965 chip
->regmap
= devm_regmap_init_i2c(client
, &ina2xx_regmap_config
);
966 if (IS_ERR(chip
->regmap
)) {
967 dev_err(&client
->dev
, "failed to allocate register map\n");
968 return PTR_ERR(chip
->regmap
);
971 if (client
->dev
.of_node
)
972 type
= (enum ina2xx_ids
)of_device_get_match_data(&client
->dev
);
974 type
= id
->driver_data
;
975 chip
->config
= &ina2xx_config
[type
];
977 mutex_init(&chip
->state_lock
);
979 if (of_property_read_u32(client
->dev
.of_node
,
980 "shunt-resistor", &val
) < 0) {
981 struct ina2xx_platform_data
*pdata
=
982 dev_get_platdata(&client
->dev
);
985 val
= pdata
->shunt_uohms
;
987 val
= INA2XX_RSHUNT_DEFAULT
;
990 ret
= set_shunt_resistor(chip
, val
);
994 /* Patch the current config register with default. */
995 val
= chip
->config
->config_default
;
997 if (id
->driver_data
== ina226
) {
998 ina226_set_average(chip
, INA226_DEFAULT_AVG
, &val
);
999 ina226_set_int_time_vbus(chip
, INA226_DEFAULT_IT
, &val
);
1000 ina226_set_int_time_vshunt(chip
, INA226_DEFAULT_IT
, &val
);
1003 ina219_set_int_time_vbus(chip
, INA219_DEFAULT_IT
, &val
);
1004 ina219_set_int_time_vshunt(chip
, INA219_DEFAULT_IT
, &val
);
1005 ina219_set_vbus_range_denom(chip
, INA219_DEFAULT_BRNG
, &val
);
1006 ina219_set_vshunt_pga_gain(chip
, INA219_DEFAULT_PGA
, &val
);
1009 ret
= ina2xx_init(chip
, val
);
1011 dev_err(&client
->dev
, "error configuring the device\n");
1015 indio_dev
->modes
= INDIO_DIRECT_MODE
| INDIO_BUFFER_SOFTWARE
;
1016 indio_dev
->dev
.parent
= &client
->dev
;
1017 indio_dev
->dev
.of_node
= client
->dev
.of_node
;
1018 if (id
->driver_data
== ina226
) {
1019 indio_dev
->channels
= ina226_channels
;
1020 indio_dev
->num_channels
= ARRAY_SIZE(ina226_channels
);
1021 indio_dev
->info
= &ina226_info
;
1023 indio_dev
->channels
= ina219_channels
;
1024 indio_dev
->num_channels
= ARRAY_SIZE(ina219_channels
);
1025 indio_dev
->info
= &ina219_info
;
1027 indio_dev
->name
= id
->name
;
1028 indio_dev
->setup_ops
= &ina2xx_setup_ops
;
1030 buffer
= devm_iio_kfifo_allocate(&indio_dev
->dev
);
1034 iio_device_attach_buffer(indio_dev
, buffer
);
1036 return iio_device_register(indio_dev
);
1039 static int ina2xx_remove(struct i2c_client
*client
)
1041 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
1042 struct ina2xx_chip_info
*chip
= iio_priv(indio_dev
);
1044 iio_device_unregister(indio_dev
);
1047 return regmap_update_bits(chip
->regmap
, INA2XX_CONFIG
,
1048 INA2XX_MODE_MASK
, 0);
1051 static const struct i2c_device_id ina2xx_id
[] = {
1059 MODULE_DEVICE_TABLE(i2c
, ina2xx_id
);
1061 static const struct of_device_id ina2xx_of_match
[] = {
1063 .compatible
= "ti,ina219",
1064 .data
= (void *)ina219
1067 .compatible
= "ti,ina220",
1068 .data
= (void *)ina219
1071 .compatible
= "ti,ina226",
1072 .data
= (void *)ina226
1075 .compatible
= "ti,ina230",
1076 .data
= (void *)ina226
1079 .compatible
= "ti,ina231",
1080 .data
= (void *)ina226
1084 MODULE_DEVICE_TABLE(of
, ina2xx_of_match
);
1086 static struct i2c_driver ina2xx_driver
= {
1088 .name
= KBUILD_MODNAME
,
1089 .of_match_table
= ina2xx_of_match
,
1091 .probe
= ina2xx_probe
,
1092 .remove
= ina2xx_remove
,
1093 .id_table
= ina2xx_id
,
1095 module_i2c_driver(ina2xx_driver
);
1097 MODULE_AUTHOR("Marc Titinger <marc.titinger@baylibre.com>");
1098 MODULE_DESCRIPTION("Texas Instruments INA2XX ADC driver");
1099 MODULE_LICENSE("GPL v2");