1234567891011121314151617181920212223242526272829 |
- menuconfig DVFS
- bool
- prompt "support DVFS"
- default n
- select DVFS_DYNAMIC_LEVEL
- help
- Enable support for dynamic voltage and frequency scaling.
- if DVFS
- config ACTS_DVFS_DYNAMIC_LEVEL
- bool "support dynamic DVFS level"
- depends on DVFS
- default n
- help
- Support dynamic DVFS level
- endif
|