blob: 5cbca7a6c6d84490536f72fb49045205581347f2 [file] [log] [blame]
Kevin Peng2ed30222019-04-30 09:26:11 +08001/*
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
12extern "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__ */