Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. if ARCH_ROCKCHIP || COMPILE_TEST
  3. #
  4. # Rockchip Soc drivers
  5. #
  6. config ROCKCHIP_GRF
  7. bool "Rockchip General Register Files support" if COMPILE_TEST
  8. default y if ARCH_ROCKCHIP
  9. help
  10. The General Register Files are a central component providing
  11. special additional settings registers for a lot of soc-components.
  12. In a lot of cases there also need to be default settings initialized
  13. to make some of them conform to expectations of the kernel.
  14. config ROCKCHIP_IODOMAIN
  15. tristate "Rockchip IO domain support"
  16. depends on OF
  17. help
  18. Say y here to enable support io domains on Rockchip SoCs. It is
  19. necessary for the io domain setting of the SoC to match the
  20. voltage supplied by the regulators.
  21. config ROCKCHIP_PM_DOMAINS
  22. bool "Rockchip generic power domain"
  23. depends on PM
  24. select PM_GENERIC_DOMAINS
  25. help
  26. Say y here to enable power domain support.
  27. In order to meet high performance and low power requirements, a power
  28. management unit is designed or saving power when RK3288 in low power
  29. mode. The RK3288 PMU is dedicated for managing the power of the whole chip.
  30. If unsure, say N.
  31. config ROCKCHIP_DTPM
  32. tristate "Rockchip DTPM hierarchy"
  33. depends on DTPM && m
  34. help
  35. Describe the hierarchy for the Dynamic Thermal Power Management tree
  36. on this platform. That will create all the power capping capable
  37. devices.
  38. endif