It's not my fault but my notebook has a massive heat problem and I want to have a silent notebok. So, my question is what is a good fan speed algorithm? My fan has 24 speedsteps. Thermal shutdown is 105°C it think. Idle temperature is about 75°C. I know it's hot but as I said before it's not my fault. Is a good algorithm to take a temperature lower bound and a temperature higher bound and divide it by n speedsteps?
EDIT: ATM I use 2 loops and up_threshold of 85°C but that was before I know about 24 speedsteps:
error |= ec_read(EC_RTMP, &ec_rtmp);
if ( ( ec_rtmp < FAN_UPTHRESHOLD_TEMP && sloop < 0 ) ||
( ec_rtmp < FAN_UPTHRESHOLD_TEMP && sloop == FAN_LOOP ) ||
( ec_rtmp < FAN_UPTHRESHOLD_TEMP && speed_switch == 1 )
)
{
speed_switch = 1;
sloop = FAN_LOOP; // 20 * 10 sec
printk("Temp %dC: disabling fan\n", ec_rtmp);
set_fan_disabled();
queue_delayed_work( my_workqueue, &work_object, FAN_JIFFIES_MS*HZ );
} else
{
speed_switch = 0;
printk("Temp %dC: enable fan\n", ec_rtmp);
set_fan_enable();
queue_delayed_work( my_workqueue, &work_object, 2*FAN_JIFFIES_MS*HZ );
}
EDIT: I've found a good source code: http://code.google.com/p/eeepc-fancontrol/wiki/Formular