⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xintc.c

📁 XINLINX公司开发板的嵌入式源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* $Id: xintc.c,v 1.1.2.1 2008/02/12 13:58:05 svemula 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-2007 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.* 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* </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 */u32 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.*******************************************************************************/int XIntc_Initialize(XIntc * InstancePtr, u16 DeviceId){	u8 Id;	XIntc_Config *CfgPtr;	u32 NextBitMask = 1;	XASSERT_NONVOID(InstancePtr != NULL);	/*	 * 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 == NULL) {		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	 */#if (XPAR_XINTC_USE_DCR_BRIDGE != 0)	InstancePtr->BaseAddress = ((CfgPtr->BaseAddress >> 2)) & 0xFFF;#else	InstancePtr->BaseAddress = CfgPtr->BaseAddress;#endif	/*	 * 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.*******************************************************************************/int XIntc_Start(XIntc * InstancePtr, u8 Mode){	u32 MasterEnable = XIN_INT_MASTER_ENABLE_MASK;	/*	 * Assert the arguments	 */	XASSERT_NONVOID(InstancePtr != NULL);	XASSERT_NONVOID((Mode == XIN_SIMULATION_MODE) ||			(Mode == XIN_REAL_MODE))		XASSERT_NONVOID(InstancePtr->IsReady == XCOMPONENT_IS_READY);	/*	 * Check for simulation mode	 */	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 != NULL);	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);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -