1# SPDX-License-Identifier: Apache-2.0
2
3if SOC_FAMILY_EXX32
4
5source "soc/arm/silabs_exx32/*/Kconfig.defconfig.series"
6
7config SOC_GECKO_EMU
8	default y
9	select SOC_GECKO_CORE
10	depends on PM
11
12config CORTEX_M_SYSTICK
13	default n if GECKO_BURTC_TIMER
14
15# With sl_power_manager, pm_state_set()'s stack footrpting is noticeably
16# large, especially with logs enabled. Since it is called from IDLE task,
17# its stack size has to be increased
18config IDLE_STACK_SIZE
19	default 512 if SOC_GECKO_PM_BACKEND_PMGR
20
21endif
22