Kconfig 834 B

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. # common clock support for STMicroelectronics SoC family.
  3. menuconfig COMMON_CLK_STM32MP
  4. bool "Clock support for common STM32MP clocks"
  5. depends on ARCH_STM32 || COMPILE_TEST
  6. default y
  7. select RESET_CONTROLLER
  8. help
  9. Support for STM32MP SoC family clocks.
  10. if COMMON_CLK_STM32MP
  11. config COMMON_CLK_STM32MP135
  12. bool "Clock driver for stm32mp13x clocks"
  13. depends on ARM || COMPILE_TEST
  14. default y
  15. help
  16. Support for stm32mp13x SoC family clocks.
  17. config COMMON_CLK_STM32MP157
  18. bool "Clock driver for stm32mp15x clocks"
  19. depends on ARM || COMPILE_TEST
  20. default y
  21. help
  22. Support for stm32mp15x SoC family clocks.
  23. config COMMON_CLK_STM32MP257
  24. bool "Clock driver for stm32mp25x clocks"
  25. depends on ARM64 || COMPILE_TEST
  26. default y
  27. help
  28. Support for stm32mp25x SoC family clocks.
  29. endif