aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2014-11-18 09:56:54 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-26 22:29:36 -0500
commit723493ca59c8d81fed3e7f261165fee493a29ffa (patch)
tree966c77b05f2fbdb1e26f439c6587734b8c81baa0
parentca4f8280ff227e215f44e10f8f110b4c882b084b (diff)
i8k: Fix temperature bug handling in i8k_get_temp()
Static array prev[] was incorrectly initialized. It should be initialized to some "invalid" temperature value (above I8K_MAX_TEMP). Next, function should store "invalid" value to prev[] (above I8K_MAX_TEMP), not valid (= I8K_MAX_TEMP) because whole temperature bug handling will not work. And last part, to not break existing detection of temperature sensors, register them also if i8k report too high temperature (above I8K_MAX_TEMP). This is needed because some sensors are sometimes turned off (e.g sensor on GPU which can be turned off/on) and in this case SMM report too high value. To prevent reporting "invalid" values to userspace, return -EINVAL. In this case sensors which are currently turned off (e.g optimus/powerexpress/enduro gpu) are reported as "N/A" by lm-sensors package. Signed-off-by: Pali Rohár <pali.rohar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/char/i8k.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c
index 7272b08dbd6c..e34a019eb930 100644
--- a/drivers/char/i8k.c
+++ b/drivers/char/i8k.c
@@ -298,7 +298,7 @@ static int i8k_get_temp(int sensor)
298 int temp; 298 int temp;
299 299
300#ifdef I8K_TEMPERATURE_BUG 300#ifdef I8K_TEMPERATURE_BUG
301 static int prev[4]; 301 static int prev[4] = { I8K_MAX_TEMP+1, I8K_MAX_TEMP+1, I8K_MAX_TEMP+1, I8K_MAX_TEMP+1 };
302#endif 302#endif
303 regs.ebx = sensor & 0xff; 303 regs.ebx = sensor & 0xff;
304 rc = i8k_smm(&regs); 304 rc = i8k_smm(&regs);
@@ -317,10 +317,12 @@ static int i8k_get_temp(int sensor)
317 */ 317 */
318 if (temp > I8K_MAX_TEMP) { 318 if (temp > I8K_MAX_TEMP) {
319 temp = prev[sensor]; 319 temp = prev[sensor];
320 prev[sensor] = I8K_MAX_TEMP; 320 prev[sensor] = I8K_MAX_TEMP+1;
321 } else { 321 } else {
322 prev[sensor] = temp; 322 prev[sensor] = temp;
323 } 323 }
324 if (temp > I8K_MAX_TEMP)
325 return -ERANGE;
324#endif 326#endif
325 327
326 return temp; 328 return temp;
@@ -499,6 +501,8 @@ static ssize_t i8k_hwmon_show_temp(struct device *dev,
499 int temp; 501 int temp;
500 502
501 temp = i8k_get_temp(index); 503 temp = i8k_get_temp(index);
504 if (temp == -ERANGE)
505 return -EINVAL;
502 if (temp < 0) 506 if (temp < 0)
503 return temp; 507 return temp;
504 return sprintf(buf, "%d\n", temp * 1000); 508 return sprintf(buf, "%d\n", temp * 1000);
@@ -610,17 +614,17 @@ static int __init i8k_init_hwmon(void)
610 614
611 /* CPU temperature attributes, if temperature reading is OK */ 615 /* CPU temperature attributes, if temperature reading is OK */
612 err = i8k_get_temp(0); 616 err = i8k_get_temp(0);
613 if (err >= 0) 617 if (err >= 0 || err == -ERANGE)
614 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP1; 618 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP1;
615 /* check for additional temperature sensors */ 619 /* check for additional temperature sensors */
616 err = i8k_get_temp(1); 620 err = i8k_get_temp(1);
617 if (err >= 0) 621 if (err >= 0 || err == -ERANGE)
618 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP2; 622 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP2;
619 err = i8k_get_temp(2); 623 err = i8k_get_temp(2);
620 if (err >= 0) 624 if (err >= 0 || err == -ERANGE)
621 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP3; 625 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP3;
622 err = i8k_get_temp(3); 626 err = i8k_get_temp(3);
623 if (err >= 0) 627 if (err >= 0 || err == -ERANGE)
624 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP4; 628 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP4;
625 629
626 /* Left fan attributes, if left fan is present */ 630 /* Left fan attributes, if left fan is present */