Skip to content

Commit d4f5a16

Browse files
committed
include: sbi: Change SBI spec version to 3.0
Now that SBI v3.0 specification is frozen, change runtime SBI version implemented by OpenSBI to v3.0. Also, mark extensions defined by the SBI v3.0 specification as non-experimental. Signed-off-by: Anup Patel <[email protected]> Reviewed-by: Clément Léger <[email protected]> Reviewed-by: Atish Patra <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Anup Patel <[email protected]>
1 parent 60c3f97 commit d4f5a16

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

include/sbi/sbi_ecall.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include <sbi/sbi_types.h>
1414
#include <sbi/sbi_list.h>
1515

16-
#define SBI_ECALL_VERSION_MAJOR 2
16+
#define SBI_ECALL_VERSION_MAJOR 3
1717
#define SBI_ECALL_VERSION_MINOR 0
1818
#define SBI_OPENSBI_IMPID 1
1919

lib/sbi/sbi_ecall_dbtr.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ struct sbi_ecall_extension ecall_dbtr = {
6969
.name = "dbtr",
7070
.extid_start = SBI_EXT_DBTR,
7171
.extid_end = SBI_EXT_DBTR,
72-
.experimental = true,
7372
.handle = sbi_ecall_dbtr_handler,
7473
.register_extensions = sbi_ecall_dbtr_register_extensions,
7574
};

lib/sbi/sbi_ecall_fwft.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ struct sbi_ecall_extension ecall_fwft = {
4545
.name = "fwft",
4646
.extid_start = SBI_EXT_FWFT,
4747
.extid_end = SBI_EXT_FWFT,
48-
.experimental = true,
4948
.register_extensions = sbi_ecall_fwft_register_extensions,
5049
.handle = sbi_ecall_fwft_handler,
5150
};

lib/sbi/sbi_ecall_mpxy.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ struct sbi_ecall_extension ecall_mpxy = {
6767
.name = "mpxy",
6868
.extid_start = SBI_EXT_MPXY,
6969
.extid_end = SBI_EXT_MPXY,
70-
.experimental = true,
7170
.register_extensions = sbi_ecall_mpxy_register_extensions,
7271
.handle = sbi_ecall_mpxy_handler,
7372
};

lib/sbi/sbi_ecall_sse.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ struct sbi_ecall_extension ecall_sse = {
5959
.name = "sse",
6060
.extid_start = SBI_EXT_SSE,
6161
.extid_end = SBI_EXT_SSE,
62-
.experimental = true,
6362
.register_extensions = sbi_ecall_sse_register_extensions,
6463
.handle = sbi_ecall_sse_handler,
6564
};

0 commit comments

Comments
 (0)