Mate Toth-Pal | 2611c55 | 2023-02-28 10:28:32 +0100 | [diff] [blame^] | 1 | /* |
| 2 | * SPDX-License-Identifier: BSD-3-Clause |
| 3 | * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. |
| 4 | */ |
| 5 | |
| 6 | #ifndef HOST_RMI_WRAPPERS_H |
| 7 | #define HOST_RMI_WRAPPERS_H |
| 8 | |
| 9 | #include <smc-rmi.h> |
| 10 | |
| 11 | void host_rmi_granule_delegate(void *granule_address, struct smc_result *ret); |
| 12 | void host_rmi_granule_undelegate(void *granule_address, struct smc_result *ret); |
| 13 | void host_rmi_realm_create(void *rd, void *params_ptr, struct smc_result *ret); |
| 14 | void host_rmi_realm_destroy(void *rd, struct smc_result *ret); |
| 15 | void host_rmi_rtt_create(void *rtt, void *rd, void *ipa, |
| 16 | unsigned int level, struct smc_result *ret); |
| 17 | void host_rmi_rtt_destroy(void *rtt, void *rd, void *ipa, |
| 18 | unsigned int level, struct smc_result *ret); |
| 19 | void host_rmi_rec_aux_count(void *rd, struct smc_result *ret); |
| 20 | void host_rmi_rec_create(void *rec, void *rd, void *params_ptr, |
| 21 | struct smc_result *ret); |
| 22 | void host_rmi_rec_destroy(void *rec, struct smc_result *ret); |
| 23 | void host_rmi_realm_activate(void *rd, struct smc_result *ret); |
| 24 | void host_rmi_rec_enter(void *rec, void *run_ptr, struct smc_result *ret); |
| 25 | |
| 26 | #endif /* HOST_RMI_WRAPPERS_H */ |