diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-06-21 16:34:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-21 16:34:42 +0100 |
commit | ab676e00d333c7076404e13a3182e819f12d7c33 (patch) | |
tree | f409e1613928b371cfd426a2c265b27c38c196d2 /include | |
parent | 6d769420b098f36717c99d4a6a2455fd6bd8fd23 (diff) | |
parent | 4d4ceb598c168c86d74ec535868e7bfc3d18cee4 (diff) | |
download | platform_external_arm-trusted-firmware-ab676e00d333c7076404e13a3182e819f12d7c33.tar.gz platform_external_arm-trusted-firmware-ab676e00d333c7076404e13a3182e819f12d7c33.tar.bz2 platform_external_arm-trusted-firmware-ab676e00d333c7076404e13a3182e819f12d7c33.zip |
Merge pull request #1436 from antonio-nino-diaz-arm/an/spm-sync
SPM: Allow entering the SP without needing a SMC
Diffstat (limited to 'include')
-rw-r--r-- | include/services/spm_svc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/services/spm_svc.h b/include/services/spm_svc.h index 8f872c39e..0200992c1 100644 --- a/include/services/spm_svc.h +++ b/include/services/spm_svc.h @@ -74,6 +74,9 @@ uint64_t spm_smc_handler(uint32_t smc_fid, void *handle, uint64_t flags); +/* Helper to enter a Secure Partition */ +uint64_t spm_sp_call(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3); + #endif /* __ASSEMBLY__ */ #endif /* __SPM_SVC_H__ */ |