mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
doc: document sbi command
Add a man-page for the sbi command. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
69d29fe1c0
commit
9c6d050966
3 changed files with 51 additions and 0 deletions
|
@ -951,6 +951,7 @@ S: Maintained
|
||||||
T: git https://gitlab.denx.de/u-boot/custodians/u-boot-riscv.git
|
T: git https://gitlab.denx.de/u-boot/custodians/u-boot-riscv.git
|
||||||
F: arch/riscv/
|
F: arch/riscv/
|
||||||
F: cmd/riscv/
|
F: cmd/riscv/
|
||||||
|
F: doc/usage/sbi.rst
|
||||||
F: drivers/timer/andes_plmt_timer.c
|
F: drivers/timer/andes_plmt_timer.c
|
||||||
F: drivers/timer/sifive_clint_timer.c
|
F: drivers/timer/sifive_clint_timer.c
|
||||||
F: tools/prelink-riscv.c
|
F: tools/prelink-riscv.c
|
||||||
|
|
|
@ -19,3 +19,4 @@ Shell commands
|
||||||
button
|
button
|
||||||
mbr
|
mbr
|
||||||
pstore
|
pstore
|
||||||
|
sbi
|
||||||
|
|
49
doc/usage/sbi.rst
Normal file
49
doc/usage/sbi.rst
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
.. SPDX-License-Identifier: GPL-2.0+
|
||||||
|
|
||||||
|
sbi command
|
||||||
|
===========
|
||||||
|
|
||||||
|
Synopsis
|
||||||
|
--------
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
sbi
|
||||||
|
|
||||||
|
Description
|
||||||
|
-----------
|
||||||
|
|
||||||
|
The sbi command is used to display information about the SBI (Supervisor Binary
|
||||||
|
Interface) implementation on RISC-V systems.
|
||||||
|
|
||||||
|
The output may 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 first line indicates the version of the RISC-V SBI specification.
|
||||||
|
The second line indicates the implementation.
|
||||||
|
The further lines enumerate the implemented extensions.
|
||||||
|
|
||||||
|
Configuration
|
||||||
|
-------------
|
||||||
|
|
||||||
|
To use the sbi command you must specify CONFIG_CMD_SBI=y.
|
Loading…
Reference in a new issue