Commit 7b66f439 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'hwmon-for-v5.15-rc4' of...

Merge tag 'hwmon-for-v5.15-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hwmon fixes from Guenter Roeck:

 - Fixed various potential NULL pointer accesses in w8379* drivers

 - Improved error handling, fault reporting, and fixed rounding in
   thmp421 driver

 - Fixed error handling in ltc2947 driver

 - Added missing attribute to pmbus/mp2975 driver

 - Fixed attribute values in pbus/ibm-cffps, occ, and mlxreg-fan
   drivers

 - Removed unused residual code from k10temp driver

* tag 'hwmon-for-v5.15-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
  hwmon: (w83793) Fix NULL pointer dereference by removing unnecessary structure field
  hwmon: (w83792d) Fix NULL pointer dereference by removing unnecessary structure field
  hwmon: (w83791d) Fix NULL pointer dereference by removing unnecessary structure field
  hwmon: (pmbus/mp2975) Add missed POUT attribute for page 1 mp2975 controller
  hwmon: (pmbus/ibm-cffps) max_power_out swap changes
  hwmon: (occ) Fix P10 VRM temp sensors
  hwmon: (ltc2947) Properly handle errors when looking for the external clock
  hwmon: (tmp421) fix rounding for negative values
  hwmon: (tmp421) report /PVLD condition as fault
  hwmon: (tmp421) handle I2C errors
  hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs
  hwmon: (k10temp) Remove residues of current and voltage
parents e25ca045 dd4d747e
...@@ -132,20 +132,3 @@ On Family 17h and Family 18h CPUs, additional temperature sensors may report ...@@ -132,20 +132,3 @@ On Family 17h and Family 18h CPUs, additional temperature sensors may report
Core Complex Die (CCD) temperatures. Up to 8 such temperatures are reported Core Complex Die (CCD) temperatures. Up to 8 such temperatures are reported
as temp{3..10}_input, labeled Tccd{1..8}. Actual support depends on the CPU as temp{3..10}_input, labeled Tccd{1..8}. Actual support depends on the CPU
variant. variant.
Various Family 17h and 18h CPUs report voltage and current telemetry
information. The following attributes may be reported.
Attribute Label Description
=============== ======= ================
in0_input Vcore Core voltage
in1_input Vsoc SoC voltage
curr1_input Icore Core current
curr2_input Isoc SoC current
=============== ======= ================
Current values are raw (unscaled) as reported by the CPU. Core current is
reported as multiples of 1A / LSB. SoC is reported as multiples of 0.25A
/ LSB. The real current is board specific. Reported currents should be seen
as rough guidance, and should be scaled using sensors3.conf as appropriate
for a given board.
...@@ -362,12 +362,6 @@ static const struct hwmon_channel_info *k10temp_info[] = { ...@@ -362,12 +362,6 @@ static const struct hwmon_channel_info *k10temp_info[] = {
HWMON_T_INPUT | HWMON_T_LABEL, HWMON_T_INPUT | HWMON_T_LABEL,
HWMON_T_INPUT | HWMON_T_LABEL, HWMON_T_INPUT | HWMON_T_LABEL,
HWMON_T_INPUT | HWMON_T_LABEL), HWMON_T_INPUT | HWMON_T_LABEL),
HWMON_CHANNEL_INFO(in,
HWMON_I_INPUT | HWMON_I_LABEL,
HWMON_I_INPUT | HWMON_I_LABEL),
HWMON_CHANNEL_INFO(curr,
HWMON_C_INPUT | HWMON_C_LABEL,
HWMON_C_INPUT | HWMON_C_LABEL),
NULL NULL
}; };
......
...@@ -989,8 +989,12 @@ static int ltc2947_setup(struct ltc2947_data *st) ...@@ -989,8 +989,12 @@ static int ltc2947_setup(struct ltc2947_data *st)
return ret; return ret;
/* check external clock presence */ /* check external clock presence */
extclk = devm_clk_get(st->dev, NULL); extclk = devm_clk_get_optional(st->dev, NULL);
if (!IS_ERR(extclk)) { if (IS_ERR(extclk))
return dev_err_probe(st->dev, PTR_ERR(extclk),
"Failed to get external clock\n");
if (extclk) {
unsigned long rate_hz; unsigned long rate_hz;
u8 pre = 0, div, tbctl; u8 pre = 0, div, tbctl;
u64 aux; u64 aux;
......
...@@ -315,8 +315,8 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev, ...@@ -315,8 +315,8 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev,
{ {
struct mlxreg_fan *fan = cdev->devdata; struct mlxreg_fan *fan = cdev->devdata;
unsigned long cur_state; unsigned long cur_state;
int i, config = 0;
u32 regval; u32 regval;
int i;
int err; int err;
/* /*
...@@ -329,6 +329,12 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev, ...@@ -329,6 +329,12 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev,
* overwritten. * overwritten.
*/ */
if (state >= MLXREG_FAN_SPEED_MIN && state <= MLXREG_FAN_SPEED_MAX) { if (state >= MLXREG_FAN_SPEED_MIN && state <= MLXREG_FAN_SPEED_MAX) {
/*
* This is configuration change, which is only supported through sysfs.
* For configuration non-zero value is to be returned to avoid thermal
* statistics update.
*/
config = 1;
state -= MLXREG_FAN_MAX_STATE; state -= MLXREG_FAN_MAX_STATE;
for (i = 0; i < state; i++) for (i = 0; i < state; i++)
fan->cooling_levels[i] = state; fan->cooling_levels[i] = state;
...@@ -343,7 +349,7 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev, ...@@ -343,7 +349,7 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev,
cur_state = MLXREG_FAN_PWM_DUTY2STATE(regval); cur_state = MLXREG_FAN_PWM_DUTY2STATE(regval);
if (state < cur_state) if (state < cur_state)
return 0; return config;
state = cur_state; state = cur_state;
} }
...@@ -359,7 +365,7 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev, ...@@ -359,7 +365,7 @@ static int mlxreg_fan_set_cur_state(struct thermal_cooling_device *cdev,
dev_err(fan->dev, "Failed to write PWM duty\n"); dev_err(fan->dev, "Failed to write PWM duty\n");
return err; return err;
} }
return 0; return config;
} }
static const struct thermal_cooling_device_ops mlxreg_fan_cooling_ops = { static const struct thermal_cooling_device_ops mlxreg_fan_cooling_ops = {
......
...@@ -340,18 +340,11 @@ static ssize_t occ_show_temp_10(struct device *dev, ...@@ -340,18 +340,11 @@ static ssize_t occ_show_temp_10(struct device *dev,
if (val == OCC_TEMP_SENSOR_FAULT) if (val == OCC_TEMP_SENSOR_FAULT)
return -EREMOTEIO; return -EREMOTEIO;
/* /* sensor not ready */
* VRM doesn't return temperature, only alarm bit. This if (val == 0)
* attribute maps to tempX_alarm instead of tempX_input for return -EAGAIN;
* VRM
*/
if (temp->fru_type != OCC_FRU_TYPE_VRM) {
/* sensor not ready */
if (val == 0)
return -EAGAIN;
val *= 1000; val *= 1000;
}
break; break;
case 2: case 2:
val = temp->fru_type; val = temp->fru_type;
...@@ -886,7 +879,7 @@ static int occ_setup_sensor_attrs(struct occ *occ) ...@@ -886,7 +879,7 @@ static int occ_setup_sensor_attrs(struct occ *occ)
0, i); 0, i);
attr++; attr++;
if (sensors->temp.version > 1 && if (sensors->temp.version == 2 &&
temp->fru_type == OCC_FRU_TYPE_VRM) { temp->fru_type == OCC_FRU_TYPE_VRM) {
snprintf(attr->name, sizeof(attr->name), snprintf(attr->name, sizeof(attr->name),
"temp%d_alarm", s); "temp%d_alarm", s);
......
...@@ -171,8 +171,14 @@ static ssize_t ibm_cffps_debugfs_read(struct file *file, char __user *buf, ...@@ -171,8 +171,14 @@ static ssize_t ibm_cffps_debugfs_read(struct file *file, char __user *buf,
cmd = CFFPS_SN_CMD; cmd = CFFPS_SN_CMD;
break; break;
case CFFPS_DEBUGFS_MAX_POWER_OUT: case CFFPS_DEBUGFS_MAX_POWER_OUT:
rc = i2c_smbus_read_word_swapped(psu->client, if (psu->version == cffps1) {
CFFPS_MAX_POWER_OUT_CMD); rc = i2c_smbus_read_word_swapped(psu->client,
CFFPS_MAX_POWER_OUT_CMD);
} else {
rc = i2c_smbus_read_word_data(psu->client,
CFFPS_MAX_POWER_OUT_CMD);
}
if (rc < 0) if (rc < 0)
return rc; return rc;
......
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
#define MP2975_RAIL2_FUNC (PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT | \ #define MP2975_RAIL2_FUNC (PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT | \
PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT | \ PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT | \
PMBUS_PHASE_VIRTUAL) PMBUS_HAVE_POUT | PMBUS_PHASE_VIRTUAL)
struct mp2975_data { struct mp2975_data {
struct pmbus_driver_info info; struct pmbus_driver_info info;
......
...@@ -100,71 +100,81 @@ struct tmp421_data { ...@@ -100,71 +100,81 @@ struct tmp421_data {
s16 temp[4]; s16 temp[4];
}; };
static int temp_from_s16(s16 reg) static int temp_from_raw(u16 reg, bool extended)
{ {
/* Mask out status bits */ /* Mask out status bits */
int temp = reg & ~0xf; int temp = reg & ~0xf;
return (temp * 1000 + 128) / 256; if (extended)
} temp = temp - 64 * 256;
else
static int temp_from_u16(u16 reg) temp = (s16)temp;
{
/* Mask out status bits */
int temp = reg & ~0xf;
/* Add offset for extended temperature range. */
temp -= 64 * 256;
return (temp * 1000 + 128) / 256; return DIV_ROUND_CLOSEST(temp * 1000, 256);
} }
static struct tmp421_data *tmp421_update_device(struct device *dev) static int tmp421_update_device(struct tmp421_data *data)
{ {
struct tmp421_data *data = dev_get_drvdata(dev);
struct i2c_client *client = data->client; struct i2c_client *client = data->client;
int ret = 0;
int i; int i;
mutex_lock(&data->update_lock); mutex_lock(&data->update_lock);
if (time_after(jiffies, data->last_updated + (HZ / 2)) || if (time_after(jiffies, data->last_updated + (HZ / 2)) ||
!data->valid) { !data->valid) {
data->config = i2c_smbus_read_byte_data(client, ret = i2c_smbus_read_byte_data(client, TMP421_CONFIG_REG_1);
TMP421_CONFIG_REG_1); if (ret < 0)
goto exit;
data->config = ret;
for (i = 0; i < data->channels; i++) { for (i = 0; i < data->channels; i++) {
data->temp[i] = i2c_smbus_read_byte_data(client, ret = i2c_smbus_read_byte_data(client, TMP421_TEMP_MSB[i]);
TMP421_TEMP_MSB[i]) << 8; if (ret < 0)
data->temp[i] |= i2c_smbus_read_byte_data(client, goto exit;
TMP421_TEMP_LSB[i]); data->temp[i] = ret << 8;
ret = i2c_smbus_read_byte_data(client, TMP421_TEMP_LSB[i]);
if (ret < 0)
goto exit;
data->temp[i] |= ret;
} }
data->last_updated = jiffies; data->last_updated = jiffies;
data->valid = 1; data->valid = 1;
} }
exit:
mutex_unlock(&data->update_lock); mutex_unlock(&data->update_lock);
return data; if (ret < 0) {
data->valid = 0;
return ret;
}
return 0;
} }
static int tmp421_read(struct device *dev, enum hwmon_sensor_types type, static int tmp421_read(struct device *dev, enum hwmon_sensor_types type,
u32 attr, int channel, long *val) u32 attr, int channel, long *val)
{ {
struct tmp421_data *tmp421 = tmp421_update_device(dev); struct tmp421_data *tmp421 = dev_get_drvdata(dev);
int ret = 0;
ret = tmp421_update_device(tmp421);
if (ret)
return ret;
switch (attr) { switch (attr) {
case hwmon_temp_input: case hwmon_temp_input:
if (tmp421->config & TMP421_CONFIG_RANGE) *val = temp_from_raw(tmp421->temp[channel],
*val = temp_from_u16(tmp421->temp[channel]); tmp421->config & TMP421_CONFIG_RANGE);
else
*val = temp_from_s16(tmp421->temp[channel]);
return 0; return 0;
case hwmon_temp_fault: case hwmon_temp_fault:
/* /*
* The OPEN bit signals a fault. This is bit 0 of the temperature * Any of OPEN or /PVLD bits indicate a hardware mulfunction
* register (low byte). * and the conversion result may be incorrect
*/ */
*val = tmp421->temp[channel] & 0x01; *val = !!(tmp421->temp[channel] & 0x03);
return 0; return 0;
default: default:
return -EOPNOTSUPP; return -EOPNOTSUPP;
...@@ -177,9 +187,6 @@ static umode_t tmp421_is_visible(const void *data, enum hwmon_sensor_types type, ...@@ -177,9 +187,6 @@ static umode_t tmp421_is_visible(const void *data, enum hwmon_sensor_types type,
{ {
switch (attr) { switch (attr) {
case hwmon_temp_fault: case hwmon_temp_fault:
if (channel == 0)
return 0;
return 0444;
case hwmon_temp_input: case hwmon_temp_input:
return 0444; return 0444;
default: default:
......
...@@ -273,9 +273,6 @@ struct w83791d_data { ...@@ -273,9 +273,6 @@ struct w83791d_data {
char valid; /* !=0 if following fields are valid */ char valid; /* !=0 if following fields are valid */
unsigned long last_updated; /* In jiffies */ unsigned long last_updated; /* In jiffies */
/* array of 2 pointers to subclients */
struct i2c_client *lm75[2];
/* volts */ /* volts */
u8 in[NUMBER_OF_VIN]; /* Register value */ u8 in[NUMBER_OF_VIN]; /* Register value */
u8 in_max[NUMBER_OF_VIN]; /* Register value */ u8 in_max[NUMBER_OF_VIN]; /* Register value */
...@@ -1257,7 +1254,6 @@ static const struct attribute_group w83791d_group_fanpwm45 = { ...@@ -1257,7 +1254,6 @@ static const struct attribute_group w83791d_group_fanpwm45 = {
static int w83791d_detect_subclients(struct i2c_client *client) static int w83791d_detect_subclients(struct i2c_client *client)
{ {
struct i2c_adapter *adapter = client->adapter; struct i2c_adapter *adapter = client->adapter;
struct w83791d_data *data = i2c_get_clientdata(client);
int address = client->addr; int address = client->addr;
int i, id; int i, id;
u8 val; u8 val;
...@@ -1280,22 +1276,19 @@ static int w83791d_detect_subclients(struct i2c_client *client) ...@@ -1280,22 +1276,19 @@ static int w83791d_detect_subclients(struct i2c_client *client)
} }
val = w83791d_read(client, W83791D_REG_I2C_SUBADDR); val = w83791d_read(client, W83791D_REG_I2C_SUBADDR);
if (!(val & 0x08))
data->lm75[0] = devm_i2c_new_dummy_device(&client->dev, adapter, if (!(val & 0x88) && (val & 0x7) == ((val >> 4) & 0x7)) {
0x48 + (val & 0x7)); dev_err(&client->dev,
if (!(val & 0x80)) { "duplicate addresses 0x%x, use force_subclient\n", 0x48 + (val & 0x7));
if (!IS_ERR(data->lm75[0]) && return -ENODEV;
((val & 0x7) == ((val >> 4) & 0x7))) {
dev_err(&client->dev,
"duplicate addresses 0x%x, "
"use force_subclient\n",
data->lm75[0]->addr);
return -ENODEV;
}
data->lm75[1] = devm_i2c_new_dummy_device(&client->dev, adapter,
0x48 + ((val >> 4) & 0x7));
} }
if (!(val & 0x08))
devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + (val & 0x7));
if (!(val & 0x80))
devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + ((val >> 4) & 0x7));
return 0; return 0;
} }
......
...@@ -264,9 +264,6 @@ struct w83792d_data { ...@@ -264,9 +264,6 @@ struct w83792d_data {
char valid; /* !=0 if following fields are valid */ char valid; /* !=0 if following fields are valid */
unsigned long last_updated; /* In jiffies */ unsigned long last_updated; /* In jiffies */
/* array of 2 pointers to subclients */
struct i2c_client *lm75[2];
u8 in[9]; /* Register value */ u8 in[9]; /* Register value */
u8 in_max[9]; /* Register value */ u8 in_max[9]; /* Register value */
u8 in_min[9]; /* Register value */ u8 in_min[9]; /* Register value */
...@@ -927,7 +924,6 @@ w83792d_detect_subclients(struct i2c_client *new_client) ...@@ -927,7 +924,6 @@ w83792d_detect_subclients(struct i2c_client *new_client)
int address = new_client->addr; int address = new_client->addr;
u8 val; u8 val;
struct i2c_adapter *adapter = new_client->adapter; struct i2c_adapter *adapter = new_client->adapter;
struct w83792d_data *data = i2c_get_clientdata(new_client);
id = i2c_adapter_id(adapter); id = i2c_adapter_id(adapter);
if (force_subclients[0] == id && force_subclients[1] == address) { if (force_subclients[0] == id && force_subclients[1] == address) {
...@@ -946,21 +942,19 @@ w83792d_detect_subclients(struct i2c_client *new_client) ...@@ -946,21 +942,19 @@ w83792d_detect_subclients(struct i2c_client *new_client)
} }
val = w83792d_read_value(new_client, W83792D_REG_I2C_SUBADDR); val = w83792d_read_value(new_client, W83792D_REG_I2C_SUBADDR);
if (!(val & 0x08))
data->lm75[0] = devm_i2c_new_dummy_device(&new_client->dev, adapter, if (!(val & 0x88) && (val & 0x7) == ((val >> 4) & 0x7)) {
0x48 + (val & 0x7)); dev_err(&new_client->dev,
if (!(val & 0x80)) { "duplicate addresses 0x%x, use force_subclient\n", 0x48 + (val & 0x7));
if (!IS_ERR(data->lm75[0]) && return -ENODEV;
((val & 0x7) == ((val >> 4) & 0x7))) {
dev_err(&new_client->dev,
"duplicate addresses 0x%x, use force_subclient\n",
data->lm75[0]->addr);
return -ENODEV;
}
data->lm75[1] = devm_i2c_new_dummy_device(&new_client->dev, adapter,
0x48 + ((val >> 4) & 0x7));
} }
if (!(val & 0x08))
devm_i2c_new_dummy_device(&new_client->dev, adapter, 0x48 + (val & 0x7));
if (!(val & 0x80))
devm_i2c_new_dummy_device(&new_client->dev, adapter, 0x48 + ((val >> 4) & 0x7));
return 0; return 0;
} }
......
...@@ -202,7 +202,6 @@ static inline s8 TEMP_TO_REG(long val, s8 min, s8 max) ...@@ -202,7 +202,6 @@ static inline s8 TEMP_TO_REG(long val, s8 min, s8 max)
} }
struct w83793_data { struct w83793_data {
struct i2c_client *lm75[2];
struct device *hwmon_dev; struct device *hwmon_dev;
struct mutex update_lock; struct mutex update_lock;
char valid; /* !=0 if following fields are valid */ char valid; /* !=0 if following fields are valid */
...@@ -1566,7 +1565,6 @@ w83793_detect_subclients(struct i2c_client *client) ...@@ -1566,7 +1565,6 @@ w83793_detect_subclients(struct i2c_client *client)
int address = client->addr; int address = client->addr;
u8 tmp; u8 tmp;
struct i2c_adapter *adapter = client->adapter; struct i2c_adapter *adapter = client->adapter;
struct w83793_data *data = i2c_get_clientdata(client);
id = i2c_adapter_id(adapter); id = i2c_adapter_id(adapter);
if (force_subclients[0] == id && force_subclients[1] == address) { if (force_subclients[0] == id && force_subclients[1] == address) {
...@@ -1586,21 +1584,19 @@ w83793_detect_subclients(struct i2c_client *client) ...@@ -1586,21 +1584,19 @@ w83793_detect_subclients(struct i2c_client *client)
} }
tmp = w83793_read_value(client, W83793_REG_I2C_SUBADDR); tmp = w83793_read_value(client, W83793_REG_I2C_SUBADDR);
if (!(tmp & 0x08))
data->lm75[0] = devm_i2c_new_dummy_device(&client->dev, adapter, if (!(tmp & 0x88) && (tmp & 0x7) == ((tmp >> 4) & 0x7)) {
0x48 + (tmp & 0x7)); dev_err(&client->dev,
if (!(tmp & 0x80)) { "duplicate addresses 0x%x, use force_subclient\n", 0x48 + (tmp & 0x7));
if (!IS_ERR(data->lm75[0]) return -ENODEV;
&& ((tmp & 0x7) == ((tmp >> 4) & 0x7))) {
dev_err(&client->dev,
"duplicate addresses 0x%x, "
"use force_subclients\n", data->lm75[0]->addr);
return -ENODEV;
}
data->lm75[1] = devm_i2c_new_dummy_device(&client->dev, adapter,
0x48 + ((tmp >> 4) & 0x7));
} }
if (!(tmp & 0x08))
devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + (tmp & 0x7));
if (!(tmp & 0x80))
devm_i2c_new_dummy_device(&client->dev, adapter, 0x48 + ((tmp >> 4) & 0x7));
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment