mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-10-09 10:02:19 +01:00

Extend generic platform to support Andes QiLai SoC. Signed-off-by: Ben Zong-You Xie <ben717@andestech.com> Reviewed-by: Anup Patel <anup@brainfault.org> Link: https://lore.kernel.org/r/20250814104024.3374698-1-ben717@andestech.com Signed-off-by: Anup Patel <anup@brainfault.org>
14 lines
508 B
Makefile
14 lines
508 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 andes/sleep.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
|