1# Microchip MEC172x MCU core series
2
3# Copyright (c) 2021 Microchip Technology Inc.
4# SPDX-License-Identifier: Apache-2.0
5
6config SOC_SERIES_MEC172X
7	bool
8	select SOC_FAMILY_MICROCHIP_MEC
9	help
10	  Enable support for Microchip MEC Cortex-M4F MCU series
11
12config SOC_SERIES
13	default "mec172x" if SOC_SERIES_MEC172X
14
15config SOC_MEC172X_NSZ
16	bool
17	select SOC_SERIES_MEC172X
18
19config SOC_MEC172X_NLJ
20	bool
21	select SOC_SERIES_MEC172X
22
23config SOC
24	default "mec172x_nsz" if SOC_MEC172X_NSZ
25	default "mec172x_nlj" if SOC_MEC172X_NLJ
26