-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
recipes-support/os-power-mode: Add device-specific power mode configu…
…ration script This script is run one, at startup, before nvpmodel.service. It takes the os power mode configuration from config.json, translates it into a device-specific power mode or passes it as is into a bind-mounted configuration file, which is later applied by the nvpmodel daemon. Signed-off-by: Alexandru Costache <alexandru@balena.io> Changelog-entry: recipes-support/os-power-mode: Add device-specific power mode configuration script
- Loading branch information
Showing
4 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
layers/meta-balena-jetson/recipes-support/os-power-mode/os-power-mode.bbappend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" | ||
|
||
SRC_URI:append = " \ | ||
file://os-power-mode \ | ||
file://os-power-mode-jetson.conf \ | ||
file://etc-nvpmodel-config.mount \ | ||
" | ||
|
||
do_install:append() { | ||
install -d -m 0755 ${D}${libdir}/systemd/system/os-power-mode.service.d | ||
install -m 0644 ${WORKDIR}/os-power-mode-jetson.conf \ | ||
${D}${libdir}/systemd/system/os-power-mode.service.d | ||
|
||
install -m 0644 ${WORKDIR}/etc-nvpmodel-config.mount ${D}${systemd_unitdir}/system/etc-nvpmodel\\x2dconfig.mount | ||
|
||
install -d -m 0755 ${D}/etc/nvpmodel-config | ||
} | ||
|
||
FILES:${PN} += " /usr/lib/systemd/system/os-power-mode.service.d/os-power-mode-jetson.conf " |
13 changes: 13 additions & 0 deletions
13
.../meta-balena-jetson/recipes-support/os-power-mode/os-power-mode/etc-nvpmodel-config.mount
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[Unit] | ||
Description=Bind mount for /etc/nvpmodel.conf | ||
Requires=resin-state.service resin-state-reset.service | ||
After=resin-state.service resin-state-reset.service | ||
|
||
[Mount] | ||
What=/mnt/state/root-overlay/etc/nvpmodel-config | ||
Where=/etc/nvpmodel-config | ||
Type=none | ||
Options=bind | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
121 changes: 121 additions & 0 deletions
121
layers/meta-balena-jetson/recipes-support/os-power-mode/os-power-mode/os-power-mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
#!/bin/bash | ||
|
||
# Available power modes mapping: | ||
# | ||
# Device name | Power level / Power mode name / Power mode index / Slug | ||
# | ||
# AGX Orin Devkit 32GB: Low = 15W (1), Mid = 40W (3), High = MAXN (0) - [jetson-agx-orin-devkit] | ||
# | ||
# AGX Orin Devkit 64GB: Low = 15W (1), Mid = 50W (3), High = MAXN (0) - [jetson-agx-orin-devkit-64gb] | ||
# | ||
# AGX Orin Industrial: Low = 15W (1), Mid = 60W (3), High = MAXN (0) - [N/A] | ||
# | ||
# Orin NX 16GB: Low = 10W (1), Mid = 25W (3), High = MAXN (0) - [jetson-orin-nx-xavier-nx-devkit, jetson-orin-nx-seeed-j4012] | ||
# | ||
# Orin Nano 8GB (SD): Low = 7W (1), Mid = 15W (0), High = 15W (0) - [jetson-orin-nano-devkit-nvme] | ||
# | ||
# Orin Nano 4GB: Low = 7W_CPU (2), Mid = 7W_AI (1), High = 10W (0) - [jetson-orin-nano-seeed-j3010] | ||
|
||
|
||
set -e | ||
|
||
. /usr/libexec/os-helpers-logging | ||
|
||
BINDMOUNTED_NVPMODEL_PATH="/etc/nvpmodel-config" | ||
NVPMODEL_FILE="nvpmodel.conf" | ||
|
||
current_power_mode="" | ||
target_power_mode="" | ||
declare -A power_modes | ||
|
||
query_power_mode() { | ||
applied_power_mode=$(/usr/sbin/nvpmodel -q) | ||
if [[ "$applied_power_mode" == null ]] || [[ -z "$applied_power_mode" ]]; then | ||
fail "Power mode could not be queried!" | ||
else | ||
power_mode_name=$(echo "${applied_power_mode}" | sed -n 1p) | ||
power_mode_index=$(echo "${applied_power_mode}" | sed -n 2p) | ||
info "Current power mode: $power_mode_name" | ||
info "Current power mode index: $power_mode_index" | ||
|
||
exit 0 | ||
fi | ||
} | ||
|
||
while [ "$#" -gt "0" ]; do | ||
key=$1 | ||
case $key in | ||
-q|--query) | ||
query_power_mode | ||
;; | ||
*) | ||
warn "[WARNING] Unknown argument '$1', ignoring" | ||
;; | ||
esac | ||
shift | ||
done | ||
|
||
if [ -f "/etc/os-release" ]; then | ||
source /etc/os-release | ||
fi | ||
|
||
if [ -f "/usr/sbin/balena-config-vars" ]; then | ||
source /usr/sbin/balena-config-vars --no-cache | ||
fi | ||
|
||
if [[ "$OS_POWER_MODE" == null ]] || [[ -z "$OS_POWER_MODE" ]]; then | ||
update_bindmount=false | ||
if [ -e ${BINDMOUNTED_NVPMODEL_PATH}/${NVPMODEL_FILE} ]; then | ||
bindmount_config_md5sum=$(md5sum ${BINDMOUNTED_NVPMODEL_PATH}/${NVPMODEL_FILE} | awk '{print $1}') | ||
bsp_config_md5sum=$(md5sum /etc/${NVPMODEL_FILE} | awk '{print $1}') | ||
if [ ! "$bindmount_config_md5sum" == "$bsp_config_md5sum" ]; then | ||
update_bindmount=true | ||
else | ||
info "No need to update bind mounted configuration file. BSP default power mode will be used." | ||
fi | ||
else | ||
update_bindmount=true | ||
fi | ||
|
||
if [[ "$update_bindmount" == true ]]; then | ||
cat /etc/${NVPMODEL_FILE} > ${BINDMOUNTED_NVPMODEL_PATH}/${NVPMODEL_FILE} | ||
info "Created / updated bind mounted configuration file. BSP default power mode will be used." | ||
fi | ||
else | ||
if [ -e ${BINDMOUNTED_NVPMODEL_PATH}/${NVPMODEL_FILE} ]; then | ||
current_power_mode=$(cat ${BINDMOUNTED_NVPMODEL_PATH}/${NVPMODEL_FILE} | grep "PM_CONFIG DEFAULT" | cut -d "=" -f 2 | tail -n 1 | awk '{print $1}') | ||
fi | ||
|
||
case $MACHINE in | ||
jetson-agx-orin-devkit|jetson-agx-orin-devkit-64gb|jetson-agx-orin-industrial|jetson-orin-nx-xavier-nx-devkit|jetson-orin-nx-seeed-j4012) | ||
power_modes=(["low"]="1" ["mid"]="3" ["high"]="0") | ||
;; | ||
jetson-orin-nano-devkit-nvme) | ||
power_modes=(["low"]="2" ["mid"]="0" ["high"]="0") | ||
;; | ||
jetson-orin-nano-seeed-j3010) | ||
power_modes=(["low"]="2" ["mid"]="1" ["high"]="0") | ||
;; | ||
*) | ||
fail "Unsupported device type: $MACHINE" | ||
;; | ||
esac | ||
|
||
case $OS_POWER_MODE in | ||
low|mid|high) | ||
target_power_mode="${power_modes[$OS_POWER_MODE]}" | ||
;; | ||
*) | ||
target_power_mode="$OS_POWER_MODE" | ||
;; | ||
esac | ||
|
||
info "Requested power mode: $OS_POWER_MODE" | ||
info "Target power mode: $target_power_mode" | ||
if [[ "$target_power_mode" == "$current_power_mode" ]]; then | ||
info "Target power mode is already applied" | ||
else | ||
cat /etc/${NVPMODEL_FILE} | sed -e "s/\(PM_CONFIG DEFAULT=\)\(.*\)/\1${target_power_mode} >/g" > ${BINDMOUNTED_NVPMODEL_PATH}/${NVPMODEL_FILE} | ||
info "Target power mode was written to the configuration file" | ||
fi | ||
fi |
3 changes: 3 additions & 0 deletions
3
.../meta-balena-jetson/recipes-support/os-power-mode/os-power-mode/os-power-mode-jetson.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[Unit] | ||
After=etc-nvpmodel\x2dconfig.mount | ||
Requires=etc-nvpmodel\x2dconfig.mount |