soc: arm: add support for nuvoton numicro m48x series

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>
This commit is contained in:
Saravanan Sekar 2020-04-15 10:04:50 +02:00 committed by Carles Cufí
commit 4a5a165e0c
17 changed files with 277 additions and 0 deletions

20
modules/Kconfig.nuvoton Normal file
View file

@ -0,0 +1,20 @@
# SPDX-License-Identifier: Apache-2.0
#
# Copyright (c) 2020 Linumiz
# Author: Saravanan Sekar <saravanan@linumiz.com>
config HAS_NUMICRO_HAL
bool
select HAS_CMSIS_CORE
depends on SOC_FAMILY_NUMICRO
menu "Nuvoton drivers"
depends on HAS_NUMICRO_HAL
config HAS_NUMICRO_UART
bool
help
Enable Nuvoton Universal asynchronous receiver transmitter HAL
module driver
endmenu