1# Beetle MCU clock control driver config
2
3# Copyright (c) 2016 Linaro Limited.
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_FAMILY_ARM
7
8menuconfig CLOCK_CONTROL_BEETLE
9	bool "BEETLE Clock Control"
10	default y
11	depends on DT_HAS_ARM_BEETLE_SYSCON_ENABLED
12	help
13	  Enable driver for Reset & Clock Control subsystem found
14	  in STM32F4 family of MCUs
15
16if CLOCK_CONTROL_BEETLE
17
18config CLOCK_CONTROL_BEETLE_ENABLE_PLL
19	bool "PLL on Beetle"
20	depends on SOC_SERIES_BEETLE
21	help
22	  Enable PLL on Beetle.
23
24	  Select n if not sure.
25
26endif # CLOCK_CONTROL_BEETLE
27
28endif # SOC_FAMILY_ARM
29