This mode is used if the intel_pstate=passive argument is passed to the kernel in the command line (it implies the intel_pstate=no_hwp setting too). Like in the active mode without HWP support, in this mode intel_pstate may refuse to work with the given processor if it does not recognize it.
https://www.kernel.org/doc/html/v4.12/admin-guide/pm/intel_pstate.html#passive-mode
I don't know what command line
it is referring to. It could be the shell in bash, but I am assuming this is something you do in grub. In short; I am not sure.
Questions:
- How do I pass that argument,
passive
tointel_pstate
in the kernel? - How can I tell what the current value of
intel_pstate
is?
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
? – Jannies - They do it for free Dec 29 '20 at 13:06GRUB_CMDLINE_LINUX_DEFAULT="quiet splash intel_pstate=passive"
. Do one or the other way. – Pilot6 Dec 29 '20 at 13:10