blob: 9ac6e167337509de38fa0fe7a48233936eb81ce9 [file] [log] [blame]
Felten, Lotharf7c2fe32012-05-12 04:36:38 -04001/*
2 * Driver for Texas Instruments INA219, INA226 power monitor chips
3 *
4 * INA219:
5 * Zero Drift Bi-Directional Current/Power Monitor with I2C Interface
6 * Datasheet: http://www.ti.com/product/ina219
7 *
Guenter Roeckdc92cd02012-05-12 11:33:11 -07008 * INA220:
9 * Bi-Directional Current/Power Monitor with I2C Interface
10 * Datasheet: http://www.ti.com/product/ina220
11 *
Felten, Lotharf7c2fe32012-05-12 04:36:38 -040012 * INA226:
13 * Bi-Directional Current/Power Monitor with I2C Interface
14 * Datasheet: http://www.ti.com/product/ina226
15 *
Guenter Roeckdc92cd02012-05-12 11:33:11 -070016 * INA230:
17 * Bi-directional Current/Power Monitor with I2C Interface
18 * Datasheet: http://www.ti.com/product/ina230
19 *
Lothar Feltenfc63de902018-08-14 09:09:37 +020020 * Copyright (C) 2012 Lothar Felten <lothar.felten@gmail.com>
Felten, Lotharf7c2fe32012-05-12 04:36:38 -040021 * Thanks to Jan Volkering
22 *
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.
26 */
27
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>
Jean Delvaredcd8f392012-10-10 15:25:56 +020036#include <linux/jiffies.h>
Tang Yuantian31e7ad72013-06-19 14:50:20 +080037#include <linux/of.h>
Bartosz Golaszewski509416a2015-01-05 15:20:52 +010038#include <linux/delay.h>
Bartosz Golaszewskid38df342015-04-16 12:43:34 -070039#include <linux/util_macros.h>
Marc Titingera0de56c2015-10-28 12:04:53 +010040#include <linux/regmap.h>
Felten, Lotharf7c2fe32012-05-12 04:36:38 -040041
42#include <linux/platform_data/ina2xx.h>
43
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
51
52/* INA226 register definitions */
53#define INA226_MASK_ENABLE 0x06
54#define INA226_ALERT_LIMIT 0x07
55#define INA226_DIE_ID 0xFF
56
Felten, Lotharf7c2fe32012-05-12 04:36:38 -040057/* register count */
58#define INA219_REGISTERS 6
59#define INA226_REGISTERS 8
60
61#define INA2XX_MAX_REGISTERS 8
62
63/* settings - depend on use case */
64#define INA219_CONFIG_DEFAULT 0x399F /* PGA=8 */
65#define INA226_CONFIG_DEFAULT 0x4527 /* averages=16 */
66
67/* worst case is 68.10 ms (~14.6Hz, ina219) */
68#define INA2XX_CONVERSION_RATE 15
Bartosz Golaszewski509416a2015-01-05 15:20:52 +010069#define INA2XX_MAX_DELAY 69 /* worst case delay in ms */
70
71#define INA2XX_RSHUNT_DEFAULT 10000
Felten, Lotharf7c2fe32012-05-12 04:36:38 -040072
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +010073/* bit mask for reading the averaging setting in the configuration register */
74#define INA226_AVG_RD_MASK 0x0E00
75
76#define INA226_READ_AVG(reg) (((reg) & INA226_AVG_RD_MASK) >> 9)
77#define INA226_SHIFT_AVG(val) ((val) << 9)
78
79/* common attrs, ina226 attrs and NULL */
80#define INA2XX_MAX_ATTRIBUTE_GROUPS 3
81
82/*
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.
85 */
86#define INA226_TOTAL_CONV_TIME_DEFAULT 2200
87
Marc Titingera0de56c2015-10-28 12:04:53 +010088static struct regmap_config ina2xx_regmap_config = {
89 .reg_bits = 8,
90 .val_bits = 16,
91};
92
Felten, Lotharf7c2fe32012-05-12 04:36:38 -040093enum ina2xx_ids { ina219, ina226 };
94
Guenter Roeck6106db22012-05-12 11:21:01 -070095struct ina2xx_config {
96 u16 config_default;
Maciej Purski8d008c02017-11-22 16:32:15 +010097 int calibration_value;
Guenter Roeck6106db22012-05-12 11:21:01 -070098 int registers;
99 int shunt_div;
100 int bus_voltage_shift;
101 int bus_voltage_lsb; /* uV */
Maciej Purski8d008c02017-11-22 16:32:15 +0100102 int power_lsb_factor;
Guenter Roeck6106db22012-05-12 11:21:01 -0700103};
104
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400105struct ina2xx_data {
Guenter Roeck6106db22012-05-12 11:21:01 -0700106 const struct ina2xx_config *config;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400107
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100108 long rshunt;
Maciej Purski8d008c02017-11-22 16:32:15 +0100109 long current_lsb_uA;
110 long power_lsb_uW;
Marc Titingera0de56c2015-10-28 12:04:53 +0100111 struct mutex config_lock;
112 struct regmap *regmap;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400113
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100114 const struct attribute_group *groups[INA2XX_MAX_ATTRIBUTE_GROUPS];
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400115};
116
Guenter Roeck6106db22012-05-12 11:21:01 -0700117static const struct ina2xx_config ina2xx_config[] = {
118 [ina219] = {
119 .config_default = INA219_CONFIG_DEFAULT,
Maciej Purski8d008c02017-11-22 16:32:15 +0100120 .calibration_value = 4096,
Guenter Roeck6106db22012-05-12 11:21:01 -0700121 .registers = INA219_REGISTERS,
122 .shunt_div = 100,
123 .bus_voltage_shift = 3,
124 .bus_voltage_lsb = 4000,
Maciej Purski8d008c02017-11-22 16:32:15 +0100125 .power_lsb_factor = 20,
Guenter Roeck6106db22012-05-12 11:21:01 -0700126 },
127 [ina226] = {
128 .config_default = INA226_CONFIG_DEFAULT,
Maciej Purski8d008c02017-11-22 16:32:15 +0100129 .calibration_value = 2048,
Guenter Roeck6106db22012-05-12 11:21:01 -0700130 .registers = INA226_REGISTERS,
131 .shunt_div = 400,
132 .bus_voltage_shift = 0,
133 .bus_voltage_lsb = 1250,
Maciej Purski8d008c02017-11-22 16:32:15 +0100134 .power_lsb_factor = 25,
Guenter Roeck6106db22012-05-12 11:21:01 -0700135 },
136};
137
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100138/*
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.
143 */
144static const int ina226_avg_tab[] = { 1, 4, 16, 64, 128, 256, 512, 1024 };
145
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100146static int ina226_reg_to_interval(u16 config)
147{
148 int avg = ina226_avg_tab[INA226_READ_AVG(config)];
149
150 /*
151 * Multiply the total conversion time by the number of averages.
152 * Return the result in milliseconds.
153 */
154 return DIV_ROUND_CLOSEST(avg * INA226_TOTAL_CONV_TIME_DEFAULT, 1000);
155}
156
Marc Titingera0de56c2015-10-28 12:04:53 +0100157/*
158 * Return the new, shifted AVG field value of CONFIG register,
159 * to use with regmap_update_bits
160 */
161static u16 ina226_interval_to_reg(int interval)
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100162{
163 int avg, avg_bits;
164
165 avg = DIV_ROUND_CLOSEST(interval * 1000,
166 INA226_TOTAL_CONV_TIME_DEFAULT);
Bartosz Golaszewskid38df342015-04-16 12:43:34 -0700167 avg_bits = find_closest(avg, ina226_avg_tab,
168 ARRAY_SIZE(ina226_avg_tab));
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100169
Marc Titingera0de56c2015-10-28 12:04:53 +0100170 return INA226_SHIFT_AVG(avg_bits);
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100171}
172
Maciej Purski8d008c02017-11-22 16:32:15 +0100173/*
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.
178 */
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100179static int ina2xx_calibrate(struct ina2xx_data *data)
180{
Maciej Purski8d008c02017-11-22 16:32:15 +0100181 return regmap_write(data->regmap, INA2XX_CALIBRATION,
182 data->config->calibration_value);
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100183}
184
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100185/*
186 * Initialize the configuration and calibration registers.
187 */
188static int ina2xx_init(struct ina2xx_data *data)
189{
Marc Titingera0de56c2015-10-28 12:04:53 +0100190 int ret = regmap_write(data->regmap, INA2XX_CONFIG,
191 data->config->config_default);
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100192 if (ret < 0)
193 return ret;
194
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100195 return ina2xx_calibrate(data);
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100196}
197
Marc Titingera0de56c2015-10-28 12:04:53 +0100198static int ina2xx_read_reg(struct device *dev, int reg, unsigned int *regval)
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400199{
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700200 struct ina2xx_data *data = dev_get_drvdata(dev);
Marc Titingera0de56c2015-10-28 12:04:53 +0100201 int ret, retry;
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100202
Marc Titingera0de56c2015-10-28 12:04:53 +0100203 dev_dbg(dev, "Starting register %d read\n", reg);
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100204
205 for (retry = 5; retry; retry--) {
Marc Titingera0de56c2015-10-28 12:04:53 +0100206
207 ret = regmap_read(data->regmap, reg, regval);
208 if (ret < 0)
209 return ret;
210
211 dev_dbg(dev, "read %d, val = 0x%04x\n", reg, *regval);
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100212
213 /*
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.
Marc Titingera0de56c2015-10-28 12:04:53 +0100218 * We do that extra read of the calibration register if there
219 * is some hint of a chip reset.
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100220 */
Marc Titingera0de56c2015-10-28 12:04:53 +0100221 if (*regval == 0) {
222 unsigned int cal;
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100223
Marc Titingera0de56c2015-10-28 12:04:53 +0100224 ret = regmap_read(data->regmap, INA2XX_CALIBRATION,
225 &cal);
226 if (ret < 0)
227 return ret;
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100228
Marc Titingera0de56c2015-10-28 12:04:53 +0100229 if (cal == 0) {
230 dev_warn(dev, "chip not calibrated, reinitializing\n");
231
232 ret = ina2xx_init(data);
233 if (ret < 0)
234 return ret;
235 /*
236 * Let's make sure the power and current
237 * registers have been updated before trying
238 * again.
239 */
240 msleep(INA2XX_MAX_DELAY);
241 continue;
242 }
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100243 }
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100244 return 0;
245 }
246
247 /*
248 * If we're here then although all write operations succeeded, the
249 * chip still returns 0 in the calibration register. Nothing more we
250 * can do here.
251 */
252 dev_err(dev, "unable to reinitialize the chip\n");
253 return -ENODEV;
254}
255
Marc Titingera0de56c2015-10-28 12:04:53 +0100256static int ina2xx_get_value(struct ina2xx_data *data, u8 reg,
257 unsigned int regval)
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400258{
Guenter Roeck6106db22012-05-12 11:21:01 -0700259 int val;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400260
261 switch (reg) {
262 case INA2XX_SHUNT_VOLTAGE:
Fabio Baltieric0214f92014-06-08 22:06:24 +0100263 /* signed register */
Marc Titingera0de56c2015-10-28 12:04:53 +0100264 val = DIV_ROUND_CLOSEST((s16)regval, data->config->shunt_div);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400265 break;
266 case INA2XX_BUS_VOLTAGE:
Marc Titingera0de56c2015-10-28 12:04:53 +0100267 val = (regval >> data->config->bus_voltage_shift)
Guenter Roeck6106db22012-05-12 11:21:01 -0700268 * data->config->bus_voltage_lsb;
269 val = DIV_ROUND_CLOSEST(val, 1000);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400270 break;
271 case INA2XX_POWER:
Maciej Purski8d008c02017-11-22 16:32:15 +0100272 val = regval * data->power_lsb_uW;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400273 break;
274 case INA2XX_CURRENT:
Maciej Purski8d008c02017-11-22 16:32:15 +0100275 /* signed register, result in mA */
276 val = regval * data->current_lsb_uA;
277 val = DIV_ROUND_CLOSEST(val, 1000);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400278 break;
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100279 case INA2XX_CALIBRATION:
Maciej Purski8d008c02017-11-22 16:32:15 +0100280 val = regval;
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100281 break;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400282 default:
283 /* programmer goofed */
284 WARN_ON_ONCE(1);
285 val = 0;
286 break;
287 }
288
289 return val;
290}
291
292static ssize_t ina2xx_show_value(struct device *dev,
293 struct device_attribute *da, char *buf)
294{
295 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
Marc Titingera0de56c2015-10-28 12:04:53 +0100296 struct ina2xx_data *data = dev_get_drvdata(dev);
297 unsigned int regval;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400298
Marc Titingera0de56c2015-10-28 12:04:53 +0100299 int err = ina2xx_read_reg(dev, attr->index, &regval);
300
301 if (err < 0)
302 return err;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400303
Guenter Roeck6106db22012-05-12 11:21:01 -0700304 return snprintf(buf, PAGE_SIZE, "%d\n",
Marc Titingera0de56c2015-10-28 12:04:53 +0100305 ina2xx_get_value(data, attr->index, regval));
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400306}
307
Maciej Purski8d008c02017-11-22 16:32:15 +0100308/*
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
312 * to keep the scale.
313 */
314static int ina2xx_set_shunt(struct ina2xx_data *data, long val)
315{
316 unsigned int dividend = DIV_ROUND_CLOSEST(1000000000,
317 data->config->shunt_div);
318 if (val <= 0 || val > dividend)
319 return -EINVAL;
320
321 mutex_lock(&data->config_lock);
322 data->rshunt = val;
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);
327
328 return 0;
329}
330
Lothar Feltenfc63de902018-08-14 09:09:37 +0200331static ssize_t ina2xx_show_shunt(struct device *dev,
332 struct device_attribute *da,
333 char *buf)
334{
335 struct ina2xx_data *data = dev_get_drvdata(dev);
336
337 return snprintf(buf, PAGE_SIZE, "%li\n", data->rshunt);
338}
339
Maciej Purski8d008c02017-11-22 16:32:15 +0100340static ssize_t ina2xx_store_shunt(struct device *dev,
341 struct device_attribute *da,
342 const char *buf, size_t count)
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100343{
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100344 unsigned long val;
345 int status;
Marc Titingera0de56c2015-10-28 12:04:53 +0100346 struct ina2xx_data *data = dev_get_drvdata(dev);
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100347
348 status = kstrtoul(buf, 10, &val);
349 if (status < 0)
350 return status;
351
Maciej Purski8d008c02017-11-22 16:32:15 +0100352 status = ina2xx_set_shunt(data, val);
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100353 if (status < 0)
354 return status;
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100355 return count;
356}
357
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100358static ssize_t ina226_set_interval(struct device *dev,
359 struct device_attribute *da,
360 const char *buf, size_t count)
361{
362 struct ina2xx_data *data = dev_get_drvdata(dev);
363 unsigned long val;
364 int status;
365
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100366 status = kstrtoul(buf, 10, &val);
367 if (status < 0)
368 return status;
369
370 if (val > INT_MAX || val == 0)
371 return -EINVAL;
372
Marc Titingera0de56c2015-10-28 12:04:53 +0100373 status = regmap_update_bits(data->regmap, INA2XX_CONFIG,
374 INA226_AVG_RD_MASK,
375 ina226_interval_to_reg(val));
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100376 if (status < 0)
377 return status;
378
379 return count;
380}
381
382static ssize_t ina226_show_interval(struct device *dev,
383 struct device_attribute *da, char *buf)
384{
Marc Titingera0de56c2015-10-28 12:04:53 +0100385 struct ina2xx_data *data = dev_get_drvdata(dev);
386 int status;
387 unsigned int regval;
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100388
Marc Titingera0de56c2015-10-28 12:04:53 +0100389 status = regmap_read(data->regmap, INA2XX_CONFIG, &regval);
390 if (status)
391 return status;
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100392
Marc Titingera0de56c2015-10-28 12:04:53 +0100393 return snprintf(buf, PAGE_SIZE, "%d\n", ina226_reg_to_interval(regval));
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100394}
395
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400396/* shunt voltage */
Guenter Roeckf0df0fd2013-01-10 10:04:06 -0800397static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, ina2xx_show_value, NULL,
398 INA2XX_SHUNT_VOLTAGE);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400399
400/* bus voltage */
Guenter Roeckf0df0fd2013-01-10 10:04:06 -0800401static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, ina2xx_show_value, NULL,
402 INA2XX_BUS_VOLTAGE);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400403
404/* calculated current */
Guenter Roeckf0df0fd2013-01-10 10:04:06 -0800405static SENSOR_DEVICE_ATTR(curr1_input, S_IRUGO, ina2xx_show_value, NULL,
406 INA2XX_CURRENT);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400407
408/* calculated power */
Guenter Roeckf0df0fd2013-01-10 10:04:06 -0800409static SENSOR_DEVICE_ATTR(power1_input, S_IRUGO, ina2xx_show_value, NULL,
410 INA2XX_POWER);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400411
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100412/* shunt resistance */
413static SENSOR_DEVICE_ATTR(shunt_resistor, S_IRUGO | S_IWUSR,
Lothar Feltenfc63de902018-08-14 09:09:37 +0200414 ina2xx_show_shunt, ina2xx_store_shunt,
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100415 INA2XX_CALIBRATION);
416
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100417/* update interval (ina226 only) */
418static SENSOR_DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR,
419 ina226_show_interval, ina226_set_interval, 0);
420
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400421/* pointers to created device attributes */
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700422static struct attribute *ina2xx_attrs[] = {
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400423 &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,
Bartosz Golaszewski8a5fc792015-01-05 15:20:55 +0100427 &sensor_dev_attr_shunt_resistor.dev_attr.attr,
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400428 NULL,
429};
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100430
431static const struct attribute_group ina2xx_group = {
432 .attrs = ina2xx_attrs,
433};
434
435static struct attribute *ina226_attrs[] = {
436 &sensor_dev_attr_update_interval.dev_attr.attr,
437 NULL,
438};
439
440static const struct attribute_group ina226_group = {
441 .attrs = ina226_attrs,
442};
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400443
444static int ina2xx_probe(struct i2c_client *client,
445 const struct i2c_device_id *id)
446{
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700447 struct device *dev = &client->dev;
448 struct ina2xx_data *data;
449 struct device *hwmon_dev;
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700450 u32 val;
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100451 int ret, group = 0;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400452
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700453 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400454 if (!data)
455 return -ENOMEM;
456
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400457 /* set the device type */
Marc Titinger5aa4e832015-10-29 10:07:17 +0100458 data->config = &ina2xx_config[id->driver_data];
Marek Szyprowskiebdb0d52018-01-15 14:58:21 +0100459 mutex_init(&data->config_lock);
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100460
Marc Titinger001e2e72015-10-27 10:51:08 +0100461 if (of_property_read_u32(dev->of_node, "shunt-resistor", &val) < 0) {
462 struct ina2xx_platform_data *pdata = dev_get_platdata(dev);
463
464 if (pdata)
465 val = pdata->shunt_uohms;
466 else
467 val = INA2XX_RSHUNT_DEFAULT;
468 }
469
Maciej Purski8d008c02017-11-22 16:32:15 +0100470 ina2xx_set_shunt(data, val);
Marc Titinger001e2e72015-10-27 10:51:08 +0100471
Marc Titingera0de56c2015-10-28 12:04:53 +0100472 ina2xx_regmap_config.max_register = data->config->registers;
473
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);
478 }
479
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100480 ret = ina2xx_init(data);
481 if (ret < 0) {
482 dev_err(dev, "error configuring the device: %d\n", ret);
483 return -ENODEV;
484 }
485
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100486 data->groups[group++] = &ina2xx_group;
Marc Titinger5aa4e832015-10-29 10:07:17 +0100487 if (id->driver_data == ina226)
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100488 data->groups[group++] = &ina226_group;
489
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700490 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
Bartosz Golaszewski72a87a42015-01-09 17:03:42 +0100491 data, data->groups);
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700492 if (IS_ERR(hwmon_dev))
493 return PTR_ERR(hwmon_dev);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400494
Guenter Roeck468bf0e2013-09-02 13:16:19 -0700495 dev_info(dev, "power monitor %s (Rshunt = %li uOhm)\n",
Bartosz Golaszewski509416a2015-01-05 15:20:52 +0100496 id->name, data->rshunt);
Guenter Roeck6106db22012-05-12 11:21:01 -0700497
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400498 return 0;
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400499}
500
501static const struct i2c_device_id ina2xx_id[] = {
502 { "ina219", ina219 },
Guenter Roeckdc92cd02012-05-12 11:33:11 -0700503 { "ina220", ina219 },
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400504 { "ina226", ina226 },
Guenter Roeckdc92cd02012-05-12 11:33:11 -0700505 { "ina230", ina226 },
Kevin Hilmanadd513b2015-01-14 17:34:58 -0800506 { "ina231", ina226 },
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400507 { }
508};
509MODULE_DEVICE_TABLE(i2c, ina2xx_id);
510
511static struct i2c_driver ina2xx_driver = {
512 .driver = {
513 .name = "ina2xx",
514 },
515 .probe = ina2xx_probe,
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400516 .id_table = ina2xx_id,
517};
518
Wei Yongjund835ca02012-10-08 20:40:35 +0800519module_i2c_driver(ina2xx_driver);
Felten, Lotharf7c2fe32012-05-12 04:36:38 -0400520
521MODULE_AUTHOR("Lothar Felten <l-felten@ti.com>");
522MODULE_DESCRIPTION("ina2xx driver");
523MODULE_LICENSE("GPL");