2019-05-27 09:55:06 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-04-01 02:24:27 +04:00
|
|
|
/*
|
2010-11-18 18:23:00 +03:00
|
|
|
* Copyright (C) 2008, 2010 Davide Rizzo <elpa.rizzo@gmail.com>
|
2009-04-01 02:24:27 +04:00
|
|
|
*
|
2010-11-18 18:23:00 +03:00
|
|
|
* The LM95241 is a sensor chip made by National Semiconductors.
|
|
|
|
* It reports up to three temperatures (its own plus up to two external ones).
|
|
|
|
* Complete datasheet can be obtained from National's website at:
|
2009-04-01 02:24:27 +04:00
|
|
|
* http://www.national.com/ds.cgi/LM/LM95241.pdf
|
|
|
|
*/
|
|
|
|
|
2016-07-04 18:01:04 +03:00
|
|
|
#include <linux/bitops.h>
|
2016-07-04 16:48:18 +03:00
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/i2c.h>
|
2009-04-01 02:24:27 +04:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/hwmon.h>
|
2016-07-04 16:48:18 +03:00
|
|
|
#include <linux/module.h>
|
2009-04-01 02:24:27 +04:00
|
|
|
#include <linux/mutex.h>
|
2016-07-04 16:48:18 +03:00
|
|
|
#include <linux/slab.h>
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2010-11-18 18:23:00 +03:00
|
|
|
#define DEVNAME "lm95241"
|
|
|
|
|
2009-04-01 02:24:27 +04:00
|
|
|
static const unsigned short normal_i2c[] = {
|
2010-11-18 18:23:00 +03:00
|
|
|
0x19, 0x2a, 0x2b, I2C_CLIENT_END };
|
2009-04-01 02:24:27 +04:00
|
|
|
|
|
|
|
/* LM95241 registers */
|
|
|
|
#define LM95241_REG_R_MAN_ID 0xFE
|
|
|
|
#define LM95241_REG_R_CHIP_ID 0xFF
|
|
|
|
#define LM95241_REG_R_STATUS 0x02
|
|
|
|
#define LM95241_REG_RW_CONFIG 0x03
|
|
|
|
#define LM95241_REG_RW_REM_FILTER 0x06
|
|
|
|
#define LM95241_REG_RW_TRUTHERM 0x07
|
2010-11-18 18:23:00 +03:00
|
|
|
#define LM95241_REG_W_ONE_SHOT 0x0F
|
2009-04-01 02:24:27 +04:00
|
|
|
#define LM95241_REG_R_LOCAL_TEMPH 0x10
|
|
|
|
#define LM95241_REG_R_REMOTE1_TEMPH 0x11
|
|
|
|
#define LM95241_REG_R_REMOTE2_TEMPH 0x12
|
|
|
|
#define LM95241_REG_R_LOCAL_TEMPL 0x20
|
|
|
|
#define LM95241_REG_R_REMOTE1_TEMPL 0x21
|
|
|
|
#define LM95241_REG_R_REMOTE2_TEMPL 0x22
|
|
|
|
#define LM95241_REG_RW_REMOTE_MODEL 0x30
|
|
|
|
|
|
|
|
/* LM95241 specific bitfields */
|
2016-07-04 18:01:04 +03:00
|
|
|
#define CFG_STOP BIT(6)
|
|
|
|
#define CFG_CR0076 0x00
|
|
|
|
#define CFG_CR0182 BIT(4)
|
|
|
|
#define CFG_CR1000 BIT(5)
|
|
|
|
#define CFG_CR2700 (BIT(4) | BIT(5))
|
|
|
|
#define CFG_CRMASK (BIT(4) | BIT(5))
|
|
|
|
#define R1MS_MASK BIT(0)
|
|
|
|
#define R2MS_MASK BIT(2)
|
|
|
|
#define R1DF_MASK BIT(1)
|
|
|
|
#define R2DF_MASK BIT(2)
|
|
|
|
#define R1FE_MASK BIT(0)
|
|
|
|
#define R2FE_MASK BIT(2)
|
|
|
|
#define R1DM BIT(0)
|
|
|
|
#define R2DM BIT(1)
|
|
|
|
#define TT1_SHIFT 0
|
|
|
|
#define TT2_SHIFT 4
|
|
|
|
#define TT_OFF 0
|
|
|
|
#define TT_ON 1
|
|
|
|
#define TT_MASK 7
|
2011-07-06 00:31:48 +04:00
|
|
|
#define NATSEMI_MAN_ID 0x01
|
|
|
|
#define LM95231_CHIP_ID 0xA1
|
|
|
|
#define LM95241_CHIP_ID 0xA4
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2010-11-18 18:23:00 +03:00
|
|
|
static const u8 lm95241_reg_address[] = {
|
|
|
|
LM95241_REG_R_LOCAL_TEMPH,
|
|
|
|
LM95241_REG_R_LOCAL_TEMPL,
|
|
|
|
LM95241_REG_R_REMOTE1_TEMPH,
|
|
|
|
LM95241_REG_R_REMOTE1_TEMPL,
|
|
|
|
LM95241_REG_R_REMOTE2_TEMPH,
|
|
|
|
LM95241_REG_R_REMOTE2_TEMPL
|
|
|
|
};
|
2009-04-01 02:24:27 +04:00
|
|
|
|
|
|
|
/* Client data (each client gets its own) */
|
|
|
|
struct lm95241_data {
|
2014-01-20 21:25:50 +04:00
|
|
|
struct i2c_client *client;
|
2009-04-01 02:24:27 +04:00
|
|
|
struct mutex update_lock;
|
hwmon: (lm95241) Fix overflow problems, write conversion rate to chip
Writing the update_interval attribute could result in an overflow if
a number close to the maximum unsigned long was written. At the same
time, even though the chip supports setting the conversion rate,
the selected conversion rate was not actually written to the chip.
Fix the second problem by selecting valid (supported) conversion rates,
and writing the selected conversion rate to the chip. This also fixes the
first problem, since arbitrary conversion rates are now converted to
actually supported conversion rates.
Also, set the default chip conversion rate to 1 second. Previously, the
chip was configured for continuous conversion, but readings were only
retrieved every seond, which doesn't make much sense. If we only read a
value from the chip every second, we can as well save some power and only
convert in one-second intervals.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2016-07-04 07:46:05 +03:00
|
|
|
unsigned long last_updated; /* in jiffies */
|
|
|
|
unsigned long interval; /* in milli-seconds */
|
2010-11-18 18:23:00 +03:00
|
|
|
char valid; /* zero until following fields are valid */
|
2009-04-01 02:24:27 +04:00
|
|
|
/* registers values */
|
2010-11-18 18:23:00 +03:00
|
|
|
u8 temp[ARRAY_SIZE(lm95241_reg_address)];
|
2016-07-04 16:46:31 +03:00
|
|
|
u8 status, config, model, trutherm;
|
2009-04-01 02:24:27 +04:00
|
|
|
};
|
|
|
|
|
2010-11-18 18:23:00 +03:00
|
|
|
/* Conversions */
|
2011-06-30 13:09:37 +04:00
|
|
|
static int temp_from_reg_signed(u8 val_h, u8 val_l)
|
2010-11-18 18:23:00 +03:00
|
|
|
{
|
2011-06-30 13:09:37 +04:00
|
|
|
s16 val_hl = (val_h << 8) | val_l;
|
|
|
|
return val_hl * 1000 / 256;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int temp_from_reg_unsigned(u8 val_h, u8 val_l)
|
|
|
|
{
|
|
|
|
u16 val_hl = (val_h << 8) | val_l;
|
|
|
|
return val_hl * 1000 / 256;
|
2010-11-18 18:23:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct lm95241_data *lm95241_update_device(struct device *dev)
|
|
|
|
{
|
2014-01-20 21:25:50 +04:00
|
|
|
struct lm95241_data *data = dev_get_drvdata(dev);
|
|
|
|
struct i2c_client *client = data->client;
|
2010-11-18 18:23:00 +03:00
|
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
|
|
|
hwmon: (lm95241) Fix overflow problems, write conversion rate to chip
Writing the update_interval attribute could result in an overflow if
a number close to the maximum unsigned long was written. At the same
time, even though the chip supports setting the conversion rate,
the selected conversion rate was not actually written to the chip.
Fix the second problem by selecting valid (supported) conversion rates,
and writing the selected conversion rate to the chip. This also fixes the
first problem, since arbitrary conversion rates are now converted to
actually supported conversion rates.
Also, set the default chip conversion rate to 1 second. Previously, the
chip was configured for continuous conversion, but readings were only
retrieved every seond, which doesn't make much sense. If we only read a
value from the chip every second, we can as well save some power and only
convert in one-second intervals.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2016-07-04 07:46:05 +03:00
|
|
|
if (time_after(jiffies, data->last_updated
|
|
|
|
+ msecs_to_jiffies(data->interval)) ||
|
2010-11-18 18:23:00 +03:00
|
|
|
!data->valid) {
|
|
|
|
int i;
|
|
|
|
|
2014-01-20 21:25:50 +04:00
|
|
|
dev_dbg(dev, "Updating lm95241 data.\n");
|
2010-11-18 18:23:00 +03:00
|
|
|
for (i = 0; i < ARRAY_SIZE(lm95241_reg_address); i++)
|
|
|
|
data->temp[i]
|
|
|
|
= i2c_smbus_read_byte_data(client,
|
|
|
|
lm95241_reg_address[i]);
|
2016-07-04 16:46:31 +03:00
|
|
|
|
|
|
|
data->status = i2c_smbus_read_byte_data(client,
|
|
|
|
LM95241_REG_R_STATUS);
|
2010-11-18 18:23:00 +03:00
|
|
|
data->last_updated = jiffies;
|
|
|
|
data->valid = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex_unlock(&data->update_lock);
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static int lm95241_read_chip(struct device *dev, u32 attr, int channel,
|
|
|
|
long *val)
|
2009-04-01 02:24:27 +04:00
|
|
|
{
|
2014-01-20 21:25:50 +04:00
|
|
|
struct lm95241_data *data = dev_get_drvdata(dev);
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
switch (attr) {
|
|
|
|
case hwmon_chip_update_interval:
|
|
|
|
*val = data->interval;
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static int lm95241_read_temp(struct device *dev, u32 attr, int channel,
|
|
|
|
long *val)
|
2009-04-01 02:24:27 +04:00
|
|
|
{
|
2016-07-05 05:58:11 +03:00
|
|
|
struct lm95241_data *data = lm95241_update_device(dev);
|
2010-11-18 18:23:00 +03:00
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
switch (attr) {
|
|
|
|
case hwmon_temp_input:
|
|
|
|
if (!channel || (data->config & BIT(channel - 1)))
|
|
|
|
*val = temp_from_reg_signed(data->temp[channel * 2],
|
|
|
|
data->temp[channel * 2 + 1]);
|
|
|
|
else
|
|
|
|
*val = temp_from_reg_unsigned(data->temp[channel * 2],
|
|
|
|
data->temp[channel * 2 + 1]);
|
|
|
|
return 0;
|
|
|
|
case hwmon_temp_min:
|
|
|
|
if (channel == 1)
|
|
|
|
*val = (data->config & R1DF_MASK) ? -128000 : 0;
|
|
|
|
else
|
|
|
|
*val = (data->config & R2DF_MASK) ? -128000 : 0;
|
|
|
|
return 0;
|
|
|
|
case hwmon_temp_max:
|
|
|
|
if (channel == 1)
|
|
|
|
*val = (data->config & R1DF_MASK) ? 127875 : 255875;
|
|
|
|
else
|
|
|
|
*val = (data->config & R2DF_MASK) ? 127875 : 255875;
|
|
|
|
return 0;
|
|
|
|
case hwmon_temp_type:
|
|
|
|
if (channel == 1)
|
|
|
|
*val = (data->model & R1MS_MASK) ? 1 : 2;
|
|
|
|
else
|
|
|
|
*val = (data->model & R2MS_MASK) ? 1 : 2;
|
|
|
|
return 0;
|
|
|
|
case hwmon_temp_fault:
|
|
|
|
if (channel == 1)
|
|
|
|
*val = !!(data->status & R1DM);
|
|
|
|
else
|
|
|
|
*val = !!(data->status & R2DM);
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
2010-11-18 18:23:00 +03:00
|
|
|
}
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static int lm95241_read(struct device *dev, enum hwmon_sensor_types type,
|
|
|
|
u32 attr, int channel, long *val)
|
2010-11-18 18:23:00 +03:00
|
|
|
{
|
2016-07-05 05:58:11 +03:00
|
|
|
switch (type) {
|
|
|
|
case hwmon_chip:
|
|
|
|
return lm95241_read_chip(dev, attr, channel, val);
|
|
|
|
case hwmon_temp:
|
|
|
|
return lm95241_read_temp(dev, attr, channel, val);
|
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
2010-11-18 18:23:00 +03:00
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static int lm95241_write_chip(struct device *dev, u32 attr, int channel,
|
|
|
|
long val)
|
2010-11-18 18:23:00 +03:00
|
|
|
{
|
2014-01-20 21:25:50 +04:00
|
|
|
struct lm95241_data *data = dev_get_drvdata(dev);
|
2016-07-05 05:58:11 +03:00
|
|
|
int convrate;
|
|
|
|
u8 config;
|
|
|
|
int ret;
|
2010-11-18 18:23:00 +03:00
|
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
switch (attr) {
|
|
|
|
case hwmon_chip_update_interval:
|
|
|
|
config = data->config & ~CFG_CRMASK;
|
|
|
|
if (val < 130) {
|
|
|
|
convrate = 76;
|
|
|
|
config |= CFG_CR0076;
|
|
|
|
} else if (val < 590) {
|
|
|
|
convrate = 182;
|
|
|
|
config |= CFG_CR0182;
|
|
|
|
} else if (val < 1850) {
|
|
|
|
convrate = 1000;
|
|
|
|
config |= CFG_CR1000;
|
|
|
|
} else {
|
|
|
|
convrate = 2700;
|
|
|
|
config |= CFG_CR2700;
|
|
|
|
}
|
|
|
|
data->interval = convrate;
|
|
|
|
data->config = config;
|
|
|
|
ret = i2c_smbus_write_byte_data(data->client,
|
|
|
|
LM95241_REG_RW_CONFIG, config);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
}
|
2010-11-18 18:23:00 +03:00
|
|
|
mutex_unlock(&data->update_lock);
|
2016-07-05 05:58:11 +03:00
|
|
|
return ret;
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
2010-11-18 18:23:00 +03:00
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static int lm95241_write_temp(struct device *dev, u32 attr, int channel,
|
|
|
|
long val)
|
2010-11-18 18:23:00 +03:00
|
|
|
{
|
2014-01-20 21:25:50 +04:00
|
|
|
struct lm95241_data *data = dev_get_drvdata(dev);
|
2016-07-05 05:58:11 +03:00
|
|
|
struct i2c_client *client = data->client;
|
|
|
|
int ret;
|
2010-11-18 18:23:00 +03:00
|
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
switch (attr) {
|
|
|
|
case hwmon_temp_min:
|
|
|
|
if (channel == 1) {
|
|
|
|
if (val < 0)
|
|
|
|
data->config |= R1DF_MASK;
|
|
|
|
else
|
|
|
|
data->config &= ~R1DF_MASK;
|
|
|
|
} else {
|
|
|
|
if (val < 0)
|
|
|
|
data->config |= R2DF_MASK;
|
|
|
|
else
|
|
|
|
data->config &= ~R2DF_MASK;
|
|
|
|
}
|
|
|
|
data->valid = 0;
|
|
|
|
ret = i2c_smbus_write_byte_data(client, LM95241_REG_RW_CONFIG,
|
|
|
|
data->config);
|
|
|
|
break;
|
|
|
|
case hwmon_temp_max:
|
|
|
|
if (channel == 1) {
|
|
|
|
if (val <= 127875)
|
|
|
|
data->config |= R1DF_MASK;
|
|
|
|
else
|
|
|
|
data->config &= ~R1DF_MASK;
|
|
|
|
} else {
|
|
|
|
if (val <= 127875)
|
|
|
|
data->config |= R2DF_MASK;
|
|
|
|
else
|
|
|
|
data->config &= ~R2DF_MASK;
|
|
|
|
}
|
|
|
|
data->valid = 0;
|
|
|
|
ret = i2c_smbus_write_byte_data(client, LM95241_REG_RW_CONFIG,
|
|
|
|
data->config);
|
|
|
|
break;
|
|
|
|
case hwmon_temp_type:
|
|
|
|
if (val != 1 && val != 2) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (channel == 1) {
|
|
|
|
data->trutherm &= ~(TT_MASK << TT1_SHIFT);
|
|
|
|
if (val == 1) {
|
|
|
|
data->model |= R1MS_MASK;
|
|
|
|
data->trutherm |= (TT_ON << TT1_SHIFT);
|
|
|
|
} else {
|
|
|
|
data->model &= ~R1MS_MASK;
|
|
|
|
data->trutherm |= (TT_OFF << TT1_SHIFT);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
data->trutherm &= ~(TT_MASK << TT2_SHIFT);
|
|
|
|
if (val == 1) {
|
|
|
|
data->model |= R2MS_MASK;
|
|
|
|
data->trutherm |= (TT_ON << TT2_SHIFT);
|
|
|
|
} else {
|
|
|
|
data->model &= ~R2MS_MASK;
|
|
|
|
data->trutherm |= (TT_OFF << TT2_SHIFT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret = i2c_smbus_write_byte_data(client,
|
|
|
|
LM95241_REG_RW_REMOTE_MODEL,
|
|
|
|
data->model);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
ret = i2c_smbus_write_byte_data(client, LM95241_REG_RW_TRUTHERM,
|
|
|
|
data->trutherm);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -EOPNOTSUPP;
|
|
|
|
break;
|
|
|
|
}
|
2010-11-18 18:23:00 +03:00
|
|
|
|
|
|
|
mutex_unlock(&data->update_lock);
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
return ret;
|
2016-07-04 16:46:31 +03:00
|
|
|
}
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static int lm95241_write(struct device *dev, enum hwmon_sensor_types type,
|
|
|
|
u32 attr, int channel, long val)
|
2010-11-18 18:23:00 +03:00
|
|
|
{
|
2016-07-05 05:58:11 +03:00
|
|
|
switch (type) {
|
|
|
|
case hwmon_chip:
|
|
|
|
return lm95241_write_chip(dev, attr, channel, val);
|
|
|
|
case hwmon_temp:
|
|
|
|
return lm95241_write_temp(dev, attr, channel, val);
|
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
2010-11-18 18:23:00 +03:00
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static umode_t lm95241_is_visible(const void *data,
|
|
|
|
enum hwmon_sensor_types type,
|
|
|
|
u32 attr, int channel)
|
2010-11-18 18:23:00 +03:00
|
|
|
{
|
2016-07-05 05:58:11 +03:00
|
|
|
switch (type) {
|
|
|
|
case hwmon_chip:
|
|
|
|
switch (attr) {
|
|
|
|
case hwmon_chip_update_interval:
|
2018-12-11 01:02:13 +03:00
|
|
|
return 0644;
|
2016-07-05 05:58:11 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case hwmon_temp:
|
|
|
|
switch (attr) {
|
|
|
|
case hwmon_temp_input:
|
2018-12-11 01:02:13 +03:00
|
|
|
return 0444;
|
2016-07-05 05:58:11 +03:00
|
|
|
case hwmon_temp_fault:
|
2018-12-11 01:02:13 +03:00
|
|
|
return 0444;
|
2016-07-05 05:58:11 +03:00
|
|
|
case hwmon_temp_min:
|
|
|
|
case hwmon_temp_max:
|
|
|
|
case hwmon_temp_type:
|
2018-12-11 01:02:13 +03:00
|
|
|
return 0644;
|
2016-07-05 05:58:11 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
hwmon: (lm95241) Fix overflow problems, write conversion rate to chip
Writing the update_interval attribute could result in an overflow if
a number close to the maximum unsigned long was written. At the same
time, even though the chip supports setting the conversion rate,
the selected conversion rate was not actually written to the chip.
Fix the second problem by selecting valid (supported) conversion rates,
and writing the selected conversion rate to the chip. This also fixes the
first problem, since arbitrary conversion rates are now converted to
actually supported conversion rates.
Also, set the default chip conversion rate to 1 second. Previously, the
chip was configured for continuous conversion, but readings were only
retrieved every seond, which doesn't make much sense. If we only read a
value from the chip every second, we can as well save some power and only
convert in one-second intervals.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2016-07-04 07:46:05 +03:00
|
|
|
}
|
2016-07-05 05:58:11 +03:00
|
|
|
return 0;
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
2010-11-18 18:23:00 +03:00
|
|
|
|
2009-04-07 17:32:59 +04:00
|
|
|
/* Return 0 if detection is successful, -ENODEV otherwise */
|
2009-12-14 23:17:23 +03:00
|
|
|
static int lm95241_detect(struct i2c_client *new_client,
|
2009-04-07 17:32:59 +04:00
|
|
|
struct i2c_board_info *info)
|
2009-04-01 02:24:27 +04:00
|
|
|
{
|
2009-04-07 17:32:59 +04:00
|
|
|
struct i2c_adapter *adapter = new_client->adapter;
|
2009-12-09 22:35:57 +03:00
|
|
|
const char *name;
|
2011-07-06 00:31:48 +04:00
|
|
|
int mfg_id, chip_id;
|
2009-04-01 02:24:27 +04:00
|
|
|
|
|
|
|
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
|
2009-04-07 17:32:59 +04:00
|
|
|
return -ENODEV;
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2011-07-06 00:31:48 +04:00
|
|
|
mfg_id = i2c_smbus_read_byte_data(new_client, LM95241_REG_R_MAN_ID);
|
|
|
|
if (mfg_id != NATSEMI_MAN_ID)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
chip_id = i2c_smbus_read_byte_data(new_client, LM95241_REG_R_CHIP_ID);
|
|
|
|
switch (chip_id) {
|
|
|
|
case LM95231_CHIP_ID:
|
|
|
|
name = "lm95231";
|
|
|
|
break;
|
|
|
|
case LM95241_CHIP_ID:
|
|
|
|
name = "lm95241";
|
|
|
|
break;
|
|
|
|
default:
|
2009-12-09 22:35:57 +03:00
|
|
|
return -ENODEV;
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
|
|
|
|
2009-04-07 17:32:59 +04:00
|
|
|
/* Fill the i2c board info */
|
|
|
|
strlcpy(info->type, name, I2C_NAME_SIZE);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2014-01-20 21:25:50 +04:00
|
|
|
static void lm95241_init_client(struct i2c_client *client,
|
|
|
|
struct lm95241_data *data)
|
2010-11-18 18:23:00 +03:00
|
|
|
{
|
hwmon: (lm95241) Fix overflow problems, write conversion rate to chip
Writing the update_interval attribute could result in an overflow if
a number close to the maximum unsigned long was written. At the same
time, even though the chip supports setting the conversion rate,
the selected conversion rate was not actually written to the chip.
Fix the second problem by selecting valid (supported) conversion rates,
and writing the selected conversion rate to the chip. This also fixes the
first problem, since arbitrary conversion rates are now converted to
actually supported conversion rates.
Also, set the default chip conversion rate to 1 second. Previously, the
chip was configured for continuous conversion, but readings were only
retrieved every seond, which doesn't make much sense. If we only read a
value from the chip every second, we can as well save some power and only
convert in one-second intervals.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2016-07-04 07:46:05 +03:00
|
|
|
data->interval = 1000;
|
|
|
|
data->config = CFG_CR1000;
|
2010-11-18 18:23:00 +03:00
|
|
|
data->trutherm = (TT_OFF << TT1_SHIFT) | (TT_OFF << TT2_SHIFT);
|
|
|
|
|
|
|
|
i2c_smbus_write_byte_data(client, LM95241_REG_RW_CONFIG, data->config);
|
|
|
|
i2c_smbus_write_byte_data(client, LM95241_REG_RW_REM_FILTER,
|
|
|
|
R1FE_MASK | R2FE_MASK);
|
|
|
|
i2c_smbus_write_byte_data(client, LM95241_REG_RW_TRUTHERM,
|
|
|
|
data->trutherm);
|
|
|
|
i2c_smbus_write_byte_data(client, LM95241_REG_RW_REMOTE_MODEL,
|
|
|
|
data->model);
|
|
|
|
}
|
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
static const struct hwmon_channel_info *lm95241_info[] = {
|
hwmon: (lm95241) Use HWMON_CHANNEL_INFO macro
The HWMON_CHANNEL_INFO macro simplifies the code, reduces the likelihood
of errors, and makes the code easier to read.
The conversion was done automatically with coccinelle. The semantic patch
used to make this change is as follows.
@r@
initializer list elements;
identifier i;
@@
-u32 i[] = {
- elements,
- 0
-};
@s@
identifier r.i,j,ty;
@@
-struct hwmon_channel_info j = {
- .type = ty,
- .config = i,
-};
@script:ocaml t@
ty << s.ty;
elements << r.elements;
shorter;
elems;
@@
shorter :=
make_ident (List.hd(List.rev (Str.split (Str.regexp "_") ty)));
elems :=
make_ident
(String.concat ","
(List.map (fun x -> Printf.sprintf "\n\t\t\t %s" x)
(Str.split (Str.regexp " , ") elements)))
@@
identifier s.j,t.shorter;
identifier t.elems;
@@
- &j
+ HWMON_CHANNEL_INFO(shorter,elems)
This patch does not introduce functional changes. Many thanks to
Julia Lawall for providing the semantic patch.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2019-03-31 20:53:48 +03:00
|
|
|
HWMON_CHANNEL_INFO(chip,
|
|
|
|
HWMON_C_UPDATE_INTERVAL),
|
|
|
|
HWMON_CHANNEL_INFO(temp,
|
|
|
|
HWMON_T_INPUT,
|
|
|
|
HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_MIN |
|
|
|
|
HWMON_T_TYPE | HWMON_T_FAULT,
|
|
|
|
HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_MIN |
|
|
|
|
HWMON_T_TYPE | HWMON_T_FAULT),
|
2016-07-05 05:58:11 +03:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct hwmon_ops lm95241_hwmon_ops = {
|
|
|
|
.is_visible = lm95241_is_visible,
|
|
|
|
.read = lm95241_read,
|
|
|
|
.write = lm95241_write,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct hwmon_chip_info lm95241_chip_info = {
|
|
|
|
.ops = &lm95241_hwmon_ops,
|
|
|
|
.info = lm95241_info,
|
|
|
|
};
|
|
|
|
|
2020-08-13 19:02:22 +03:00
|
|
|
static int lm95241_probe(struct i2c_client *client)
|
2009-04-07 17:32:59 +04:00
|
|
|
{
|
2014-01-20 21:25:50 +04:00
|
|
|
struct device *dev = &client->dev;
|
2009-04-07 17:32:59 +04:00
|
|
|
struct lm95241_data *data;
|
2014-01-20 21:25:50 +04:00
|
|
|
struct device *hwmon_dev;
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2014-01-20 21:25:50 +04:00
|
|
|
data = devm_kzalloc(dev, sizeof(struct lm95241_data), GFP_KERNEL);
|
2012-06-02 20:58:11 +04:00
|
|
|
if (!data)
|
|
|
|
return -ENOMEM;
|
2009-04-07 17:32:59 +04:00
|
|
|
|
2014-01-20 21:25:50 +04:00
|
|
|
data->client = client;
|
2009-04-07 17:32:59 +04:00
|
|
|
mutex_init(&data->update_lock);
|
2009-04-01 02:24:27 +04:00
|
|
|
|
|
|
|
/* Initialize the LM95241 chip */
|
2014-01-20 21:25:50 +04:00
|
|
|
lm95241_init_client(client, data);
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2016-07-05 05:58:11 +03:00
|
|
|
hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
|
2014-01-20 21:25:50 +04:00
|
|
|
data,
|
2016-07-05 05:58:11 +03:00
|
|
|
&lm95241_chip_info,
|
|
|
|
NULL);
|
2014-01-20 21:25:50 +04:00
|
|
|
return PTR_ERR_OR_ZERO(hwmon_dev);
|
2009-04-01 02:24:27 +04:00
|
|
|
}
|
|
|
|
|
2009-04-07 17:32:59 +04:00
|
|
|
/* Driver data (common to all clients) */
|
|
|
|
static const struct i2c_device_id lm95241_id[] = {
|
2011-07-06 00:31:48 +04:00
|
|
|
{ "lm95231", 0 },
|
|
|
|
{ "lm95241", 0 },
|
2009-04-07 17:32:59 +04:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, lm95241_id);
|
|
|
|
|
|
|
|
static struct i2c_driver lm95241_driver = {
|
|
|
|
.class = I2C_CLASS_HWMON,
|
|
|
|
.driver = {
|
2010-11-18 18:23:00 +03:00
|
|
|
.name = DEVNAME,
|
2009-04-07 17:32:59 +04:00
|
|
|
},
|
2020-08-13 19:02:22 +03:00
|
|
|
.probe_new = lm95241_probe,
|
2009-04-07 17:32:59 +04:00
|
|
|
.id_table = lm95241_id,
|
|
|
|
.detect = lm95241_detect,
|
2009-12-14 23:17:25 +03:00
|
|
|
.address_list = normal_i2c,
|
2009-04-07 17:32:59 +04:00
|
|
|
};
|
|
|
|
|
2012-01-20 11:38:18 +04:00
|
|
|
module_i2c_driver(lm95241_driver);
|
2009-04-01 02:24:27 +04:00
|
|
|
|
2010-11-18 18:23:00 +03:00
|
|
|
MODULE_AUTHOR("Davide Rizzo <elpa.rizzo@gmail.com>");
|
2016-09-13 10:27:48 +03:00
|
|
|
MODULE_DESCRIPTION("LM95231/LM95241 sensor driver");
|
2009-04-01 02:24:27 +04:00
|
|
|
MODULE_LICENSE("GPL");
|