blob: 7a6cd4f7ba48ee9a0352c3738f33fa1843771915 [file] [log] [blame]
J-Alves8f4a56f2020-10-28 10:29:05 +00001/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef FFA_ENDPOINTS_H
8#define FFA_ENDPOINTS_H
9
10/* UUID of cactus SPs as defined in the respective manifests. */
11#define PRIMARY_UUID {0xb4b5671e, 0x4a904fe1, 0xb81ffb13, 0xdae1dacb}
12#define SECONDARY_UUID {0xd1582309, 0xf02347b9, 0x827c4464, 0xf5578fc8}
13#define TERTIARY_UUID {0x79b55c73, 0x1d8c44b9, 0x859361e1, 0x770ad8d2}
14
15/* UUID of OPTEE SP as defined in the respective manifest. */
16#define OPTEE_UUID {0x486178e0, 0xe7f811e3, 0xbc5e0002, 0xa5d5c51b}
17
18#define OPTEE_FFA_GET_API_VERSION (0)
19#define OPTEE_FFA_GET_OS_VERSION (1)
20#define OPTEE_FFA_GET_OS_VERSION_MAJOR (3)
Olivier Deprez6a2446e2020-12-03 14:46:10 +010021#define OPTEE_FFA_GET_OS_VERSION_MINOR (10)
J-Alves8f4a56f2020-10-28 10:29:05 +000022
23#endif