summaryrefslogtreecommitdiff
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2012-11-07 18:27:31 +0530
committerRohan Somvanshi <rsomvanshi@nvidia.com>2012-11-21 08:47:40 -0800
commitee3f4addb17b20259e462cac16bd574b5c9aa441 (patch)
tree9c0dba4d3164aa3576f6386a7f1416fe3bf4ab5f /drivers/hwmon
parentd72da6b92613af983bbe6d5a19595fb3c1eac564 (diff)
hwmon: ina230: add function to measure power
-do calculation using calibration_data, power_lsb, divisor received from respective board files -remove sysdev include Bug 1049224 Change-Id: I673e67cb42972aad1a3c5e5ea995072d40839d05 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: http://git-master/r/162025 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/ina230.c79
1 files changed, 69 insertions, 10 deletions
diff --git a/drivers/hwmon/ina230.c b/drivers/hwmon/ina230.c
index 3591a9463108..d5d50ddff846 100644
--- a/drivers/hwmon/ina230.c
+++ b/drivers/hwmon/ina230.c
@@ -40,7 +40,6 @@
#include <linux/err.h>
#include <linux/gpio.h>
#include <linux/device.h>
-#include <linux/sysdev.h>
#include <linux/platform_data/ina230.h>
#include <linux/init.h>
#include <linux/hwmon-sysfs.h>
@@ -49,7 +48,7 @@
#define DRIVER_NAME "ina230"
-#define MEASURE_BUS_VOLT 0
+#define MEASURE_BUS_VOLT 1
/* ina230 (/ ina226)register offsets */
#define INA230_CONFIG 0
@@ -389,7 +388,6 @@ static s32 show_current(struct device *dev,
{
struct i2c_client *client = to_i2c_client(dev);
struct ina230_data *data = i2c_get_clientdata(client);
- s32 voltage_uV;
s32 current_mA;
int retval;
@@ -400,19 +398,79 @@ static s32 show_current(struct device *dev,
return retval;
}
- voltage_uV =
- (s16)be16_to_cpu(i2c_smbus_read_word_data(client,
- INA230_SHUNT));
+ /* fill calib data */
+ retval = i2c_smbus_write_word_data(client, INA230_CAL,
+ __constant_cpu_to_be16(data->pdata->calibration_data));
+ if (retval < 0) {
+ dev_err(dev, "calibration data write failed sts: 0x%x\n",
+ retval);
+ mutex_unlock(&data->mutex);
+ return retval;
+ }
+
+ /* getting current readings in milli amps*/
+ current_mA = be16_to_cpu(i2c_smbus_read_word_data(client,
+ INA230_CURRENT));
+ if (current_mA < 0) {
+ mutex_unlock(&data->mutex);
+ return -EINVAL;
+ }
ensure_enabled_end(client);
mutex_unlock(&data->mutex);
- voltage_uV = shuntv_register_to_uv(voltage_uV);
- current_mA = voltage_uV / data->pdata->resistor;
+ current_mA =
+ (current_mA * data->pdata->power_lsb) / data->pdata->divisor;
+ if (data->pdata->precision_multiplier)
+ current_mA /= data->pdata->precision_multiplier;
return sprintf(buf, "%d mA\n", current_mA);
}
+static s32 show_power(struct device *dev,
+ struct device_attribute *attr,
+ char *buf)
+{
+ struct i2c_client *client = to_i2c_client(dev);
+ struct ina230_data *data = i2c_get_clientdata(client);
+ s32 power_mW;
+ int retval;
+
+ mutex_lock(&data->mutex);
+ retval = ensure_enabled_start(client);
+ if (retval < 0) {
+ mutex_unlock(&data->mutex);
+ return retval;
+ }
+
+ /* fill calib data */
+ retval = i2c_smbus_write_word_data(client, INA230_CAL,
+ __constant_cpu_to_be16(data->pdata->calibration_data));
+ if (retval < 0) {
+ dev_err(dev, "calibration data write failed sts: 0x%x\n",
+ retval);
+ mutex_unlock(&data->mutex);
+ return retval;
+ }
+
+ /* getting power readings in milli watts*/
+ power_mW = be16_to_cpu(i2c_smbus_read_word_data(client,
+ INA230_POWER));
+ if (power_mW < 0) {
+ mutex_unlock(&data->mutex);
+ return -EINVAL;
+ }
+
+ ensure_enabled_end(client);
+ mutex_unlock(&data->mutex);
+
+ power_mW =
+ power_mW * data->pdata->power_lsb;
+ if (data->pdata->precision_multiplier)
+ power_mW /= data->pdata->precision_multiplier;
+
+ return sprintf(buf, "%d mW\n", power_mW);
+}
static int ina230_hotplug_notify(struct notifier_block *nb, unsigned long event,
void *hcpu)
@@ -434,10 +492,11 @@ static struct sensor_device_attribute ina230[] = {
SENSOR_ATTR(current_threshold, S_IWUSR | S_IRUGO,
show_current_threshold, set_current_threshold, 0),
SENSOR_ATTR(shuntvolt1_input, S_IRUGO, show_shunt_voltage, NULL, 0),
- SENSOR_ATTR(current1_input, S_IRUGO, show_current, NULL, 0),
+ SENSOR_ATTR(curr1_input, S_IRUGO, show_current, NULL, 0),
#if MEASURE_BUS_VOLT
- SENSOR_ATTR(busvolt1_input, S_IRUGO, show_bus_voltage, NULL, 0),
+ SENSOR_ATTR(in1_input, S_IRUGO, show_bus_voltage, NULL, 0),
#endif
+ SENSOR_ATTR(power1_input, S_IRUGO, show_power, NULL, 0),
};