hwmon: (pmbus) Continuously update temperature limit registers
authorGuenter Roeck <guenter.roeck@ericsson.com>
Sun, 6 Mar 2011 20:28:24 +0000 (12:28 -0800)
committerGuenter Roeck <guenter.roeck@ericsson.com>
Tue, 15 Mar 2011 05:39:10 +0000 (22:39 -0700)
PMBus only has one set of limit registers for up to three temperature sensors.
Thus, changing a limit for one of the temperature sensors affects limits for
other temperature sensors in the same page (and potentially multiple pages
depending on the chip implementation). To handle this situation, re-read all
temperature limit registers when updating sensor data. This way, all affected
temperature limits are updated whenever the limit for a single sensor is
changed.

Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
drivers/hwmon/pmbus_core.c

index e9dda58a5b90502b0ceaf2c3f4b049724bd8de4e..92540c9cd34e73adb75f1cf51d52cef50d0c1549 100644 (file)
@@ -1308,13 +1308,19 @@ static void pmbus_find_attributes(struct i2c_client *client,
                         * Always compare current temperature against the limit
                         * registers to determine alarm conditions for a
                         * specific sensor.
+                        *
+                        * Since there is only one set of limit registers for
+                        * up to three temperature sensors, we need to update
+                        * all limit registers after the limit was changed for
+                        * one of the sensors. This ensures that correct limits
+                        * are reported for all temperature sensors.
                         */
                        if (pmbus_check_word_register
                            (client, page, PMBUS_UT_WARN_LIMIT)) {
                                i1 = data->num_sensors;
                                pmbus_add_sensor(data, "temp", "min", in_index,
                                                 page, PMBUS_UT_WARN_LIMIT,
-                                                PSC_TEMPERATURE, false);
+                                                PSC_TEMPERATURE, true);
                                if (info->func[page] & PMBUS_HAVE_STATUS_TEMP) {
                                        pmbus_add_boolean_cmp(data, "temp",
                                                "min_alarm", in_index, i1, i0,
@@ -1329,7 +1335,7 @@ static void pmbus_find_attributes(struct i2c_client *client,
                                pmbus_add_sensor(data, "temp", "lcrit",
                                                 in_index, page,
                                                 PMBUS_UT_FAULT_LIMIT,
-                                                PSC_TEMPERATURE, false);
+                                                PSC_TEMPERATURE, true);
                                if (info->func[page] & PMBUS_HAVE_STATUS_TEMP) {
                                        pmbus_add_boolean_cmp(data, "temp",
                                                "lcrit_alarm", in_index, i1, i0,
@@ -1343,7 +1349,7 @@ static void pmbus_find_attributes(struct i2c_client *client,
                                i1 = data->num_sensors;
                                pmbus_add_sensor(data, "temp", "max", in_index,
                                                 page, PMBUS_OT_WARN_LIMIT,
-                                                PSC_TEMPERATURE, false);
+                                                PSC_TEMPERATURE, true);
                                if (info->func[page] & PMBUS_HAVE_STATUS_TEMP) {
                                        pmbus_add_boolean_cmp(data, "temp",
                                                "max_alarm", in_index, i0, i1,
@@ -1357,7 +1363,7 @@ static void pmbus_find_attributes(struct i2c_client *client,
                                i1 = data->num_sensors;
                                pmbus_add_sensor(data, "temp", "crit", in_index,
                                                 page, PMBUS_OT_FAULT_LIMIT,
-                                                PSC_TEMPERATURE, false);
+                                                PSC_TEMPERATURE, true);
                                if (info->func[page] & PMBUS_HAVE_STATUS_TEMP) {
                                        pmbus_add_boolean_cmp(data, "temp",
                                                "crit_alarm", in_index, i0, i1,