blob: 7926a081acf13fb0b24775e0800467e3333f3aaf [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>
Manish Pandey58971b62020-09-21 21:10:38 +010011#include <spm_helpers.h>
Manish Pandeyd27b37d2021-03-02 14:41:58 +000012
13int cactus_irq_handler(void)
14{
15 uint32_t irq_num;
16
17 irq_num = spm_interrupt_get();
18
19 ERROR("%s: Interrupt ID %u not handled!\n", __func__, irq_num);
20
21 return 0;
22}
23
24int cactus_fiq_handler(void)
25{
26 uint32_t fiq_num;
27
28 fiq_num = spm_interrupt_get();
29
30 ERROR("%s: Interrupt ID %u not handled!\n", __func__, fiq_num);
31
32 return 0;
33}