Ignore:
Timestamp:
02/27/2024 08:06:52 PM (4 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
12.1, ken/TL2024, lazarus, trunk, xry111/llvm18
Children:
d1a69e6
Parents:
730f162b
git-author:
Xi Ruoyao <xry111@…> (02/27/2024 08:04:11 PM)
git-committer:
Xi Ruoyao <xry111@…> (02/27/2024 08:06:52 PM)
Message:

kernel-config: power-profiles-daemon: Adjust

Remove "AMD P-State Self Test" as it's only for debugging. Adjust some
forced settings as X86_INTEL_PSTATE may be unset if SCHED_MC unset.
Mention X86 Platform Specific Device Drivers may provide platform
profile support (actually more powerful than CPUFreq).

Also fix a glitch in kernel-config.py so it won't mark "'" as hotkey
anymore.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel-config/general/sysutils/power-profiles-daemon.toml

    r730f162b r41eefd36  
    1 # To have cpu support you need to have this
     1# Selected by CPU_SUP_INTEL, which is always y when !CONFIG_EXPERT
    22CPU_FREQ = { value = '*', forced = true }
    3 CPU_FREQ_GOV_PERFORMANCE = '*'
    4 CPU_FREQ_GOV_POWERSAVE = '*'
    5 # For some reason if you select any sort of frequency scaling, intel pstate is forced on
    6 X86_INTEL_PSTATE = { value = '*', forced = true }
    7 X86_AMD_PSTATE = '*'
    8 X86_AMD_PSTATE_UT = '*M'
     3# If one of X86_INTEL_PSTATE and X86_AMD_PSTATE is selected, it's forced
     4# to '*'.  Let's not consider VIA, Transmeta, etc. for now...
     5CPU_FREQ_GOV_PERFORMANCE = { value = '*', forced = '*' }
     6CPU_FREQ_GOV_POWERSAVE = '*M'
     7# Not really forced: if you unset SCHED_MC you may unset this as well
     8X86_INTEL_PSTATE = { value = ' *', comment = 'Select if CPU is Intel' }
     9X86_AMD_PSTATE = { value = ' *', comment = 'Select if CPU is AMD' }
     10
     11[X86_PLATFORM_DEVICES]
     12value = ' *'
     13comment = [
     14        'Some drivers under this submenu provide "platform profile" support',
     15        'and power-profiles-daemon can take advantage from platform profiles;',
     16        'select a driver if suitable for your platform',
     17]
Note: See TracChangeset for help on using the changeset viewer.