diff options
author | Abner Chang <abner.chang@hpe.com> | 2019-06-29 16:18:05 +0800 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2019-06-29 19:26:26 +0530 |
commit | 08b196956d684678e930850bc1b54d602dfff555 (patch) | |
tree | eb14144504deb6e793fac1ef24fc07e67eec62be /platform/template | |
parent | fa6fd6bf86e97140cf3c991f605cf04a0b24ab50 (diff) |
include: Add version info to struct sbi_platform
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 <abner.chang@hpe.com>
Acked-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'platform/template')
-rw-r--r-- | platform/template/platform.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/template/platform.c b/platform/template/platform.c index 2ba549f..148bfa9 100644 --- a/platform/template/platform.c +++ b/platform/template/platform.c @@ -227,6 +227,8 @@ const struct sbi_platform_operations platform_ops = { .system_shutdown = platform_system_down }; const struct sbi_platform platform = { + .opensbi_version = OPENSBI_VERSION, + .platform_version = SBI_PLATFORM_VERSION(0x0, 0x00), .name = "platform-name", .features = SBI_PLATFORM_DEFAULT_FEATURES, .hart_count = 1, |