1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for Texas Instruments INA219, INA226 power monitor chips
6 * Zero Drift Bi-Directional Current/Power Monitor with I2C Interface
7 * Datasheet: http://www.ti.com/product/ina219
10 * Bi-Directional Current/Power Monitor with I2C Interface
11 * Datasheet: http://www.ti.com/product/ina220
14 * Bi-Directional Current/Power Monitor with I2C Interface
15 * Datasheet: http://www.ti.com/product/ina226
18 * Bi-directional Current/Power Monitor with I2C Interface
19 * Datasheet: http://www.ti.com/product/ina230
21 * Copyright (C) 2012 Lothar Felten <lothar.felten@gmail.com>
22 * Thanks to Jan Volkering
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/init.h>
28 #include <linux/err.h>
29 #include <linux/slab.h>
30 #include <linux/i2c.h>
31 #include <linux/hwmon.h>
32 #include <linux/hwmon-sysfs.h>
33 #include <linux/jiffies.h>
34 #include <linux/of_device.h>
36 #include <linux/delay.h>
37 #include <linux/util_macros.h>
38 #include <linux/regmap.h>
40 #include <linux/platform_data/ina2xx.h>
42 /* common register definitions */
43 #define INA2XX_CONFIG 0x00
44 #define INA2XX_SHUNT_VOLTAGE 0x01 /* readonly */
45 #define INA2XX_BUS_VOLTAGE 0x02 /* readonly */
46 #define INA2XX_POWER 0x03 /* readonly */
47 #define INA2XX_CURRENT 0x04 /* readonly */
48 #define INA2XX_CALIBRATION 0x05
50 /* INA226 register definitions */
51 #define INA226_MASK_ENABLE 0x06
52 #define INA226_ALERT_LIMIT 0x07
53 #define INA226_DIE_ID 0xFF
56 #define INA219_REGISTERS 6
57 #define INA226_REGISTERS 8
59 #define INA2XX_MAX_REGISTERS 8
61 /* settings - depend on use case */
62 #define INA219_CONFIG_DEFAULT 0x399F /* PGA=8 */
63 #define INA226_CONFIG_DEFAULT 0x4527 /* averages=16 */
65 /* worst case is 68.10 ms (~14.6Hz, ina219) */
66 #define INA2XX_CONVERSION_RATE 15
67 #define INA2XX_MAX_DELAY 69 /* worst case delay in ms */
69 #define INA2XX_RSHUNT_DEFAULT 10000
71 /* bit mask for reading the averaging setting in the configuration register */
72 #define INA226_AVG_RD_MASK 0x0E00
74 #define INA226_READ_AVG(reg) (((reg) & INA226_AVG_RD_MASK) >> 9)
75 #define INA226_SHIFT_AVG(val) ((val) << 9)
77 /* common attrs, ina226 attrs and NULL */
78 #define INA2XX_MAX_ATTRIBUTE_GROUPS 3
81 * Both bus voltage and shunt voltage conversion times for ina226 are set
82 * to 0b0100 on POR, which translates to 2200 microseconds in total.
84 #define INA226_TOTAL_CONV_TIME_DEFAULT 2200
86 static struct regmap_config ina2xx_regmap_config
= {
91 enum ina2xx_ids
{ ina219
, ina226
};
93 struct ina2xx_config
{
95 int calibration_value
;
98 int bus_voltage_shift
;
99 int bus_voltage_lsb
; /* uV */
100 int power_lsb_factor
;
104 const struct ina2xx_config
*config
;
109 struct mutex config_lock
;
110 struct regmap
*regmap
;
112 const struct attribute_group
*groups
[INA2XX_MAX_ATTRIBUTE_GROUPS
];
115 static const struct ina2xx_config ina2xx_config
[] = {
117 .config_default
= INA219_CONFIG_DEFAULT
,
118 .calibration_value
= 4096,
119 .registers
= INA219_REGISTERS
,
121 .bus_voltage_shift
= 3,
122 .bus_voltage_lsb
= 4000,
123 .power_lsb_factor
= 20,
126 .config_default
= INA226_CONFIG_DEFAULT
,
127 .calibration_value
= 2048,
128 .registers
= INA226_REGISTERS
,
130 .bus_voltage_shift
= 0,
131 .bus_voltage_lsb
= 1250,
132 .power_lsb_factor
= 25,
137 * Available averaging rates for ina226. The indices correspond with
138 * the bit values expected by the chip (according to the ina226 datasheet,
139 * table 3 AVG bit settings, found at
140 * http://www.ti.com/lit/ds/symlink/ina226.pdf.
142 static const int ina226_avg_tab
[] = { 1, 4, 16, 64, 128, 256, 512, 1024 };
144 static int ina226_reg_to_interval(u16 config
)
146 int avg
= ina226_avg_tab
[INA226_READ_AVG(config
)];
149 * Multiply the total conversion time by the number of averages.
150 * Return the result in milliseconds.
152 return DIV_ROUND_CLOSEST(avg
* INA226_TOTAL_CONV_TIME_DEFAULT
, 1000);
156 * Return the new, shifted AVG field value of CONFIG register,
157 * to use with regmap_update_bits
159 static u16
ina226_interval_to_reg(int interval
)
163 avg
= DIV_ROUND_CLOSEST(interval
* 1000,
164 INA226_TOTAL_CONV_TIME_DEFAULT
);
165 avg_bits
= find_closest(avg
, ina226_avg_tab
,
166 ARRAY_SIZE(ina226_avg_tab
));
168 return INA226_SHIFT_AVG(avg_bits
);
172 * Calibration register is set to the best value, which eliminates
173 * truncation errors on calculating current register in hardware.
174 * According to datasheet (eq. 3) the best values are 2048 for
175 * ina226 and 4096 for ina219. They are hardcoded as calibration_value.
177 static int ina2xx_calibrate(struct ina2xx_data
*data
)
179 return regmap_write(data
->regmap
, INA2XX_CALIBRATION
,
180 data
->config
->calibration_value
);
184 * Initialize the configuration and calibration registers.
186 static int ina2xx_init(struct ina2xx_data
*data
)
188 int ret
= regmap_write(data
->regmap
, INA2XX_CONFIG
,
189 data
->config
->config_default
);
193 return ina2xx_calibrate(data
);
196 static int ina2xx_read_reg(struct device
*dev
, int reg
, unsigned int *regval
)
198 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
201 dev_dbg(dev
, "Starting register %d read\n", reg
);
203 for (retry
= 5; retry
; retry
--) {
205 ret
= regmap_read(data
->regmap
, reg
, regval
);
209 dev_dbg(dev
, "read %d, val = 0x%04x\n", reg
, *regval
);
212 * If the current value in the calibration register is 0, the
213 * power and current registers will also remain at 0. In case
214 * the chip has been reset let's check the calibration
215 * register and reinitialize if needed.
216 * We do that extra read of the calibration register if there
217 * is some hint of a chip reset.
222 ret
= regmap_read(data
->regmap
, INA2XX_CALIBRATION
,
228 dev_warn(dev
, "chip not calibrated, reinitializing\n");
230 ret
= ina2xx_init(data
);
234 * Let's make sure the power and current
235 * registers have been updated before trying
238 msleep(INA2XX_MAX_DELAY
);
246 * If we're here then although all write operations succeeded, the
247 * chip still returns 0 in the calibration register. Nothing more we
250 dev_err(dev
, "unable to reinitialize the chip\n");
254 static int ina2xx_get_value(struct ina2xx_data
*data
, u8 reg
,
260 case INA2XX_SHUNT_VOLTAGE
:
261 /* signed register */
262 val
= DIV_ROUND_CLOSEST((s16
)regval
, data
->config
->shunt_div
);
264 case INA2XX_BUS_VOLTAGE
:
265 val
= (regval
>> data
->config
->bus_voltage_shift
)
266 * data
->config
->bus_voltage_lsb
;
267 val
= DIV_ROUND_CLOSEST(val
, 1000);
270 val
= regval
* data
->power_lsb_uW
;
273 /* signed register, result in mA */
274 val
= (s16
)regval
* data
->current_lsb_uA
;
275 val
= DIV_ROUND_CLOSEST(val
, 1000);
277 case INA2XX_CALIBRATION
:
281 /* programmer goofed */
290 static ssize_t
ina2xx_value_show(struct device
*dev
,
291 struct device_attribute
*da
, char *buf
)
293 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
294 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
297 int err
= ina2xx_read_reg(dev
, attr
->index
, ®val
);
302 return snprintf(buf
, PAGE_SIZE
, "%d\n",
303 ina2xx_get_value(data
, attr
->index
, regval
));
307 * In order to keep calibration register value fixed, the product
308 * of current_lsb and shunt_resistor should also be fixed and equal
309 * to shunt_voltage_lsb = 1 / shunt_div multiplied by 10^9 in order
312 static int ina2xx_set_shunt(struct ina2xx_data
*data
, long val
)
314 unsigned int dividend
= DIV_ROUND_CLOSEST(1000000000,
315 data
->config
->shunt_div
);
316 if (val
<= 0 || val
> dividend
)
319 mutex_lock(&data
->config_lock
);
321 data
->current_lsb_uA
= DIV_ROUND_CLOSEST(dividend
, val
);
322 data
->power_lsb_uW
= data
->config
->power_lsb_factor
*
323 data
->current_lsb_uA
;
324 mutex_unlock(&data
->config_lock
);
329 static ssize_t
ina2xx_shunt_show(struct device
*dev
,
330 struct device_attribute
*da
, char *buf
)
332 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
334 return snprintf(buf
, PAGE_SIZE
, "%li\n", data
->rshunt
);
337 static ssize_t
ina2xx_shunt_store(struct device
*dev
,
338 struct device_attribute
*da
,
339 const char *buf
, size_t count
)
343 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
345 status
= kstrtoul(buf
, 10, &val
);
349 status
= ina2xx_set_shunt(data
, val
);
355 static ssize_t
ina226_interval_store(struct device
*dev
,
356 struct device_attribute
*da
,
357 const char *buf
, size_t count
)
359 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
363 status
= kstrtoul(buf
, 10, &val
);
367 if (val
> INT_MAX
|| val
== 0)
370 status
= regmap_update_bits(data
->regmap
, INA2XX_CONFIG
,
372 ina226_interval_to_reg(val
));
379 static ssize_t
ina226_interval_show(struct device
*dev
,
380 struct device_attribute
*da
, char *buf
)
382 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
386 status
= regmap_read(data
->regmap
, INA2XX_CONFIG
, ®val
);
390 return snprintf(buf
, PAGE_SIZE
, "%d\n", ina226_reg_to_interval(regval
));
394 static SENSOR_DEVICE_ATTR_RO(in0_input
, ina2xx_value
, INA2XX_SHUNT_VOLTAGE
);
397 static SENSOR_DEVICE_ATTR_RO(in1_input
, ina2xx_value
, INA2XX_BUS_VOLTAGE
);
399 /* calculated current */
400 static SENSOR_DEVICE_ATTR_RO(curr1_input
, ina2xx_value
, INA2XX_CURRENT
);
402 /* calculated power */
403 static SENSOR_DEVICE_ATTR_RO(power1_input
, ina2xx_value
, INA2XX_POWER
);
405 /* shunt resistance */
406 static SENSOR_DEVICE_ATTR_RW(shunt_resistor
, ina2xx_shunt
, INA2XX_CALIBRATION
);
408 /* update interval (ina226 only) */
409 static SENSOR_DEVICE_ATTR_RW(update_interval
, ina226_interval
, 0);
411 /* pointers to created device attributes */
412 static struct attribute
*ina2xx_attrs
[] = {
413 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
414 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
415 &sensor_dev_attr_curr1_input
.dev_attr
.attr
,
416 &sensor_dev_attr_power1_input
.dev_attr
.attr
,
417 &sensor_dev_attr_shunt_resistor
.dev_attr
.attr
,
421 static const struct attribute_group ina2xx_group
= {
422 .attrs
= ina2xx_attrs
,
425 static struct attribute
*ina226_attrs
[] = {
426 &sensor_dev_attr_update_interval
.dev_attr
.attr
,
430 static const struct attribute_group ina226_group
= {
431 .attrs
= ina226_attrs
,
434 static int ina2xx_probe(struct i2c_client
*client
,
435 const struct i2c_device_id
*id
)
437 struct device
*dev
= &client
->dev
;
438 struct ina2xx_data
*data
;
439 struct device
*hwmon_dev
;
442 enum ina2xx_ids chip
;
444 if (client
->dev
.of_node
)
445 chip
= (enum ina2xx_ids
)of_device_get_match_data(&client
->dev
);
447 chip
= id
->driver_data
;
449 data
= devm_kzalloc(dev
, sizeof(*data
), GFP_KERNEL
);
453 /* set the device type */
454 data
->config
= &ina2xx_config
[chip
];
455 mutex_init(&data
->config_lock
);
457 if (of_property_read_u32(dev
->of_node
, "shunt-resistor", &val
) < 0) {
458 struct ina2xx_platform_data
*pdata
= dev_get_platdata(dev
);
461 val
= pdata
->shunt_uohms
;
463 val
= INA2XX_RSHUNT_DEFAULT
;
466 ina2xx_set_shunt(data
, val
);
468 ina2xx_regmap_config
.max_register
= data
->config
->registers
;
470 data
->regmap
= devm_regmap_init_i2c(client
, &ina2xx_regmap_config
);
471 if (IS_ERR(data
->regmap
)) {
472 dev_err(dev
, "failed to allocate register map\n");
473 return PTR_ERR(data
->regmap
);
476 ret
= ina2xx_init(data
);
478 dev_err(dev
, "error configuring the device: %d\n", ret
);
482 data
->groups
[group
++] = &ina2xx_group
;
484 data
->groups
[group
++] = &ina226_group
;
486 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, client
->name
,
488 if (IS_ERR(hwmon_dev
))
489 return PTR_ERR(hwmon_dev
);
491 dev_info(dev
, "power monitor %s (Rshunt = %li uOhm)\n",
492 client
->name
, data
->rshunt
);
497 static const struct i2c_device_id ina2xx_id
[] = {
498 { "ina219", ina219
},
499 { "ina220", ina219
},
500 { "ina226", ina226
},
501 { "ina230", ina226
},
502 { "ina231", ina226
},
505 MODULE_DEVICE_TABLE(i2c
, ina2xx_id
);
507 static const struct of_device_id __maybe_unused ina2xx_of_match
[] = {
509 .compatible
= "ti,ina219",
510 .data
= (void *)ina219
513 .compatible
= "ti,ina220",
514 .data
= (void *)ina219
517 .compatible
= "ti,ina226",
518 .data
= (void *)ina226
521 .compatible
= "ti,ina230",
522 .data
= (void *)ina226
525 .compatible
= "ti,ina231",
526 .data
= (void *)ina226
530 MODULE_DEVICE_TABLE(of
, ina2xx_of_match
);
532 static struct i2c_driver ina2xx_driver
= {
535 .of_match_table
= of_match_ptr(ina2xx_of_match
),
537 .probe
= ina2xx_probe
,
538 .id_table
= ina2xx_id
,
541 module_i2c_driver(ina2xx_driver
);
543 MODULE_AUTHOR("Lothar Felten <l-felten@ti.com>");
544 MODULE_DESCRIPTION("ina2xx driver");
545 MODULE_LICENSE("GPL");