1 // SPDX-License-Identifier: GPL-2.0-only
3 * INA3221 Triple Current/Voltage Monitor
5 * Copyright (C) 2016 Texas Instruments Incorporated - https://www.ti.com/
6 * Andrew F. Davis <afd@ti.com>
9 #include <linux/hwmon.h>
10 #include <linux/hwmon-sysfs.h>
11 #include <linux/i2c.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/regmap.h>
17 #include <linux/util_macros.h>
19 #define INA3221_DRIVER_NAME "ina3221"
21 #define INA3221_CONFIG 0x00
22 #define INA3221_SHUNT1 0x01
23 #define INA3221_BUS1 0x02
24 #define INA3221_SHUNT2 0x03
25 #define INA3221_BUS2 0x04
26 #define INA3221_SHUNT3 0x05
27 #define INA3221_BUS3 0x06
28 #define INA3221_CRIT1 0x07
29 #define INA3221_WARN1 0x08
30 #define INA3221_CRIT2 0x09
31 #define INA3221_WARN2 0x0a
32 #define INA3221_CRIT3 0x0b
33 #define INA3221_WARN3 0x0c
34 #define INA3221_SHUNT_SUM 0x0d
35 #define INA3221_CRIT_SUM 0x0e
36 #define INA3221_MASK_ENABLE 0x0f
38 #define INA3221_CONFIG_MODE_MASK GENMASK(2, 0)
39 #define INA3221_CONFIG_MODE_POWERDOWN 0
40 #define INA3221_CONFIG_MODE_SHUNT BIT(0)
41 #define INA3221_CONFIG_MODE_BUS BIT(1)
42 #define INA3221_CONFIG_MODE_CONTINUOUS BIT(2)
43 #define INA3221_CONFIG_VSH_CT_SHIFT 3
44 #define INA3221_CONFIG_VSH_CT_MASK GENMASK(5, 3)
45 #define INA3221_CONFIG_VSH_CT(x) (((x) & GENMASK(5, 3)) >> 3)
46 #define INA3221_CONFIG_VBUS_CT_SHIFT 6
47 #define INA3221_CONFIG_VBUS_CT_MASK GENMASK(8, 6)
48 #define INA3221_CONFIG_VBUS_CT(x) (((x) & GENMASK(8, 6)) >> 6)
49 #define INA3221_CONFIG_AVG_SHIFT 9
50 #define INA3221_CONFIG_AVG_MASK GENMASK(11, 9)
51 #define INA3221_CONFIG_AVG(x) (((x) & GENMASK(11, 9)) >> 9)
52 #define INA3221_CONFIG_CHs_EN_MASK GENMASK(14, 12)
53 #define INA3221_CONFIG_CHx_EN(x) BIT(14 - (x))
55 #define INA3221_MASK_ENABLE_SCC_MASK GENMASK(14, 12)
57 #define INA3221_CONFIG_DEFAULT 0x7127
58 #define INA3221_RSHUNT_DEFAULT 10000
70 /* Alert Flags: SF is the summation-alert flag */
71 F_SF, F_CF3, F_CF2, F_CF1,
77 static const struct reg_field ina3221_reg_fields[] = {
78 [F_RST] = REG_FIELD(INA3221_CONFIG, 15, 15),
80 [F_CVRF] = REG_FIELD(INA3221_MASK_ENABLE, 0, 0),
81 [F_WF3] = REG_FIELD(INA3221_MASK_ENABLE, 3, 3),
82 [F_WF2] = REG_FIELD(INA3221_MASK_ENABLE, 4, 4),
83 [F_WF1] = REG_FIELD(INA3221_MASK_ENABLE, 5, 5),
84 [F_SF] = REG_FIELD(INA3221_MASK_ENABLE, 6, 6),
85 [F_CF3] = REG_FIELD(INA3221_MASK_ENABLE, 7, 7),
86 [F_CF2] = REG_FIELD(INA3221_MASK_ENABLE, 8, 8),
87 [F_CF1] = REG_FIELD(INA3221_MASK_ENABLE, 9, 9),
90 enum ina3221_channels {
98 * struct ina3221_input - channel input source specific information
99 * @label: label of channel input source
100 * @shunt_resistor: shunt resistor value of channel input source
101 * @disconnected: connection status of channel input source
103 struct ina3221_input {
110 * struct ina3221_data - device specific information
111 * @pm_dev: Device pointer for pm runtime
112 * @regmap: Register map of the device
113 * @fields: Register fields of the device
114 * @inputs: Array of channel input source specific structures
115 * @lock: mutex lock to serialize sysfs attribute accesses
116 * @reg_config: Register value of INA3221_CONFIG
117 * @summation_shunt_resistor: equivalent shunt resistor value for summation
118 * @single_shot: running in single-shot operating mode
120 struct ina3221_data {
121 struct device *pm_dev;
122 struct regmap *regmap;
123 struct regmap_field *fields[F_MAX_FIELDS];
124 struct ina3221_input inputs[INA3221_NUM_CHANNELS];
127 int summation_shunt_resistor;
132 static inline bool ina3221_is_enabled(struct ina3221_data *ina, int channel)
134 /* Summation channel checks shunt resistor values */
135 if (channel > INA3221_CHANNEL3)
136 return ina->summation_shunt_resistor != 0;
138 return pm_runtime_active(ina->pm_dev) &&
139 (ina->reg_config & INA3221_CONFIG_CHx_EN(channel));
143 * Helper function to return the resistor value for current summation.
145 * There is a condition to calculate current summation -- all the shunt
146 * resistor values should be the same, so as to simply fit the formula:
147 * current summation = shunt voltage summation / shunt resistor
149 * Returns the equivalent shunt resistor value on success or 0 on failure
151 static inline int ina3221_summation_shunt_resistor(struct ina3221_data *ina)
153 struct ina3221_input *input = ina->inputs;
154 int i, shunt_resistor = 0;
156 for (i = 0; i < INA3221_NUM_CHANNELS; i++) {
157 if (input[i].disconnected || !input[i].shunt_resistor)
159 if (!shunt_resistor) {
160 /* Found the reference shunt resistor value */
161 shunt_resistor = input[i].shunt_resistor;
163 /* No summation if resistor values are different */
164 if (shunt_resistor != input[i].shunt_resistor)
169 return shunt_resistor;
172 /* Lookup table for Bus and Shunt conversion times in usec */
173 static const u16 ina3221_conv_time[] = {
174 140, 204, 332, 588, 1100, 2116, 4156, 8244,
177 /* Lookup table for number of samples using in averaging mode */
178 static const int ina3221_avg_samples[] = {
179 1, 4, 16, 64, 128, 256, 512, 1024,
182 /* Converting update_interval in msec to conversion time in usec */
183 static inline u32 ina3221_interval_ms_to_conv_time(u16 config, int interval)
185 u32 channels = hweight16(config & INA3221_CONFIG_CHs_EN_MASK);
186 u32 samples_idx = INA3221_CONFIG_AVG(config);
187 u32 samples = ina3221_avg_samples[samples_idx];
189 /* Bisect the result to Bus and Shunt conversion times */
190 return DIV_ROUND_CLOSEST(interval * 1000 / 2, channels * samples);
193 /* Converting CONFIG register value to update_interval in usec */
194 static inline u32 ina3221_reg_to_interval_us(u16 config)
196 u32 channels = hweight16(config & INA3221_CONFIG_CHs_EN_MASK);
197 u32 vbus_ct_idx = INA3221_CONFIG_VBUS_CT(config);
198 u32 vsh_ct_idx = INA3221_CONFIG_VSH_CT(config);
199 u32 vbus_ct = ina3221_conv_time[vbus_ct_idx];
200 u32 vsh_ct = ina3221_conv_time[vsh_ct_idx];
202 /* Calculate total conversion time */
203 return channels * (vbus_ct + vsh_ct);
206 static inline int ina3221_wait_for_data(struct ina3221_data *ina)
210 wait = ina3221_reg_to_interval_us(ina->reg_config);
212 /* Polling the CVRF bit to make sure read data is ready */
213 return regmap_field_read_poll_timeout(ina->fields[F_CVRF],
214 cvrf, cvrf, wait, wait * 2);
217 static int ina3221_read_value(struct ina3221_data *ina, unsigned int reg,
223 ret = regmap_read(ina->regmap, reg, ®val);
228 * Shunt Voltage Sum register has 14-bit value with 1-bit shift
229 * Other Shunt Voltage registers have 12 bits with 3-bit shift
231 if (reg == INA3221_SHUNT_SUM || reg == INA3221_CRIT_SUM)
232 *val = sign_extend32(regval >> 1, 14);
234 *val = sign_extend32(regval >> 3, 12);
239 static const u8 ina3221_in_reg[] = {
249 static int ina3221_read_chip(struct device *dev, u32 attr, long *val)
251 struct ina3221_data *ina = dev_get_drvdata(dev);
255 case hwmon_chip_samples:
256 regval = INA3221_CONFIG_AVG(ina->reg_config);
257 *val = ina3221_avg_samples[regval];
259 case hwmon_chip_update_interval:
261 *val = ina3221_reg_to_interval_us(ina->reg_config);
262 *val = DIV_ROUND_CLOSEST(*val, 1000);
269 static int ina3221_read_in(struct device *dev, u32 attr, int channel, long *val)
271 const bool is_shunt = channel > INA3221_CHANNEL3;
272 struct ina3221_data *ina = dev_get_drvdata(dev);
273 u8 reg = ina3221_in_reg[channel];
277 * Translate shunt channel index to sensor channel index except
278 * the 7th channel (6 since being 0-aligned) is for summation.
281 channel %= INA3221_NUM_CHANNELS;
285 if (!ina3221_is_enabled(ina, channel))
288 /* Write CONFIG register to trigger a single-shot measurement */
289 if (ina->single_shot) {
290 regmap_write(ina->regmap, INA3221_CONFIG,
293 ret = ina3221_wait_for_data(ina);
298 ret = ina3221_read_value(ina, reg, ®val);
303 * Scale of shunt voltage (uV): LSB is 40uV
304 * Scale of bus voltage (mV): LSB is 8mV
306 *val = regval * (is_shunt ? 40 : 8);
308 case hwmon_in_enable:
309 *val = ina3221_is_enabled(ina, channel);
316 static const u8 ina3221_curr_reg[][INA3221_NUM_CHANNELS + 1] = {
317 [hwmon_curr_input] = { INA3221_SHUNT1, INA3221_SHUNT2,
318 INA3221_SHUNT3, INA3221_SHUNT_SUM },
319 [hwmon_curr_max] = { INA3221_WARN1, INA3221_WARN2, INA3221_WARN3, 0 },
320 [hwmon_curr_crit] = { INA3221_CRIT1, INA3221_CRIT2,
321 INA3221_CRIT3, INA3221_CRIT_SUM },
322 [hwmon_curr_max_alarm] = { F_WF1, F_WF2, F_WF3, 0 },
323 [hwmon_curr_crit_alarm] = { F_CF1, F_CF2, F_CF3, F_SF },
326 static int ina3221_read_curr(struct device *dev, u32 attr,
327 int channel, long *val)
329 struct ina3221_data *ina = dev_get_drvdata(dev);
330 struct ina3221_input *input = ina->inputs;
331 u8 reg = ina3221_curr_reg[attr][channel];
332 int resistance_uo, voltage_nv;
335 if (channel > INA3221_CHANNEL3)
336 resistance_uo = ina->summation_shunt_resistor;
338 resistance_uo = input[channel].shunt_resistor;
341 case hwmon_curr_input:
342 if (!ina3221_is_enabled(ina, channel))
345 /* Write CONFIG register to trigger a single-shot measurement */
346 if (ina->single_shot) {
347 regmap_write(ina->regmap, INA3221_CONFIG,
350 ret = ina3221_wait_for_data(ina);
356 case hwmon_curr_crit:
361 ret = ina3221_read_value(ina, reg, ®val);
365 /* Scale of shunt voltage: LSB is 40uV (40000nV) */
366 voltage_nv = regval * 40000;
367 /* Return current in mA */
368 *val = DIV_ROUND_CLOSEST(voltage_nv, resistance_uo);
370 case hwmon_curr_crit_alarm:
371 case hwmon_curr_max_alarm:
372 /* No actual register read if channel is disabled */
373 if (!ina3221_is_enabled(ina, channel)) {
374 /* Return 0 for alert flags */
378 ret = regmap_field_read(ina->fields[reg], ®val);
388 static int ina3221_write_chip(struct device *dev, u32 attr, long val)
390 struct ina3221_data *ina = dev_get_drvdata(dev);
395 case hwmon_chip_samples:
396 idx = find_closest(val, ina3221_avg_samples,
397 ARRAY_SIZE(ina3221_avg_samples));
399 tmp = (ina->reg_config & ~INA3221_CONFIG_AVG_MASK) |
400 (idx << INA3221_CONFIG_AVG_SHIFT);
401 ret = regmap_write(ina->regmap, INA3221_CONFIG, tmp);
405 /* Update reg_config accordingly */
406 ina->reg_config = tmp;
408 case hwmon_chip_update_interval:
409 tmp = ina3221_interval_ms_to_conv_time(ina->reg_config, val);
410 idx = find_closest(tmp, ina3221_conv_time,
411 ARRAY_SIZE(ina3221_conv_time));
413 /* Update Bus and Shunt voltage conversion times */
414 tmp = INA3221_CONFIG_VBUS_CT_MASK | INA3221_CONFIG_VSH_CT_MASK;
415 tmp = (ina->reg_config & ~tmp) |
416 (idx << INA3221_CONFIG_VBUS_CT_SHIFT) |
417 (idx << INA3221_CONFIG_VSH_CT_SHIFT);
418 ret = regmap_write(ina->regmap, INA3221_CONFIG, tmp);
422 /* Update reg_config accordingly */
423 ina->reg_config = tmp;
430 static int ina3221_write_curr(struct device *dev, u32 attr,
431 int channel, long val)
433 struct ina3221_data *ina = dev_get_drvdata(dev);
434 struct ina3221_input *input = ina->inputs;
435 u8 reg = ina3221_curr_reg[attr][channel];
436 int resistance_uo, current_ma, voltage_uv;
439 if (channel > INA3221_CHANNEL3)
440 resistance_uo = ina->summation_shunt_resistor;
442 resistance_uo = input[channel].shunt_resistor;
448 current_ma = clamp_val(val,
449 INT_MIN / resistance_uo,
450 INT_MAX / resistance_uo);
452 voltage_uv = DIV_ROUND_CLOSEST(current_ma * resistance_uo, 1000);
455 voltage_uv = clamp_val(voltage_uv, -163800, 163800);
458 * Formula to convert voltage_uv to register value:
459 * regval = (voltage_uv / scale) << shift
461 * The scale is 40uV for all shunt voltage registers
462 * Shunt Voltage Sum register left-shifts 1 bit
463 * All other Shunt Voltage registers shift 3 bits
465 * SHUNT_SUM: (1 / 40uV) << 1 = 1 / 20uV
466 * SHUNT[1-3]: (1 / 40uV) << 3 = 1 / 5uV
468 if (reg == INA3221_SHUNT_SUM || reg == INA3221_CRIT_SUM)
469 regval = DIV_ROUND_CLOSEST(voltage_uv, 20) & 0xfffe;
471 regval = DIV_ROUND_CLOSEST(voltage_uv, 5) & 0xfff8;
473 return regmap_write(ina->regmap, reg, regval);
476 static int ina3221_write_enable(struct device *dev, int channel, bool enable)
478 struct ina3221_data *ina = dev_get_drvdata(dev);
479 u16 config, mask = INA3221_CONFIG_CHx_EN(channel);
480 u16 config_old = ina->reg_config & mask;
484 config = enable ? mask : 0;
486 /* Bypass if enable status is not being changed */
487 if (config_old == config)
490 /* For enabling routine, increase refcount and resume() at first */
492 ret = pm_runtime_resume_and_get(ina->pm_dev);
494 dev_err(dev, "Failed to get PM runtime\n");
499 /* Enable or disable the channel */
500 tmp = (ina->reg_config & ~mask) | (config & mask);
501 ret = regmap_write(ina->regmap, INA3221_CONFIG, tmp);
505 /* Cache the latest config register value */
506 ina->reg_config = tmp;
508 /* For disabling routine, decrease refcount or suspend() at last */
510 pm_runtime_put_sync(ina->pm_dev);
516 dev_err(dev, "Failed to enable channel %d: error %d\n",
518 pm_runtime_put_sync(ina->pm_dev);
524 static int ina3221_read(struct device *dev, enum hwmon_sensor_types type,
525 u32 attr, int channel, long *val)
527 struct ina3221_data *ina = dev_get_drvdata(dev);
530 mutex_lock(&ina->lock);
534 ret = ina3221_read_chip(dev, attr, val);
537 /* 0-align channel ID */
538 ret = ina3221_read_in(dev, attr, channel - 1, val);
541 ret = ina3221_read_curr(dev, attr, channel, val);
548 mutex_unlock(&ina->lock);
553 static int ina3221_write(struct device *dev, enum hwmon_sensor_types type,
554 u32 attr, int channel, long val)
556 struct ina3221_data *ina = dev_get_drvdata(dev);
559 mutex_lock(&ina->lock);
563 ret = ina3221_write_chip(dev, attr, val);
566 /* 0-align channel ID */
567 ret = ina3221_write_enable(dev, channel - 1, val);
570 ret = ina3221_write_curr(dev, attr, channel, val);
577 mutex_unlock(&ina->lock);
582 static int ina3221_read_string(struct device *dev, enum hwmon_sensor_types type,
583 u32 attr, int channel, const char **str)
585 struct ina3221_data *ina = dev_get_drvdata(dev);
586 int index = channel - 1;
589 *str = "sum of shunt voltages";
591 *str = ina->inputs[index].label;
596 static umode_t ina3221_is_visible(const void *drvdata,
597 enum hwmon_sensor_types type,
598 u32 attr, int channel)
600 const struct ina3221_data *ina = drvdata;
601 const struct ina3221_input *input = NULL;
606 case hwmon_chip_samples:
607 case hwmon_chip_update_interval:
619 if (channel - 1 <= INA3221_CHANNEL3)
620 input = &ina->inputs[channel - 1];
621 else if (channel == 7)
623 /* Hide label node if label is not provided */
624 return (input && input->label) ? 0444 : 0;
627 case hwmon_in_enable:
634 case hwmon_curr_input:
635 case hwmon_curr_crit_alarm:
636 case hwmon_curr_max_alarm:
638 case hwmon_curr_crit:
649 #define INA3221_HWMON_CURR_CONFIG (HWMON_C_INPUT | \
650 HWMON_C_CRIT | HWMON_C_CRIT_ALARM | \
651 HWMON_C_MAX | HWMON_C_MAX_ALARM)
653 static const struct hwmon_channel_info * const ina3221_info[] = {
654 HWMON_CHANNEL_INFO(chip,
656 HWMON_C_UPDATE_INTERVAL),
657 HWMON_CHANNEL_INFO(in,
658 /* 0: dummy, skipped in is_visible */
660 /* 1-3: input voltage Channels */
661 HWMON_I_INPUT | HWMON_I_ENABLE | HWMON_I_LABEL,
662 HWMON_I_INPUT | HWMON_I_ENABLE | HWMON_I_LABEL,
663 HWMON_I_INPUT | HWMON_I_ENABLE | HWMON_I_LABEL,
664 /* 4-6: shunt voltage Channels */
668 /* 7: summation of shunt voltage channels */
669 HWMON_I_INPUT | HWMON_I_LABEL),
670 HWMON_CHANNEL_INFO(curr,
671 /* 1-3: current channels*/
672 INA3221_HWMON_CURR_CONFIG,
673 INA3221_HWMON_CURR_CONFIG,
674 INA3221_HWMON_CURR_CONFIG,
675 /* 4: summation of current channels */
676 HWMON_C_INPUT | HWMON_C_CRIT | HWMON_C_CRIT_ALARM),
680 static const struct hwmon_ops ina3221_hwmon_ops = {
681 .is_visible = ina3221_is_visible,
682 .read_string = ina3221_read_string,
683 .read = ina3221_read,
684 .write = ina3221_write,
687 static const struct hwmon_chip_info ina3221_chip_info = {
688 .ops = &ina3221_hwmon_ops,
689 .info = ina3221_info,
692 /* Extra attribute groups */
693 static ssize_t ina3221_shunt_show(struct device *dev,
694 struct device_attribute *attr, char *buf)
696 struct sensor_device_attribute *sd_attr = to_sensor_dev_attr(attr);
697 struct ina3221_data *ina = dev_get_drvdata(dev);
698 unsigned int channel = sd_attr->index;
699 struct ina3221_input *input = &ina->inputs[channel];
701 return sysfs_emit(buf, "%d\n", input->shunt_resistor);
704 static ssize_t ina3221_shunt_store(struct device *dev,
705 struct device_attribute *attr,
706 const char *buf, size_t count)
708 struct sensor_device_attribute *sd_attr = to_sensor_dev_attr(attr);
709 struct ina3221_data *ina = dev_get_drvdata(dev);
710 unsigned int channel = sd_attr->index;
711 struct ina3221_input *input = &ina->inputs[channel];
715 ret = kstrtoint(buf, 0, &val);
719 val = clamp_val(val, 1, INT_MAX);
721 input->shunt_resistor = val;
723 /* Update summation_shunt_resistor for summation channel */
724 ina->summation_shunt_resistor = ina3221_summation_shunt_resistor(ina);
729 /* shunt resistance */
730 static SENSOR_DEVICE_ATTR_RW(shunt1_resistor, ina3221_shunt, INA3221_CHANNEL1);
731 static SENSOR_DEVICE_ATTR_RW(shunt2_resistor, ina3221_shunt, INA3221_CHANNEL2);
732 static SENSOR_DEVICE_ATTR_RW(shunt3_resistor, ina3221_shunt, INA3221_CHANNEL3);
734 static struct attribute *ina3221_attrs[] = {
735 &sensor_dev_attr_shunt1_resistor.dev_attr.attr,
736 &sensor_dev_attr_shunt2_resistor.dev_attr.attr,
737 &sensor_dev_attr_shunt3_resistor.dev_attr.attr,
740 ATTRIBUTE_GROUPS(ina3221);
742 static const struct regmap_range ina3221_yes_ranges[] = {
743 regmap_reg_range(INA3221_CONFIG, INA3221_BUS3),
744 regmap_reg_range(INA3221_SHUNT_SUM, INA3221_SHUNT_SUM),
745 regmap_reg_range(INA3221_MASK_ENABLE, INA3221_MASK_ENABLE),
748 static const struct regmap_access_table ina3221_volatile_table = {
749 .yes_ranges = ina3221_yes_ranges,
750 .n_yes_ranges = ARRAY_SIZE(ina3221_yes_ranges),
753 static const struct regmap_config ina3221_regmap_config = {
757 .cache_type = REGCACHE_RBTREE,
758 .volatile_table = &ina3221_volatile_table,
761 static int ina3221_probe_child_from_dt(struct device *dev,
762 struct device_node *child,
763 struct ina3221_data *ina)
765 struct ina3221_input *input;
769 ret = of_property_read_u32(child, "reg", &val);
771 dev_err(dev, "missing reg property of %pOFn\n", child);
773 } else if (val > INA3221_CHANNEL3) {
774 dev_err(dev, "invalid reg %d of %pOFn\n", val, child);
778 input = &ina->inputs[val];
780 /* Log the disconnected channel input */
781 if (!of_device_is_available(child)) {
782 input->disconnected = true;
786 /* Save the connected input label if available */
787 of_property_read_string(child, "label", &input->label);
789 /* Overwrite default shunt resistor value optionally */
790 if (!of_property_read_u32(child, "shunt-resistor-micro-ohms", &val)) {
791 if (val < 1 || val > INT_MAX) {
792 dev_err(dev, "invalid shunt resistor value %u of %pOFn\n",
796 input->shunt_resistor = val;
802 static int ina3221_probe_from_dt(struct device *dev, struct ina3221_data *ina)
804 const struct device_node *np = dev->of_node;
805 struct device_node *child;
808 /* Compatible with non-DT platforms */
812 ina->single_shot = of_property_read_bool(np, "ti,single-shot");
814 for_each_child_of_node(np, child) {
815 ret = ina3221_probe_child_from_dt(dev, child, ina);
825 static int ina3221_probe(struct i2c_client *client)
827 struct device *dev = &client->dev;
828 struct ina3221_data *ina;
829 struct device *hwmon_dev;
832 ina = devm_kzalloc(dev, sizeof(*ina), GFP_KERNEL);
836 ina->regmap = devm_regmap_init_i2c(client, &ina3221_regmap_config);
837 if (IS_ERR(ina->regmap)) {
838 dev_err(dev, "Unable to allocate register map\n");
839 return PTR_ERR(ina->regmap);
842 for (i = 0; i < F_MAX_FIELDS; i++) {
843 ina->fields[i] = devm_regmap_field_alloc(dev,
845 ina3221_reg_fields[i]);
846 if (IS_ERR(ina->fields[i])) {
847 dev_err(dev, "Unable to allocate regmap fields\n");
848 return PTR_ERR(ina->fields[i]);
852 for (i = 0; i < INA3221_NUM_CHANNELS; i++)
853 ina->inputs[i].shunt_resistor = INA3221_RSHUNT_DEFAULT;
855 ret = ina3221_probe_from_dt(dev, ina);
857 dev_err(dev, "Unable to probe from device tree\n");
861 /* The driver will be reset, so use reset value */
862 ina->reg_config = INA3221_CONFIG_DEFAULT;
864 /* Clear continuous bit to use single-shot mode */
865 if (ina->single_shot)
866 ina->reg_config &= ~INA3221_CONFIG_MODE_CONTINUOUS;
868 /* Disable channels if their inputs are disconnected */
869 for (i = 0; i < INA3221_NUM_CHANNELS; i++) {
870 if (ina->inputs[i].disconnected)
871 ina->reg_config &= ~INA3221_CONFIG_CHx_EN(i);
874 /* Initialize summation_shunt_resistor for summation channel control */
875 ina->summation_shunt_resistor = ina3221_summation_shunt_resistor(ina);
878 mutex_init(&ina->lock);
879 dev_set_drvdata(dev, ina);
881 /* Enable PM runtime -- status is suspended by default */
882 pm_runtime_enable(ina->pm_dev);
884 /* Initialize (resume) the device */
885 for (i = 0; i < INA3221_NUM_CHANNELS; i++) {
886 if (ina->inputs[i].disconnected)
888 /* Match the refcount with number of enabled channels */
889 ret = pm_runtime_get_sync(ina->pm_dev);
894 hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name, ina,
897 if (IS_ERR(hwmon_dev)) {
898 dev_err(dev, "Unable to register hwmon device\n");
899 ret = PTR_ERR(hwmon_dev);
906 pm_runtime_disable(ina->pm_dev);
907 pm_runtime_set_suspended(ina->pm_dev);
908 /* pm_runtime_put_noidle() will decrease the PM refcount until 0 */
909 for (i = 0; i < INA3221_NUM_CHANNELS; i++)
910 pm_runtime_put_noidle(ina->pm_dev);
911 mutex_destroy(&ina->lock);
916 static void ina3221_remove(struct i2c_client *client)
918 struct ina3221_data *ina = dev_get_drvdata(&client->dev);
921 pm_runtime_disable(ina->pm_dev);
922 pm_runtime_set_suspended(ina->pm_dev);
924 /* pm_runtime_put_noidle() will decrease the PM refcount until 0 */
925 for (i = 0; i < INA3221_NUM_CHANNELS; i++)
926 pm_runtime_put_noidle(ina->pm_dev);
928 mutex_destroy(&ina->lock);
931 static int ina3221_suspend(struct device *dev)
933 struct ina3221_data *ina = dev_get_drvdata(dev);
936 /* Save config register value and enable cache-only */
937 ret = regmap_read(ina->regmap, INA3221_CONFIG, &ina->reg_config);
941 /* Set to power-down mode for power saving */
942 ret = regmap_update_bits(ina->regmap, INA3221_CONFIG,
943 INA3221_CONFIG_MODE_MASK,
944 INA3221_CONFIG_MODE_POWERDOWN);
948 regcache_cache_only(ina->regmap, true);
949 regcache_mark_dirty(ina->regmap);
954 static int ina3221_resume(struct device *dev)
956 struct ina3221_data *ina = dev_get_drvdata(dev);
959 regcache_cache_only(ina->regmap, false);
961 /* Software reset the chip */
962 ret = regmap_field_write(ina->fields[F_RST], true);
964 dev_err(dev, "Unable to reset device\n");
968 /* Restore cached register values to hardware */
969 ret = regcache_sync(ina->regmap);
973 /* Restore config register value to hardware */
974 ret = regmap_write(ina->regmap, INA3221_CONFIG, ina->reg_config);
978 /* Initialize summation channel control */
979 if (ina->summation_shunt_resistor) {
981 * Take all three channels into summation by default
982 * Shunt measurements of disconnected channels should
983 * be 0, so it does not matter for summation.
985 ret = regmap_update_bits(ina->regmap, INA3221_MASK_ENABLE,
986 INA3221_MASK_ENABLE_SCC_MASK,
987 INA3221_MASK_ENABLE_SCC_MASK);
989 dev_err(dev, "Unable to control summation channel\n");
997 static DEFINE_RUNTIME_DEV_PM_OPS(ina3221_pm, ina3221_suspend, ina3221_resume,
1000 static const struct of_device_id ina3221_of_match_table[] = {
1001 { .compatible = "ti,ina3221", },
1004 MODULE_DEVICE_TABLE(of, ina3221_of_match_table);
1006 static const struct i2c_device_id ina3221_ids[] = {
1010 MODULE_DEVICE_TABLE(i2c, ina3221_ids);
1012 static struct i2c_driver ina3221_i2c_driver = {
1013 .probe = ina3221_probe,
1014 .remove = ina3221_remove,
1016 .name = INA3221_DRIVER_NAME,
1017 .of_match_table = ina3221_of_match_table,
1018 .pm = pm_ptr(&ina3221_pm),
1020 .id_table = ina3221_ids,
1022 module_i2c_driver(ina3221_i2c_driver);
1024 MODULE_AUTHOR("Andrew F. Davis <afd@ti.com>");
1025 MODULE_DESCRIPTION("Texas Instruments INA3221 HWMon Driver");
1026 MODULE_LICENSE("GPL v2");