Manish Pandey | d27b37d | 2021-03-02 14:41:58 +0000 | [diff] [blame^] | 1 | /* |
| 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 | |
| 12 | int 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 | |
| 23 | int 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 | } |