1# Nuvoton Cortex-M4 Embedded Controller NPCX9 series
2
3# Copyright (c) 2021 Nuvoton Technology Corporation.
4# SPDX-License-Identifier: Apache-2.0
5
6config SOC_SERIES_NPCX9
7	bool
8	select SOC_FAMILY_NPCX
9	help
10	  Enable support for Nuvoton NPCX9 series
11
12config SOC_NPCX9M3F
13	bool
14	select SOC_SERIES_NPCX9
15	help
16	  NPCX9M3F
17
18config SOC_NPCX9M6F
19	bool
20	select SOC_SERIES_NPCX9
21	help
22	  NPCX9M6F
23
24config SOC_NPCX9M7F
25	bool
26	select SOC_SERIES_NPCX9
27	help
28	  NPCX9M7F
29
30config SOC_NPCX9M7FB
31	bool
32	select SOC_SERIES_NPCX9
33	help
34	  NPCX9M7FB
35
36config SOC_NPCX9MFP
37	bool
38	select SOC_SERIES_NPCX9
39	help
40	  NPCX9MFP
41
42config SOC_SERIES
43	default "npcx9" if SOC_SERIES_NPCX9
44
45config SOC
46	default "npcx9m3f" if SOC_NPCX9M3F
47	default "npcx9m6f" if SOC_NPCX9M6F
48	default "npcx9m7f" if SOC_NPCX9M7F
49	default "npcx9m7fb" if SOC_NPCX9M7FB
50	default "npcx9mfp" if SOC_NPCX9MFP
51