TudorCretu | fb182bc | 2019-07-05 17:34:12 +0100 | [diff] [blame] | 1 | /* |
Shawn Shan | 428141d | 2021-07-08 11:05:53 +0800 | [diff] [blame] | 2 | * Copyright (c) 2019-2021, Arm Limited. All rights reserved. |
TudorCretu | fb182bc | 2019-07-05 17:34:12 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __TFM_ITS_DEFS_H__ |
| 9 | #define __TFM_ITS_DEFS_H__ |
| 10 | |
| 11 | #ifdef __cplusplus |
| 12 | extern "C" { |
| 13 | #endif |
| 14 | |
| 15 | /* Invalid UID */ |
| 16 | #define TFM_ITS_INVALID_UID 0 |
| 17 | |
Shawn Shan | 428141d | 2021-07-08 11:05:53 +0800 | [diff] [blame] | 18 | /* ITS message types that distinguish ITS services. */ |
| 19 | #define TFM_ITS_SET 1001 |
| 20 | #define TFM_ITS_GET 1002 |
| 21 | #define TFM_ITS_GET_INFO 1003 |
| 22 | #define TFM_ITS_REMOVE 1004 |
| 23 | |
TudorCretu | fb182bc | 2019-07-05 17:34:12 +0100 | [diff] [blame] | 24 | #ifdef __cplusplus |
| 25 | } |
| 26 | #endif |
| 27 | |
| 28 | #endif /* __TFM_ITS_DEFS_H__ */ |