aboutsummaryrefslogtreecommitdiff
path: root/test/test_services/tfm_secure_client_2/tfm_secure_client_2_api.h
blob: 43877100a75b822e23019f8084b9b2bcfe090121 (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
31
32
33
34
35
36
37
38
39
40
/*
 * Copyright (c) 2019, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 *
 */

#ifndef __TFM_SECURE_CLIENT_2_API_H__
#define __TFM_SECURE_CLIENT_2_API_H__

#include <stddef.h>
#include <stdint.h>

#include "psa/error.h"

#ifdef __cplusplus
extern "C" {
#endif

#define TFM_SECURE_CLIENT_2_ID_ITS_ACCESS_CTRL 1001

/**
 * \brief Calls the test function with the supplied ID within the execution
 *        context of the Secure Client 2 partition and returns the resulting
 *        status.
 *
 * \param[in] id       The ID of the test function
 * \param[in] arg      Pointer to argument to pass to test function
 * \param[in] arg_len  Length of argument in bytes
 *
 * \return Returns error code as specified in \ref psa_status_t
 */
psa_status_t tfm_secure_client_2_call_test(int32_t id, const void *arg,
                                           size_t arg_len);

#ifdef __cplusplus
}
#endif

#endif /* __TFM_SECURE_CLIENT_2_API_H__ */