soc: silabs: Default to sleeptimer for OS timer on Series 2

Disable BURTC timer in board defconfigs, as it's no longer used.

Signed-off-by: Aksel Skauge Mellbye <aksel.mellbye@silabs.com>
This commit is contained in:
Aksel Skauge Mellbye 2024-10-21 12:37:19 +02:00 committed by Carles Cufí
commit 51194bf03f
9 changed files with 9 additions and 26 deletions

View file

@ -9,4 +9,13 @@ config SYS_CLOCK_HW_CYCLES_PER_SEC
default $(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency) if CORTEX_M_SYSTICK
default 32768
config SYS_CLOCK_TICKS_PER_SEC
default 1024 if SILABS_SLEEPTIMER_TIMER || GECKO_BURTC_TIMER
config SILABS_SLEEPTIMER_TIMER
default y
config CORTEX_M_SYSTICK
default n if SILABS_SLEEPTIMER_TIMER || GECKO_BURTC_TIMER
endif