[PATCH linux dev-4.10 v2 2/2] drivers: hwmon: occ: Add sysfs_notify to throttling attributes
Eddie James
eajames at linux.vnet.ibm.com
Tue Oct 17 03:29:49 AEDT 2017
From: "Edward A. James" <eajames at us.ibm.com>
Need to alert user space when we change throttling state.
Signed-off-by: Edward A. James <eajames at us.ibm.com>
---
drivers/hwmon/occ/common.c | 25 +++++++++++++++++++++----
1 file changed, 21 insertions(+), 4 deletions(-)
diff --git a/drivers/hwmon/occ/common.c b/drivers/hwmon/occ/common.c
index e8579b6..242ba40 100644
--- a/drivers/hwmon/occ/common.c
+++ b/drivers/hwmon/occ/common.c
@@ -182,6 +182,7 @@ int occ_poll(struct occ *occ)
u16 checksum = occ->poll_cmd_data + 1;
u8 cmd[8];
u8 occs_present = header->occs_present;
+ u8 ext_status = header->ext_status;
cmd[0] = 0;
cmd[1] = 0;
@@ -206,10 +207,26 @@ int occ_poll(struct occ *occ)
} else
occ->last_safe = 0;
- if (occs_present != header->occs_present && occ->hwmon &&
- (header->status & OCC_STAT_MASTER)) {
- sysfs_notify(&occ->bus_dev->kobj, NULL,
- occ->status_attrs[7].dev_attr.attr.name);
+ if (occ->hwmon) {
+ if (occs_present != header->occs_present &&
+ (header->status & OCC_STAT_MASTER))
+ sysfs_notify(&occ->bus_dev->kobj, NULL,
+ occ->status_attrs[7].dev_attr.attr.name);
+
+ if ((header->ext_status & OCC_EXT_STAT_DVFS_OT) !=
+ (ext_status & OCC_EXT_STAT_DVFS_OT))
+ sysfs_notify(&occ->bus_dev->kobj, NULL,
+ occ->status_attrs[2].dev_attr.attr.name);
+
+ if ((header->ext_status & OCC_EXT_STAT_DVFS_POWER) !=
+ (ext_status & OCC_EXT_STAT_DVFS_POWER))
+ sysfs_notify(&occ->bus_dev->kobj, NULL,
+ occ->status_attrs[3].dev_attr.attr.name);
+
+ if ((header->ext_status & OCC_EXT_STAT_MEM_THROTTLE) !=
+ (ext_status & OCC_EXT_STAT_MEM_THROTTLE))
+ sysfs_notify(&occ->bus_dev->kobj, NULL,
+ occ->status_attrs[4].dev_attr.attr.name);
}
done:
--
1.8.3.1
More information about the openbmc
mailing list