aboutsummaryrefslogtreecommitdiff
path: root/spm/common/sp_helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'spm/common/sp_helpers.c')
-rw-r--r--spm/common/sp_helpers.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/spm/common/sp_helpers.c b/spm/common/sp_helpers.c
index 5d76dc8e0..a6b6bc5d9 100644
--- a/spm/common/sp_helpers.c
+++ b/spm/common/sp_helpers.c
@@ -71,28 +71,3 @@ void sp_sleep(uint32_t ms)
time2 = read_cntvct_el0();
}
}
-
-/*******************************************************************************
- * Hypervisor Calls Wrappers
- ******************************************************************************/
-
-ffa_int_id_t spm_interrupt_get(void)
-{
- hvc_args args = {
- .fid = SPM_INTERRUPT_GET
- };
-
- hvc_ret_values ret = tftf_hvc(&args);
-
- return ret.ret0;
-}
-
-void spm_debug_log(char c)
-{
- hvc_args args = {
- .fid = SPM_DEBUG_LOG,
- .arg1 = c
- };
-
- (void)tftf_hvc(&args);
-}