mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-11-22 19:01:33 +00:00
Add code to bring up all 8 cores during OpenSBI initialization so that the Linux kernel can detect and use all cores properly. Co-authored-by: Troy Mitchell <troy.mitchell@linux.spacemit.com> Signed-off-by: Troy Mitchell <troy.mitchell@linux.spacemit.com> Signed-off-by: Xianbin Zhu <xianbin.zhu@linux.spacemit.com> Reviewed-by: Anup Patel <anup@brainfault.org> Link: https://lore.kernel.org/r/20250925-smt-k1-8-cores-v3-2-0885a8a70f8e@linux.spacemit.com Signed-off-by: Anup Patel <anup@brainfault.org>
24 lines
336 B
Plaintext
24 lines
336 B
Plaintext
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
menu "HSM Device Support"
|
|
|
|
config FDT_HSM
|
|
bool "FDT based HSM drivers"
|
|
depends on FDT
|
|
default n
|
|
|
|
if FDT_HSM
|
|
|
|
config FDT_HSM_RPMI
|
|
bool "FDT RPMI HSM driver"
|
|
depends on FDT_MAILBOX && RPMI_MAILBOX
|
|
default n
|
|
|
|
config FDT_HSM_SPACEMIT
|
|
bool "FDT SPACEMIT HSM driver"
|
|
default n
|
|
|
|
endif
|
|
|
|
endmenu
|