I have the Dell XPS 9570, I was using the intel_pstate
driver to control the CPU frequency. But recently I have decided to disable it because there were problems when running on power - all of the 12 cores were running at 4GHz constantly and the fan was running non-stop. Running on battery was perfect. So I disabled the intel_pstate
.
But now the CPU can only go to 2.20 GHz. Can I somehow modify the max frequency of the governor?
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver
. Does the answer here help (in your case you would write a 1 to the location)? – Doug Smythies Mar 05 '19 at 17:241 ``` this means turbo is enabled, right? I am not sure what this has to do with turbo - should this not be only about mapping the pstate to frequencies?
– Visgean Skeloru Mar 05 '19 at 18:36grep . /sys/devices/system/cpu/cpufreq/policy*/*
or if all CPUs are similar justgrep . /sys/devices/system/cpu/cpufreq/policy1/*
will do. Edit your question, adding the results. – Doug Smythies Mar 05 '19 at 21:43