This commit simplifies Kconfig options related to handling SoC series, part numbers. This is a first step required to add remaining part numbers to the existing configuration. This change is possible since all SiLabs SoCs within a single series have a very uniform structure. Signed-off-by: Piotr Mienkowski <piotr.mienkowski@gmail.com>
19 lines
429 B
Text
19 lines
429 B
Text
# Kconfig - EFM32PG12B MCU line
|
|
#
|
|
# Copyright (c) 2018 Christian Taedcke
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config SOC_SERIES_EFM32PG12B
|
|
bool "EFM32PG12B Series MCU"
|
|
select HAS_SILABS_GECKO
|
|
select CPU_CORTEX_M4
|
|
select CPU_HAS_FPU
|
|
select SOC_FAMILY_EXX32
|
|
select SYS_POWER_LOW_POWER_STATE_SUPPORTED
|
|
select CPU_HAS_SYSTICK
|
|
select HAS_CMU
|
|
select SOC_GECKO_EMU
|
|
help
|
|
Enable support for EFM32 PearlGecko MCU series
|