-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: enable CONFIG_X86_AMD_PSTATE #980
Conversation
ca4cb9d
to
5b5fdd5
Compare
@@ -635,7 +635,8 @@ CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y | |||
# | |||
CONFIG_X86_INTEL_PSTATE=y | |||
# CONFIG_X86_PCC_CPUFREQ is not set | |||
# CONFIG_X86_AMD_PSTATE is not set | |||
CONFIG_X86_AMD_PSTATE=y | |||
CONFIG_X86_AMD_PSTATE_DEFAULT_MODE=3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure if we should set this to active or passive?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CONFIG_X86_AMD_PSTATE_DEFAULT_MODE=3
(passive) is the default because it most closely matches the performance of acpi-cpufreq
, which is used if amd-pstate is disabled. It feels appropriate to keep that as the default and require the user to select active or guided (e.g. amd-pstate-epp
) and configure it.
Thanks for the approval. I rebased which broke the signature, sorry! I think your process is you re-commit, signing with a trusted key, so I should have left it alone. |
589f2ce
to
2e92ea1
Compare
@jfroy no worries. Rebased and signed using my key. Will merge when PR is done. |
/ok-to-test |
fixes siderolabs#978 Signed-off-by: Jean-Francois Roy <jf@devklog.net> Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
/m |
fixes #978