/etc/laptop-mode/conf.d/intel_pstate.conf is in laptop-mode-tools 1.71-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | #
# Configuration file for Laptop Mode Tools module intel_pstate.
#
# For more information, consult the laptop-mode.conf(8) manual page.
#
###############################################################################
# Control Intel PState CPU frequency scaling driver
# -------------------------------------------------
#
#__COMMENT Laptop mode tools can automatically adjust your kernel CPU frequency
#__COMMENT settings. This module handles Intel PState driver, that is somewhat
#__COMMENT different from other cpufreq drivers.
#__COMMENT
#__COMMENT This feature is present only on kernels 3.9 and later.
#
###############################################################################
# Enable debug mode for this module
# Set to 1 if you want to debug this module
DEBUG=0
#
# Should laptop mode tools control the CPU frequency settings?
#
# Set to 0 to disable
CONTROL_INTEL_PSTATE="auto"
#On AC, Laptop Mode Tools inactive
NOLM_AC_INTEL_PSTATE_PERF_MIN_PCT=0 # Minimum performance, in percent
NOLM_AC_INTEL_PSTATE_PERF_MAX_PCT=100 # Maximum performance, in percent
NOLM_AC_INTEL_PSTATE_NO_TURBO=0 # Disable "Turbo Boost"?
#On AC, Laptop Mode Tools active
LM_AC_INTEL_PSTATE_PERF_MIN_PCT=0 # Minimum performance, in percent
LM_AC_INTEL_PSTATE_PERF_MAX_PCT=100 # Maximum performance, in percent
LM_AC_INTEL_PSTATE_NO_TURBO=0 # Disable "Turbo Boost"?
#On battery
BATT_INTEL_PSTATE_PERF_MIN_PCT=0 # Minimum performance, in percent
BATT_INTEL_PSTATE_PERF_MAX_PCT=100 # Maximum performance, in percent
BATT_INTEL_PSTATE_NO_TURBO=0 # Disable "Turbo Boost"?
|