Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 ARCH_STM32
  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 ARCH_STM32
  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 ARCH_STM32
  21. help
  22. Support for stm32mp15x SoC family clocks.
  23. config COMMON_CLK_STM32MP215
  24. bool "Clock driver for stm32mp21x clocks"
  25. depends on ARM || ARM64 || COMPILE_TEST
  26. default y
  27. help
  28. Support for stm32mp21x SoC family clocks
  29. config COMMON_CLK_STM32MP257
  30. bool "Clock driver for stm32mp25x clocks"
  31. depends on ARM64 || COMPILE_TEST
  32. default ARCH_STM32
  33. help
  34. Support for stm32mp25x SoC family clocks.
  35. endif