aboutsummaryrefslogtreecommitdiff
path: root/components/messaging/ffa/libsp/ffa_interrupt_handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'components/messaging/ffa/libsp/ffa_interrupt_handler.c')
-rw-r--r--components/messaging/ffa/libsp/ffa_interrupt_handler.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/components/messaging/ffa/libsp/ffa_interrupt_handler.c b/components/messaging/ffa/libsp/ffa_interrupt_handler.c
new file mode 100644
index 000000000..a165cc4ef
--- /dev/null
+++ b/components/messaging/ffa/libsp/ffa_interrupt_handler.c
@@ -0,0 +1,13 @@
+// SPDX-License-Identifier: BSD-3-Clause
+/*
+ * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
+ */
+
+#include <stdint.h> // for uint32_t
+#include "ffa_api.h" // for ffa_interrupt_handler
+#include "sp_api.h" // for sp_interrupt_handler
+
+void ffa_interrupt_handler(uint32_t interrupt_id)
+{
+ sp_interrupt_handler(interrupt_id);
+}