diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-08-20 19:43:39 +0200 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2020-08-25 09:34:47 +0800 |
commit | c92b50a44b95e706b9c0c97544bd7504fe6d36e9 (patch) | |
tree | abda21707d0a9aa1fbd1529ba89b9820dfb4eb4b /cmd/riscv/Makefile | |
parent | 27cef4e4a3ba791078534fda1dbeb814bd530ad5 (diff) | |
download | u-boot-c92b50a44b95e706b9c0c97544bd7504fe6d36e9.tar.gz u-boot-c92b50a44b95e706b9c0c97544bd7504fe6d36e9.tar.bz2 u-boot-c92b50a44b95e706b9c0c97544bd7504fe6d36e9.zip |
cmd: provide command sbi
Provide a command to display information about the SBI implementation.
The output might look like:
=> sbi
SBI 0.2
OpenSBI
Extensions:
sbi_set_timer
sbi_console_putchar
sbi_console_getchar
sbi_clear_ipi
sbi_send_ipi
sbi_remote_fence_i
sbi_remote_sfence_vma
sbi_remote_sfence_vma_asid
sbi_shutdown
SBI Base Functionality
Timer Extension
IPI Extension
RFENCE Extension
Hart State Management Extension
The command can be used to construct a unit test checking that the
communication with the SEE is working.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Reviewed-by: Bin Meng <bin.meng@windriver.com>
Tested-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Pragnesh Patel <pragnesh.patel@openfive.com>
Tested-by: Pragnesh Patel <pragnesh.patel@openfive.com>
Reviewed-by: Rick Chen <rick@andestech.com>
Tested-by: Rick Chen <rick@andestech.com>
Diffstat (limited to 'cmd/riscv/Makefile')
-rw-r--r-- | cmd/riscv/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/riscv/Makefile b/cmd/riscv/Makefile index 24df023ece..1e6ac364e3 100644 --- a/cmd/riscv/Makefile +++ b/cmd/riscv/Makefile @@ -1,3 +1,4 @@ # SPDX-License-Identifier: GPL-2.0+ obj-$(CONFIG_CMD_EXCEPTION) += exception.o +obj-$(CONFIG_CMD_SBI) += sbi.o |