Kconfig 850 B

1234567891011121314151617181920212223242526272829
  1. if ARCH_ROCKCHIP || COMPILE_TEST
  2. #
  3. # Rockchip Soc drivers
  4. #
  5. config ROCKCHIP_GRF
  6. bool
  7. default y
  8. help
  9. The General Register Files are a central component providing
  10. special additional settings registers for a lot of soc-components.
  11. In a lot of cases there also need to be default settings initialized
  12. to make some of them conform to expectations of the kernel.
  13. config ROCKCHIP_PM_DOMAINS
  14. bool "Rockchip generic power domain"
  15. depends on PM
  16. select PM_GENERIC_DOMAINS
  17. help
  18. Say y here to enable power domain support.
  19. In order to meet high performance and low power requirements, a power
  20. management unit is designed or saving power when RK3288 in low power
  21. mode. The RK3288 PMU is dedicated for managing the power of the whole chip.
  22. If unsure, say N.
  23. endif