1 #ifndef PHYTIUM_INTERRUPT_H
2 #define PHYTIUM_INTERRUPT_H
3 
4 #ifdef __cplusplus
5 extern "C"
6 {
7 #endif
8 #include "rtconfig.h"
9 #if defined(TARGET_ARMV8_AARCH64)
10 void phytium_interrupt_init(void);
11 
12 int phytium_aarch64_arm_gic_redist_init(void);
13 #endif
14 #ifdef __cplusplus
15 }
16 #endif
17 #endif