summaryrefslogtreecommitdiff
path: root/include/common/runtime_svc.h
diff options
context:
space:
mode:
authorManish Pandey <manish.pandey2@arm.com>2026-09-07 21:33:45 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2026-09-07 21:33:45 +0000
commit38269bb73d34b4a31100adf208a27e4c28e7d611 (patch)
tree0d383dafca63c22ef6cc475ce347a76c641cca50 /include/common/runtime_svc.h
parent58f4fe3a0b8b97fd097aff2ec884cc77ac535650 (diff)
parentd7135a7214e49c6364ba518cdac343aa595a8db8 (diff)
downloadarm-trusted-firmware-master.tar.gz
arm-trusted-firmware-master.zip
Merge changes I716e0539,I6c327584,I38509b94,I5ff3c402,I44591e4b, ... into integrationHEADmaster
* changes: feat(st): enable some warning flags feat(build): enable -Wundef for C files if W >= 1 refactor(zlib): move zlib to a lib refactor(compiler-rt): move compiler_rt to a lib feat(build): introduce BL_FLAGS fix(st-usb): staticize dwc3_dev_init fix(st): staticize verify_signature fix(stm32mp1): manage all flags for PKA algos refactor(st-clock): remove STM32MP_M33_TDCID flag fix(xlat): check definition of PLAT_XLAT_TABLES_DYNAMIC flag fix(el3-runtime): add some missing prototypes fix(scmi): remove scmi_msg_get_voltage_handler fix(io): correct SIZE_MAX management fix(libc): define __BSD_VISIBLE to 0 fix(build): move FIRME_SUPPORT flags to Makefile
Diffstat (limited to 'include/common/runtime_svc.h')
-rw-r--r--include/common/runtime_svc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/common/runtime_svc.h b/include/common/runtime_svc.h
index 26e8d6f28..0547adf2c 100644
--- a/include/common/runtime_svc.h
+++ b/include/common/runtime_svc.h
@@ -7,6 +7,7 @@
#ifndef RUNTIME_SVC_H
#define RUNTIME_SVC_H
+#include <context.h>
#include <common/bl_common.h> /* to include exception types */
#include <lib/cassert.h>
#include <lib/utils_def.h>
@@ -125,6 +126,8 @@ static inline uint32_t get_unique_oen_from_smc_fid(uint32_t fid)
/*******************************************************************************
* Function & variable prototypes
******************************************************************************/
+void handler_interrupt_exception(cpu_context_t *ctx);
+void handler_sync_exception(cpu_context_t *ctx);
void runtime_svc_init(void);
uintptr_t handle_runtime_svc(uint32_t smc_fid, void *cookie, void *handle,
unsigned int flags);