|
发表于 2021-10-26 14:53:07
只看该作者
沙发
本帖最后由 junc23 于 2021-10-26 14:56 编辑
NPU频率设置(RK3566)
路径:/sys/devices/platform/fde40000.npu/devfreq/fde40000.npu
其他型号的开发板可以/sys/devices/platform/*.npu对应找到
- # cat available_frequencies
- 200000000 297000000 400000000 600000000 700000000 800000000 900000000
- # cat available_governors
- venc_ondemand userspace powersave performance simple_ondemand
- # cat governor
- userspace
- # cat userspace/set_freq
- undefined
复制代码- userspace:用户模式,编辑userspace/set_freq进行配置,只能是available_frequencies中列出的
- powersave:省电模式,固定工作在其支持的最低运行频率上
- performance:高效模式,固定工作在其支持的最高运行频率上
- ondemand:按需模式,有计算任务会立即达到最大频率运行,执行完毕就立即回到最低频率
- 修改governor为performance达到max_freq
- # echo performance > governor
- # cat governor
- performance
- # cat cur_freq
- 900000000
复制代码- 修改userspace/set_freq自定义cur_freq
- # echo userspace > governor
- # cat governor
- userspace
- # echo 800000000 > userspace/set_freq
- # cat userspace/set_freq
- 800000000
- # cat cur_freq
- 800000000
复制代码
|
|