Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
Note: File does not exist in v3.1.
 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 y
 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 y
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 y
25	help
26	  Support for stm32mp15x SoC family clocks.
27
28endif
29