1# Copyright (c) 2023 Andriy Gelman <andriy.gelman@gmail.com>
2# SPDX-License-Identifier: Apache-2.0
3
4config CLOCK_CONTROL_PWM
5	bool "Generic PWM clock"
6	default y
7	depends on DT_HAS_PWM_CLOCK_ENABLED
8	select PWM
9	help
10	  Enable generic PWM clock.
11
12config CLOCK_CONTROL_PWM_INIT_PRIORITY
13	int "Initialization priority of the pwm clock device"
14	default 51
15	depends on CLOCK_CONTROL_PWM
16	help
17	  Initialization priority of the PWM clock device. Must be
18	  lower priority than PWM.
19