Commit 402f3d24 authored by Sven Ginka's avatar Sven Ginka Committed by Carles Cufi
Browse files

soc: sensry: Add support for SY120-GBM and SY120-GEN1



Add soc support for Sensry's RISCV32 based SY1xx.
Variants of the soc are GBM and GEN1.

Signed-off-by: default avatarSven Ginka <s.ginka@sensry.de>
parent ec08e1c0
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
# Copyright (c) 2024 sensry.io
# SPDX-License-Identifier: Apache-2.0

include: riscv,cpus.yaml

description: Sensry Ganymed SY1xx Core CPU

compatible: "sensry,sy1xx"
+1 −0
Original line number Diff line number Diff line
@@ -588,6 +588,7 @@ seirobotics Shenzhen SEI Robotics Co., Ltd
semtech	Semtech Corporation
sensirion	Sensirion AG
sensortek	Sensortek Technology Corporation
sensry	sensry.io
sff	Small Form Factor Committee
sgd	Solomon Goldentek Display Corporation
sgmicro	SG Micro Corp
+6 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2024 sensry.io

zephyr_include_directories(${SOC_FAMILY}/${SOC_SERIES}/common)

add_subdirectory_ifdef(CONFIG_SOC_SERIES_SY1XX ganymed/sy1xx)

soc/sensry/Kconfig

0 → 100644
+8 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2024 sensry.io

if SOC_FAMILY_GANYMED

rsource "*/Kconfig"

endif # SOC_FAMILY_GANYMED
+8 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2024 sensry.io

if SOC_FAMILY_GANYMED

rsource "*/Kconfig.defconfig"

endif
Loading