Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. menu "Power Domain Support"
  2. config POWER_DOMAIN
  3. bool "Enable power domain support using Driver Model"
  4. depends on DM && OF_CONTROL
  5. help
  6. Enable support for the power domain driver class. Many SoCs allow
  7. power to be applied to or removed from portions of the SoC (power
  8. domains). This may be used to save power. This API provides the
  9. means to control such power management hardware.
  10. config BCM6328_POWER_DOMAIN
  11. bool "Enable the BCM6328 power domain driver"
  12. depends on POWER_DOMAIN && ARCH_BMIPS
  13. help
  14. Enable support for manipulating BCM6345 power domains via MMIO
  15. mapped registers.
  16. config SANDBOX_POWER_DOMAIN
  17. bool "Enable the sandbox power domain test driver"
  18. depends on POWER_DOMAIN && SANDBOX
  19. help
  20. Enable support for a test power domain driver implementation, which
  21. simply accepts requests to power on/off various HW modules without
  22. actually doing anything beyond a little error checking.
  23. config TEGRA186_POWER_DOMAIN
  24. bool "Enable Tegra186 BPMP-based power domain driver"
  25. depends on TEGRA186_BPMP
  26. help
  27. Enable support for manipulating Tegra's on-SoC power domains via IPC
  28. requests to the BPMP (Boot and Power Management Processor).
  29. endmenu