blob: c4a9c840f30e87229ec4e6606f8648d3d037cd1c [file] [log] [blame]
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * The 'sbi' command displays information about the SBI implementation.
4 *
5 * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
6 */
7
8#include <common.h>
9#include <command.h>
10#include <asm/sbi.h>
11
Heinrich Schuchardt89f82672021-01-19 19:44:45 +000012struct sbi_imp {
13 const long id;
14 const char *name;
15};
16
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +020017struct sbi_ext {
18 const u32 id;
19 const char *name;
20};
21
Heinrich Schuchardt89f82672021-01-19 19:44:45 +000022static struct sbi_imp implementations[] = {
23 { 0, "Berkeley Boot Loader (BBL)" },
24 { 1, "OpenSBI" },
25 { 2, "Xvisor" },
26 { 3, "KVM" },
27 { 4, "RustSBI" },
28 { 5, "Diosix" },
29};
30
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +020031static struct sbi_ext extensions[] = {
Heinrich Schuchardtb36bc1c2021-09-12 21:11:45 +020032 { SBI_EXT_0_1_SET_TIMER, "sbi_set_timer" },
33 { SBI_EXT_0_1_CONSOLE_PUTCHAR, "sbi_console_putchar" },
34 { SBI_EXT_0_1_CONSOLE_GETCHAR, "sbi_console_getchar" },
35 { SBI_EXT_0_1_CLEAR_IPI, "sbi_clear_ipi" },
36 { SBI_EXT_0_1_SEND_IPI, "sbi_send_ipi" },
37 { SBI_EXT_0_1_REMOTE_FENCE_I, "sbi_remote_fence_i" },
38 { SBI_EXT_0_1_REMOTE_SFENCE_VMA, "sbi_remote_sfence_vma" },
39 { SBI_EXT_0_1_REMOTE_SFENCE_VMA_ASID, "sbi_remote_sfence_vma_asid" },
40 { SBI_EXT_0_1_SHUTDOWN, "sbi_shutdown" },
41 { SBI_EXT_BASE, "SBI Base Functionality" },
42 { SBI_EXT_TIME, "Timer Extension" },
43 { SBI_EXT_IPI, "IPI Extension" },
44 { SBI_EXT_RFENCE, "RFENCE Extension" },
45 { SBI_EXT_HSM, "Hart State Management Extension" },
46 { SBI_EXT_SRST, "System Reset Extension" },
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +020047};
48
49static int do_sbi(struct cmd_tbl *cmdtp, int flag, int argc,
50 char *const argv[])
51{
Heinrich Schuchardt96076742021-10-25 15:09:35 +020052 int i, impl_id;
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +020053 long ret;
54
55 ret = sbi_get_spec_version();
56 if (ret >= 0)
Heinrich Schuchardt96076742021-10-25 15:09:35 +020057 printf("SBI %ld.%ld", ret >> 24, ret & 0xffffff);
58 impl_id = sbi_get_impl_id();
59 if (impl_id >= 0) {
Heinrich Schuchardt89f82672021-01-19 19:44:45 +000060 for (i = 0; i < ARRAY_SIZE(implementations); ++i) {
Heinrich Schuchardt96076742021-10-25 15:09:35 +020061 if (impl_id == implementations[i].id) {
62 long vers;
63
64 printf("\n%s ", implementations[i].name);
65 ret = sbi_get_impl_version(&vers);
66 if (ret < 0)
67 break;
68 if (impl_id == 1)
69 printf("%ld.%ld",
70 vers >> 16, vers & 0xffff);
71 else
72 printf("0x%lx", vers);
Heinrich Schuchardt89f82672021-01-19 19:44:45 +000073 break;
74 }
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +020075 }
Heinrich Schuchardt89f82672021-01-19 19:44:45 +000076 if (i == ARRAY_SIZE(implementations))
Heinrich Schuchardt96076742021-10-25 15:09:35 +020077 printf("Unknown implementation ID %ld", ret);
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +020078 }
Heinrich Schuchardt96076742021-10-25 15:09:35 +020079 printf("\nExtensions:\n");
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +020080 for (i = 0; i < ARRAY_SIZE(extensions); ++i) {
81 ret = sbi_probe_extension(extensions[i].id);
82 if (ret > 0)
83 printf(" %s\n", extensions[i].name);
84 }
85 return 0;
86}
87
88#ifdef CONFIG_SYS_LONGHELP
89static char sbi_help_text[] =
90 "- display SBI spec version, implementation, and available extensions";
91
92#endif
93
94U_BOOT_CMD_COMPLETE(
95 sbi, 1, 0, do_sbi,
96 "display SBI information",
97 sbi_help_text, NULL
98);