mirror of
https://github.com/apache/nuttx.git
synced 2026-08-16 01:43:15 +00:00
It's better not to use global governor, as modifying one device will cause all devices' governor to be modified. Signed-off-by: guanyi3 <guanyi3@xiaomi.com>
30 lines
581 B
Text
30 lines
581 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config DEVFREQ
|
|
bool "devfreq"
|
|
default n
|
|
---help---
|
|
devfreq framework, dynamic voltage frequency scaling(DVFS)
|
|
for device
|
|
|
|
if DEVFREQ
|
|
|
|
config DEVFREQ_PROCFS
|
|
bool "devfreq_procfs"
|
|
default n
|
|
depends on FS_PROCFS
|
|
select FS_PROCFS_REGISTER
|
|
---help---
|
|
devfreq procfs support
|
|
|
|
config DEVFREQ_PROCFS_QOS
|
|
bool "devfreq_procfs_qos"
|
|
default n
|
|
depends on DEVFREQ_PROCFS
|
|
---help---
|
|
devfreq procfs show qos requests and their callers
|
|
|
|
endif
|