mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 17:17:04 +00:00
Add initial support for nuvoton numicro m48x SoC series, basic init and uart functionality are covered with gpio and clock directly relies on HAL. Signed-off-by: Saravanan Sekar <saravanan@linumiz.com>
18 lines
319 B
Plaintext
18 lines
319 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (c) 2020 Linumiz
|
|
# Author: Saravanan Sekar <saravanan@linumiz.com>
|
|
|
|
config SOC_FAMILY_NUMICRO
|
|
select PLATFORM_SPECIFIC_INIT
|
|
bool
|
|
|
|
if SOC_FAMILY_NUMICRO
|
|
config SOC_FAMILY
|
|
string
|
|
default "nuvoton"
|
|
|
|
source "soc/arm/nuvoton/*/Kconfig.soc"
|
|
|
|
endif # SOC_FAMILY_NUMICRO
|