1 /*
2  * SPDX-License-Identifier: BSD-3-Clause
3  * SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4  */
5 
6 #include <app_fw_structures.h>
7 
8 #ifndef APP_SERVICES_H
9 #define APP_SERVICES_H
10 
11 #define APP_MAX_ATTEST_KEY_SIZE	1024U
12 
13 /* Services management */
14 uint64_t call_app_service(unsigned long service_id,
15 			  struct app_data_cfg *app_data,
16 			  unsigned long arg0,
17 			  unsigned long arg1,
18 			  unsigned long arg2,
19 			  unsigned long arg3);
20 
21 #endif /* APP_SERVICES_H */
22