1# Copyright (c) 2017-2021 Linaro Limited 2# Copyright 2024 Arm Limited and/or its affiliates <open-source-office@arm.com> 3# SPDX-License-Identifier: Apache-2.0 4 5config SOC_SERIES_MPS3 6 bool 7 select SOC_FAMILY_ARM 8 help 9 Enable support for ARM MPS3 MCU Series 10 11config SOC_SERIES 12 default "mps3" if SOC_SERIES_MPS3 13 14config SOC_MPS3_CORSTONE300 15 bool 16 select SOC_SERIES_MPS3 17 18config SOC_MPS3_CORSTONE310 19 bool 20 select SOC_SERIES_MPS3 21 22config SOC 23 default "corstone300" if SOC_MPS3_CORSTONE300 24 default "corstone310" if SOC_MPS3_CORSTONE310 25