Currently, some soc subdirectories contains Kconfig.defconfig.<soc-name>
and Kconfig.defconfig. However:
- Kconfig.defconfig.<soc-name> is included unconditionally by
Kconfig.defconfig
- each subdirectory only contains one SoC
So, it does not make sense to keep these two files.
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
20 lines
360 B
Plaintext
20 lines
360 B
Plaintext
# Silicon Labs EFR32BG22 (Blue Gecko) MCU configuration options
|
|
|
|
# Copyright (c) 2021 Sateesh Kotapati
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_SERIES_EFR32BG22
|
|
|
|
config NUM_IRQS
|
|
# must be >= the highest interrupt number used
|
|
default 60
|
|
|
|
config PM
|
|
select COUNTER
|
|
select UART_INTERRUPT_DRIVEN
|
|
|
|
config GPIO_GECKO
|
|
default y
|
|
|
|
endif # SOC_SERIES_EFR32BG22
|