Q8: Incorrect CPU Speed. My system is dual AMD 2.2 Ghz, but after install FC4 or CentOS x86_64, it shows my cpu speed is 1000 Mhz.?
Ans: Once AMD PowerNow is enabled, the driver for powernow-k8 is loaded, and then you can set the cpu frequency. Type "cpufreq-info", it tells you that the cpu range is from 1000MHZ to 2.2 GHZ (min to max), and the cpufreq governor is userspace, which use the minimum cpu speed. You need to change the governor to performance in order to get the maximum cpu speed. Type "cpufreq-set -c 0 -g performance" to set it for cpu 0, and type "cpufreq-set -c 1 -g performance" to set it for the second cpu. But next time you reboot the system, this setting will gone, so you need to add these two commands to /etc/rc.local.
You can enter CMOS, Advanced, AMD PowerNow configuration, and disable the PowerNow feature. but these messages will appear in dmesg: powernow-k8: MP systems not supported by PSB BIOS structure.
|