一、频率查看
# CPU
cat /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_cur_freq
# GPU
cat /sys/class/devfreq/fb000000.gpu/cur_freq
# NPU
cat /sys/class/devfreq/fdab0000.npu/cur_freq
# DDR
cat /sys/class/devfreq/dmc/cur_freq
二、频率电压表
cat /sys/kernel/debug/opp/opp_summary
device rate(Hz) target(uV) min(uV) max(uV)
-------------------------------------------------------------------
platform-fdab0000.npu
300000000 750000 750000 850000
750000 750000 850000
400000000 750000 750000 850000
750000 750000 850000
500000000 750000 750000 850000
750000 750000 850000
600000000 750000 750000 850000
750000 750000 850000
700000000 750000 750000 850000
750000 750000 850000
800000000 750000 750000 850000
750000 750000 850000
950000000 800000 800000 850000
800000 800000 850000
platform-dmc
528000000 750000 750000 875000
750000 750000 750000
1068000000 750000 750000 875000
750000 750000 750000
1560000000 775000 775000 875000
750000 750000 750000
2112000000 850000 850000 875000
750000 750000 750000
platform-fdbe0000.rkvenc-core
800000000 775000 775000 850000
775000 775000 850000
platform-fdbd0000.rkvenc-core
800000000 775000 775000 850000
775000 775000 850000
platform-fb000000.gpu
300000000 750000 750000 850000
750000 750000 850000
400000000 750000 750000 850000
750000 750000 850000
500000000 750000 750000 850000
750000 750000 850000
600000000 750000 750000 850000
750000 750000 850000
700000000 750000 750000 850000
750000 750000 850000
850000000 750000 750000 850000
750000 750000 850000
cpu6
408000000 750000 750000 950000
750000 750000 950000
600000000 750000 750000 950000
750000 750000 950000
816000000 750000 750000 950000
750000 750000 950000
1008000000 750000 750000 950000
750000 750000 950000
1200000000 750000 750000 950000
750000 750000 950000
1416000000 750000 750000 950000
750000 750000 950000
1608000000 750000 750000 950000
750000 750000 950000
1800000000 812500 812500 950000
812500 812500 950000
2016000000 900000 900000 950000
900000 900000 950000
cpu4
408000000 750000 750000 950000
750000 750000 950000
600000000 750000 750000 950000
750000 750000 950000
816000000 750000 750000 950000
750000 750000 950000
1008000000 750000 750000 950000
750000 750000 950000
1200000000 750000 750000 950000
750000 750000 950000
1416000000 750000 750000 950000
750000 750000 950000
1608000000 750000 750000 950000
750000 750000 950000
1800000000 812500 812500 950000
812500 812500 950000
2016000000 900000 900000 950000
900000 900000 950000
cpu0
408000000 750000 750000 950000
750000 750000 950000
600000000 750000 750000 950000
750000 750000 950000
816000000 750000 750000 950000
750000 750000 950000
1008000000 750000 750000 950000
750000 750000 950000
1200000000 750000 750000 950000
750000 750000 950000
1296000000 750000 750000 950000
750000 750000 950000
1416000000 750000 750000 950000
750000 750000 950000
1608000000 837500 837500 950000
837500 837500 950000
1704000000 887500 887500 950000
887500 887500 950000
策略如下:
- interactive:根据 CPU 负载动态调频调压;
- conservative:保守策略,逐级调整频率和电压;
- ondemand:根据 CPU 负载动态调频调压,⽐ interactive 策略反应慢;
- userspace:⽤⼾⾃⼰设置电压和频率,系统不会⾃动调整;
- powersave:功耗优先,始终将频率设置在最低值;
- performance:性能优先,始终将频率设置为最⾼值;
三、CPU
3.1 CPU节点
/sys/devices/system/cpu/cpufreq/policy0: (4 A55:CPU0-3)
affected_cpus cpuinfo_max_freq cpuinfo_transition_latency scaling_available_frequencies scaling_cur_freq scaling_governor scaling_min_freq stats
cpuinfo_cur_freq cpuinfo_min_freq related_cpus scaling_available_governors scaling_driver scaling_max_freq scaling_setspeed
/sys/devices/system/cpu/cpufreq/policy4: (2 A76:CPU4-5)
affected_cpus cpuinfo_max_freq cpuinfo_transition_latency scaling_available_frequencies scaling_cur_freq scaling_governor scaling_min_freq stats
cpuinfo_cur_freq cpuinfo_min_freq related_cpus scaling_available_governors scaling_driver scaling_max_freq scaling_setspeed
/sys/devices/system/cpu/cpufreq/policy6: (2 A76:CPU6-7)
affected_cpus cpuinfo_max_freq cpuinfo_transition_latency scaling_available_frequencies scaling_cur_freq scaling_governor scaling_min_freq stats
cpuinfo_cur_freq cpuinfo_min_freq related_cpus
3.2 调节
# 查看CPU可用频率
cat /sys/devices/system/cpu/cpufreq/policy*/scaling_available_frequencies
408000 600000 816000 1008000 1200000 1296000 1416000 1608000 1704000
408000 600000 816000 1008000 1200000 1416000 1608000 1800000 2016000
408000 600000 816000 1008000 1200000 1416000 1608000 1800000 2016000
# 查看运行模式
cat /sys/devices/system/cpu/cpufreq/policy6/scaling_available_governors
interactive conservative ondemand userspace powersave performance schedutil
# 设置为用户空间模式
echo userspace > /sys/devices/system/cpu/cpufreq/policy6/scaling_governor
# 设置为2016000
echo 2016000 > /sys/devices/system/cpu/cpufreq/policy6/scaling_setspeed
# 查看是否设置成功
cat /sys/devices/system/cpu/cpufreq/policy6/cpuinfo_cur_freq
四、GPU
4.1 GPU节点
ls /sys/class/devfreq/fb000000.gpu/
available_frequencies available_governors cur_freq device governor load max_freq min_freq name polling_interval power subsystem target_freq timer trans_stat uevent
4.2 调节
# 查看支持的频率
cat /sys/class/devfreq/fb000000.gpu/available_frequencies
850000000 700000000 600000000 500000000 400000000 300000000
# 查看运行模式
cat /sys/class/devfreq/fb000000.gpu/available_governors
rknpu_ondemand dmc_ondemand userspace powersave performance simple_ondemand
# 设置为用户空间模式
echo userspace > /sys/class/devfreq/fb000000.gpu/governor
# 设置为850000000
echo 850000000 > /sys/class/devfreq/fb000000.gpu/userspace/set_freq
# 查看是否设置成功
cat /sys/class/devfreq/fb000000.gpu/cur_freq
# 查看负载
cat /sys/class/devfreq/fb000000.gpu/load
五、NPU
5.1 节点
ls /sys/class/devfreq/fdab0000.npu/
available_frequencies available_governors cur_freq device governor load max_freq min_freq name polling_interval power subsystem target_freq timer trans_stat uevent
5.2 调节
# 查看支持的频率
cat /sys/class/devfreq/fdab0000.npu/available_frequencies
300000000 400000000 500000000 600000000 700000000 800000000 950000000
# 查看运行模式
cat /sys/class/devfreq/fdab0000.npu/available_governors
rknpu_ondemand dmc_ondemand userspace powersave performance simple_ondemand
# 设置为用户空间模式
echo userspace > /sys/class/devfreq/fdab0000.npu/governor
# 设置为950000000
echo 950000000 > /sys/class/devfreq/fdab0000.npu/userspace/set_freq
# 查看是否设置成功
cat /sys/class/devfreq/fdab0000.npu/cur_freq
# 查看负载
cat /sys/kernel/debug/rknpu/load
六、DDR
6.1 节点
ls /sys/class/devfreq/dmc/
available_frequencies available_governors cur_freq device downdifferential governor load max_freq min_freq name polling_interval power subsystem system_status target_freq timer trans_stat uevent upthreshold
6.2 调节
# 查看支持的频率
cat /sys/class/devfreq/dmc/available_frequencies
528000000 1068000000 1560000000 2112000000
# 查看运行模式
cat /sys/class/devfreq/dmc/available_governors
rknpu_ondemand dmc_ondemand userspace powersave performance simple_ondemand
# 设置为用户空间模式
echo userspace > /sys/class/devfreq/dmc/governor
# 设置为2112000000
echo 2112000000 > /sys/class/devfreq/dmc/userspace/set_freq
# 查看是否设置成功
cat /sys/class/devfreq/dmc/cur_freq
# 查看负载
cat /sys/class/devfreq/dmc/load
七、快速配置
echo performance > /sys/devices/system/cpu/cpufreq/policy0/scaling_governor
echo performance > /sys/devices/system/cpu/cpufreq/policy4/scaling_governor
echo performance > /sys/devices/system/cpu/cpufreq/policy6/scaling_governor
echo performance > sys/class/devfreq/fb000000.gpu/governor
echo performance > /sys/class/devfreq/dmc/governor
echo performance > /sys/class/devfreq/fdab0000.npu/governor
echo powersave > /sys/devices/system/cpu/cpufreq/policy0/scaling_governor
echo powersave > /sys/devices/system/cpu/cpufreq/policy4/scaling_governor
echo powersave > /sys/devices/system/cpu/cpufreq/policy6/scaling_governor
echo powersave > sys/class/devfreq/fb000000.gpu/governor
echo powersave > /sys/class/devfreq/dmc/governor
echo powersave > /sys/class/devfreq/fdab0000.npu/governor
Comments | NOTHING