diff options
author | Nicolas Vollmar <nvo@scaling.ch> | 2024-09-11 12:47:34 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2025-04-26 19:52:40 +0000 |
commit | cb55e6525b1b783de6f42fe6b85a42bbcb4f4952 (patch) | |
tree | 61ccbd39bc07fdf672137b21de986f9c6d5a0ce4 | |
parent | 3772be8d6f9b196b200e03f9e79549ab4c111f0d (diff) | |
download | vyos-documentation-mergify/bp/sagitta/pr-1543.tar.gz vyos-documentation-mergify/bp/sagitta/pr-1543.zip |
T6703: Add documentation for AMD pstate drivermergify/bp/sagitta/pr-1543
(cherry picked from commit 1930ed17847404d185b1bef0f1e428a37870de67)
-rw-r--r-- | docs/configuration/system/option.rst | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/docs/configuration/system/option.rst b/docs/configuration/system/option.rst index 02c889dd..4374f385 100644 --- a/docs/configuration/system/option.rst +++ b/docs/configuration/system/option.rst @@ -43,8 +43,6 @@ Kernel .. cfgcmd:: set system option kernel disable-power-saving - Disable CPU power saving mechanisms also known as C states. - This will add the following two options to the Kernel commandline: * ``intel_idle.max_cstate=0`` Disable intel_idle and fall back on acpi_idle @@ -52,6 +50,28 @@ Kernel .. note:: Setting will only become active with the next reboot! +.. cfgcmd:: set system option kernel amd-pstate-driver <mode> + + Enables and configures p-state driver for modern AMD Ryzen and Epyc CPUs. + + The available modes are: + + * ``active`` This is the low-level firmware control mode based on the profile + set and the system governor has no effect. + * ``passive`` The driver allows the system governor to manage CPU frequency + while providing available performance states. + * ``guided`` The driver allows to set desired performance levels and the firmware + selects a performance level in this range and fitting to the current workload. + + This will add the following two options to the Kernel commandline: + + * ``initcall_blacklist=acpi_cpufreq_init`` Disable default ACPI CPU frequency scale + * ``amd_pstate={mode}`` Sets the p-state mode + + .. note:: Setting will only become active with the next reboot! + + .. seealso:: https://docs.kernel.org/admin-guide/pm/amd-pstate.html + *********** HTTP client *********** |