arm: socfpga: Enable ASYNC interrupts in Agilex SPL

Asynchronous aborts were previously masked at SPL
entry.

To ensure early detection of system errors
such as ECC faults or bus errors, asynchronous aborts
should be explicitly unmasked by clearing the A-bit in
the DAIF register during Agilex SPL initialization.

Signed-off-by: Alif Zakuan Yuslaimi <alif.zakuan.yuslaimi@altera.com>
Reviewed-by: Tien Fong Chee <tien.fong.chee@altera.com>

# Conflicts:
#	arch/arm/mach-socfpga/spl_agilex.c
This commit is contained in:
Tien Fong Chee
2025-08-08 22:20:42 +08:00
parent 677147c167
commit 3721998510
+3
View File
@@ -43,6 +43,9 @@ void board_init_f(ulong dummy)
int ret;
struct udevice *dev;
/* Enable Async */
asm volatile("msr daifclr, #4");
#if defined(CONFIG_XPL_BUILD) && defined(CONFIG_SPL_RECOVER_DATA_SECTION)
spl_save_restore_data();
#endif