2 * Driver for Texas Instruments INA219, INA226 power monitor chips
5 * Zero Drift Bi-Directional Current/Power Monitor with I2C Interface
6 * Datasheet: http://www.ti.com/product/ina219
9 * Bi-Directional Current/Power Monitor with I2C Interface
10 * Datasheet: http://www.ti.com/product/ina220
13 * Bi-Directional Current/Power Monitor with I2C Interface
14 * Datasheet: http://www.ti.com/product/ina226
17 * Bi-directional Current/Power Monitor with I2C Interface
18 * Datasheet: http://www.ti.com/product/ina230
20 * Copyright (C) 2012 Lothar Felten <lothar.felten@gmail.com>
21 * Thanks to Jan Volkering
23 * This program is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; version 2 of the License.
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/err.h>
32 #include <linux/slab.h>
33 #include <linux/i2c.h>
34 #include <linux/hwmon.h>
35 #include <linux/hwmon-sysfs.h>
36 #include <linux/jiffies.h>
38 #include <linux/delay.h>
39 #include <linux/util_macros.h>
40 #include <linux/regmap.h>
42 #include <linux/platform_data/ina2xx.h>
44 /* common register definitions */
45 #define INA2XX_CONFIG 0x00
46 #define INA2XX_SHUNT_VOLTAGE 0x01 /* readonly */
47 #define INA2XX_BUS_VOLTAGE 0x02 /* readonly */
48 #define INA2XX_POWER 0x03 /* readonly */
49 #define INA2XX_CURRENT 0x04 /* readonly */
50 #define INA2XX_CALIBRATION 0x05
52 /* INA226 register definitions */
53 #define INA226_MASK_ENABLE 0x06
54 #define INA226_ALERT_LIMIT 0x07
55 #define INA226_DIE_ID 0xFF
58 #define INA219_REGISTERS 6
59 #define INA226_REGISTERS 8
61 #define INA2XX_MAX_REGISTERS 8
63 /* settings - depend on use case */
64 #define INA219_CONFIG_DEFAULT 0x399F /* PGA=8 */
65 #define INA226_CONFIG_DEFAULT 0x4527 /* averages=16 */
67 /* worst case is 68.10 ms (~14.6Hz, ina219) */
68 #define INA2XX_CONVERSION_RATE 15
69 #define INA2XX_MAX_DELAY 69 /* worst case delay in ms */
71 #define INA2XX_RSHUNT_DEFAULT 10000
73 /* bit mask for reading the averaging setting in the configuration register */
74 #define INA226_AVG_RD_MASK 0x0E00
76 #define INA226_READ_AVG(reg) (((reg) & INA226_AVG_RD_MASK) >> 9)
77 #define INA226_SHIFT_AVG(val) ((val) << 9)
79 /* common attrs, ina226 attrs and NULL */
80 #define INA2XX_MAX_ATTRIBUTE_GROUPS 3
83 * Both bus voltage and shunt voltage conversion times for ina226 are set
84 * to 0b0100 on POR, which translates to 2200 microseconds in total.
86 #define INA226_TOTAL_CONV_TIME_DEFAULT 2200
88 static struct regmap_config ina2xx_regmap_config
= {
93 enum ina2xx_ids
{ ina219
, ina226
};
95 struct ina2xx_config
{
97 int calibration_value
;
100 int bus_voltage_shift
;
101 int bus_voltage_lsb
; /* uV */
102 int power_lsb_factor
;
106 const struct ina2xx_config
*config
;
111 struct mutex config_lock
;
112 struct regmap
*regmap
;
114 const struct attribute_group
*groups
[INA2XX_MAX_ATTRIBUTE_GROUPS
];
117 static const struct ina2xx_config ina2xx_config
[] = {
119 .config_default
= INA219_CONFIG_DEFAULT
,
120 .calibration_value
= 4096,
121 .registers
= INA219_REGISTERS
,
123 .bus_voltage_shift
= 3,
124 .bus_voltage_lsb
= 4000,
125 .power_lsb_factor
= 20,
128 .config_default
= INA226_CONFIG_DEFAULT
,
129 .calibration_value
= 2048,
130 .registers
= INA226_REGISTERS
,
132 .bus_voltage_shift
= 0,
133 .bus_voltage_lsb
= 1250,
134 .power_lsb_factor
= 25,
139 * Available averaging rates for ina226. The indices correspond with
140 * the bit values expected by the chip (according to the ina226 datasheet,
141 * table 3 AVG bit settings, found at
142 * http://www.ti.com/lit/ds/symlink/ina226.pdf.
144 static const int ina226_avg_tab
[] = { 1, 4, 16, 64, 128, 256, 512, 1024 };
146 static int ina226_reg_to_interval(u16 config
)
148 int avg
= ina226_avg_tab
[INA226_READ_AVG(config
)];
151 * Multiply the total conversion time by the number of averages.
152 * Return the result in milliseconds.
154 return DIV_ROUND_CLOSEST(avg
* INA226_TOTAL_CONV_TIME_DEFAULT
, 1000);
158 * Return the new, shifted AVG field value of CONFIG register,
159 * to use with regmap_update_bits
161 static u16
ina226_interval_to_reg(int interval
)
165 avg
= DIV_ROUND_CLOSEST(interval
* 1000,
166 INA226_TOTAL_CONV_TIME_DEFAULT
);
167 avg_bits
= find_closest(avg
, ina226_avg_tab
,
168 ARRAY_SIZE(ina226_avg_tab
));
170 return INA226_SHIFT_AVG(avg_bits
);
174 * Calibration register is set to the best value, which eliminates
175 * truncation errors on calculating current register in hardware.
176 * According to datasheet (eq. 3) the best values are 2048 for
177 * ina226 and 4096 for ina219. They are hardcoded as calibration_value.
179 static int ina2xx_calibrate(struct ina2xx_data
*data
)
181 return regmap_write(data
->regmap
, INA2XX_CALIBRATION
,
182 data
->config
->calibration_value
);
186 * Initialize the configuration and calibration registers.
188 static int ina2xx_init(struct ina2xx_data
*data
)
190 int ret
= regmap_write(data
->regmap
, INA2XX_CONFIG
,
191 data
->config
->config_default
);
195 return ina2xx_calibrate(data
);
198 static int ina2xx_read_reg(struct device
*dev
, int reg
, unsigned int *regval
)
200 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
203 dev_dbg(dev
, "Starting register %d read\n", reg
);
205 for (retry
= 5; retry
; retry
--) {
207 ret
= regmap_read(data
->regmap
, reg
, regval
);
211 dev_dbg(dev
, "read %d, val = 0x%04x\n", reg
, *regval
);
214 * If the current value in the calibration register is 0, the
215 * power and current registers will also remain at 0. In case
216 * the chip has been reset let's check the calibration
217 * register and reinitialize if needed.
218 * We do that extra read of the calibration register if there
219 * is some hint of a chip reset.
224 ret
= regmap_read(data
->regmap
, INA2XX_CALIBRATION
,
230 dev_warn(dev
, "chip not calibrated, reinitializing\n");
232 ret
= ina2xx_init(data
);
236 * Let's make sure the power and current
237 * registers have been updated before trying
240 msleep(INA2XX_MAX_DELAY
);
248 * If we're here then although all write operations succeeded, the
249 * chip still returns 0 in the calibration register. Nothing more we
252 dev_err(dev
, "unable to reinitialize the chip\n");
256 static int ina2xx_get_value(struct ina2xx_data
*data
, u8 reg
,
262 case INA2XX_SHUNT_VOLTAGE
:
263 /* signed register */
264 val
= DIV_ROUND_CLOSEST((s16
)regval
, data
->config
->shunt_div
);
266 case INA2XX_BUS_VOLTAGE
:
267 val
= (regval
>> data
->config
->bus_voltage_shift
)
268 * data
->config
->bus_voltage_lsb
;
269 val
= DIV_ROUND_CLOSEST(val
, 1000);
272 val
= regval
* data
->power_lsb_uW
;
275 /* signed register, result in mA */
276 val
= (s16
)regval
* data
->current_lsb_uA
;
277 val
= DIV_ROUND_CLOSEST(val
, 1000);
279 case INA2XX_CALIBRATION
:
283 /* programmer goofed */
292 static ssize_t
ina2xx_show_value(struct device
*dev
,
293 struct device_attribute
*da
, char *buf
)
295 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
296 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
299 int err
= ina2xx_read_reg(dev
, attr
->index
, ®val
);
304 return snprintf(buf
, PAGE_SIZE
, "%d\n",
305 ina2xx_get_value(data
, attr
->index
, regval
));
309 * In order to keep calibration register value fixed, the product
310 * of current_lsb and shunt_resistor should also be fixed and equal
311 * to shunt_voltage_lsb = 1 / shunt_div multiplied by 10^9 in order
314 static int ina2xx_set_shunt(struct ina2xx_data
*data
, long val
)
316 unsigned int dividend
= DIV_ROUND_CLOSEST(1000000000,
317 data
->config
->shunt_div
);
318 if (val
<= 0 || val
> dividend
)
321 mutex_lock(&data
->config_lock
);
323 data
->current_lsb_uA
= DIV_ROUND_CLOSEST(dividend
, val
);
324 data
->power_lsb_uW
= data
->config
->power_lsb_factor
*
325 data
->current_lsb_uA
;
326 mutex_unlock(&data
->config_lock
);
331 static ssize_t
ina2xx_show_shunt(struct device
*dev
,
332 struct device_attribute
*da
,
335 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
337 return snprintf(buf
, PAGE_SIZE
, "%li\n", data
->rshunt
);
340 static ssize_t
ina2xx_store_shunt(struct device
*dev
,
341 struct device_attribute
*da
,
342 const char *buf
, size_t count
)
346 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
348 status
= kstrtoul(buf
, 10, &val
);
352 status
= ina2xx_set_shunt(data
, val
);
358 static ssize_t
ina226_set_interval(struct device
*dev
,
359 struct device_attribute
*da
,
360 const char *buf
, size_t count
)
362 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
366 status
= kstrtoul(buf
, 10, &val
);
370 if (val
> INT_MAX
|| val
== 0)
373 status
= regmap_update_bits(data
->regmap
, INA2XX_CONFIG
,
375 ina226_interval_to_reg(val
));
382 static ssize_t
ina226_show_interval(struct device
*dev
,
383 struct device_attribute
*da
, char *buf
)
385 struct ina2xx_data
*data
= dev_get_drvdata(dev
);
389 status
= regmap_read(data
->regmap
, INA2XX_CONFIG
, ®val
);
393 return snprintf(buf
, PAGE_SIZE
, "%d\n", ina226_reg_to_interval(regval
));
397 static SENSOR_DEVICE_ATTR(in0_input
, S_IRUGO
, ina2xx_show_value
, NULL
,
398 INA2XX_SHUNT_VOLTAGE
);
401 static SENSOR_DEVICE_ATTR(in1_input
, S_IRUGO
, ina2xx_show_value
, NULL
,
404 /* calculated current */
405 static SENSOR_DEVICE_ATTR(curr1_input
, S_IRUGO
, ina2xx_show_value
, NULL
,
408 /* calculated power */
409 static SENSOR_DEVICE_ATTR(power1_input
, S_IRUGO
, ina2xx_show_value
, NULL
,
412 /* shunt resistance */
413 static SENSOR_DEVICE_ATTR(shunt_resistor
, S_IRUGO
| S_IWUSR
,
414 ina2xx_show_shunt
, ina2xx_store_shunt
,
417 /* update interval (ina226 only) */
418 static SENSOR_DEVICE_ATTR(update_interval
, S_IRUGO
| S_IWUSR
,
419 ina226_show_interval
, ina226_set_interval
, 0);
421 /* pointers to created device attributes */
422 static struct attribute
*ina2xx_attrs
[] = {
423 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
424 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
425 &sensor_dev_attr_curr1_input
.dev_attr
.attr
,
426 &sensor_dev_attr_power1_input
.dev_attr
.attr
,
427 &sensor_dev_attr_shunt_resistor
.dev_attr
.attr
,
431 static const struct attribute_group ina2xx_group
= {
432 .attrs
= ina2xx_attrs
,
435 static struct attribute
*ina226_attrs
[] = {
436 &sensor_dev_attr_update_interval
.dev_attr
.attr
,
440 static const struct attribute_group ina226_group
= {
441 .attrs
= ina226_attrs
,
444 static int ina2xx_probe(struct i2c_client
*client
,
445 const struct i2c_device_id
*id
)
447 struct device
*dev
= &client
->dev
;
448 struct ina2xx_data
*data
;
449 struct device
*hwmon_dev
;
453 data
= devm_kzalloc(dev
, sizeof(*data
), GFP_KERNEL
);
457 /* set the device type */
458 data
->config
= &ina2xx_config
[id
->driver_data
];
459 mutex_init(&data
->config_lock
);
461 if (of_property_read_u32(dev
->of_node
, "shunt-resistor", &val
) < 0) {
462 struct ina2xx_platform_data
*pdata
= dev_get_platdata(dev
);
465 val
= pdata
->shunt_uohms
;
467 val
= INA2XX_RSHUNT_DEFAULT
;
470 ina2xx_set_shunt(data
, val
);
472 ina2xx_regmap_config
.max_register
= data
->config
->registers
;
474 data
->regmap
= devm_regmap_init_i2c(client
, &ina2xx_regmap_config
);
475 if (IS_ERR(data
->regmap
)) {
476 dev_err(dev
, "failed to allocate register map\n");
477 return PTR_ERR(data
->regmap
);
480 ret
= ina2xx_init(data
);
482 dev_err(dev
, "error configuring the device: %d\n", ret
);
486 data
->groups
[group
++] = &ina2xx_group
;
487 if (id
->driver_data
== ina226
)
488 data
->groups
[group
++] = &ina226_group
;
490 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, client
->name
,
492 if (IS_ERR(hwmon_dev
))
493 return PTR_ERR(hwmon_dev
);
495 dev_info(dev
, "power monitor %s (Rshunt = %li uOhm)\n",
496 id
->name
, data
->rshunt
);
501 static const struct i2c_device_id ina2xx_id
[] = {
502 { "ina219", ina219
},
503 { "ina220", ina219
},
504 { "ina226", ina226
},
505 { "ina230", ina226
},
506 { "ina231", ina226
},
509 MODULE_DEVICE_TABLE(i2c
, ina2xx_id
);
511 static struct i2c_driver ina2xx_driver
= {
515 .probe
= ina2xx_probe
,
516 .id_table
= ina2xx_id
,
519 module_i2c_driver(ina2xx_driver
);
521 MODULE_AUTHOR("Lothar Felten <l-felten@ti.com>");
522 MODULE_DESCRIPTION("ina2xx driver");
523 MODULE_LICENSE("GPL");