From ba1f92fcba493e1f8f4edbe7d7838111110e87a8 Mon Sep 17 00:00:00 2001 From: Kinsey Moore Date: Thu, 9 May 2024 09:00:53 -0500 Subject: [PATCH] bsps/aarch64/a72: Avoid use of reserved INTIDs Interrupt IDs 1020, 1021, 1022, and 1023 are reserved as special INTIDs and should be ignored for normal RTEMS operation as they signal internal changes in the interrupt controller that RTEMS itself is directly causing. --- bsps/aarch64/a72/include/bsp/irq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsps/aarch64/a72/include/bsp/irq.h b/bsps/aarch64/a72/include/bsp/irq.h index c2e86ec0a9..7404990354 100644 --- a/bsps/aarch64/a72/include/bsp/irq.h +++ b/bsps/aarch64/a72/include/bsp/irq.h @@ -48,7 +48,7 @@ extern "C" { #endif /* __cplusplus */ -#define BSP_INTERRUPT_VECTOR_COUNT 1024 +#define BSP_INTERRUPT_VECTOR_COUNT 1020 /* Interrupts vectors */ #define BSP_TIMER_VIRT_PPI 27