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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
|
#!/bin/sh
# tlp - adjust power settings
#
# Copyright (c) 2025 Thomas Koch <linrunner at gmx.net> and others.
# SPDX-License-Identifier: GPL-2.0-or-later
# --- Source libraries
for lib in @TLP_TLIB@/tlp-func-base @TLP_FLIB@/[0-9][0-9]*; do
# shellcheck disable=SC1090
. "$lib" || exit 70
done
# --- Constants
# --- Subroutines
apply_common_settings () { # apply settings common to all modes
# $1: 0=ac mode, 1=battery mode
set_laptopmode "$1"
set_dirty_parms "$1"
set_platform_profile "$1"
set_cpu_driver_opmode "$1"
set_cpu_scaling_governor "$1"
set_cpu_scaling_min_max_freq "$1"
set_intel_cpu_perf_pct "$1"
set_cpu_boost_all "$1"
set_cpu_dyn_boost "$1"
set_cpu_perf_policy "$1"
set_nmi_watchdog
set_mem_sleep "$1"
set_ahci_port_runtime_pm "$1"
set_runtime_pm "$1"
set_ahci_disk_runtime_pm "$1"
set_sata_link_power "$1"
set_disk_apm_level "$1"
set_disk_spindown_timeout "$1"
set_disk_iosched
set_pcie_aspm "$1"
set_intel_gpu_min_max_boost_freq "$1"
set_amdgpu_profile "$1"
set_abm_level "$1"
set_wifi_power_mode "$1"
disable_wake_on_lan
set_sound_power_mode "$1"
return 0
}
apply_suspend_settings () { # apply settings before suspending
set_ahci_port_runtime_pm "2"
set_ahci_disk_runtime_pm "2"
set_pcie_aspm "2"
return 0
}
show_usage () {
echo "Usage: tlp start|true|bat|false|ac|usb|bayoff|chargeonce|discharge|setcharge|fullcharge|recalibrate|diskid" 1>&2
}
parse_args () { # parse command-line arguments
# $@: arguments to parse
# retval: $_cmd: command;
# $_cmd2: subcommand;
# $_carg1,
# $_carg2,
# $_carg3: command arguments
# parsing control: 'nil' means that the element is still expected
_cmd="nil"
_cmd2="nil"
_carg1="nil"
_carg2="nil"
_carg3="nil"
# iterate arguments until exhausted or delimiter '--' reached
while [ $# -gt 0 ]; do
if [ "$1" = "--" ]; then
break;
elif [ "$_cmd" = "nil" ]; then
# command
case "$1" in
ac|auto|bat|bayoff|false|diskid|resume|suspend|start|true|usb)
# commands without further arguments
_cmd="$1"
_cmd2=""
_carg1=""
_carg2=""
_carg3=""
;;
chargeonce|fullcharge|recalibrate)
# commands with one or no arguments
_cmd="$1"
_cmd2=""
_carg2=""
_carg3=""
;;
discharge)
# command with up to two arguments
_cmd="$1"
_cmd2=""
_carg3=""
;;
setcharge)
# command with up to three arguments
_cmd="$1"
_cmd2=""
;;
init)
# command with subcommand and no arguments
_cmd="$1"
_carg1=""
_carg2=""
_carg3=""
;;
stat)
# unsupported command
cecho "Error: 'tlp stat' no longer supported, use 'tlp-stat' instead." 1>&2
do_exit 3
;;
noop)
# no operation
_cmd="$1"
_cmd2=""
;;
--version)
# no operation
_cmd="version"
_cmd2=""
;;
*)
# unknown command
cecho "Error: unknown command \"$1\"." 1>&2
show_usage
do_exit 3
;;
esac
elif [ "$_cmd2" = "nil" ]; then
# subcommand
case "$1" in
start|stop|restart|force-reload)
_cmd2="$1"
;;
*) # unknown subcommand
echo "Usage: tlp init {start|stop|restart|force-reload}" >&2
do_exit 3
;;
esac
elif [ "$_carg1" = "nil" ]; then
# first command argument
_carg1="$1"
elif [ "$_carg2" = "nil" ]; then
# second command argument
_carg2="$1"
elif [ "$_carg3" = "nil" ]; then
# third command argument
_carg3="$1"
fi
shift # next argument
done # while arguments
if [ "$_cmd" = "nil" ]; then
# no command parsed
show_usage
do_exit 3
fi
# clear missing arguments
[ "$_carg1" = "nil" ] && _carg1=""
[ "$_carg2" = "nil" ] && _carg2=""
[ "$_carg3" = "nil" ] && _carg3=""
return 0
}
# --- MAIN
parse_args "$@"
if [ "$_cmd" = "version" ]; then
print_version
exit 0
fi
# read configuration: quit on error, trace allowed
read_config 1 0
parse_args4config "$@"
cprintf_init
check_tlp_enabled 1 || do_exit 1
add_sbin2path
if [ -z "$_cmd2" ]; then
echo_debug "run" "+++ $_cmd ($TLPVER) ++++++++++++++++++++++++++++++++++++++++"
else
echo_debug "run" "+++ $_cmd $_cmd2 ($TLPVER) ++++++++++++++++++++++++++++++++++++++++"
fi
# shellcheck disable=SC2154
if [ -n "$_addpath" ]; then
# shellcheck disable=SC2154
echo_debug "path" "PATH=${_oldpath}[${_addpath}]"
else
# shellcheck disable=SC2154
echo_debug "path" "PATH=${_oldpath}"
fi
echo_debug "run" "SHELL=$(print_shell); umask=$(umask)"
# get current power state
get_power_mode "$_cmd"; pwrmode=$?
get_manual_mode
# determine new power state
case "$_cmd" in
init|start)
# discard manual mode
clear_manual_mode
;;
auto|resume)
# if manual mode is set, use instead of current power state
# shellcheck disable=SC2154
case $_manual_mode in
0|1) pwrmode="$_manual_mode" ;;
esac
;;
true|bat)
pwrmode=1
set_manual_mode 1
;;
false|ac)
pwrmode=0
set_manual_mode 0
;;
esac
# shellcheck disable=SC2154
case "$_syspwr" in
0) echo_debug "run" "power_source=ac" ;;
1) echo_debug "run" "power_source=bat" ;;
*) echo_debug "run" "power_source=unknown ($_syspwr)" ;;
esac
echo_debug "run" "manual_mode=$_manual_mode"
case "$pwrmode" in
0) echo_debug "run" "power_mode=ac" ;;
1) echo_debug "run" "power_mode=bat" ;;
*) echo_debug "run" "power_mode=unknown ($pwrmode)" ;;
esac
# process command
exitcode=0
case "$_cmd" in
init) # system initialization/shutdown: sysv, upstart, systemd, ...
check_root
# try to obtain lock (with timeout)
locked=0
if lock_tlp; then
locked=1
else
echo "Failed to get lock, continuing anyway." 1>&2
fi
# do init business ...
# shellcheck disable=SC2034
_bgtask=1
case "$_cmd2" in
start)
# apply power save settings
compare_and_save_power_state "$pwrmode"
echo -n "Applying power save settings..."
apply_common_settings "$pwrmode"
poweroff_drivebay "$pwrmode" 0
[ "$X_TLP_USB_MODE" = "1" ] && set_usb_suspend 0 auto
echo "done."
# apply battery settings
echo -n "Setting battery charge thresholds..."
init_batteries_thresholds
echo "done."
# apply radio states
set_radio_device_states start
;;
restart|force-reload)
# apply power save settings
compare_and_save_power_state "$pwrmode"
echo -n "Applying power save settings..."
apply_common_settings "$pwrmode"
poweroff_drivebay "$pwrmode" 0
[ "$X_TLP_USB_MODE" = "1" ] && set_usb_suspend 0 auto
echo "done."
# apply battery settings
echo -n "Setting battery charge thresholds..."
init_batteries_thresholds
echo "done."
;;
stop)
# remove usb startup flag
[ -f "$USB_DONE" ] && rm "$USB_DONE"
# clear saved power state
clear_saved_power_state
if [ "$X_TLP_SHUTDOWN_ACMODE" = "1" ]; then
# workaround (optional): apply ac settings
echo -n "Applying power save settings..."
apply_common_settings 0
poweroff_drivebay "$pwrmode" 0
echo "done."
fi
# apply radio states
set_radio_device_states stop
;;
*)
echo "Usage: tlp init {start|stop|restart|force-reload}" >&2
do_exit 3
;;
esac
save_runconf
# unlock if necessary
[ $locked -eq 0 ] || unlock_tlp
;;
auto) # set mode depending on state (called by udev rule)
# -- but only if not previously run for the same power state
# rationale: filter out duplicate power_supply udev events
check_root
# shellcheck disable=SC2034
_bgtask=1
check_services_activation_status
if lock_tlp_nb; then
if compare_and_save_power_state "$pwrmode"; then
apply_common_settings "$pwrmode"
poweroff_drivebay "$pwrmode" 0
set_radio_device_states "$pwrmode"
if [ "$RESTORE_THRESHOLDS_ON_BAT" = "1" ] \
&& [ "$pwrmode" = "1" ]; then
init_batteries_thresholds
fi
save_runconf
fi
unlock_tlp
fi
;;
start) # set mode depending on state (interactive mode)
check_services_activation_status
check_root
if lock_tlp; then
compare_and_save_power_state "$pwrmode"
apply_common_settings "$pwrmode"
poweroff_drivebay "$pwrmode" 0
set_usb_suspend 0 auto
init_batteries_thresholds
set_radio_device_states "$pwrmode"
save_runconf
unlock_tlp
echo_started_mode "$pwrmode"
else
echo_tlp_locked
fi
;;
true|bat) # set battery power mode
check_services_activation_status
check_root
if lock_tlp; then
compare_and_save_power_state 1
apply_common_settings 1
poweroff_drivebay "$pwrmode" 0
[ "$X_TLP_USB_MODE" = "1" ] && set_usb_suspend 0 auto
set_radio_device_states 1
save_runconf
unlock_tlp
echo_started_mode 1
else
echo_tlp_locked
fi
;;
false|ac) # set ac power mode
check_services_activation_status
check_root
if lock_tlp; then
compare_and_save_power_state 0
apply_common_settings 0
poweroff_drivebay "$pwrmode" 0
[ "$X_TLP_USB_MODE" = "1" ] && set_usb_suspend 0 auto
set_radio_device_states 0
save_runconf
unlock_tlp
echo_started_mode 0
else
echo_tlp_locked
fi
;;
suspend) # handle suspend/hibernate
check_root
save_device_states "bluetooth wwan"
suspend_drivebay "$pwrmode"
case "$X_TLP_SUSPEND_ACMODE" in
1) # workaround (optional): apply ac settings
if lock_tlp; then
apply_common_settings 0
save_runconf
unlock_tlp
fi
;;
0) # workaround disabled: do nothing
;;
*) # workaround (default): apply selected settings to avoid freezes on wakeup
if lock_tlp; then
apply_suspend_settings
save_runconf
unlock_tlp
fi
;;
esac
;;
resume) # handle resume
check_root
if lock_tlp; then
restore_device_states
compare_and_save_power_state "$pwrmode"
apply_common_settings "$pwrmode"
resume_drivebay "$pwrmode"
init_batteries_thresholds "asus huawei lg lg-legacy"
save_runconf
unlock_tlp
fi
;;
usb) # Enable usb autosuspend
check_root
set_usb_suspend 1 auto
;;
bayoff) # power off drive bay
check_root
poweroff_drivebay "$pwrmode" 1
;;
setcharge) # set charge thresholds (temporarily)
check_root
# quoting args will break $# in setcharge_battery()
# shellcheck disable=SC2086
setcharge_battery $_carg1 $_carg2 $_carg3
exitcode=$?
;;
fullcharge) # charge battery to 100% (temporarily)
if check_ac_power fullcharge; then
check_root
# quoting args will break $# in setcharge_battery()
# shellcheck disable=SC2086
setcharge_battery DEF DEF $_carg1
exitcode=$?
if [ $exitcode -eq 0 ]; then
cecho "Charging starts now, keep AC connected." "notice" 1>&2
fi
else
exitcode=2
fi
;;
chargeonce) # charge battery to stop threshold once
if check_ac_power chargeonce; then
check_root
# shellcheck disable=SC2086
chargeonce_battery "$_carg1"
exitcode=$?
else
exitcode=2
fi
;;
discharge) # discharge battery to target soc or completely
discharge_battery discharge "$_carg1" "$_carg2"
exitcode=$?
;;
recalibrate) # recalibrate battery, i.e. discharge completely and charge to 100%
discharge_battery recalibrate "$_carg1"
exitcode=$?
;;
diskid) # show disk id's
show_disk_ids
;;
noop) # Debug: no operation
check_root
select_batdrv
batdrv_select_battery "DEF"
save_runconf
echo_message "Debug: no operation performed."
echo_message "Error: message color test."
echo_message "Warning: message color test."
echo_message "Notice: message color test."
echo_message "Success: message color test." "success"
_bgtask=1
echo_message "Debug: no operation performed."
echo_message "Error: message color test."
echo_message "Warning: message color test."
echo_message "Notice: message color test."
echo_message "Success: message color test." "success"
;;
esac
do_exit $exitcode
|