2022-12-21 00:29:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Copyright (C) 2022-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
2022-12-21 22:24:01 +00:00
|
|
|
###
|
|
|
|
### Normally this would be a udev rule, but some devices like the AyaNeo Air
|
|
|
|
### do not properly report the applied power state to udev, and we can't use
|
|
|
|
### inotifyd to watch the status in /sys.
|
|
|
|
###
|
|
|
|
|
2022-12-21 00:29:08 +00:00
|
|
|
. /etc/profile
|
|
|
|
|
2022-12-21 22:24:01 +00:00
|
|
|
DEBUG=false
|
|
|
|
|
|
|
|
performance_level() {
|
|
|
|
for card in /sys/class/drm/card*/device/power_dpm_force_performance_level
|
|
|
|
do
|
|
|
|
if [ -e "${card}" ]
|
|
|
|
then
|
|
|
|
echo ${1} >${card} 2>/dev/null
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
power_dpm_state() {
|
|
|
|
for card in /sys/class/drm/card*/device/power_dpm_state
|
|
|
|
do
|
|
|
|
if [ -e "${card}" ]
|
2022-12-21 00:29:08 +00:00
|
|
|
then
|
2022-12-21 22:24:01 +00:00
|
|
|
echo ${1} >${card} 2>/dev/null
|
2022-12-21 00:29:08 +00:00
|
|
|
fi
|
2022-12-21 22:24:01 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
pcie_aspm_policy() {
|
|
|
|
if [ -e "/sys/module/pcie_aspm/parameters/policy" ]
|
|
|
|
then
|
|
|
|
echo ${1} >/sys/module/pcie_aspm/parameters/policy 2>/dev/null
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
perftune() {
|
|
|
|
CPU="$(awk '/vendor_id/ {print $3;exit}' /proc/cpuinfo)"
|
|
|
|
if [ "${CPU}" = "AuthenticAMD" ]
|
|
|
|
then
|
|
|
|
if [ "${1}" = "battery" ]
|
2022-12-21 00:29:08 +00:00
|
|
|
then
|
2022-12-21 22:24:01 +00:00
|
|
|
ryzenadj --power-saving >/dev/null 2>&1
|
|
|
|
else
|
|
|
|
ryzenadj --max-performance >/dev/null 2>&1
|
2022-12-21 00:29:08 +00:00
|
|
|
fi
|
2022-12-21 22:24:01 +00:00
|
|
|
elif [ "${CPU}" = "GenuineIntel" ]
|
|
|
|
then
|
|
|
|
for policy in $(find /sys/devices/system/cpu/cpufreq/policy*/ -name energy_performance_preference)
|
|
|
|
do
|
|
|
|
if [ "${1}" = "battery" ]
|
|
|
|
then
|
|
|
|
echo power >${policy} >/dev/null 2>&1
|
|
|
|
else
|
|
|
|
echo performance >${policy} >/dev/null 2>&1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
STATUS="$(cat /sys/class/power_supply/{BAT*,bat*}/status 2>/dev/null)"
|
|
|
|
${DEBUG} && echo "Status: ${STATUS}"
|
|
|
|
if [ ! "${STATUS}" = "${CURRENT_MODE}" ]
|
|
|
|
then
|
|
|
|
${DEBUG} && echo "Status changed."
|
|
|
|
case ${STATUS} in
|
|
|
|
Disch*)
|
|
|
|
/usr/bin/logger -t user.notice "Switching to battery mode."
|
|
|
|
if [ "$(get_setting gpu.powersave)" = 1 ]
|
|
|
|
then
|
|
|
|
performance_level battery
|
|
|
|
power_dpm_state low
|
|
|
|
pcie_aspm_policy powersave
|
|
|
|
perftune battery
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
/usr/bin/logger -t user.notice "Switching to performance mode."
|
|
|
|
if [ "$(get_setting gpu.powersave)" = 1 ]
|
|
|
|
then
|
|
|
|
performance_level auto
|
|
|
|
power_dpm_state performance
|
|
|
|
pcie_aspm_policy default
|
|
|
|
perftune performance
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
CURRENT_MODE="${STATUS}"
|
|
|
|
${DEBUG} && echo "Current Mode: ${CURRENT_MODE}"
|
|
|
|
sleep 2
|
|
|
|
done
|