Skip to content

Commit

Permalink
cmd/sbi: user friendly short texts
Browse files Browse the repository at this point in the history
In the sbi command use the same short texts for the legacy extensions
as the SBI specification 1.0.0.

Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Rick Chen <[email protected]>
  • Loading branch information
xypron authored and Leo Yu-Chi Liang committed Oct 20, 2022
1 parent 72c1f5f commit f22db44
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cmd/riscv/sbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ static struct sbi_imp implementations[] = {
};

static struct sbi_ext extensions[] = {
{ SBI_EXT_0_1_SET_TIMER, "sbi_set_timer" },
{ SBI_EXT_0_1_CONSOLE_PUTCHAR, "sbi_console_putchar" },
{ SBI_EXT_0_1_CONSOLE_GETCHAR, "sbi_console_getchar" },
{ SBI_EXT_0_1_CLEAR_IPI, "sbi_clear_ipi" },
{ SBI_EXT_0_1_SEND_IPI, "sbi_send_ipi" },
{ SBI_EXT_0_1_REMOTE_FENCE_I, "sbi_remote_fence_i" },
{ SBI_EXT_0_1_REMOTE_SFENCE_VMA, "sbi_remote_sfence_vma" },
{ SBI_EXT_0_1_REMOTE_SFENCE_VMA_ASID, "sbi_remote_sfence_vma_asid" },
{ SBI_EXT_0_1_SHUTDOWN, "sbi_shutdown" },
{ SBI_EXT_0_1_SET_TIMER, "Set Timer" },
{ SBI_EXT_0_1_CONSOLE_PUTCHAR, "Console Putchar" },
{ SBI_EXT_0_1_CONSOLE_GETCHAR, "Console Getchar" },
{ SBI_EXT_0_1_CLEAR_IPI, "Clear IPI" },
{ SBI_EXT_0_1_SEND_IPI, "Send IPI" },
{ SBI_EXT_0_1_REMOTE_FENCE_I, "Remote FENCE.I" },
{ SBI_EXT_0_1_REMOTE_SFENCE_VMA, "Remote SFENCE.VMA" },
{ SBI_EXT_0_1_REMOTE_SFENCE_VMA_ASID, "Remote SFENCE.VMA with ASID" },
{ SBI_EXT_0_1_SHUTDOWN, "System Shutdown" },
{ SBI_EXT_BASE, "SBI Base Functionality" },
{ SBI_EXT_TIME, "Timer Extension" },
{ SBI_EXT_IPI, "IPI Extension" },
Expand Down

0 comments on commit f22db44

Please sign in to comment.