Skip to content

Commit d569fdd

Browse files
committed
[nrf fromtree] tests: arch: common: nrf54h20/cpuflpr needs different isr offset
NRF54H20 cpuflpr and cpuppr do not share common interrupts (VEVIF TASKS) that can be used in this test, so they need to be separated. Signed-off-by: Łukasz Stępnicki <[email protected]> (cherry picked from commit c00dd68)
1 parent 9cd8ab3 commit d569fdd

File tree

1 file changed

+2
-1
lines changed
  • tests/arch/common/gen_isr_table/src

1 file changed

+2
-1
lines changed

tests/arch/common/gen_isr_table/src/main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ extern const uintptr_t _irq_vector_table[];
2727

2828
#if defined(CONFIG_NRFX_CLIC)
2929

30-
#if defined(CONFIG_SOC_SERIES_NRF54LX) && defined(CONFIG_RISCV_CORE_NORDIC_VPR)
30+
#if (defined(CONFIG_SOC_SERIES_NRF54LX) || defined(CONFIG_SOC_NRF54H20_CPUFLPR)) && \
31+
defined(CONFIG_RISCV_CORE_NORDIC_VPR)
3132
#define ISR1_OFFSET 16
3233
#define ISR3_OFFSET 17
3334
#define ISR5_OFFSET 18

0 commit comments

Comments
 (0)