From patchwork Thu Apr 16 15:09:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bin Meng X-Patchwork-Id: 237837 List-Id: U-Boot discussion From: bmeng.cn at gmail.com (Bin Meng) Date: Thu, 16 Apr 2020 08:09:33 -0700 Subject: [PATCH v2 6/6] riscv: Make SBI v0.2 the default SBI version In-Reply-To: <1587049773-1464-1-git-send-email-bmeng.cn@gmail.com> References: <1587049773-1464-1-git-send-email-bmeng.cn@gmail.com> Message-ID: <1587049773-1464-7-git-send-email-bmeng.cn@gmail.com> To work with latest OpenSBI release (v0.7 or above) that has the HSM extension support, select the SBI v0.2 support by default. Signed-off-by: Bin Meng Reviewed-by: Atish Patra --- Changes in v2: - drop patch: "riscv: Remove CONFIG_IS_ENABLED(SMP) in global data" arch/riscv/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig index c729871..fb5fe5a 100644 --- a/arch/riscv/Kconfig +++ b/arch/riscv/Kconfig @@ -228,7 +228,7 @@ config SBI choice prompt "SBI support" - default SBI_V01 + default SBI_V02 config SBI_V01 bool "SBI v0.1 support"