sw_apps:zynqmp_fsbl: Registering exception handlers

Exception handlers are now registered unconditionally for both A53 and R5
Removed enabling of IRQ from FSBL(to be enabled in user application)

Signed-off-by: Sarat Chand Savitala <saratcha@xilinx.com>
This commit is contained in:
Sarat Chand Savitala 2015-06-09 19:12:17 +05:30 committed by Nava kishore Manne
parent 83eaa550d6
commit 4766bcb9f6
2 changed files with 0 additions and 5 deletions

View file

@ -288,12 +288,9 @@ static u32 XFsbl_ProcessorInit(XFsblPs * FsblInstancePtr)
}
/**
* Enable the exceptions
* Register the exception handlers
*/
#ifndef XFSBL_A53
XFsbl_RegisterHandlers();
#endif
return Status;
}

View file

@ -484,6 +484,4 @@ void XFsbl_RegisterHandlers(void)
Xil_ExceptionRegisterHandler(XIL_EXCEPTION_ID_FIQ_INT,
(Xil_ExceptionHandler)XFsbl_FiqHandler,(void *) 0);
#endif
Xil_ExceptionEnable();
}