aboutsummaryrefslogtreecommitdiff
path: root/interface/include/tfm_attest_defs.h
blob: 5cbca7a6c6d84490536f72fb49045205581347f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Copyright (c) 2019, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#ifndef __TFM_ATTEST_DEFS_H__
#define __TFM_ATTEST_DEFS_H__

#ifdef __cplusplus
extern "C" {
#endif

#ifdef TFM_PSA_API
/*
 * Defines for SID and minor version number. These SIDs must align with the
 * value in service manifest file.
 */
#define TFM_ATTEST_GET_TOKEN_SID               (0x00000020)
#define TFM_ATTEST_GET_TOKEN_MINOR_VER         (0x0001)
#define TFM_ATTEST_GET_TOKEN_SIZE_SID          (0x00000021)
#define TFM_ATTEST_GET_TOKEN_SIZE_MINOR_VER    (0x0001)
#endif

#ifdef __cplusplus
}
#endif

#endif /* __TFM_ATTEST_DEFS_H__ */