?? xintc.c
字號:
/* $Id: xintc.c,v 1.4 2005/01/04 17:48:57 moleres Exp $ *//******************************************************************************** XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS"* AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND* SOLUTIONS FOR XILINX DEVICES. BY PROVIDING THIS DESIGN, CODE,* OR INFORMATION AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE,* APPLICATION OR STANDARD, XILINX IS MAKING NO REPRESENTATION* THAT THIS IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT,* AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE* FOR YOUR IMPLEMENTATION. XILINX EXPRESSLY DISCLAIMS ANY* WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE* IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR* REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF* INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS* FOR A PARTICULAR PURPOSE.** (c) Copyright 2002-2004 Xilinx Inc.* All rights reserved.*******************************************************************************//*****************************************************************************//**** @file xintc.c** Contains required functions for the XIntc driver for the Xilinx Interrupt* Controller. See xintc.h for a detailed description of the driver.** <pre>* MODIFICATION HISTORY:** Ver Who Date Changes* ----- ---- -------- --------------------------------------------------------* 1.00a ecm 08/16/01 First release* 1.00b jhl 02/21/02 Repartitioned the driver for smaller files* 1.00b jhl 04/24/02 Made LookupConfig global and compressed ack before table* in the configuration into a bit mask* 1.00c rpm 10/17/03 New release. Support the static vector table created* in the xintc_g.c configuration table.* 1.00c rpm 04/23/04 Removed check in XIntc_Connect for a previously connected* handler. Always overwrite the vector table handler with* the handler provided as an argument.* </pre>*******************************************************************************//***************************** Include Files *********************************/#include "xbasic_types.h"#include "xintc.h"#include "xintc_l.h"#include "xintc_i.h"/************************** Constant Definitions *****************************//**************************** Type Definitions *******************************//***************** Macros (Inline Functions) Definitions *********************//************************** Variable Definitions *****************************//* * array of masks associated with the bit position, improves performance * in the ISR and acknowledge functions, this table is shared between all * instances of the driver, this table is not statically initialized because * the size of the table is based upon the maximum used interrupt id */Xuint32 XIntc_BitPosMask[XPAR_INTC_MAX_NUM_INTR_INPUTS];/************************** Function Prototypes ******************************/static void StubHandler(void *CallBackRef);/*****************************************************************************//**** Initialize a specific interrupt controller instance/driver. The* initialization entails:** - Initialize fields of the XIntc structure* - Initial vector table with stub function calls* - All interrupt sources are disabled* - Interrupt output is disabled** @param InstancePtr is a pointer to the XIntc instance to be worked on.* @param DeviceId is the unique id of the device controlled by this XIntc* instance. Passing in a device id associates the generic XIntc* instance to a specific device, as chosen by the caller or* application developer.** @return** - XST_SUCCESS if initialization was successful* - XST_DEVICE_IS_STARTED if the device has already been started* - XST_DEVICE_NOT_FOUND if device configuration information was not found for* a device with the supplied device ID.** @note** None.*******************************************************************************/XStatus XIntc_Initialize(XIntc *InstancePtr, Xuint16 DeviceId){ Xuint8 Id; XIntc_Config *CfgPtr; Xuint32 NextBitMask = 1; XASSERT_NONVOID(InstancePtr != XNULL); /* * If the device is started, disallow the initialize and return a status * indicating it is started. This allows the user to stop the device * and reinitialize, but prevents a user from inadvertently initializing */ if (InstancePtr->IsStarted == XCOMPONENT_IS_STARTED) { return XST_DEVICE_IS_STARTED; } /* * Lookup the device configuration in the CROM table. Use this * configuration info down below when initializing this component. */ CfgPtr = XIntc_LookupConfig(DeviceId); if (CfgPtr == XNULL) { return XST_DEVICE_NOT_FOUND; } /* * Set some default values */ InstancePtr->IsReady = 0; InstancePtr->IsStarted = 0; /* not started */ InstancePtr->CfgPtr = CfgPtr; InstancePtr->CfgPtr->Options = XIN_SVC_SGL_ISR_OPTION; /* * save the base address pointer such that the registers of the interrupt * can be accessed */ InstancePtr->BaseAddress = CfgPtr->BaseAddress; /* * initialize all the data needed to perform interrupt processing for * each interrupt ID up to the maximum used */ for (Id = 0; Id < XPAR_INTC_MAX_NUM_INTR_INPUTS; Id++) { /* Initalize the handler to point to a stub to handle an interrupt * which has not been connected to a handler. Only initialize it * if the handler is 0 or XNullHandler, which means it was not * initialized statically by the tools/user. Set the callback * reference to this instance so that unhandled interrupts can be * tracked. */ if ((InstancePtr->CfgPtr->HandlerTable[Id].Handler == 0) || (InstancePtr->CfgPtr->HandlerTable[Id].Handler == XNullHandler)) { InstancePtr->CfgPtr->HandlerTable[Id].Handler = StubHandler; } InstancePtr->CfgPtr->HandlerTable[Id].CallBackRef = InstancePtr; /* initialize the bit position mask table such that bit positions * are lookups only for each interrupt id, with 0 being a special * case (XIntc_BitPosMask[] = { 1, 2, 4, 8, ... }) */ XIntc_BitPosMask[Id] = NextBitMask; NextBitMask *= 2; } /* * disable IRQ output signal * disable all interrupt sources * acknowledge all sources */ XIntc_Out32(InstancePtr->BaseAddress + XIN_MER_OFFSET, 0); XIntc_Out32(InstancePtr->BaseAddress + XIN_IER_OFFSET, 0); XIntc_Out32(InstancePtr->BaseAddress + XIN_IAR_OFFSET, 0xFFFFFFFF); /* * indicate the instance is now ready to use, successfully initialized */ InstancePtr->IsReady = XCOMPONENT_IS_READY; return XST_SUCCESS;}/*****************************************************************************//**** Starts the interrupt controller by enabling the output from the controller* to the processor. Interrupts may be generated by the interrupt controller* after this function is called.** It is necessary for the caller to connect the interrupt handler of this* component to the proper interrupt source.** @param InstancePtr is a pointer to the XIntc instance to be worked on.* @param Mode determines if software is allowed to simulate interrupts or* real interrupts are allowed to occur. Note that these modes are* mutually exclusive. The interrupt controller hardware resets in* a mode that allows software to simulate interrupts until this mode* is exited. It cannot be reentered once it has been exited. One of* the following values should be used for the mode.** - XIN_SIMULATION_MODE enables simulation of interrupts only* - XIN_REAL_MODE enables hardware interrupts only** @return** - XST_SUCCESS if the device was started successfully* - XST_FAILURE if simulation mode was specified and it could not be set* because real mode has already been entered.** @note** Must be called after XIntc initialization is completed.*******************************************************************************/XStatus XIntc_Start(XIntc *InstancePtr, Xuint8 Mode){ Xuint32 MasterEnable = XIN_INT_MASTER_ENABLE_MASK; /* * assert the arguments */ XASSERT_NONVOID(InstancePtr != XNULL); XASSERT_NONVOID((Mode == XIN_SIMULATION_MODE) || (Mode == XIN_REAL_MODE)) XASSERT_NONVOID(InstancePtr->IsReady == XCOMPONENT_IS_READY); /* * */ if (Mode == XIN_SIMULATION_MODE) { if (MasterEnable & XIN_INT_HARDWARE_ENABLE_MASK) { return XST_FAILURE; } } else { MasterEnable |= XIN_INT_HARDWARE_ENABLE_MASK; } /* * Indicate the instance is ready to be used and is started before we * enable the device. */ InstancePtr->IsStarted = XCOMPONENT_IS_STARTED; XIntc_Out32(InstancePtr->BaseAddress + XIN_MER_OFFSET, MasterEnable); return XST_SUCCESS;}/*****************************************************************************//**** Stops the interrupt controller by disabling the output from the controller* so that no interrupts will be caused by the interrupt controller.** @param InstancePtr is a pointer to the XIntc instance to be worked on.** @return** None.** @note** None.*******************************************************************************/void XIntc_Stop(XIntc *InstancePtr){ /* * assert the arguments */ XASSERT_VOID(InstancePtr != XNULL); XASSERT_VOID(InstancePtr->IsReady == XCOMPONENT_IS_READY); /* stop all interrupts from occurring thru the interrupt controller by * disabling all interrupts in the MER register */ XIntc_Out32(InstancePtr->BaseAddress + XIN_MER_OFFSET, 0); InstancePtr->IsStarted = 0;}/*****************************************************************************//**** Makes the connection between the Id of the interrupt source and the* associated handler that is to run when the interrupt is recognized. The* argument provided in this call as the Callbackref is used as the argument* for the handler when it is called.*
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -