summaryrefslogtreecommitdiff
path: root/plat/arm/board/corstone1000/common/corstone1000_bl31_setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'plat/arm/board/corstone1000/common/corstone1000_bl31_setup.c')
-rw-r--r--plat/arm/board/corstone1000/common/corstone1000_bl31_setup.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/plat/arm/board/corstone1000/common/corstone1000_bl31_setup.c b/plat/arm/board/corstone1000/common/corstone1000_bl31_setup.c
new file mode 100644
index 000000000..b6765a60e
--- /dev/null
+++ b/plat/arm/board/corstone1000/common/corstone1000_bl31_setup.c
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <stdint.h>
+
+#if defined(SPD_spmd)
+/*
+ * A dummy implementation of the platform handler for Group0 secure interrupt.
+ */
+int plat_spmd_handle_group0_interrupt(uint32_t intid)
+{
+ (void)intid;
+ return -1;
+}
+#endif /*defined(SPD_spmd)*/