Difference between revisions of "Problem with fan noise"

From ThinkWiki
Jump to: navigation, search
(partial fix:)
Line 14: Line 14:
  
 
===acceleration problem:===
 
===acceleration problem:===
*Thinkpad T40, T40p, T41, T42(?)
+
*Thinkpad {{T40}}, {{T40p}}, {{T41}}, {{T42}}(?)
  
 
===always on problem:===
 
===always on problem:===
*Thinkpad T40, T40p, T41, T41p, T42, T42p, T43
+
*Thinkpad {{T40}}, {{T40p}}, {{T41}}, {{T41p}}, {{T42}}, {{T42p}}, {{T43}}
*Thinkpad R50, R50p, R51, R52, R32
+
*Thinkpad {{R32}}, {{R50}}, {{R50p}}, {{R51}}, {{R52}}
*Thinkpad X40
+
*Thinkpad {{X40}}
*Thinkpad A31p
+
*Thinkpad {{A31p}}
*Thinkpad 770X
+
*Thinkpad {{770X}}
  
 
==Affected Operating Systems==
 
==Affected Operating Systems==
Line 59: Line 59:
  
 
====Replacing the fan====
 
====Replacing the fan====
Some people reported that they replaced the original fan against one of a similar notebook without the problem has worked for them,
+
Some people reported that they replaced the original fan against one of a similar notebook without the problem has worked for them, i.e. changing a {{T41}}s fan against one from a {{T41p}}.
i.e. changing a T41s fan against one from a T41p.
 
  
 
====BIOS upgrade====
 
====BIOS upgrade====
Line 73: Line 72:
 
Also the fglrx driver from ATI is said to show the same effect when used together with dynamic frequency scaling.
 
Also the fglrx driver from ATI is said to show the same effect when used together with dynamic frequency scaling.
  
On a 770X the fan can be fully controlled through ACPI. Thermal Zone THM5 (possibly the battery/charging circuit, it's definitely warmer when using 5v PCMCIA cards and AC) triggers it to turn on and not ever off by design. Can be solved by a custom DSDT, which also makes use of the variable-speed features of the fan (will release this once I've finished tweaking and testing it).
+
On a 770X the fan can be fully controlled through ACPI. Thermal Zone THM5 (possibly the battery/charging circuit, it's definitely warmer when using 5v PCMCIA cards and AC) triggers it to turn on and not ever off by design. Can be solved by a custom DSDT, which also makes use of the variable-speed features of the fan (will release this once I've finished tweaking and testing it).
  
 
====partial fix:====
 
====partial fix:====
Line 93: Line 92:
  
 
But the fan will then '''never''' wake up. So, we need a [[ACPI fan control script|small script]] witch is constantly checking the temperature and setting the fan on/off when needed.
 
But the fan will then '''never''' wake up. So, we need a [[ACPI fan control script|small script]] witch is constantly checking the temperature and setting the fan on/off when needed.
 
 
[[Category:770X]] [[Category:A31p]] [[Category:R32]] [[Category:R50]] [[Category:R50p]] [[Category:R51]] [[Category:R52]] [[Category:T40]] [[Category:T40p]] [[Category:T41]] [[Category:T41p]] [[Category:T42]] [[Category:T42p]] [[Category:T43]] [[Category:T43p]] [[Category:X40]] [[Category:X41]]
 

Revision as of 11:33, 10 May 2005

Information about the fan noise problem in Thinkpad models from 2003/2004.

Problem description

There seem to be two different occurances of the problem (or two different problems).

acceleration problem:

The Thinkpad Fan accelerates in regular intervals, making an annoying noise.

always on problem:

The Fan is always on, even though the processor is rather cool.

Affected Models

acceleration problem:

always on problem:

Affected Operating Systems

acceleration problem:

  • Linux, all flavours

always on problem:

  • Linux, all flavours
  • FreeBSD 5.3
  • Windows XP
  • Windows 2000 pro

Status

acceleration problem:

IBM released an update to the embedded controller program that seems to at least partially solve this problem:

Version 3.03 - 1RHT70WW
NOTE: This version of Embedded Controller Program will only work with BIOS Version 3.06f (or higher).
   * (Fix) Reduced Fan noise in some models.

The update can be found here: http://www-306.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-50279

always on problem:

The problem is yet unsolved. But see the partial fix below.

IBM made a statement regarding this on their homepage: http://www-307.ibm.com/pc/support/site.wss/MIGR-56504.html

It seems that it's a feature of centrino - http://mailman.linux-thinkpad.org/pipermail/linux-thinkpad/2004-September/019737.html Perhaps it's fixable by adding the fans and temps to the dsdt?

Solutions

acceleration problem:

Replacing the fan

Some people reported that they replaced the original fan against one of a similar notebook without the problem has worked for them, i.e. changing a T41s fan against one from a T41p.

BIOS upgrade

You can try upgrading your embedded controller program to version 3.03 or newer.

The update can be found here: http://www-306.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-50279

always on problem:

It seems like for some people a combination of enabling dynamic frequency scaling and using the most recent radeon drivers (from xorg 6.8.x) with the DynamicClocks option enabled helped lowing the fan rotation and hence making it more quiet.

Also the fglrx driver from ATI is said to show the same effect when used together with dynamic frequency scaling.

On a 770X the fan can be fully controlled through ACPI. Thermal Zone THM5 (possibly the battery/charging circuit, it's definitely warmer when using 5v PCMCIA cards and AC) triggers it to turn on and not ever off by design. Can be solved by a custom DSDT, which also makes use of the variable-speed features of the fan (will release this once I've finished tweaking and testing it).

partial fix:

ATTENTION!
This circumvents the BIOS fan control, so be careful and use at your own risk! Don't toast your ThinkPad.

When loading ibm-acpi v0.11 with experimental switch (modprobe ibm_acpi experimantal=1), it is possible to read and write the status of fan:

#cat /proc/acpi/ibm/fan
status:         enabled
speed:          3580
commands:       enable, disable

#echo disable > /proc/acpi/ibm/fan

cat /proc/acpi/ibm/fan
status:         disabled
speed:          0
commands:       enable, disable

But the fan will then never wake up. So, we need a small script witch is constantly checking the temperature and setting the fan on/off when needed.