Hi:
hardware: DevelopKit/Custom board
software version: JetPack5.1.3/JetPack5.1.5
Here is /etc/nvfancontrol.conf:
root@tegra-ubuntu:/etc# vi nvfancontrol.conf
root@tegra-ubuntu:/etc# cat nvfancontrol.conf
#
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
POLLING_INTERVAL 2
<FAN 1>
TMARGIN ENABLED
FAN_GOVERNOR cont {
STEP_SIZE 10
}
FAN_CONTROL close_loop {
RPM_TOLERANCE 100
}
FAN_PROFILE quiet {
#TEMP HYST PWM RPM
0 0 255 6000
10 0 255 6000
11 0 187 4000
31 0 187 7000
70 0 255 10000
105 0 0 0
}
FAN_PROFILE cool {
#TEMP HYST PWM RPM
0 0 255 6000
35 0 255 6000
70 0 0 0
105 0 0 0
}
THERMAL_GROUP 0 {
GROUP_MAX_TEMP 105
#Thermal-Zone Coeffs Max-Temp
CPU-therm 20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0
GPU-therm 20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0
SOC0-therm 20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0
SOC1-therm 20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0
SOC2-therm 20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0
}
FAN_DEFAULT_CONTROL close_loop
FAN_DEFAULT_PROFILE quiet
FAN_DEFAULT_GOVERNOR cont
KICKSTART_PWM 64
I want to set the fan speed to 10000 after one of the CPU/GPU temperatures exceeds 70 ° C. When running according to the configuration file above, I found the following problem:
- After the GPU temperature rises, the fan does not increase its speed.
- After the CPU exceeds 70 ° C, the fan does not run at maximum speed. After restarting the device, the fan runs at maximum speed.
How should I set up the fan configuration?