1# Nuvoton Cortex-M4 Embedded Controller NPCX7 series 2 3# Copyright (c) 2020 Nuvoton Technology Corporation. 4# SPDX-License-Identifier: Apache-2.0 5 6config SOC_SERIES_NPCX7 7 bool 8 select SOC_FAMILY_NPCX 9 help 10 Enable support for Nuvoton NPCX7 series 11 12config SOC_NPCX7M6FB 13 bool 14 select SOC_SERIES_NPCX7 15 help 16 NPCX7M6FB 17 18config SOC_NPCX7M6FC 19 bool 20 select SOC_SERIES_NPCX7 21 help 22 NPCX7M6FC 23 24config SOC_NPCX7M7FC 25 bool 26 select SOC_SERIES_NPCX7 27 help 28 NPCX7M7FC 29 30config SOC_SERIES 31 default "npcx7" if SOC_SERIES_NPCX7 32 33config SOC 34 default "npcx7m6fb" if SOC_NPCX7M6FB 35 default "npcx7m6fc" if SOC_NPCX7M6FC 36 default "npcx7m7fc" if SOC_NPCX7M7FC 37