1# Copyright (c) 2017-2019 Linaro Limited
2# SPDX-License-Identifier: Apache-2.0
3
4config SOC_SERIES_MPS2
5	bool
6	select SOC_FAMILY_ARM
7	help
8	  Enable support for ARM MPS2 MCU Series
9
10config SOC_MPS2_AN385
11	bool
12	select SOC_SERIES_MPS2
13	help
14	  ARM Cortex-M3 SMM on V2M-MPS2 (Application Note AN385)
15
16config SOC_MPS2_AN521
17	bool
18	select SOC_SERIES_MPS2
19
20config SOC_MPS2_AN521_CPU0
21	bool
22	select SOC_MPS2_AN521
23	help
24	  ARM Cortex-M33 SMM-SSE-200 on V2M-MPS2+ (AN521) CPU0
25
26config SOC_MPS2_AN521_CPU1
27	bool
28	select SOC_MPS2_AN521
29	help
30	  ARM Cortex-M33 SMM-SSE-200 on V2M-MPS2+ (AN521) CPU1
31
32config SOC_SERIES
33	default "mps2" if SOC_SERIES_MPS2
34
35config SOC
36	default "an385" if SOC_MPS2_AN385
37	default "an521" if SOC_MPS2_AN521
38