1# Copyright (c) 2018 Christian Taedcke
2# SPDX-License-Identifier: Apache-2.0
3
4config SOC_SERIES_EFM32PG1B
5	bool
6	select SOC_FAMILY_SILABS_S1
7	help
8	  Silicon Labs EFR32PG1B (Pearl Gecko) Series MCU
9
10config SOC_PART_NUMBER_EFM32PG1B200F256GM48
11	bool
12	select SOC_SERIES_EFM32PG1B
13
14config SOC_SERIES
15	default "efm32pg1b" if SOC_SERIES_EFM32PG1B
16
17config SOC
18	default "efm32pg1b200f256gm48" if SOC_PART_NUMBER_EFM32PG1B200F256GM48
19
20config SOC_PART_NUMBER
21	default "EFM32PG1B200F256GM48" if SOC_PART_NUMBER_EFM32PG1B200F256GM48
22