Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menu "Qualcomm PM Domains"
  3. config QCOM_CPR
  4. tristate "QCOM Core Power Reduction (CPR) support"
  5. depends on ARCH_QCOM && HAS_IOMEM
  6. select PM_OPP
  7. select REGMAP
  8. help
  9. Say Y here to enable support for the CPR hardware found on Qualcomm
  10. SoCs like QCS404.
  11. This driver populates CPU OPPs tables and makes adjustments to the
  12. tables based on feedback from the CPR hardware. If you want to do
  13. CPUfrequency scaling say Y here.
  14. To compile this driver as a module, choose M here: the module will
  15. be called qcom-cpr
  16. config QCOM_RPMHPD
  17. tristate "Qualcomm RPMh Power domain driver"
  18. depends on QCOM_RPMH && QCOM_COMMAND_DB
  19. help
  20. QCOM RPMh Power domain driver to support power-domains with
  21. performance states. The driver communicates a performance state
  22. value to RPMh which then translates it into corresponding voltage
  23. for the voltage rail.
  24. config QCOM_RPMPD
  25. tristate "Qualcomm RPM Power domain driver"
  26. depends on PM && OF
  27. depends on QCOM_SMD_RPM
  28. select PM_GENERIC_DOMAINS
  29. select PM_GENERIC_DOMAINS_OF
  30. help
  31. QCOM RPM Power domain driver to support power-domains with
  32. performance states. The driver communicates a performance state
  33. value to RPM which then translates it into corresponding voltage
  34. for the voltage rail.
  35. endmenu