Kconfig 448 B

1234567891011121314151617181920212223242526272829
  1. # Kconfig - flash driver configuration options
  2. #
  3. # Copyright (c) 2016 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. #
  8. # flash driver
  9. #
  10. menuconfig DVFS
  11. bool
  12. prompt "support DVFS"
  13. default n
  14. select DVFS_DYNAMIC_LEVEL
  15. help
  16. Enable support for dynamic voltage and frequency scaling.
  17. if DVFS
  18. config ACTS_DVFS_DYNAMIC_LEVEL
  19. bool "support dynamic DVFS level"
  20. depends on DVFS
  21. default n
  22. help
  23. Support dynamic DVFS level
  24. endif