summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/system-imx233.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2016-09-21 00:09:23 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2016-12-12 13:17:33 +0100
commita523c3fcfe40734f3b15fbf086578fa188fc0ec6 (patch)
tree2e0a9c880b9df4675d856328e68cf7c16a961391 /firmware/target/arm/imx233/system-imx233.c
parent7e0820fe21247d528f4c3483822af4f4a66571ee (diff)
downloadrockbox-a523c3fcfe40734f3b15fbf086578fa188fc0ec6.tar.gz
rockbox-a523c3fcfe40734f3b15fbf086578fa188fc0ec6.zip
imx233: fix IRQ handler w.r.t unwinder
The IRQ handler saves registers on the IRQ stack, saves the old PC to imx233 HW_DIGCTL_SCRATCH0 register and switcht to SVC for the actual handling. The old code had a problem in that if the unwinder is called during the IRQ (for example by the watchdog), then __get_sp() will use SPSR_svc to discover the previous mode, switch to it and recover SP. But SPSR_svc is invalid, it should be SPSR_irq but we switch from IRQ to SVC mode. The new code copies SPSR_irq to SPSR_svc in IRQ to fix this problem. It also saves/restore SCRATCH0 in case I one day renable nested interrupts or use SCRATCH0 for other purposes. I also changed the old watchdog code to call UIE directly instead of trying to make the code crash with a SWI. Change-Id: Id87462d410764b019bd2aa9adc71cb917ade32e3
Diffstat (limited to 'firmware/target/arm/imx233/system-imx233.c')
-rw-r--r--firmware/target/arm/imx233/system-imx233.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/firmware/target/arm/imx233/system-imx233.c b/firmware/target/arm/imx233/system-imx233.c
index 5fd162a1ca..c6f974b108 100644
--- a/firmware/target/arm/imx233/system-imx233.c
+++ b/firmware/target/arm/imx233/system-imx233.c
@@ -52,15 +52,16 @@
52#define WATCHDOG_HW_DELAY (10 * HZ) 52#define WATCHDOG_HW_DELAY (10 * HZ)
53#define WATCHDOG_SW_DELAY (5 * HZ) 53#define WATCHDOG_SW_DELAY (5 * HZ)
54 54
55void UIE(unsigned int pc, unsigned int num);
56
55static void woof_woof(void) 57static void woof_woof(void)
56{ 58{
57 /* stop hadrware watchdog, we catched the error */ 59 /* stop hardware watchdog, we catched the error */
58 imx233_rtc_enable_watchdog(false); 60 imx233_rtc_enable_watchdog(false);
61 /* recover current PC and trigger abort, so in the hope to get a useful
62 * backtrace */
59 uint32_t pc = HW_DIGCTL_SCRATCH0; 63 uint32_t pc = HW_DIGCTL_SCRATCH0;
60 /* write a "SWI #0xdead" instruction at the faulty instruction so that it 64 UIE(pc, 4);
61 * will trigger a proper backtrace */
62 *(uint32_t *)pc = 0xef00dead;
63 commit_discard_idcache();
64} 65}
65 66
66static void good_dog(void) 67static void good_dog(void)