Kevin Peng | 2ed3022 | 2019-04-30 09:26:11 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2019, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __TFM_ATTEST_DEFS_H__ |
| 9 | #define __TFM_ATTEST_DEFS_H__ |
| 10 | |
| 11 | #ifdef __cplusplus |
| 12 | extern "C" { |
| 13 | #endif |
| 14 | |
| 15 | #ifdef TFM_PSA_API |
| 16 | /* |
| 17 | * Defines for SID and minor version number. These SIDs must align with the |
| 18 | * value in service manifest file. |
| 19 | */ |
| 20 | #define TFM_ATTEST_GET_TOKEN_SID (0x00000020) |
| 21 | #define TFM_ATTEST_GET_TOKEN_MINOR_VER (0x0001) |
| 22 | #define TFM_ATTEST_GET_TOKEN_SIZE_SID (0x00000021) |
| 23 | #define TFM_ATTEST_GET_TOKEN_SIZE_MINOR_VER (0x0001) |
| 24 | #endif |
| 25 | |
| 26 | #ifdef __cplusplus |
| 27 | } |
| 28 | #endif |
| 29 | |
| 30 | #endif /* __TFM_ATTEST_DEFS_H__ */ |