summaryrefslogtreecommitdiffstats
path: root/sys/i386/cpufreq
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2005-02-07 11:35:24 +0000
committersobomax <sobomax@FreeBSD.org>2005-02-07 11:35:24 +0000
commit72740fc657ad52c7034b4ed6957d4bec3a6d5f0d (patch)
tree7abd32876d1836a76a2a17aaa5f48c180ec8e1a5 /sys/i386/cpufreq
parent4dd5217a47d01a7b9f07ad11f31ba806c42dd690 (diff)
downloadFreeBSD-src-72740fc657ad52c7034b4ed6957d4bec3a6d5f0d.zip
FreeBSD-src-72740fc657ad52c7034b4ed6957d4bec3a6d5f0d.tar.gz
Fix the problem with incorrect throttling level reported immediately after
reboot. Safter the reboot the TCC is usually in the Automatic mode, in which reading current performance level is likely to produce bogus results make sure to switch it to the On-Demand mode and set to some known performance level. Unfortunately there is no reliable way to check that TCC is in the Automatic mode. Reading bit 4 of ACPI Thermal Monitor Control Register produces 0 regardless of the current mode. MFC after: 1 week
Diffstat (limited to 'sys/i386/cpufreq')
-rw-r--r--sys/i386/cpufreq/p4tcc.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/i386/cpufreq/p4tcc.c b/sys/i386/cpufreq/p4tcc.c
index f65e5d1..e3e0a03 100644
--- a/sys/i386/cpufreq/p4tcc.c
+++ b/sys/i386/cpufreq/p4tcc.c
@@ -223,6 +223,17 @@ setup_p4tcc(void *dummy __unused)
p4tcc_economy = tcc[TCC_LEVELS - 1].rlevel;
p4tcc_performance = tcc[0].rlevel;
+ /*
+ * Since after the reboot the TCC is usually in the Automatic
+ * mode, in which reading current performance level is likely to
+ * produce bogus results make sure to switch it to the On-Demand
+ * mode and set to some known performance level. Unfortunately
+ * there is no reliable way to check that TCC is in the Automatic
+ * mode, reading bit 4 of ACPI Thermal Monitor Control Register
+ * produces 0 regardless of the current mode.
+ */
+ p4tcc_setperf(p4tcc_performance);
+
p4tcc_percentage = p4tcc_getperf();
printf("Pentium 4 TCC support enabled, %d steps from 100%% to %d%%, "
"current performance %u%%\n", nsteps, p4tcc_economy,
OpenPOWER on IntegriCloud