Kconfig 699 B

12345678910111213141516171819202122232425262728
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config CLK_ACTIONS
  3. bool "Clock driver for Actions Semi SoCs"
  4. depends on ARCH_ACTIONS || COMPILE_TEST
  5. select REGMAP_MMIO
  6. select RESET_CONTROLLER
  7. default ARCH_ACTIONS
  8. if CLK_ACTIONS
  9. # SoC Drivers
  10. config CLK_OWL_S500
  11. bool "Support for the Actions Semi OWL S500 clocks"
  12. depends on ARCH_ACTIONS || COMPILE_TEST
  13. default ARCH_ACTIONS
  14. config CLK_OWL_S700
  15. bool "Support for the Actions Semi OWL S700 clocks"
  16. depends on (ARM64 && ARCH_ACTIONS) || COMPILE_TEST
  17. default ARM64 && ARCH_ACTIONS
  18. config CLK_OWL_S900
  19. bool "Support for the Actions Semi OWL S900 clocks"
  20. depends on (ARM64 && ARCH_ACTIONS) || COMPILE_TEST
  21. default ARM64 && ARCH_ACTIONS
  22. endif