zephyr/soc/silabs/Kconfig.defconfig
Reto Schneider e90c89d453 soc: silabs: Remove SOC_VENDOR_SILABS
Until now, the support for Silicon Labs SoCs is limited to the Gecko
families.

This commit allows upstreaming support for non-Gecko based SoCs produced
by Silicon Labs (i.e. SiM3U1xx).

Signed-off-by: Reto Schneider <reto.schneider@husqvarnagroup.com>
2024-06-10 15:15:34 -05:00

23 lines
568 B
Plaintext

# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2017 Christian Taedcke
rsource "*/*/Kconfig.defconfig"
if SOC_FAMILY_SILABS_S0 || SOC_FAMILY_SILABS_S1 || SOC_FAMILY_SILABS_S2
config SOC_GECKO_EMU
default y
select SOC_GECKO_CORE
depends on PM
config CORTEX_M_SYSTICK
default n if GECKO_BURTC_TIMER
# With sl_power_manager, pm_state_set()'s stack footrpting is noticeably
# large, especially with logs enabled. Since it is called from IDLE task,
# its stack size has to be increased
config IDLE_STACK_SIZE
default 512 if SOC_GECKO_PM_BACKEND_PMGR
endif