blob: e13d54b5da08d77d84c4eab225680de570226729 [file] [log] [blame]
Soby Mathewb4c6df42022-11-09 11:13:29 +00001/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4 */
5#include <assert.h>
6#include <smc-rsi.h>
7
8COMPILER_ASSERT(RSI_ABI_VERSION_MAJOR <= 0x7FFF);
9COMPILER_ASSERT(RSI_ABI_VERSION_MINOR <= 0xFFFF);
10
11unsigned long system_rsi_abi_version(void)
12{
13 return RSI_ABI_VERSION;
14}