/* $Id: xintc_l.h,v 1.1.2.1 2010/09/17 05:26:04 svemula Exp $ */ /****************************************************************************** * * (c) Copyright 2002-2009 Xilinx, Inc. All rights reserved. * * This file contains confidential and proprietary information of Xilinx, Inc. * and is protected under U.S. and international copyright and other * intellectual property laws. * * DISCLAIMER * This disclaimer is not a license and does not grant any rights to the * materials distributed herewith. Except as otherwise provided in a valid * license issued to you by Xilinx, and to the maximum extent permitted by * applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL * FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS, * IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF * MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; * and (2) Xilinx shall not be liable (whether in contract or tort, including * negligence, or under any other theory of liability) for any loss or damage * of any kind or nature related to, arising under or in connection with these * materials, including for any direct, or any indirect, special, incidental, * or consequential loss or damage (including loss of data, profits, goodwill, * or any type of loss or damage suffered as a result of any action brought by * a third party) even if such damage or loss was reasonably foreseeable or * Xilinx had been advised of the possibility of the same. * * CRITICAL APPLICATIONS * Xilinx products are not designed or intended to be fail-safe, or for use in * any application requiring fail-safe performance, such as life-support or * safety devices or systems, Class III medical devices, nuclear facilities, * applications related to the deployment of airbags, or any other applications * that could lead to death, personal injury, or severe property or * environmental damage (individually and collectively, "Critical * Applications"). Customer assumes the sole risk and liability of any use of * Xilinx products in Critical Applications, subject only to applicable laws * and regulations governing limitations on product liability. * * THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE * AT ALL TIMES. * ******************************************************************************/ /*****************************************************************************/ /** * * @file xintc_l.h * * This header file contains identifiers and low-level 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. * * * Note that users of the driver interface given in this file can register * an interrupt handler dynamically (at run-time) using the * XIntc_RegisterHandler() function. * User of the driver interface given in xintc.h should still use * XIntc_Connect(), as always. * Also see the discussion of the interrupt vector tables in xintc.h. * * There are currently two interrupt handlers specified in this interface. * * - XIntc_LowLevelInterruptHandler() is a handler without any arguments that * is used in cases where there is a single interrupt controller device in * the system and the handler cannot be passed an argument. This function is * provided mostly for backward compatibility. * * - XIntc_DeviceInterruptHandler() is a handler that takes a device ID as an * argument, indicating which interrupt controller device in the system is * causing the interrupt - thereby supporting multiple interrupt controllers. * *
* MODIFICATION HISTORY:
*
* Ver   Who  Date     Changes
* ----- ---- -------- -----------------------------------------------------
* 1.00b jhl  04/24/02 First release
* 1.00c rpm  10/17/03 New release. Support the static vector table created
*                     in the xintc_g.c configuration table.
* 1.10c mta  03/21/07 Updated to new coding style
* 1.11a sv   11/21/07 Updated driver to support access through a DCR bridge
* 2.00a ktn  10/20/09 Updated to use HAL Processor APIs. _m is removed from all the macro
*		      definitions.
* 
* ******************************************************************************/ #ifndef XINTC_L_H /* prevent circular inclusions */ #define XINTC_L_H /* by using protection macros */ #ifdef __cplusplus extern "C" { #endif /***************************** Include Files *********************************/ #include "xbasic_types.h" #include "xil_types.h" #include "xil_assert.h" #include "xparameters.h" #include "xil_io.h" /* * XPAR_XINTC_USE_DCR_BRIDGE has to be set to 1 if the Intc device will be * accessed through a DCR bus connected to a bridge. */ #define XPAR_XINTC_USE_DCR_BRIDGE 0 #if ((XPAR_XINTC_USE_DCR != 0) || (XPAR_XINTC_USE_DCR_BRIDGE != 0)) #include "xio_dcr.h" #endif /************************** Constant Definitions *****************************/ /* define the offsets from the base address for all the registers of the * interrupt controller, some registers may be optional in the hardware device */ #if ((XPAR_XINTC_USE_DCR != 0) || (XPAR_XINTC_USE_DCR_BRIDGE != 0)) #define XIN_ISR_OFFSET 0 /* Interrupt Status Register */ #define XIN_IPR_OFFSET 1 /* Interrupt Pending Register */ #define XIN_IER_OFFSET 2 /* Interrupt Enable Register */ #define XIN_IAR_OFFSET 3 /* Interrupt Acknowledge Register */ #define XIN_SIE_OFFSET 4 /* Set Interrupt Enable Register */ #define XIN_CIE_OFFSET 5 /* Clear Interrupt Enable Register */ #define XIN_IVR_OFFSET 6 /* Interrupt Vector Register */ #define XIN_MER_OFFSET 7 /* Master Enable Register */ #else /* ((XPAR_XINTC_USE_DCR != 0) || (XPAR_XINTC_USE_DCR_BRIDGE != 0)) */ #define XIN_ISR_OFFSET 0 /* Interrupt Status Register */ #define XIN_IPR_OFFSET 4 /* Interrupt Pending Register */ #define XIN_IER_OFFSET 8 /* Interrupt Enable Register */ #define XIN_IAR_OFFSET 12 /* Interrupt Acknowledge Register */ #define XIN_SIE_OFFSET 16 /* Set Interrupt Enable Register */ #define XIN_CIE_OFFSET 20 /* Clear Interrupt Enable Register */ #define XIN_IVR_OFFSET 24 /* Interrupt Vector Register */ #define XIN_MER_OFFSET 28 /* Master Enable Register */ #endif /* ((XPAR_XINTC_USE_DCR != 0) || (XPAR_XINTC_USE_DCR_BRIDGE != 0)) */ /* Bit definitions for the bits of the MER register */ #define XIN_INT_MASTER_ENABLE_MASK 0x1UL #define XIN_INT_HARDWARE_ENABLE_MASK 0x2UL /* once set cannot be cleared */ /**************************** Type Definitions *******************************/ /* The following data type defines each entry in an interrupt vector table. * The callback reference is the base address of the interrupting device * for the driver interface given in this file and an instance pointer for the * driver interface given in xintc.h file. */ typedef struct { XInterruptHandler Handler; void *CallBackRef; } XIntc_VectorTableEntry; /***************** Macros (Inline Functions) Definitions *********************/ /* * Define the appropriate I/O access method to memory mapped I/O or DCR. */ #if ((XPAR_XINTC_USE_DCR != 0) || (XPAR_XINTC_USE_DCR_BRIDGE != 0)) #define XIntc_In32 XIo_DcrIn #define XIntc_Out32 XIo_DcrOut #else #define XIntc_In32 Xil_In32 #define XIntc_Out32 Xil_Out32 #endif /****************************************************************************/ /** * * Enable all interrupts in the Master Enable register of the interrupt * controller. The interrupt controller defaults to all interrupts disabled * from reset such that this macro must be used to enable interrupts. * * @param BaseAddress is the base address of the device. * * @return None. * * @note C-style signature: * void XIntc_MasterEnable(u32 BaseAddress); * *****************************************************************************/ #define XIntc_MasterEnable(BaseAddress) \ XIntc_Out32((BaseAddress) + XIN_MER_OFFSET, \ XIN_INT_MASTER_ENABLE_MASK | XIN_INT_HARDWARE_ENABLE_MASK) /****************************************************************************/ /** * * Disable all interrupts in the Master Enable register of the interrupt * controller. * * @param BaseAddress is the base address of the device. * * @return None. * * @note C-style signature: * void XIntc_MasterDisable(u32 BaseAddress); * *****************************************************************************/ #define XIntc_MasterDisable(BaseAddress) \ XIntc_Out32((BaseAddress) + XIN_MER_OFFSET, 0) /****************************************************************************/ /** * * Enable specific interrupt(s) in the interrupt controller. * * @param BaseAddress is the base address of the device * @param EnableMask is the 32-bit value to write to the enable register. * Each bit of the mask corresponds to an interrupt input signal * that is connected to the interrupt controller (INT0 = LSB). * Only the bits which are set in the mask will enable interrupts. * * @return None. * * @note C-style signature: * void XIntc_EnableIntr(u32 BaseAddress, u32 EnableMask); * *****************************************************************************/ #define XIntc_EnableIntr(BaseAddress, EnableMask) \ XIntc_Out32((BaseAddress) + XIN_IER_OFFSET, (EnableMask)) /****************************************************************************/ /** * * Disable specific interrupt(s) in the interrupt controller. * * @param BaseAddress is the base address of the device * @param DisableMask is the 32-bit value to write to the enable register. * Each bit of the mask corresponds to an interrupt input signal * that is connected to the interrupt controller (INT0 = LSB). * Only the bits which are set in the mask will disable interrupts. * * @return None. * * @note C-style signature: * void XIntc_DisableIntr(u32 BaseAddress, u32 DisableMask); * *****************************************************************************/ #define XIntc_DisableIntr(BaseAddress, DisableMask) \ XIntc_Out32((BaseAddress) + XIN_IER_OFFSET, ~(DisableMask)) /****************************************************************************/ /** * * Acknowledge specific interrupt(s) in the interrupt controller. * * @param BaseAddress is the base address of the device * @param AckMask is the 32-bit value to write to the acknowledge * register. Each bit of the mask corresponds to an interrupt input * signal that is connected to the interrupt controller (INT0 = * LSB). Only the bits which are set in the mask will acknowledge * interrupts. * * @return None. * * @note C-style signature: * void XIntc_AckIntr(u32 BaseAddress, u32 AckMask); * *****************************************************************************/ #define XIntc_AckIntr(BaseAddress, AckMask) \ XIntc_Out32((BaseAddress) + XIN_IAR_OFFSET, (AckMask)) /****************************************************************************/ /** * * Get the interrupt status from the interrupt controller which indicates * which interrupts are active and enabled. * * @param BaseAddress is the base address of the device * * @return The 32-bit contents of the interrupt status register. Each bit * corresponds to an interrupt input signal that is connected to * the interrupt controller (INT0 = LSB). Bits which are set * indicate an active interrupt which is also enabled. * * @note C-style signature: * u32 XIntc_GetIntrStatus(u32 BaseAddress); * *****************************************************************************/ #define XIntc_GetIntrStatus(BaseAddress) \ (XIntc_In32((BaseAddress) + XIN_ISR_OFFSET) & \ XIntc_In32((BaseAddress) + XIN_IER_OFFSET)) /************************** Function Prototypes ******************************/ /* * Interrupt controller handlers, to be connected to processor exception * handling code. */ void XIntc_LowLevelInterruptHandler(void); void XIntc_DeviceInterruptHandler(void *DeviceId); /* Various configuration functions */ void XIntc_SetIntrSvcOption(u32 BaseAddress, int Option); void XIntc_RegisterHandler(u32 BaseAddress, int InterruptId, XInterruptHandler Handler, void *CallBackRef); /************************** Variable Definitions *****************************/ #ifdef __cplusplus } #endif #endif /* end of protection macro */