# SPDX-FileCopyrightText: 2026 NXP
# SPDX-License-Identifier: Apache-2.0

menuconfig CLOCK_MONITOR
	bool "Clock Monitor drivers"
	help
	  Enable the clock monitor driver class. Individual back-end drivers
	  for specific clock monitoring peripherals are selected by their
	  own Kconfig symbols sourced below.

if CLOCK_MONITOR

config CLOCK_MONITOR_INIT_PRIORITY
	int "clock_monitor init priority"
	default KERNEL_INIT_PRIORITY_DEVICE
	help
	  Device init priority for clock_monitor back-end drivers.

module = CLOCK_MONITOR
module-str = clock_monitor
source "subsys/logging/Kconfig.template.log_config"

rsource "Kconfig.nxp_cmu_fc"
rsource "Kconfig.nxp_cmu_fm"
rsource "Kconfig.nxp_freqme"

endif # CLOCK_MONITOR
