mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

Instead of hard-coding the list of extensions in C code, use carray to generate the list of extensions. Using carray makes adding and removing extensions slightly cleaner. This also paves the way for using Kconfig to disable unneeded extensions. Signed-off-by: Vivian Wang <dramforever@live.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Anup Patel <anup@brainfault.org>
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
#
|
|
# Authors:
|
|
# Anup Patel <anup.patel@wdc.com>
|
|
#
|
|
|
|
libsbi-objs-y += riscv_asm.o
|
|
libsbi-objs-y += riscv_atomic.o
|
|
libsbi-objs-y += riscv_hardfp.o
|
|
libsbi-objs-y += riscv_locks.o
|
|
|
|
libsbi-objs-y += sbi_ecall.o
|
|
libsbi-objs-y += sbi_ecall_exts.o
|
|
|
|
# The order of below extensions is performance optimized
|
|
carray-sbi_ecall_exts-y += ecall_time
|
|
carray-sbi_ecall_exts-y += ecall_rfence
|
|
carray-sbi_ecall_exts-y += ecall_ipi
|
|
carray-sbi_ecall_exts-y += ecall_base
|
|
carray-sbi_ecall_exts-y += ecall_hsm
|
|
carray-sbi_ecall_exts-y += ecall_srst
|
|
carray-sbi_ecall_exts-y += ecall_pmu
|
|
carray-sbi_ecall_exts-y += ecall_legacy
|
|
carray-sbi_ecall_exts-y += ecall_vendor
|
|
|
|
libsbi-objs-y += sbi_ecall_base.o
|
|
libsbi-objs-y += sbi_ecall_hsm.o
|
|
libsbi-objs-y += sbi_ecall_legacy.o
|
|
libsbi-objs-y += sbi_ecall_pmu.o
|
|
libsbi-objs-y += sbi_ecall_replace.o
|
|
libsbi-objs-y += sbi_ecall_vendor.o
|
|
|
|
libsbi-objs-y += sbi_bitmap.o
|
|
libsbi-objs-y += sbi_bitops.o
|
|
libsbi-objs-y += sbi_console.o
|
|
libsbi-objs-y += sbi_domain.o
|
|
libsbi-objs-y += sbi_emulate_csr.o
|
|
libsbi-objs-y += sbi_fifo.o
|
|
libsbi-objs-y += sbi_hart.o
|
|
libsbi-objs-y += sbi_math.o
|
|
libsbi-objs-y += sbi_hfence.o
|
|
libsbi-objs-y += sbi_hsm.o
|
|
libsbi-objs-y += sbi_illegal_insn.o
|
|
libsbi-objs-y += sbi_init.o
|
|
libsbi-objs-y += sbi_ipi.o
|
|
libsbi-objs-y += sbi_irqchip.o
|
|
libsbi-objs-y += sbi_misaligned_ldst.o
|
|
libsbi-objs-y += sbi_platform.o
|
|
libsbi-objs-y += sbi_pmu.o
|
|
libsbi-objs-y += sbi_scratch.o
|
|
libsbi-objs-y += sbi_string.o
|
|
libsbi-objs-y += sbi_system.o
|
|
libsbi-objs-y += sbi_timer.o
|
|
libsbi-objs-y += sbi_tlb.o
|
|
libsbi-objs-y += sbi_trap.o
|
|
libsbi-objs-y += sbi_unpriv.o
|
|
libsbi-objs-y += sbi_expected_trap.o
|