2003-12-18 04:39:57 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Modify the power profile based on AC line state. This script is
|
|
|
|
# usually called from devd(8).
|
|
|
|
#
|
|
|
|
# Arguments: 0x00 (AC offline, economy) or 0x01 (AC online, performance)
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: power_profile
|
2007-04-02 22:53:07 +00:00
|
|
|
# REQUIRE: FILESYSTEMS syslogd
|
2004-10-07 13:55:26 +00:00
|
|
|
# KEYWORD: nojail nostart
|
2003-12-18 04:39:57 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="power_profile"
|
2007-12-08 23:00:28 +00:00
|
|
|
stop_cmd=':'
|
2003-12-18 04:39:57 +00:00
|
|
|
LOGGER="logger -t power_profile -p daemon.notice"
|
|
|
|
|
|
|
|
# Set a given sysctl node to a value.
|
|
|
|
#
|
|
|
|
# Variables:
|
|
|
|
# $node: sysctl node to set with the new value
|
|
|
|
# $value: HIGH for the highest performance value, LOW for the best
|
|
|
|
# economy value, or the value itself.
|
|
|
|
# $highest_value: maximum value for this sysctl, when $value is "HIGH"
|
|
|
|
# $lowest_value: minimum value for this sysctl, when $value is "LOW"
|
|
|
|
#
|
2012-07-13 06:46:09 +00:00
|
|
|
sysctl_set()
|
2003-12-18 04:39:57 +00:00
|
|
|
{
|
|
|
|
# Check if the node exists
|
|
|
|
if [ -z "$(sysctl -n ${node} 2> /dev/null)" ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Get the new value, checking for special types HIGH or LOW
|
|
|
|
case ${value} in
|
|
|
|
[Hh][Ii][Gg][Hh])
|
|
|
|
value=${highest_value}
|
|
|
|
;;
|
|
|
|
[Ll][Oo][Ww])
|
|
|
|
value=${lowest_value}
|
|
|
|
;;
|
2005-02-26 20:17:07 +00:00
|
|
|
[Nn][Oo][Nn][Ee])
|
|
|
|
return
|
|
|
|
;;
|
2003-12-18 04:39:57 +00:00
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Set the desired value
|
2008-06-23 22:06:28 +00:00
|
|
|
if [ -n "${value}" ]; then
|
|
|
|
if ! sysctl ${node}=${value} > /dev/null 2>&1; then
|
|
|
|
warn "unable to set ${node}=${value}"
|
|
|
|
fi
|
|
|
|
fi
|
2003-12-18 04:39:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
err 1 "Usage: $0 [0x00|0x01]"
|
|
|
|
fi
|
|
|
|
load_rc_config $name
|
|
|
|
|
|
|
|
# Find the next state (performance or economy).
|
|
|
|
state=$1
|
|
|
|
case ${state} in
|
|
|
|
0x01 | '')
|
|
|
|
${LOGGER} "changed to 'performance'"
|
|
|
|
profile="performance"
|
|
|
|
;;
|
|
|
|
0x00)
|
|
|
|
${LOGGER} "changed to 'economy'"
|
|
|
|
profile="economy"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: $0 [0x00|0x01]"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Set the various sysctls based on the profile's values.
|
|
|
|
node="hw.acpi.cpu.cx_lowest"
|
2004-05-07 05:22:38 +00:00
|
|
|
highest_value="C1"
|
2012-09-11 06:25:10 +00:00
|
|
|
lowest_value="Cmax"
|
2003-12-18 04:39:57 +00:00
|
|
|
eval value=\$${profile}_cx_lowest
|
|
|
|
sysctl_set
|
|
|
|
|
2005-02-06 21:12:25 +00:00
|
|
|
node="dev.cpu.0.freq"
|
2005-02-25 23:14:41 +00:00
|
|
|
highest_value="`(sysctl -n dev.cpu.0.freq_levels | \
|
|
|
|
awk '{ split($0, a, "[/ ]"); print a[1] }' -) 2> /dev/null`"
|
|
|
|
lowest_value="`(sysctl -n dev.cpu.0.freq_levels | \
|
2012-07-02 17:55:29 +00:00
|
|
|
awk '{ split($0, a, "[/ ]"); print a[length(a) - 1] }' -) 2> /dev/null`"
|
2005-02-06 21:12:25 +00:00
|
|
|
eval value=\$${profile}_cpu_freq
|
2003-12-18 04:39:57 +00:00
|
|
|
sysctl_set
|
|
|
|
|
|
|
|
exit 0
|