Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2# common clock support for STMicroelectronics SoC family.
3
4menuconfig COMMON_CLK_STM32MP
5 bool "Clock support for common STM32MP clocks"
6 depends on ARCH_STM32 || COMPILE_TEST
7 default ARCH_STM32
8 select RESET_CONTROLLER
9 help
10 Support for STM32MP SoC family clocks.
11
12if COMMON_CLK_STM32MP
13
14config COMMON_CLK_STM32MP135
15 bool "Clock driver for stm32mp13x clocks"
16 depends on ARM || COMPILE_TEST
17 default ARCH_STM32
18 help
19 Support for stm32mp13x SoC family clocks.
20
21config COMMON_CLK_STM32MP157
22 bool "Clock driver for stm32mp15x clocks"
23 depends on ARM || COMPILE_TEST
24 default ARCH_STM32
25 help
26 Support for stm32mp15x SoC family clocks.
27
28config COMMON_CLK_STM32MP215
29 bool "Clock driver for stm32mp21x clocks"
30 depends on ARM || ARM64 || COMPILE_TEST
31 default y
32 help
33 Support for stm32mp21x SoC family clocks
34
35config COMMON_CLK_STM32MP257
36 bool "Clock driver for stm32mp25x clocks"
37 depends on ARM64 || COMPILE_TEST
38 default ARCH_STM32
39 help
40 Support for stm32mp25x SoC family clocks.
41
42endif
43