Kconfig 989 B

123456789101112131415161718192021222324252627282930313233
  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_DTPM
  22. tristate "Rockchip DTPM hierarchy"
  23. depends on DTPM && m
  24. help
  25. Describe the hierarchy for the Dynamic Thermal Power Management tree
  26. on this platform. That will create all the power capping capable
  27. devices.
  28. endif