1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2021 Open Mobile Platform LLC
4  */
5 
6 #ifndef TA_SUPP_PLUGIN_H
7 #define TA_SUPP_PLUGIN_H
8 
9 #define TA_SUPP_PLUGIN_UUID { 0x380231ac, 0xfb99, 0x47ad, \
10 	{ 0xa6, 0x89, 0x9e, 0x01, 0x7e, 0xb6, 0xe7, 0x8a } }
11 
12 #define TA_SUPP_PLUGIN_CMD_PASS_VALUES	0
13 #define TA_SUPP_PLUGIN_CMD_WRITE_ARR	1
14 #define TA_SUPP_PLUGIN_CMD_GET_ARR	2
15 #define TA_SUPP_PLUGIN_CMD_BAD_UUID	3
16 #define TA_SUPP_PLUGIN_CMD_BAD_IN_DATA	4
17 #define TA_SUPP_PLUGIN_CMD_BAD_IN_LEN	5
18 #define TA_SUPP_PLUGIN_CMD_UNKNOWN_UUID	6
19 
20 #endif /* TA_SUPP_PLUGIN_H */
21