mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2026-02-28 02:01:50 +00:00
Refactor ATCSMU (System Management Unit) support by moving it from a system utility into a dedicated FDT-based HSM driver. Key changes include: - Moving the functions in lib/utils/sys/atcsmu.c into the new HSM driver - Moving hart start and stop operations on AE350 platform into the new HSM driver - Converting the assembly-based functions in sleep.S to C code for the readability - Updating the ATCWDT200 driver Signed-off-by: Ben Zong-You Xie <ben717@andestech.com> Signed-off-by: Leo Yu-Chi Liang <ycliang@andestech.com> Link: https://lore.kernel.org/r/20251229071914.1451587-2-ben717@andestech.com Signed-off-by: Anup Patel <anup@brainfault.org>
14 lines
494 B
Makefile
14 lines
494 B
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
|
|
carray-platform_override_modules-$(CONFIG_PLATFORM_ANDES_AE350) += andes_ae350
|
|
platform-objs-$(CONFIG_PLATFORM_ANDES_AE350) += andes/ae350.o
|
|
|
|
carray-platform_override_modules-$(CONFIG_PLATFORM_ANDES_QILAI) += andes_qilai
|
|
platform-objs-$(CONFIG_PLATFORM_ANDES_QILAI) += andes/qilai.o
|
|
|
|
platform-objs-$(CONFIG_ANDES_PMA) += andes/andes_pma.o
|
|
platform-objs-$(CONFIG_ANDES_SBI) += andes/andes_sbi.o
|
|
platform-objs-$(CONFIG_ANDES_PMU) += andes/andes_pmu.o
|