summaryrefslogtreecommitdiff
path: root/include/sbi/sbi_version.h
AgeCommit message (Collapse)Author
2026-06-30include: Bump-up version to 1.9v1.9Anup Patel
Update the OpenSBI version to 1.9 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2025-12-29include: Bump-up version to 1.8v1.8Anup Patel
Update the OpenSBI version to 1.8 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2025-06-30include: Bump-up version to 1.7v1.7Anup Patel
Update the OpenSBI version to 1.7 as part of release preparation. Signed-off-by: Anup Patel <[email protected]> Signed-off-by: Anup Patel <[email protected]>
2024-12-24include: Bump-up version to 1.6v1.6Anup Patel
Update the OpenSBI version to 1.6 as part of release preparation. Signed-off-by: Anup Patel <[email protected]> Signed-off-by: Anup Patel <[email protected]>
2024-06-30include: Bump-up version to 1.5v1.5Anup Patel
This patch updates OpenSBI version to 1.5 as part of release preparation. Signed-off-by: Anup Patel <[email protected]> Signed-off-by: Anup Patel <[email protected]>
2023-12-27include: Bump-up version to 1.4v1.4Anup Patel
This patch updates OpenSBI version to 1.4 as part of release preparation. Signed-off-by: Anup Patel <[email protected]> Signed-off-by: Anup Patel <[email protected]>
2023-06-23include: Bump-up version to 1.3v1.3Anup Patel
This patch updates OpenSBI version to 1.3 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2022-12-24include: Bump-up version to 1.2v1.2Anup Patel
This patch updates OpenSBI version to 1.2 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2022-06-25include: Bump-up version to 1.1v1.1Anup Patel
This patch updates OpenSBI version to 1.1 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2021-12-24include: Bump-up version to 1.0v1.0Anup Patel
This patch updates OpenSBI version to 1.0 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2021-01-18include: Bump-up version to 0.9v0.9Anup Patel
This patch updates OpenSBI version to 0.9 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2020-06-20include: Bump-up version to 0.8v0.8Anup Patel
This patch updates OpenSBI version to 0.8 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2020-04-20include: Bump-up version to 0.7v0.7Anup Patel
This patch updates OpenSBI version to 0.7 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2020-03-10lib: sbi: Fix coding style issuesBin Meng
This fixes various coding style issues found in the SBI codes. No functional changes. Signed-off-by: Bin Meng <[email protected]> Reviewed-by: Anup Patel <[email protected]>
2020-02-24include: Bump-up version to 0.6v0.6Anup Patel
This patch updates OpenSBI version to 0.6 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2019-10-09include: Bump-up version to 0.5v0.5Anup Patel
This patch updates OpenSBI version to 0.5 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2019-07-02include: Bump-up version to 0.4v0.4Anup Patel
This patch updates OpenSBI version to 0.4 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2019-06-29include: Add version info to struct sbi_platformAbner Chang
Add version control of sbi_platform structure - Add opensbi_version, this gives information of opensbi revision on which the sbi_platform table was created. - Add platform_version field in sbi_platform structure for platform level version control. Signed-off-by: Abner Chang <[email protected]> Acked-by: Anup Patel <[email protected]>
2019-04-24all: run clang-format and update checked-in filesOlof Johansson
Noisy commit, no functional changes. Generated with an current upstream clang-format and: clang-format -i $(find . -name \*.[ch]) Signed-off-by: Olof Johansson <[email protected]>
2019-02-26include: Bump-up version to 0.3v0.3Anup Patel
This patch updates OpenSBI version to 0.3 as part of release preparation. Signed-off-by: Anup Patel <[email protected]>
2019-02-22include: Bump-up version to 0.2v0.2Anup Patel
This patch increases OpenSBI version to 0.2. Signed-off-by: Anup Patel <[email protected]>
2019-01-25include: Add separate header for OpenSBI versionAnup Patel
Currently, the OpenSBI version is in top-level Makefile so firmware linking to OpenSBI static library have no-way to know OpenSBI version. This patch moves OpenSBI version from top-level Makefile to sbi/sbi_version.h header which provides OPENSBI_VERSION_MAJOR and OPENSBI_VERSION_MINOR defines. NOTE: the SBI spec (or SBI ecall interface) version is different. The SBI spec version is provided by functions sbi_ecall_version_major() and sbi_ecall_version_minor(). Signed-off-by: Anup Patel <[email protected]>