From 2c3685c26c90e069a64a2050a1fb6a6232c18823 Mon Sep 17 00:00:00 2001 From: "henryk@ploetzli.ch" Date: Fri, 10 Sep 2010 22:34:24 +0000 Subject: [PATCH] BOOTROM CHANGE: Add jump to interrupt handler from Advanced Interrupt Controller. This change is necessary for all IRQ functionality. If a future osimage needs IRQ functions, the bootloader must be updated to at least this version. --- bootrom/flash-reset.s | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bootrom/flash-reset.s b/bootrom/flash-reset.s index 54ee15b0..95c8f590 100644 --- a/bootrom/flash-reset.s +++ b/bootrom/flash-reset.s @@ -18,7 +18,7 @@ flashstart: b prefetch_abort b data_abort b . @reserved - b irq + ldr pc, [pc,#-0xF20] @ IRQ - read the AIC b fiq reset: @@ -47,7 +47,5 @@ prefetch_abort: b . data_abort: b . -irq: - b . fiq: b . -- 2.39.2