Skip to content

Commit 2a3e75a

Browse files
committed
Merge tag 'hwmon-for-v6.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
Pull hwmon fixes from Guenter Roeck: - ltc2992, adm1266: Set missing can_sleep flag - tmp512/tmp513: Drop of_match_ptr for ID table to fix build with !CONFIG_OF - ucd90320: Fix back-to-back access problem - ina3221: Fix bad error return from probe function - xgene: Fix use-after-free bug in remove function - adt7475: Fix hysteresis register bit masks, and fix association of 'smoothing' attributes * tag 'hwmon-for-v6.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging: hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip hwmon: (adm1266) Set `can_sleep` flag for GPIO chip hwmon: tmp512: drop of_match_ptr for ID table hwmon: (ucd90320) Add minimum delay between bus accesses hwmon: (ina3221) return prober error code hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race condition hwmon: (adt7475) Fix masking of hysteresis registers hwmon: (adt7475) Display smoothing attributes in correct order
2 parents f900bff + ab00709 commit 2a3e75a

File tree

7 files changed

+84
-6
lines changed

7 files changed

+84
-6
lines changed

drivers/hwmon/adt7475.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -488,10 +488,10 @@ static ssize_t temp_store(struct device *dev, struct device_attribute *attr,
488488
val = (temp - val) / 1000;
489489

490490
if (sattr->index != 1) {
491-
data->temp[HYSTERSIS][sattr->index] &= 0xF0;
491+
data->temp[HYSTERSIS][sattr->index] &= 0x0F;
492492
data->temp[HYSTERSIS][sattr->index] |= (val & 0xF) << 4;
493493
} else {
494-
data->temp[HYSTERSIS][sattr->index] &= 0x0F;
494+
data->temp[HYSTERSIS][sattr->index] &= 0xF0;
495495
data->temp[HYSTERSIS][sattr->index] |= (val & 0xF);
496496
}
497497

@@ -556,11 +556,11 @@ static ssize_t temp_st_show(struct device *dev, struct device_attribute *attr,
556556
val = data->enh_acoustics[0] & 0xf;
557557
break;
558558
case 1:
559-
val = (data->enh_acoustics[1] >> 4) & 0xf;
559+
val = data->enh_acoustics[1] & 0xf;
560560
break;
561561
case 2:
562562
default:
563-
val = data->enh_acoustics[1] & 0xf;
563+
val = (data->enh_acoustics[1] >> 4) & 0xf;
564564
break;
565565
}
566566

drivers/hwmon/ina3221.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ static int ina3221_probe_child_from_dt(struct device *dev,
772772
return ret;
773773
} else if (val > INA3221_CHANNEL3) {
774774
dev_err(dev, "invalid reg %d of %pOFn\n", val, child);
775-
return ret;
775+
return -EINVAL;
776776
}
777777

778778
input = &ina->inputs[val];

drivers/hwmon/ltc2992.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ static int ltc2992_config_gpio(struct ltc2992_state *st)
323323
st->gc.label = name;
324324
st->gc.parent = &st->client->dev;
325325
st->gc.owner = THIS_MODULE;
326+
st->gc.can_sleep = true;
326327
st->gc.base = -1;
327328
st->gc.names = st->gpio_names;
328329
st->gc.ngpio = ARRAY_SIZE(st->gpio_names);

drivers/hwmon/pmbus/adm1266.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ static int adm1266_config_gpio(struct adm1266_data *data)
301301
data->gc.label = name;
302302
data->gc.parent = &data->client->dev;
303303
data->gc.owner = THIS_MODULE;
304+
data->gc.can_sleep = true;
304305
data->gc.base = -1;
305306
data->gc.names = data->gpio_names;
306307
data->gc.ngpio = ARRAY_SIZE(data->gpio_names);

drivers/hwmon/pmbus/ucd9000.c

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
#include <linux/debugfs.h>
10+
#include <linux/delay.h>
1011
#include <linux/kernel.h>
1112
#include <linux/module.h>
1213
#include <linux/of_device.h>
@@ -16,6 +17,7 @@
1617
#include <linux/i2c.h>
1718
#include <linux/pmbus.h>
1819
#include <linux/gpio/driver.h>
20+
#include <linux/timekeeping.h>
1921
#include "pmbus.h"
2022

2123
enum chips { ucd9000, ucd90120, ucd90124, ucd90160, ucd90320, ucd9090,
@@ -65,6 +67,7 @@ struct ucd9000_data {
6567
struct gpio_chip gpio;
6668
#endif
6769
struct dentry *debugfs;
70+
ktime_t write_time;
6871
};
6972
#define to_ucd9000_data(_info) container_of(_info, struct ucd9000_data, info)
7073

@@ -73,6 +76,73 @@ struct ucd9000_debugfs_entry {
7376
u8 index;
7477
};
7578

79+
/*
80+
* It has been observed that the UCD90320 randomly fails register access when
81+
* doing another access right on the back of a register write. To mitigate this
82+
* make sure that there is a minimum delay between a write access and the
83+
* following access. The 250us is based on experimental data. At a delay of
84+
* 200us the issue seems to go away. Add a bit of extra margin to allow for
85+
* system to system differences.
86+
*/
87+
#define UCD90320_WAIT_DELAY_US 250
88+
89+
static inline void ucd90320_wait(const struct ucd9000_data *data)
90+
{
91+
s64 delta = ktime_us_delta(ktime_get(), data->write_time);
92+
93+
if (delta < UCD90320_WAIT_DELAY_US)
94+
udelay(UCD90320_WAIT_DELAY_US - delta);
95+
}
96+
97+
static int ucd90320_read_word_data(struct i2c_client *client, int page,
98+
int phase, int reg)
99+
{
100+
const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
101+
struct ucd9000_data *data = to_ucd9000_data(info);
102+
103+
if (reg >= PMBUS_VIRT_BASE)
104+
return -ENXIO;
105+
106+
ucd90320_wait(data);
107+
return pmbus_read_word_data(client, page, phase, reg);
108+
}
109+
110+
static int ucd90320_read_byte_data(struct i2c_client *client, int page, int reg)
111+
{
112+
const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
113+
struct ucd9000_data *data = to_ucd9000_data(info);
114+
115+
ucd90320_wait(data);
116+
return pmbus_read_byte_data(client, page, reg);
117+
}
118+
119+
static int ucd90320_write_word_data(struct i2c_client *client, int page,
120+
int reg, u16 word)
121+
{
122+
const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
123+
struct ucd9000_data *data = to_ucd9000_data(info);
124+
int ret;
125+
126+
ucd90320_wait(data);
127+
ret = pmbus_write_word_data(client, page, reg, word);
128+
data->write_time = ktime_get();
129+
130+
return ret;
131+
}
132+
133+
static int ucd90320_write_byte(struct i2c_client *client, int page, u8 value)
134+
{
135+
const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
136+
struct ucd9000_data *data = to_ucd9000_data(info);
137+
int ret;
138+
139+
ucd90320_wait(data);
140+
ret = pmbus_write_byte(client, page, value);
141+
data->write_time = ktime_get();
142+
143+
return ret;
144+
}
145+
76146
static int ucd9000_get_fan_config(struct i2c_client *client, int fan)
77147
{
78148
int fan_config = 0;
@@ -598,6 +668,11 @@ static int ucd9000_probe(struct i2c_client *client)
598668
info->read_byte_data = ucd9000_read_byte_data;
599669
info->func[0] |= PMBUS_HAVE_FAN12 | PMBUS_HAVE_STATUS_FAN12
600670
| PMBUS_HAVE_FAN34 | PMBUS_HAVE_STATUS_FAN34;
671+
} else if (mid->driver_data == ucd90320) {
672+
info->read_byte_data = ucd90320_read_byte_data;
673+
info->read_word_data = ucd90320_read_word_data;
674+
info->write_byte = ucd90320_write_byte;
675+
info->write_word_data = ucd90320_write_word_data;
601676
}
602677

603678
ucd9000_probe_gpio(client, mid, data);

drivers/hwmon/tmp513.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ static int tmp51x_probe(struct i2c_client *client)
758758
static struct i2c_driver tmp51x_driver = {
759759
.driver = {
760760
.name = "tmp51x",
761-
.of_match_table = of_match_ptr(tmp51x_of_match),
761+
.of_match_table = tmp51x_of_match,
762762
},
763763
.probe_new = tmp51x_probe,
764764
.id_table = tmp51x_id,

drivers/hwmon/xgene-hwmon.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,7 @@ static int xgene_hwmon_remove(struct platform_device *pdev)
761761
{
762762
struct xgene_hwmon_dev *ctx = platform_get_drvdata(pdev);
763763

764+
cancel_work_sync(&ctx->workq);
764765
hwmon_device_unregister(ctx->hwmon_dev);
765766
kfifo_free(&ctx->async_msg_fifo);
766767
if (acpi_disabled)

0 commit comments

Comments
 (0)