Re: [PATCH v2] hwmon: (ina3221) Add averaging mode support

2019-04-16 Thread Guenter Roeck
On Tue, Apr 16, 2019 at 12:41:31PM -0700, Nicolin Chen wrote:
> The CONFIG register has a 3-bit averaging mode field for users
> to setup the number of samples that are collected and averaged
> together. This is very useful to filter noise from sensor data.
> 
> This patch adds a 'samples' sysfs node using hwmon_chip_samples
> of hwmon core, and updates wait time calculation by taking this
> samples value into account.
> 
> Signed-off-by: Nicolin Chen 

Applied to hwmon-next.

Thanks,
Guenter


[PATCH v2] hwmon: (ina3221) Add averaging mode support

2019-04-16 Thread Nicolin Chen
The CONFIG register has a 3-bit averaging mode field for users
to setup the number of samples that are collected and averaged
together. This is very useful to filter noise from sensor data.

This patch adds a 'samples' sysfs node using hwmon_chip_samples
of hwmon core, and updates wait time calculation by taking this
samples value into account.

Signed-off-by: Nicolin Chen 
---
Changelog
v1->v2:
 * Implemented "samples" through hwmon_chip_info
 * Used find_closest()

 Documentation/hwmon/ina3221 |  3 ++
 drivers/hwmon/ina3221.c | 67 -
 2 files changed, 69 insertions(+), 1 deletion(-)

diff --git a/Documentation/hwmon/ina3221 b/Documentation/hwmon/ina3221
index 4b82cbfb551c..ed3f22769d4b 100644
--- a/Documentation/hwmon/ina3221
+++ b/Documentation/hwmon/ina3221
@@ -35,3 +35,6 @@ curr[123]_max   Warning alert current(mA) setting, 
activates the
   average is above this value.
 curr[123]_max_alarm Warning alert current limit exceeded
 in[456]_input   Shunt voltage(uV) for channels 1, 2, and 3 respectively
+samples Number of samples using in the averaging mode.
+  Supports the list of number of samples:
+  1, 4, 16, 64, 128, 256, 512, 1024
diff --git a/drivers/hwmon/ina3221.c b/drivers/hwmon/ina3221.c
index e6f43df0435c..74d39d212931 100644
--- a/drivers/hwmon/ina3221.c
+++ b/drivers/hwmon/ina3221.c
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #define INA3221_DRIVER_NAME"ina3221"
 
@@ -51,6 +52,9 @@
 #define INA3221_CONFIG_VBUS_CT_SHIFT   6
 #define INA3221_CONFIG_VBUS_CT_MASKGENMASK(8, 6)
 #define INA3221_CONFIG_VBUS_CT(x)  (((x) & GENMASK(8, 6)) >> 6)
+#define INA3221_CONFIG_AVG_SHIFT   9
+#define INA3221_CONFIG_AVG_MASKGENMASK(11, 9)
+#define INA3221_CONFIG_AVG(x)  (((x) & GENMASK(11, 9)) >> 9)
 #define INA3221_CONFIG_CHs_EN_MASK GENMASK(14, 12)
 #define INA3221_CONFIG_CHx_EN(x)   BIT(14 - (x))
 
@@ -135,17 +139,24 @@ static const u16 ina3221_conv_time[] = {
140, 204, 332, 588, 1100, 2116, 4156, 8244,
 };
 
+/* Lookup table for number of samples using in averaging mode */
+static const int ina3221_avg_samples[] = {
+   1, 4, 16, 64, 128, 256, 512, 1024,
+};
+
 static inline int ina3221_wait_for_data(struct ina3221_data *ina)
 {
u32 channels = hweight16(ina->reg_config & INA3221_CONFIG_CHs_EN_MASK);
u32 vbus_ct_idx = INA3221_CONFIG_VBUS_CT(ina->reg_config);
u32 vsh_ct_idx = INA3221_CONFIG_VSH_CT(ina->reg_config);
+   u32 samples_idx = INA3221_CONFIG_AVG(ina->reg_config);
+   u32 samples = ina3221_avg_samples[samples_idx];
u32 vbus_ct = ina3221_conv_time[vbus_ct_idx];
u32 vsh_ct = ina3221_conv_time[vsh_ct_idx];
u32 wait, cvrf;
 
/* Calculate total conversion time */
-   wait = channels * (vbus_ct + vsh_ct);
+   wait = channels * (vbus_ct + vsh_ct) * samples;
 
/* Polling the CVRF bit to make sure read data is ready */
return regmap_field_read_poll_timeout(ina->fields[F_CVRF],
@@ -176,6 +187,21 @@ static const u8 ina3221_in_reg[] = {
INA3221_SHUNT3,
 };
 
+static int ina3221_read_chip(struct device *dev, u32 attr, long *val)
+{
+   struct ina3221_data *ina = dev_get_drvdata(dev);
+   int regval;
+
+   switch (attr) {
+   case hwmon_chip_samples:
+   regval = INA3221_CONFIG_AVG(ina->reg_config);
+   *val = ina3221_avg_samples[regval];
+   return 0;
+   default:
+   return -EOPNOTSUPP;
+   }
+}
+
 static int ina3221_read_in(struct device *dev, u32 attr, int channel, long 
*val)
 {
const bool is_shunt = channel > INA3221_CHANNEL3;
@@ -279,6 +305,30 @@ static int ina3221_read_curr(struct device *dev, u32 attr,
}
 }
 
+static int ina3221_write_chip(struct device *dev, u32 attr, long val)
+{
+   struct ina3221_data *ina = dev_get_drvdata(dev);
+   int ret, idx;
+
+   switch (attr) {
+   case hwmon_chip_samples:
+   idx = find_closest(val, ina3221_avg_samples,
+  ARRAY_SIZE(ina3221_avg_samples));
+
+   ret = regmap_update_bits(ina->regmap, INA3221_CONFIG,
+INA3221_CONFIG_AVG_MASK,
+idx << INA3221_CONFIG_AVG_SHIFT);
+   if (ret)
+   return ret;
+
+   /* Update reg_config accordingly */
+   return regmap_read(ina->regmap, INA3221_CONFIG,
+  >reg_config);
+   default:
+   return -EOPNOTSUPP;
+   }
+}
+
 static int ina3221_write_curr(struct device *dev, u32 attr,
  int channel, long val)
 {
@@ -361,6 +411,9 @@ static int ina3221_read(struct device *dev, enum 
hwmon_sensor_types type,
mutex_lock(>lock);