1# Silicon Labs Gecko Counter driver config 2 3# Copyright (c) 2019, Piotr Mienkowski 4# SPDX-License-Identifier: Apache-2.0 5 6config COUNTER_GECKO_RTCC 7 bool "Silicon Labs Gecko Counter (RTCC) driver" 8 default y 9 depends on DT_HAS_SILABS_GECKO_RTCC_ENABLED 10 select SOC_GECKO_CMU 11 select SOC_GECKO_RTCC 12 help 13 Enable counter driver based on RTCC module for Silicon Labs Gecko 14 chips. 15 16config COUNTER_GECKO_STIMER 17 bool "Silicon Labs Gecko Counter Sleep Timer driver" 18 default y 19 depends on DT_HAS_SILABS_GECKO_STIMER_ENABLED 20 select SOC_GECKO_RTCC 21 select SOC_GECKO_PRS 22 help 23 Enable the counter driver for Sleep Timer module for Silicon Labs 24 Gecko chips. 25