1config CLK_STM32F
2	bool "Enable clock driver support for STM32F family"
3	depends on CLK && (STM32F7 || STM32F4)
4	default y
5	help
6	  This clock driver adds support for RCC clock management
7	  for STM32F4 and STM32F7 SoCs.
8
9config CLK_STM32H7
10	bool "Enable clock driver support for STM32H7 family"
11	depends on CLK && STM32H7
12	default y
13	help
14	  This clock driver adds support for RCC clock management
15	  for STM32H7 SoCs.
16
17config CLK_STM32_CORE
18	bool "Enable RCC clock core driver for STM32MP"
19	depends on ARCH_STM32MP && CLK
20	select CLK_CCF
21	select CLK_COMPOSITE_CCF
22
23config CLK_STM32MP1
24	bool "Enable RCC clock driver for STM32MP15"
25	depends on ARCH_STM32MP && CLK
26	default y if STM32MP15x
27	help
28	  Enable the STM32 clock (RCC) driver. Enable support for
29	  manipulating STM32MP15's on-SoC clocks.
30
31config CLK_STM32MP13
32	bool "Enable RCC clock driver for STM32MP13"
33	depends on ARCH_STM32MP && CLK
34	default y if STM32MP13x
35	select CLK_STM32_CORE
36	help
37	  Enable the STM32 clock (RCC) driver. Enable support for
38	  manipulating STM32MP13's on-SoC clocks.
39