Kconfig 965 B

123456789101112131415161718192021222324252627282930
  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_PM_DOMAINS
  15. bool "Rockchip generic power domain"
  16. depends on PM
  17. select PM_GENERIC_DOMAINS
  18. help
  19. Say y here to enable power domain support.
  20. In order to meet high performance and low power requirements, a power
  21. management unit is designed or saving power when RK3288 in low power
  22. mode. The RK3288 PMU is dedicated for managing the power of the whole chip.
  23. If unsure, say N.
  24. endif