AMD Cool'N'Quiet under Linux

Linux howto's, compile information, information on whatever we learned on working with linux, MACOs and - of course - Products of the big evil....
Post Reply
User avatar
^rooker
Site Admin
Posts: 1481
Joined: Fri Aug 29, 2003 8:39 pm

AMD Cool'N'Quiet under Linux

Post by ^rooker »

How to activate the automatic CPU frequency adjustment feature "Cool'n'Quiet" under Linux: http://www.linuxforen.de/forums/showthread.php?t=165014


Here's a rough explanation in English:

You need a really new kernel (2.6.x) and your kernelconfig should look like this:

Code: Select all

[*] Power Management support
 CPU Frequency scaling  --->[*] CPU Frequency scaling                                                
 Default CPUFreq governor (performance)  --->                                         
 ---   'performance' governor                                                                
 <*>   'ondemand' cpufreq policy governor                                              
 <*>   CPU frequency table helpers                                                           
 ---   CPUFreq processor drivers                                                             
 <*> AMD Opteron/Athlon64 PowerNow!
Enable the cpufreq governor:

Code: Select all

echo ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
How to watch the frequency change:

Code: Select all

watch -n0.1 cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq

I haven't verified this, yet - but I'm planning to do so.
Post Reply