blob: c7ad2694c927c4fefefc62261cc340c43867617c [file] [log] [blame]
Manish Pandeyd27b37d2021-03-02 14:41:58 +00001/*
2 * Copyright (c) 2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <debug.h>
8
9#include <ffa_helpers.h>
10#include <sp_helpers.h>
11
12int cactus_irq_handler(void)
13{
14 uint32_t irq_num;
15
16 irq_num = spm_interrupt_get();
17
18 ERROR("%s: Interrupt ID %u not handled!\n", __func__, irq_num);
19
20 return 0;
21}
22
23int cactus_fiq_handler(void)
24{
25 uint32_t fiq_num;
26
27 fiq_num = spm_interrupt_get();
28
29 ERROR("%s: Interrupt ID %u not handled!\n", __func__, fiq_num);
30
31 return 0;
32}