Commit 4e898353 authored by Colin Leroy's avatar Colin Leroy Committed by Linus Torvalds

[PATCH] therm_adt746x: various fixes

This one removes the other occurences of "°C"; fixes displayed fan speed so
that it uses the same scale than other occurences of this parameter instead
of RPM only; fixes the RPM reading of the fan so that it shows zero instead
of 82 when it is effectively stopped.
Signed-off-by: default avatarColin Leroy <colin@colino.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 20867abc
...@@ -54,7 +54,7 @@ MODULE_DESCRIPTION("Driver for ADT746x thermostat in iBook G4 and Powerbook G4 A ...@@ -54,7 +54,7 @@ MODULE_DESCRIPTION("Driver for ADT746x thermostat in iBook G4 and Powerbook G4 A
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_PARM(limit_adjust,"i"); MODULE_PARM(limit_adjust,"i");
MODULE_PARM_DESC(limit_adjust,"Adjust maximum temperatures (50°C cpu, 70°C gpu) by N °C."); MODULE_PARM_DESC(limit_adjust,"Adjust maximum temperatures (50 cpu, 70 gpu) by N degrees.");
MODULE_PARM(fan_speed,"i"); MODULE_PARM(fan_speed,"i");
MODULE_PARM_DESC(fan_speed,"Specify fan speed (0-255) when lim < temp < lim+8 (default 128)"); MODULE_PARM_DESC(fan_speed,"Specify fan speed (0-255) when lim < temp < lim+8 (default 128)");
...@@ -140,7 +140,7 @@ detach_thermostat(struct i2c_adapter *adapter) ...@@ -140,7 +140,7 @@ detach_thermostat(struct i2c_adapter *adapter)
} }
printk(KERN_INFO "adt746x: Putting max temperatures back from %d, %d, %d," printk(KERN_INFO "adt746x: Putting max temperatures back from %d, %d, %d,"
" to %d, %d, %d, (°C)\n", " to %d, %d, %d\n",
th->limits[0], th->limits[1], th->limits[2], th->limits[0], th->limits[1], th->limits[2],
th->initial_limits[0], th->initial_limits[1], th->initial_limits[2]); th->initial_limits[0], th->initial_limits[1], th->initial_limits[2]);
...@@ -176,7 +176,8 @@ static int read_fan_speed(struct thermostat *th, u8 addr) ...@@ -176,7 +176,8 @@ static int read_fan_speed(struct thermostat *th, u8 addr)
tmp[0] = read_reg(th, addr + 1); tmp[0] = read_reg(th, addr + 1);
res = tmp[1] + (tmp[0] << 8); res = tmp[1] + (tmp[0] << 8);
return (90000*60)/res; /* "a value of 0xffff means that the fan has stopped" */
return (res == 0xffff ? 0 : (90000*60)/res);
} }
static void write_both_fan_speed(struct thermostat *th, int speed) static void write_both_fan_speed(struct thermostat *th, int speed)
...@@ -261,14 +262,14 @@ static int monitor_task(void *arg) ...@@ -261,14 +262,14 @@ static int monitor_task(void *arg)
int var = temps[i] - lims[i]; int var = temps[i] - lims[i];
if (var > 8) { if (var > 8) {
if (th->overriding[fan_number] == 0) if (th->overriding[fan_number] == 0)
printk(KERN_INFO "adt746x: Limit exceeded by %d°C, overriding specified fan speed for %s.\n", printk(KERN_INFO "adt746x: Limit exceeded by %d, overriding specified fan speed for %s.\n",
var, fan_number?"GPU":"CPU"); var, fan_number?"GPU":"CPU");
th->overriding[fan_number] = 1; th->overriding[fan_number] = 1;
write_fan_speed(th, 255, fan_number); write_fan_speed(th, 255, fan_number);
started = 1; started = 1;
} else if ((!th->overriding[fan_number] || var < 6) && var > 0) { } else if ((!th->overriding[fan_number] || var < 6) && var > 0) {
if (th->overriding[fan_number] == 1) if (th->overriding[fan_number] == 1)
printk(KERN_INFO "adt746x: Limit exceeded by %d°C, setting speed to specified for %s.\n", printk(KERN_INFO "adt746x: Limit exceeded by %d, setting speed to specified for %s.\n",
var, fan_number?"GPU":"CPU"); var, fan_number?"GPU":"CPU");
th->overriding[fan_number] = 0; th->overriding[fan_number] = 0;
write_fan_speed(th, fan_speed, fan_number); write_fan_speed(th, fan_speed, fan_number);
...@@ -299,8 +300,8 @@ static int monitor_task(void *arg) ...@@ -299,8 +300,8 @@ static int monitor_task(void *arg)
|| temps[1] != th->cached_temp[1] || temps[1] != th->cached_temp[1]
|| temps[2] != th->cached_temp[2]) { || temps[2] != th->cached_temp[2]) {
printk(KERN_INFO "adt746x: Temperature infos:" printk(KERN_INFO "adt746x: Temperature infos:"
" thermostats: %d,%d,%d °C;" " thermostats: %d,%d,%d;"
" limits: %d,%d,%d °C;" " limits: %d,%d,%d;"
" fan speed: %d RPM\n", " fan speed: %d RPM\n",
temps[0], temps[1], temps[2], temps[0], temps[1], temps[2],
lims[0], lims[1], lims[2], lims[0], lims[1], lims[2],
...@@ -370,7 +371,7 @@ attach_one_thermostat(struct i2c_adapter *adapter, int addr, int busno) ...@@ -370,7 +371,7 @@ attach_one_thermostat(struct i2c_adapter *adapter, int addr, int busno)
} }
printk(KERN_INFO "adt746x: Lowering max temperatures from %d, %d, %d" printk(KERN_INFO "adt746x: Lowering max temperatures from %d, %d, %d"
" to %d, %d, %d (°C)\n", " to %d, %d, %d\n",
th->initial_limits[0], th->initial_limits[1], th->initial_limits[2], th->initial_limits[0], th->initial_limits[1], th->initial_limits[2],
th->limits[0], th->limits[1], th->limits[2]); th->limits[0], th->limits[1], th->limits[2]);
...@@ -416,6 +417,15 @@ static ssize_t show_##name(struct device *dev, char *buf) \ ...@@ -416,6 +417,15 @@ static ssize_t show_##name(struct device *dev, char *buf) \
return sprintf(buf, "%d\n", data); \ return sprintf(buf, "%d\n", data); \
} }
#define BUILD_SHOW_FUNC_FAN(name, data) \
static ssize_t show_##name(struct device *dev, char *buf) \
{ \
return sprintf(buf, "%d (%d rpm)\n", \
thermostat->last_speed[data], \
read_fan_speed(thermostat, FAN_SPEED[data]) \
); \
}
#define BUILD_STORE_FUNC_DEG(name, data) \ #define BUILD_STORE_FUNC_DEG(name, data) \
static ssize_t store_##name(struct device *dev, const char *buf, size_t n) \ static ssize_t store_##name(struct device *dev, const char *buf, size_t n) \
{ \ { \
...@@ -436,7 +446,7 @@ static ssize_t store_##name(struct device *dev, const char *buf, size_t n) \ ...@@ -436,7 +446,7 @@ static ssize_t store_##name(struct device *dev, const char *buf, size_t n) \
val = simple_strtoul(buf, NULL, 10); \ val = simple_strtoul(buf, NULL, 10); \
if (val < 0 || val > 255) \ if (val < 0 || val > 255) \
return -EINVAL; \ return -EINVAL; \
printk(KERN_INFO "Setting fan speed to %d\n", val); \ printk(KERN_INFO "Setting specified fan speed to %d\n", val); \
data = val; \ data = val; \
return n; \ return n; \
} }
...@@ -447,8 +457,8 @@ BUILD_SHOW_FUNC_INT(cpu_limit, thermostat->limits[1]) ...@@ -447,8 +457,8 @@ BUILD_SHOW_FUNC_INT(cpu_limit, thermostat->limits[1])
BUILD_SHOW_FUNC_INT(gpu_limit, thermostat->limits[2]) BUILD_SHOW_FUNC_INT(gpu_limit, thermostat->limits[2])
BUILD_SHOW_FUNC_INT(specified_fan_speed, fan_speed) BUILD_SHOW_FUNC_INT(specified_fan_speed, fan_speed)
BUILD_SHOW_FUNC_INT(cpu_fan_speed, (read_fan_speed(thermostat, FAN_SPEED[0]))) BUILD_SHOW_FUNC_FAN(cpu_fan_speed, 0)
BUILD_SHOW_FUNC_INT(gpu_fan_speed, (read_fan_speed(thermostat, FAN_SPEED[1]))) BUILD_SHOW_FUNC_FAN(gpu_fan_speed, 1)
BUILD_STORE_FUNC_INT(specified_fan_speed,fan_speed) BUILD_STORE_FUNC_INT(specified_fan_speed,fan_speed)
BUILD_SHOW_FUNC_INT(limit_adjust, limit_adjust) BUILD_SHOW_FUNC_INT(limit_adjust, limit_adjust)
......
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