1# Copyright (c) 2024 Silicon Laboratories Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4DT_CHOSEN_SILABS_SLEEPTIMER := silabs,sleeptimer
5
6config SILABS_SLEEPTIMER_TIMER
7	bool "Silabs Sleeptimer system clock driver"
8	depends on SOC_FAMILY_SILABS_S2 || SOC_FAMILY_SILABS_SIWX91X
9	depends on $(dt_chosen_enabled,$(DT_CHOSEN_SILABS_SLEEPTIMER))
10	select SILABS_SISDK_SLEEPTIMER
11	select TICKLESS_CAPABLE
12	select TIMER_READS_ITS_FREQUENCY_AT_RUNTIME
13	help
14	  This module implements a kernel device driver for the sleeptimer
15	  and provides the standard "system clock driver" interfaces.
16