From b9ba262fb7d3a562d8ab4a53217eeb0fb93f77cb Mon Sep 17 00:00:00 2001 From: Eero Nurkkala Date: Tue, 14 Feb 2023 15:48:18 +0200 Subject: [PATCH] risc-v/mpfs: add athena irq defines Add the Athena cryptographic microprocessor irq defines. Signed-off-by: Eero Nurkkala --- arch/risc-v/include/mpfs/irq.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/risc-v/include/mpfs/irq.h b/arch/risc-v/include/mpfs/irq.h index fc968edd21..d33e9c24ce 100644 --- a/arch/risc-v/include/mpfs/irq.h +++ b/arch/risc-v/include/mpfs/irq.h @@ -200,6 +200,9 @@ #define MPFS_IRQ_WDOG2_TOUT (MPFS_IRQ_GLOBAL_START + 94) #define MPFS_IRQ_WDOG3_TOUT (MPFS_IRQ_GLOBAL_START + 95) #define MPFS_IRQ_WDOG4_TOUT (MPFS_IRQ_GLOBAL_START + 96) +#define MPFS_IRQ_ATHENA_COMPLETE (MPFS_IRQ_GLOBAL_START + 99) +#define MPFS_IRQ_ATHENA_ALARM (MPFS_IRQ_GLOBAL_START + 100) +#define MPFS_IRQ_ATHENA_BUS_ERROR (MPFS_IRQ_GLOBAL_START + 101) #define MPFS_IRQ_FABRIC_F2H_0 (MPFS_IRQ_GLOBAL_START + 105) #define MPFS_IRQ_FABRIC_F2H_1 (MPFS_IRQ_GLOBAL_START + 106) #define MPFS_IRQ_FABRIC_F2H_2 (MPFS_IRQ_GLOBAL_START + 107)