Kconfig 744 B

12345678910111213141516171819202122
  1. menu "MTK CPU boost mechanism"
  2. config MTK_DYNAMIC_BOOST
  3. bool "Enable a boost interface"
  4. default n
  5. help
  6. Provide an interface to boost cpu hotplug and dvfs for performance
  7. improvement. This is target to kernel modules by event. The boost
  8. can support both one-time event and continuous boost. It can cover
  9. both HMP and SMP platform.
  10. config TOUCH_BOOST
  11. bool "Enable touch boost"
  12. depends on MTK_DYNAMIC_BOOST
  13. default n
  14. help
  15. This option enables touch boost. It is implemented by registering an
  16. input event handler. Once dynamic_boost driver receives an input event,
  17. it will hotplug on 2 LITTLE cores and set max frequency. Touch boost is
  18. a one-time boost mechanism.
  19. endmenu