/****************************************************************************** * * Copyright (C) 2009 - 2014 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * Use of the Software is limited solely to applications: * (a) running on a Xilinx device, or * (b) that interact with a Xilinx device through a bus or interconnect. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * XILINX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Except as contained in this notice, the name of the Xilinx shall not be used * in advertising or otherwise to promote the sale, use or other dealings in * this Software without prior written authorization from Xilinx. * ******************************************************************************/ /*****************************************************************************/ /** * * @file xil_exception.h * * This header file contains exception related driver functions (or * macros) that can be used to access the device. The user should refer to the * hardware device specification for more details of the device operation. * *
* MODIFICATION HISTORY:
*
* Ver   Who  Date     Changes
* ----- ---- -------- -------------------------------------------------------
* 1.00  hbm  07/28/09 Initial release
*
* 
* * @note * * None. * ******************************************************************************/ #ifndef XIL_EXCEPTION_H /* prevent circular inclusions */ #define XIL_EXCEPTION_H /* by using protection macros */ #include "xil_types.h" #ifdef __cplusplus extern "C" { #endif /************************** Constant Definitions *****************************/ /* * These constants are specific to Microblaze processor. */ #define XIL_EXCEPTION_ID_FIRST 0 #define XIL_EXCEPTION_ID_FSL 0 #define XIL_EXCEPTION_ID_UNALIGNED_ACCESS 1 #define XIL_EXCEPTION_ID_ILLEGAL_OPCODE 2 #define XIL_EXCEPTION_ID_M_AXI_I_EXCEPTION 3 #define XIL_EXCEPTION_ID_IPLB_EXCEPTION 3 #define XIL_EXCEPTION_ID_M_AXI_D_EXCEPTION 4 #define XIL_EXCEPTION_ID_DPLB_EXCEPTION 4 #define XIL_EXCEPTION_ID_DIV_BY_ZERO 5 #define XIL_EXCEPTION_ID_FPU 6 #define XIL_EXCEPTION_ID_STACK_VIOLATION 7 #define XIL_EXCEPTION_ID_MMU 7 #define XIL_EXCEPTION_ID_LAST XIL_EXCEPTION_ID_MMU /* * XIL_EXCEPTION_ID_INT is defined for all processors, but with different value. */ #define XIL_EXCEPTION_ID_INT 16 /** * exception ID for interrupt */ /**************************** Type Definitions *******************************/ /** * This typedef is the exception handler function. */ typedef void (*Xil_ExceptionHandler)(void *Data); /** * This data type defines an interrupt handler for a device. * The argument points to the instance of the component */ typedef void (*XInterruptHandler) (void *InstancePtr); /***************** Macros (Inline Functions) Definitions *********************/ /************************** Function Prototypes ******************************/ extern void Xil_ExceptionRegisterHandler(u32 Id, Xil_ExceptionHandler Handler, void *Data); extern void Xil_ExceptionRemoveHandler(u32 Id); extern void Xil_ExceptionInit(void); extern void Xil_ExceptionEnable(void); extern void Xil_ExceptionDisable(void); #ifdef __cplusplus } #endif #endif