Skip to content

Commit

Permalink
intel_lpmd
Browse files Browse the repository at this point in the history
  • Loading branch information
aeghn committed Jun 22, 2024
1 parent 41ab2a1 commit 12f635e
Showing 1 changed file with 106 additions and 0 deletions.
106 changes: 106 additions & 0 deletions intel_lpmd/intel_lpmd_config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<?xml version="1.0"?>

<!--
Specifies the configuration data
for Intel Low Power Mode daemon
-->

<Configuration>
<!--
CPU format example: 1,2,4..6,8-10
-->
<lp_mode_cpus></lp_mode_cpus>

<!--
Mode values
0: Cgroup v2
1: Cgroup v2 isolate
2: CPU idle injection
-->
<Mode>0</Mode>

<!--
Default behavior when Performance power setting is used
-1: force off. (Never enter Low Power Mode)
1: force on. (Always stay in Low Power Mode)
0: auto. (opportunistic Low Power Mode enter/exit)
-->
<PerformanceDef>-1</PerformanceDef>

<!--
Default behavior when Balanced power setting is used
-1: force off. (Never enter Low Power Mode)
1: force on. (Always stay in Low Power Mode)
0: auto. (opportunistic Low Power Mode enter/exit)
-->
<BalancedDef>-1</BalancedDef>

<!--
Default behavior when Power saver setting is used
-1: force off. (Never enter Low Power Mode)
1: force on. (Always stay in Low Power Mode)
0: auto. (opportunistic Low Power Mode enter/exit)
-->
<PowersaverDef>-1</PowersaverDef>

<!--
Use HFI LPM hints
0 : No
1 : Yes
-->
<HfiLpmEnable>0</HfiLpmEnable>

<!--
Use HFI SUV hints
0 : No
1 : Yes
-->
<HfiSuvEnable>0</HfiSuvEnable>

<!--
System utilization threshold to enter LP mode
from 0 - 100
clear both util_entry_threshold and util_exit_threshold to disable util monitor
-->
<util_entry_threshold>10</util_entry_threshold>

<!--
System utilization threshold to exit LP mode
from 0 - 100
clear both util_entry_threshold and util_exit_threshold to disable util monitor
-->
<util_exit_threshold>95</util_exit_threshold>

<!--
Entry delay. Minimum delay in non Low Power mode to
enter LPM mode.
-->
<EntryDelayMS>0</EntryDelayMS>

<!--
Exit delay. Minimum delay in Low Power mode to
exit LPM mode.
-->
<ExitDelayMS>0</ExitDelayMS>

<!--
Lowest hysteresis average in-LP-mode time in msec to enter LP mode
0: to disable hysteresis support
-->
<EntryHystMS>0</EntryHystMS>

<!--
Lowest hysteresis average out-of-LP-mode time in msec to exit LP mode
0: to disable hysteresis support
-->
<ExitHystMS>0</ExitHystMS>

<!--
Ignore ITMT setting during LP-mode enter/exit
0: disable ITMT upon LP-mode enter and re-enable ITMT upon LP-mode exit
1: do not touch ITMT setting during LP-mode enter/exit
-->
<IgnoreITMT>0</IgnoreITMT>

</Configuration>

0 comments on commit 12f635e

Please sign in to comment.